File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ export interface UrlEntity extends Entity {
1111}
1212
1313export interface HashtagEntity extends Entity {
14- hashtag : string ;
14+ tag : string ;
1515}
1616
1717export interface CashtagEntity extends Entity {
18- cashtag : string ;
18+ tag : string ;
1919}
2020
2121export interface MentionEntity extends Entity {
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ export interface TweetEntityUrlV2 {
106106 description ?: string ;
107107 status ?: string ;
108108 images ?: TweetEntityUrlImageV2 [ ] ;
109+ media_key ?: string ;
109110}
110111
111112export interface TweetEntityUrlImageV2 {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export type TTweetv2PollField = 'duration_minutes' | 'end_datetime' | 'id' | 'op
5252export type TTweetv2TweetField = 'attachments' | 'author_id' | 'context_annotations' | 'conversation_id'
5353 | 'created_at' | 'entities' | 'geo' | 'id' | 'in_reply_to_user_id' | 'lang'
5454 | 'public_metrics' | 'non_public_metrics' | 'promoted_metrics' | 'organic_metrics' | 'edit_controls'
55- | 'possibly_sensitive' | 'referenced_tweets' | 'reply_settings' | 'source' | 'text' | 'withheld' | 'note_tweet' ;
55+ | 'possibly_sensitive' | 'referenced_tweets' | 'reply_settings' | 'source' | 'text' | 'withheld' | 'note_tweet' | 'edit_history_tweet_ids' ;
5656export type TTweetv2UserField = 'created_at' | 'description' | 'entities' | 'id' | 'location'
5757 | 'name' | 'pinned_tweet_id' | 'profile_image_url' | 'protected' | 'public_metrics'
5858 | 'url' | 'username' | 'verified' | 'verified_type' | 'withheld' | 'connection_status' | 'most_recent_tweet_id' ;
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ export interface UserV2 {
115115 tweet_count ?: number ;
116116 listed_count ?: number ;
117117 like_count ?: number ;
118+ media_count ?: number ;
118119 }
119120 pinned_tweet_id ?: string ;
120121 connection_status ?: string [ ] ;
You can’t perform that action at this time.
0 commit comments