@book000/twitterts 0.58.28 → 0.59.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generate-types/custom-types-generator.d.ts.map +1 -1
- package/dist/generate-types/custom-types-generator.js +3 -0
- package/dist/generate-types/custom-types-generator.js.map +1 -1
- package/dist/models/responses/custom/custom-entity-video-info-object.d.ts +1 -1
- package/dist/models/responses/custom/custom-entity-video-info-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts +3551 -2634
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +1384 -611
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts +8210 -7495
- package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts +2225 -2073
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-object.d.ts +8203 -7844
- package/dist/models/responses/custom/custom-tweet-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-legacy-object.d.ts +2 -2
- package/dist/models/responses/custom/custom-user-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts +1307 -1372
- package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +10338 -9950
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/endpoints.d.ts +7 -9
- package/dist/models/responses/endpoints.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +533 -488
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +4876 -4159
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts +8560 -7939
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/likes-success.d.ts +1306 -1388
- package/dist/models/responses/graphql/get/likes-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-error.d.ts +8 -0
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-error.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-error.js +4 -0
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-error.js.map +1 -0
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts +1195 -1048
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts +11 -11
- package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts +2661 -1865
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/tweet-detail-success.d.ts +4289 -3025
- package/dist/models/responses/graphql/get/tweet-detail-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/tweet-result-by-rest-id-success.d.ts +97 -84
- package/dist/models/responses/graphql/get/tweet-result-by-rest-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts +19 -17
- package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts +6 -6
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts +16644 -15254
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/viewer-success.d.ts +1 -1
- package/dist/models/responses/graphql/get/viewer-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +6054 -5327
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts +5213 -4407
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -78,12 +78,151 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
78
78
|
verified: boolean;
|
|
79
79
|
want_retweets: boolean;
|
|
80
80
|
withheld_in_countries: unknown[];
|
|
81
|
+
muting?: boolean;
|
|
81
82
|
url?: string;
|
|
83
|
+
needs_phone_verification?: boolean;
|
|
84
|
+
};
|
|
85
|
+
professional?: {
|
|
86
|
+
rest_id: string;
|
|
87
|
+
professional_type: string;
|
|
88
|
+
category: unknown[];
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
card?: {
|
|
94
|
+
rest_id: string;
|
|
95
|
+
legacy: {
|
|
96
|
+
binding_values: {
|
|
97
|
+
key: string;
|
|
98
|
+
value: {
|
|
99
|
+
image_value?: {
|
|
100
|
+
height: number;
|
|
101
|
+
width: number;
|
|
102
|
+
url: string;
|
|
103
|
+
};
|
|
104
|
+
type: string;
|
|
105
|
+
string_value?: string;
|
|
106
|
+
scribe_key?: string;
|
|
107
|
+
user_value?: {
|
|
108
|
+
id_str: string;
|
|
109
|
+
path: unknown[];
|
|
110
|
+
};
|
|
111
|
+
image_color_value?: {
|
|
112
|
+
palette: {
|
|
113
|
+
rgb: {
|
|
114
|
+
blue: number;
|
|
115
|
+
green: number;
|
|
116
|
+
red: number;
|
|
117
|
+
};
|
|
118
|
+
percentage: number;
|
|
119
|
+
}[];
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
}[];
|
|
123
|
+
card_platform: {
|
|
124
|
+
platform: {
|
|
125
|
+
audience: {
|
|
126
|
+
name: string;
|
|
127
|
+
};
|
|
128
|
+
device: {
|
|
129
|
+
name: string;
|
|
130
|
+
version: string;
|
|
131
|
+
};
|
|
82
132
|
};
|
|
83
133
|
};
|
|
134
|
+
name: string;
|
|
135
|
+
url: string;
|
|
136
|
+
user_refs_results: {
|
|
137
|
+
result: {
|
|
138
|
+
__typename: string;
|
|
139
|
+
id: string;
|
|
140
|
+
rest_id: string;
|
|
141
|
+
affiliates_highlighted_label: {
|
|
142
|
+
label?: {
|
|
143
|
+
url: {
|
|
144
|
+
url: string;
|
|
145
|
+
urlType: string;
|
|
146
|
+
};
|
|
147
|
+
badge: {
|
|
148
|
+
url: string;
|
|
149
|
+
};
|
|
150
|
+
description: string;
|
|
151
|
+
userLabelType: string;
|
|
152
|
+
userLabelDisplayType: string;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
has_graduated_access: boolean;
|
|
156
|
+
is_blue_verified: boolean;
|
|
157
|
+
profile_image_shape: string;
|
|
158
|
+
legacy: {
|
|
159
|
+
blocking?: boolean;
|
|
160
|
+
can_dm: boolean;
|
|
161
|
+
can_media_tag: boolean;
|
|
162
|
+
created_at: string;
|
|
163
|
+
default_profile: boolean;
|
|
164
|
+
default_profile_image: boolean;
|
|
165
|
+
description: string;
|
|
166
|
+
entities: {
|
|
167
|
+
description: {
|
|
168
|
+
urls: {
|
|
169
|
+
display_url: string;
|
|
170
|
+
expanded_url: string;
|
|
171
|
+
url: string;
|
|
172
|
+
indices: number[];
|
|
173
|
+
}[];
|
|
174
|
+
};
|
|
175
|
+
url?: {
|
|
176
|
+
urls: {
|
|
177
|
+
display_url: string;
|
|
178
|
+
expanded_url: string;
|
|
179
|
+
url: string;
|
|
180
|
+
indices: number[];
|
|
181
|
+
}[];
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
fast_followers_count: number;
|
|
185
|
+
favourites_count: number;
|
|
186
|
+
followers_count: number;
|
|
187
|
+
friends_count: number;
|
|
188
|
+
has_custom_timelines: boolean;
|
|
189
|
+
is_translator: boolean;
|
|
190
|
+
listed_count: number;
|
|
191
|
+
location: string;
|
|
192
|
+
media_count: number;
|
|
193
|
+
name: string;
|
|
194
|
+
normal_followers_count: number;
|
|
195
|
+
pinned_tweet_ids_str: string[];
|
|
196
|
+
possibly_sensitive: boolean;
|
|
197
|
+
profile_banner_url?: string;
|
|
198
|
+
profile_image_url_https: string;
|
|
199
|
+
profile_interstitial_type: string;
|
|
200
|
+
screen_name: string;
|
|
201
|
+
statuses_count: number;
|
|
202
|
+
translator_type: string;
|
|
203
|
+
url?: string;
|
|
204
|
+
verified: boolean;
|
|
205
|
+
verified_type?: string;
|
|
206
|
+
want_retweets: boolean;
|
|
207
|
+
withheld_in_countries: unknown[];
|
|
208
|
+
};
|
|
209
|
+
professional?: {
|
|
210
|
+
rest_id: string;
|
|
211
|
+
professional_type: string;
|
|
212
|
+
category: {
|
|
213
|
+
id: number;
|
|
214
|
+
name: string;
|
|
215
|
+
icon_name: string;
|
|
216
|
+
}[];
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
}[];
|
|
84
220
|
};
|
|
85
221
|
};
|
|
86
222
|
unmention_data?: {};
|
|
223
|
+
unified_card?: {
|
|
224
|
+
card_fetch_state: string;
|
|
225
|
+
};
|
|
87
226
|
edit_control?: {
|
|
88
227
|
edit_tweet_ids: string[];
|
|
89
228
|
editable_until_msecs: string;
|
|
@@ -107,6 +246,20 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
107
246
|
indices: number[];
|
|
108
247
|
text: string;
|
|
109
248
|
}[];
|
|
249
|
+
symbols: unknown[];
|
|
250
|
+
timestamps?: unknown[];
|
|
251
|
+
urls: {
|
|
252
|
+
display_url: string;
|
|
253
|
+
expanded_url: string;
|
|
254
|
+
url: string;
|
|
255
|
+
indices: number[];
|
|
256
|
+
}[];
|
|
257
|
+
user_mentions: {
|
|
258
|
+
id_str: string;
|
|
259
|
+
name: string;
|
|
260
|
+
screen_name: string;
|
|
261
|
+
indices: number[];
|
|
262
|
+
}[];
|
|
110
263
|
media?: {
|
|
111
264
|
display_url: string;
|
|
112
265
|
expanded_url: string;
|
|
@@ -131,7 +284,6 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
131
284
|
is_blue_verified: boolean;
|
|
132
285
|
profile_image_shape: string;
|
|
133
286
|
legacy: {
|
|
134
|
-
blocking?: boolean;
|
|
135
287
|
can_dm: boolean;
|
|
136
288
|
can_media_tag: boolean;
|
|
137
289
|
created_at: string;
|
|
@@ -175,10 +327,11 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
175
327
|
screen_name: string;
|
|
176
328
|
statuses_count: number;
|
|
177
329
|
translator_type: string;
|
|
330
|
+
url?: string;
|
|
178
331
|
verified: boolean;
|
|
179
332
|
want_retweets: boolean;
|
|
180
333
|
withheld_in_countries: unknown[];
|
|
181
|
-
|
|
334
|
+
blocking?: boolean;
|
|
182
335
|
verified_type?: string;
|
|
183
336
|
};
|
|
184
337
|
professional?: {
|
|
@@ -288,244 +441,41 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
288
441
|
}[];
|
|
289
442
|
};
|
|
290
443
|
};
|
|
291
|
-
ext_alt_text?: string;
|
|
292
444
|
sensitive_media_warning?: {
|
|
293
|
-
adult_content?: boolean;
|
|
294
445
|
other?: boolean;
|
|
446
|
+
adult_content?: boolean;
|
|
295
447
|
};
|
|
296
|
-
|
|
297
|
-
symbols: unknown[];
|
|
298
|
-
timestamps?: unknown[];
|
|
299
|
-
urls: {
|
|
300
|
-
display_url: string;
|
|
301
|
-
expanded_url: string;
|
|
302
|
-
url: string;
|
|
303
|
-
indices: number[];
|
|
304
|
-
}[];
|
|
305
|
-
user_mentions: {
|
|
306
|
-
id_str: string;
|
|
307
|
-
name: string;
|
|
308
|
-
screen_name: string;
|
|
309
|
-
indices: number[];
|
|
448
|
+
ext_alt_text?: string;
|
|
310
449
|
}[];
|
|
311
450
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
created_at: string;
|
|
341
|
-
default_profile: boolean;
|
|
342
|
-
default_profile_image: boolean;
|
|
343
|
-
description: string;
|
|
344
|
-
entities: {
|
|
345
|
-
description: {
|
|
346
|
-
urls: {
|
|
347
|
-
display_url: string;
|
|
348
|
-
expanded_url: string;
|
|
349
|
-
url: string;
|
|
350
|
-
indices: number[];
|
|
351
|
-
}[];
|
|
352
|
-
};
|
|
353
|
-
url?: {
|
|
354
|
-
urls: {
|
|
355
|
-
display_url: string;
|
|
356
|
-
expanded_url: string;
|
|
357
|
-
url: string;
|
|
358
|
-
indices: number[];
|
|
359
|
-
}[];
|
|
360
|
-
};
|
|
361
|
-
};
|
|
362
|
-
fast_followers_count: number;
|
|
363
|
-
favourites_count: number;
|
|
364
|
-
followers_count: number;
|
|
365
|
-
friends_count: number;
|
|
366
|
-
has_custom_timelines: boolean;
|
|
367
|
-
is_translator: boolean;
|
|
368
|
-
listed_count: number;
|
|
369
|
-
location: string;
|
|
370
|
-
media_count: number;
|
|
371
|
-
name: string;
|
|
372
|
-
normal_followers_count: number;
|
|
373
|
-
pinned_tweet_ids_str: string[];
|
|
374
|
-
possibly_sensitive: boolean;
|
|
375
|
-
profile_banner_url?: string;
|
|
376
|
-
profile_image_url_https: string;
|
|
377
|
-
profile_interstitial_type: string;
|
|
378
|
-
screen_name: string;
|
|
379
|
-
statuses_count: number;
|
|
380
|
-
translator_type: string;
|
|
381
|
-
verified: boolean;
|
|
382
|
-
want_retweets: boolean;
|
|
383
|
-
withheld_in_countries: unknown[];
|
|
384
|
-
url?: string;
|
|
385
|
-
verified_type?: string;
|
|
386
|
-
};
|
|
387
|
-
professional?: {
|
|
388
|
-
rest_id: string;
|
|
389
|
-
professional_type: string;
|
|
390
|
-
category: {
|
|
391
|
-
id: number;
|
|
392
|
-
name: string;
|
|
393
|
-
icon_name: string;
|
|
394
|
-
}[];
|
|
395
|
-
};
|
|
396
|
-
};
|
|
397
|
-
};
|
|
398
|
-
};
|
|
399
|
-
title?: string;
|
|
400
|
-
description?: string;
|
|
401
|
-
embeddable?: boolean;
|
|
402
|
-
call_to_actions?: {
|
|
403
|
-
visit_site: {
|
|
404
|
-
url: string;
|
|
405
|
-
};
|
|
406
|
-
};
|
|
407
|
-
};
|
|
408
|
-
ext_media_availability: {
|
|
409
|
-
status: string;
|
|
410
|
-
};
|
|
411
|
-
sizes: {
|
|
412
|
-
large: {
|
|
413
|
-
h: number;
|
|
414
|
-
w: number;
|
|
415
|
-
resize: string;
|
|
416
|
-
};
|
|
417
|
-
medium: {
|
|
418
|
-
h: number;
|
|
419
|
-
w: number;
|
|
420
|
-
resize: string;
|
|
421
|
-
};
|
|
422
|
-
small: {
|
|
423
|
-
h: number;
|
|
424
|
-
w: number;
|
|
425
|
-
resize: string;
|
|
426
|
-
};
|
|
427
|
-
thumb: {
|
|
428
|
-
h: number;
|
|
429
|
-
w: number;
|
|
430
|
-
resize: string;
|
|
431
|
-
};
|
|
432
|
-
};
|
|
433
|
-
original_info: {
|
|
434
|
-
height: number;
|
|
435
|
-
width: number;
|
|
436
|
-
focus_rects: {
|
|
437
|
-
x: number;
|
|
438
|
-
y: number;
|
|
439
|
-
w: number;
|
|
440
|
-
h: number;
|
|
441
|
-
}[];
|
|
442
|
-
};
|
|
443
|
-
video_info?: {
|
|
444
|
-
aspect_ratio: number[];
|
|
445
|
-
duration_millis?: number;
|
|
446
|
-
variants: {
|
|
447
|
-
bitrate?: number;
|
|
448
|
-
content_type: string;
|
|
449
|
-
url: string;
|
|
450
|
-
}[];
|
|
451
|
-
};
|
|
452
|
-
features?: {
|
|
453
|
-
large: {
|
|
454
|
-
faces: {
|
|
455
|
-
x: number;
|
|
456
|
-
y: number;
|
|
457
|
-
h: number;
|
|
458
|
-
w: number;
|
|
459
|
-
}[];
|
|
460
|
-
};
|
|
461
|
-
medium: {
|
|
462
|
-
faces: {
|
|
463
|
-
x: number;
|
|
464
|
-
y: number;
|
|
465
|
-
h: number;
|
|
466
|
-
w: number;
|
|
467
|
-
}[];
|
|
468
|
-
};
|
|
469
|
-
small: {
|
|
470
|
-
faces: {
|
|
471
|
-
x: number;
|
|
472
|
-
y: number;
|
|
473
|
-
h: number;
|
|
474
|
-
w: number;
|
|
475
|
-
}[];
|
|
476
|
-
};
|
|
477
|
-
orig: {
|
|
478
|
-
faces: {
|
|
479
|
-
x: number;
|
|
480
|
-
y: number;
|
|
481
|
-
h: number;
|
|
482
|
-
w: number;
|
|
483
|
-
}[];
|
|
484
|
-
};
|
|
485
|
-
all?: {
|
|
486
|
-
tags: {
|
|
487
|
-
user_id: string;
|
|
488
|
-
name: string;
|
|
489
|
-
screen_name: string;
|
|
490
|
-
type: string;
|
|
491
|
-
}[];
|
|
492
|
-
};
|
|
493
|
-
};
|
|
494
|
-
ext_alt_text?: string;
|
|
495
|
-
sensitive_media_warning?: {
|
|
496
|
-
adult_content?: boolean;
|
|
497
|
-
other?: boolean;
|
|
498
|
-
};
|
|
499
|
-
}[];
|
|
500
|
-
};
|
|
501
|
-
favorite_count: number;
|
|
502
|
-
favorited: boolean;
|
|
503
|
-
full_text: string;
|
|
504
|
-
is_quote_status: boolean;
|
|
505
|
-
lang: string;
|
|
506
|
-
possibly_sensitive?: boolean;
|
|
507
|
-
possibly_sensitive_editable?: boolean;
|
|
508
|
-
quote_count: number;
|
|
509
|
-
reply_count: number;
|
|
510
|
-
retweet_count: number;
|
|
511
|
-
retweeted: boolean;
|
|
512
|
-
user_id_str: string;
|
|
513
|
-
id_str: string;
|
|
514
|
-
retweeted_status_result?: {
|
|
515
|
-
result: {
|
|
516
|
-
__typename: string;
|
|
517
|
-
rest_id: string;
|
|
518
|
-
core: {
|
|
519
|
-
user_results: {
|
|
520
|
-
result: {
|
|
521
|
-
__typename: string;
|
|
522
|
-
id: string;
|
|
523
|
-
rest_id: string;
|
|
524
|
-
affiliates_highlighted_label: {
|
|
525
|
-
label?: {
|
|
526
|
-
url?: {
|
|
527
|
-
url: string;
|
|
528
|
-
urlType: string;
|
|
451
|
+
favorite_count: number;
|
|
452
|
+
favorited: boolean;
|
|
453
|
+
full_text: string;
|
|
454
|
+
is_quote_status: boolean;
|
|
455
|
+
lang: string;
|
|
456
|
+
possibly_sensitive?: boolean;
|
|
457
|
+
possibly_sensitive_editable?: boolean;
|
|
458
|
+
quote_count: number;
|
|
459
|
+
reply_count: number;
|
|
460
|
+
retweet_count: number;
|
|
461
|
+
retweeted: boolean;
|
|
462
|
+
user_id_str: string;
|
|
463
|
+
id_str: string;
|
|
464
|
+
retweeted_status_result?: {
|
|
465
|
+
result: {
|
|
466
|
+
__typename: string;
|
|
467
|
+
rest_id: string;
|
|
468
|
+
core: {
|
|
469
|
+
user_results: {
|
|
470
|
+
result: {
|
|
471
|
+
__typename: string;
|
|
472
|
+
id: string;
|
|
473
|
+
rest_id: string;
|
|
474
|
+
affiliates_highlighted_label: {
|
|
475
|
+
label?: {
|
|
476
|
+
url?: {
|
|
477
|
+
url: string;
|
|
478
|
+
urlType: string;
|
|
529
479
|
};
|
|
530
480
|
badge: {
|
|
531
481
|
url: string;
|
|
@@ -603,13 +553,13 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
603
553
|
screen_name: string;
|
|
604
554
|
statuses_count: number;
|
|
605
555
|
translator_type: string;
|
|
556
|
+
url?: string;
|
|
606
557
|
verified: boolean;
|
|
558
|
+
verified_type?: string;
|
|
607
559
|
want_retweets: boolean;
|
|
608
560
|
withheld_in_countries: unknown[];
|
|
609
|
-
url?: string;
|
|
610
|
-
verified_type?: string;
|
|
611
|
-
followed_by?: boolean;
|
|
612
561
|
following?: boolean;
|
|
562
|
+
followed_by?: boolean;
|
|
613
563
|
};
|
|
614
564
|
professional?: {
|
|
615
565
|
rest_id: string;
|
|
@@ -624,75 +574,224 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
624
574
|
};
|
|
625
575
|
};
|
|
626
576
|
};
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
text: string;
|
|
577
|
+
card?: {
|
|
578
|
+
rest_id: string;
|
|
579
|
+
legacy: {
|
|
580
|
+
binding_values: {
|
|
581
|
+
key: string;
|
|
582
|
+
value: {
|
|
583
|
+
image_value?: {
|
|
584
|
+
height: number;
|
|
585
|
+
width: number;
|
|
586
|
+
url: string;
|
|
587
|
+
};
|
|
588
|
+
type: string;
|
|
589
|
+
string_value?: string;
|
|
590
|
+
scribe_key?: string;
|
|
591
|
+
user_value?: {
|
|
592
|
+
id_str: string;
|
|
593
|
+
path: unknown[];
|
|
594
|
+
};
|
|
595
|
+
image_color_value?: {
|
|
596
|
+
palette: {
|
|
597
|
+
rgb: {
|
|
598
|
+
blue: number;
|
|
599
|
+
green: number;
|
|
600
|
+
red: number;
|
|
601
|
+
};
|
|
602
|
+
percentage: number;
|
|
603
|
+
}[];
|
|
604
|
+
};
|
|
605
|
+
};
|
|
657
606
|
}[];
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
607
|
+
card_platform: {
|
|
608
|
+
platform: {
|
|
609
|
+
audience: {
|
|
610
|
+
name: string;
|
|
611
|
+
};
|
|
612
|
+
device: {
|
|
613
|
+
name: string;
|
|
614
|
+
version: string;
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
};
|
|
618
|
+
name: string;
|
|
619
|
+
url: string;
|
|
620
|
+
user_refs_results: {
|
|
621
|
+
result: {
|
|
622
|
+
__typename: string;
|
|
623
|
+
id: string;
|
|
624
|
+
rest_id: string;
|
|
625
|
+
affiliates_highlighted_label: {
|
|
626
|
+
label?: {
|
|
627
|
+
url: {
|
|
628
|
+
url: string;
|
|
629
|
+
urlType: string;
|
|
630
|
+
};
|
|
631
|
+
badge: {
|
|
632
|
+
url: string;
|
|
633
|
+
};
|
|
634
|
+
description: string;
|
|
635
|
+
userLabelType: string;
|
|
636
|
+
userLabelDisplayType: string;
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
has_graduated_access: boolean;
|
|
640
|
+
is_blue_verified: boolean;
|
|
641
|
+
profile_image_shape: string;
|
|
642
|
+
legacy: {
|
|
643
|
+
blocking?: boolean;
|
|
644
|
+
can_dm: boolean;
|
|
645
|
+
can_media_tag: boolean;
|
|
646
|
+
created_at: string;
|
|
647
|
+
default_profile: boolean;
|
|
648
|
+
default_profile_image: boolean;
|
|
649
|
+
description: string;
|
|
650
|
+
entities: {
|
|
651
|
+
description: {
|
|
652
|
+
urls: {
|
|
653
|
+
display_url: string;
|
|
654
|
+
expanded_url: string;
|
|
655
|
+
url: string;
|
|
656
|
+
indices: number[];
|
|
657
|
+
}[];
|
|
658
|
+
};
|
|
659
|
+
url?: {
|
|
660
|
+
urls: {
|
|
661
|
+
display_url: string;
|
|
662
|
+
expanded_url: string;
|
|
663
|
+
url: string;
|
|
664
|
+
indices: number[];
|
|
665
|
+
}[];
|
|
666
|
+
};
|
|
667
|
+
};
|
|
668
|
+
fast_followers_count: number;
|
|
669
|
+
favourites_count: number;
|
|
670
|
+
followers_count: number;
|
|
671
|
+
friends_count: number;
|
|
672
|
+
has_custom_timelines: boolean;
|
|
673
|
+
is_translator: boolean;
|
|
674
|
+
listed_count: number;
|
|
675
|
+
location: string;
|
|
676
|
+
media_count: number;
|
|
677
|
+
name: string;
|
|
678
|
+
normal_followers_count: number;
|
|
679
|
+
pinned_tweet_ids_str: string[];
|
|
680
|
+
possibly_sensitive: boolean;
|
|
681
|
+
profile_banner_url?: string;
|
|
682
|
+
profile_image_url_https: string;
|
|
683
|
+
profile_interstitial_type: string;
|
|
684
|
+
screen_name: string;
|
|
685
|
+
statuses_count: number;
|
|
686
|
+
translator_type: string;
|
|
687
|
+
url?: string;
|
|
688
|
+
verified: boolean;
|
|
689
|
+
verified_type?: string;
|
|
690
|
+
want_retweets: boolean;
|
|
691
|
+
withheld_in_countries: unknown[];
|
|
692
|
+
};
|
|
693
|
+
professional?: {
|
|
694
|
+
rest_id: string;
|
|
695
|
+
professional_type: string;
|
|
696
|
+
category: {
|
|
697
|
+
id: number;
|
|
698
|
+
name: string;
|
|
699
|
+
icon_name: string;
|
|
700
|
+
}[];
|
|
701
|
+
};
|
|
702
|
+
};
|
|
703
|
+
}[];
|
|
704
|
+
};
|
|
705
|
+
};
|
|
706
|
+
unmention_data: {};
|
|
707
|
+
unified_card?: {
|
|
708
|
+
card_fetch_state: string;
|
|
709
|
+
};
|
|
710
|
+
edit_control: {
|
|
711
|
+
edit_tweet_ids?: string[];
|
|
712
|
+
editable_until_msecs?: string;
|
|
713
|
+
is_edit_eligible?: boolean;
|
|
714
|
+
edits_remaining?: string;
|
|
715
|
+
initial_tweet_id?: string;
|
|
716
|
+
edit_control_initial?: {
|
|
717
|
+
edit_tweet_ids: string[];
|
|
718
|
+
editable_until_msecs: string;
|
|
719
|
+
is_edit_eligible: boolean;
|
|
720
|
+
edits_remaining: string;
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
is_translatable: boolean;
|
|
724
|
+
views: {
|
|
725
|
+
count?: string;
|
|
726
|
+
state: string;
|
|
727
|
+
};
|
|
728
|
+
source: string;
|
|
729
|
+
legacy: {
|
|
730
|
+
bookmark_count: number;
|
|
731
|
+
bookmarked: boolean;
|
|
732
|
+
created_at: string;
|
|
733
|
+
conversation_id_str: string;
|
|
734
|
+
display_text_range: number[];
|
|
735
|
+
entities: {
|
|
736
|
+
hashtags: {
|
|
737
|
+
indices: number[];
|
|
738
|
+
text: string;
|
|
739
|
+
}[];
|
|
740
|
+
symbols: unknown[];
|
|
741
|
+
timestamps?: unknown[];
|
|
742
|
+
urls: {
|
|
743
|
+
display_url: string;
|
|
744
|
+
expanded_url: string;
|
|
745
|
+
url: string;
|
|
746
|
+
indices: number[];
|
|
747
|
+
}[];
|
|
748
|
+
user_mentions: {
|
|
749
|
+
id_str: string;
|
|
750
|
+
name: string;
|
|
751
|
+
screen_name: string;
|
|
752
|
+
indices: number[];
|
|
753
|
+
}[];
|
|
754
|
+
media?: {
|
|
755
|
+
display_url: string;
|
|
756
|
+
expanded_url: string;
|
|
757
|
+
id_str: string;
|
|
758
|
+
indices: number[];
|
|
759
|
+
media_key: string;
|
|
760
|
+
media_url_https: string;
|
|
761
|
+
type: string;
|
|
762
|
+
url: string;
|
|
763
|
+
additional_media_info?: {
|
|
764
|
+
monetizable: boolean;
|
|
765
|
+
title?: string;
|
|
766
|
+
description?: string;
|
|
767
|
+
embeddable?: boolean;
|
|
768
|
+
source_user?: {
|
|
769
|
+
user_results: {
|
|
770
|
+
result: {
|
|
771
|
+
__typename: string;
|
|
772
|
+
id: string;
|
|
773
|
+
rest_id: string;
|
|
774
|
+
affiliates_highlighted_label: {};
|
|
775
|
+
has_graduated_access: boolean;
|
|
776
|
+
is_blue_verified: boolean;
|
|
777
|
+
profile_image_shape: string;
|
|
778
|
+
legacy: {
|
|
779
|
+
can_dm: boolean;
|
|
780
|
+
can_media_tag: boolean;
|
|
781
|
+
created_at: string;
|
|
782
|
+
default_profile: boolean;
|
|
783
|
+
default_profile_image: boolean;
|
|
784
|
+
description: string;
|
|
785
|
+
entities: {
|
|
786
|
+
description: {
|
|
787
|
+
urls: unknown[];
|
|
788
|
+
};
|
|
789
|
+
url?: {
|
|
790
|
+
urls: {
|
|
791
|
+
display_url: string;
|
|
792
|
+
expanded_url: string;
|
|
793
|
+
url: string;
|
|
794
|
+
indices: number[];
|
|
696
795
|
}[];
|
|
697
796
|
};
|
|
698
797
|
};
|
|
@@ -709,16 +808,16 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
709
808
|
normal_followers_count: number;
|
|
710
809
|
pinned_tweet_ids_str: string[];
|
|
711
810
|
possibly_sensitive: boolean;
|
|
712
|
-
profile_banner_url?: string;
|
|
713
811
|
profile_image_url_https: string;
|
|
714
812
|
profile_interstitial_type: string;
|
|
715
813
|
screen_name: string;
|
|
716
814
|
statuses_count: number;
|
|
717
815
|
translator_type: string;
|
|
718
|
-
url?: string;
|
|
719
816
|
verified: boolean;
|
|
720
817
|
want_retweets: boolean;
|
|
721
818
|
withheld_in_countries: unknown[];
|
|
819
|
+
profile_banner_url?: string;
|
|
820
|
+
url?: string;
|
|
722
821
|
blocking?: boolean;
|
|
723
822
|
};
|
|
724
823
|
professional?: {
|
|
@@ -729,14 +828,11 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
729
828
|
};
|
|
730
829
|
};
|
|
731
830
|
};
|
|
732
|
-
title?: string;
|
|
733
|
-
description?: string;
|
|
734
831
|
call_to_actions?: {
|
|
735
832
|
visit_site: {
|
|
736
833
|
url: string;
|
|
737
834
|
};
|
|
738
835
|
};
|
|
739
|
-
embeddable?: boolean;
|
|
740
836
|
};
|
|
741
837
|
ext_media_availability: {
|
|
742
838
|
status: string;
|
|
@@ -826,27 +922,26 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
826
922
|
};
|
|
827
923
|
source_status_id_str?: string;
|
|
828
924
|
source_user_id_str?: string;
|
|
829
|
-
ext_alt_text?: string;
|
|
830
925
|
sensitive_media_warning?: {
|
|
831
|
-
adult_content?: boolean;
|
|
832
926
|
other?: boolean;
|
|
927
|
+
adult_content?: boolean;
|
|
833
928
|
};
|
|
834
|
-
|
|
835
|
-
symbols: unknown[];
|
|
836
|
-
timestamps?: unknown[];
|
|
837
|
-
urls: {
|
|
838
|
-
display_url: string;
|
|
839
|
-
expanded_url: string;
|
|
840
|
-
url: string;
|
|
841
|
-
indices: number[];
|
|
842
|
-
}[];
|
|
843
|
-
user_mentions: {
|
|
844
|
-
id_str: string;
|
|
845
|
-
name: string;
|
|
846
|
-
screen_name: string;
|
|
847
|
-
indices: number[];
|
|
929
|
+
ext_alt_text?: string;
|
|
848
930
|
}[];
|
|
849
931
|
};
|
|
932
|
+
favorite_count: number;
|
|
933
|
+
favorited: boolean;
|
|
934
|
+
full_text: string;
|
|
935
|
+
is_quote_status: boolean;
|
|
936
|
+
lang: string;
|
|
937
|
+
possibly_sensitive?: boolean;
|
|
938
|
+
possibly_sensitive_editable?: boolean;
|
|
939
|
+
quote_count: number;
|
|
940
|
+
reply_count: number;
|
|
941
|
+
retweet_count: number;
|
|
942
|
+
retweeted: boolean;
|
|
943
|
+
user_id_str: string;
|
|
944
|
+
id_str: string;
|
|
850
945
|
extended_entities?: {
|
|
851
946
|
media: {
|
|
852
947
|
display_url: string;
|
|
@@ -859,6 +954,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
859
954
|
url: string;
|
|
860
955
|
additional_media_info?: {
|
|
861
956
|
monetizable: boolean;
|
|
957
|
+
title?: string;
|
|
958
|
+
description?: string;
|
|
959
|
+
embeddable?: boolean;
|
|
862
960
|
source_user?: {
|
|
863
961
|
user_results: {
|
|
864
962
|
result: {
|
|
@@ -902,16 +1000,16 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
902
1000
|
normal_followers_count: number;
|
|
903
1001
|
pinned_tweet_ids_str: string[];
|
|
904
1002
|
possibly_sensitive: boolean;
|
|
905
|
-
profile_banner_url?: string;
|
|
906
1003
|
profile_image_url_https: string;
|
|
907
1004
|
profile_interstitial_type: string;
|
|
908
1005
|
screen_name: string;
|
|
909
1006
|
statuses_count: number;
|
|
910
1007
|
translator_type: string;
|
|
911
|
-
url?: string;
|
|
912
1008
|
verified: boolean;
|
|
913
1009
|
want_retweets: boolean;
|
|
914
1010
|
withheld_in_countries: unknown[];
|
|
1011
|
+
profile_banner_url?: string;
|
|
1012
|
+
url?: string;
|
|
915
1013
|
blocking?: boolean;
|
|
916
1014
|
};
|
|
917
1015
|
professional?: {
|
|
@@ -922,14 +1020,11 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
922
1020
|
};
|
|
923
1021
|
};
|
|
924
1022
|
};
|
|
925
|
-
title?: string;
|
|
926
|
-
description?: string;
|
|
927
1023
|
call_to_actions?: {
|
|
928
1024
|
visit_site: {
|
|
929
1025
|
url: string;
|
|
930
1026
|
};
|
|
931
1027
|
};
|
|
932
|
-
embeddable?: boolean;
|
|
933
1028
|
};
|
|
934
1029
|
ext_media_availability: {
|
|
935
1030
|
status: string;
|
|
@@ -1019,26 +1114,13 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1019
1114
|
};
|
|
1020
1115
|
source_status_id_str?: string;
|
|
1021
1116
|
source_user_id_str?: string;
|
|
1022
|
-
ext_alt_text?: string;
|
|
1023
1117
|
sensitive_media_warning?: {
|
|
1024
|
-
adult_content?: boolean;
|
|
1025
1118
|
other?: boolean;
|
|
1119
|
+
adult_content?: boolean;
|
|
1026
1120
|
};
|
|
1121
|
+
ext_alt_text?: string;
|
|
1027
1122
|
}[];
|
|
1028
1123
|
};
|
|
1029
|
-
favorite_count: number;
|
|
1030
|
-
favorited: boolean;
|
|
1031
|
-
full_text: string;
|
|
1032
|
-
is_quote_status: boolean;
|
|
1033
|
-
lang: string;
|
|
1034
|
-
possibly_sensitive?: boolean;
|
|
1035
|
-
possibly_sensitive_editable?: boolean;
|
|
1036
|
-
quote_count: number;
|
|
1037
|
-
reply_count: number;
|
|
1038
|
-
retweet_count: number;
|
|
1039
|
-
retweeted: boolean;
|
|
1040
|
-
user_id_str: string;
|
|
1041
|
-
id_str: string;
|
|
1042
1124
|
quoted_status_id_str?: string;
|
|
1043
1125
|
quoted_status_permalink?: {
|
|
1044
1126
|
url: string;
|
|
@@ -1062,125 +1144,45 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1062
1144
|
url: string;
|
|
1063
1145
|
};
|
|
1064
1146
|
};
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1147
|
+
note_tweet?: {
|
|
1148
|
+
is_expandable: boolean;
|
|
1149
|
+
note_tweet_results: {
|
|
1150
|
+
result: {
|
|
1151
|
+
id: string;
|
|
1152
|
+
text: string;
|
|
1153
|
+
entity_set: {
|
|
1154
|
+
hashtags: {
|
|
1155
|
+
indices: number[];
|
|
1156
|
+
text: string;
|
|
1157
|
+
}[];
|
|
1158
|
+
symbols: unknown[];
|
|
1159
|
+
urls: {
|
|
1160
|
+
display_url: string;
|
|
1161
|
+
expanded_url: string;
|
|
1077
1162
|
url: string;
|
|
1078
|
-
|
|
1079
|
-
|
|
1163
|
+
indices: number[];
|
|
1164
|
+
}[];
|
|
1165
|
+
user_mentions: {
|
|
1080
1166
|
id_str: string;
|
|
1081
|
-
path: unknown[];
|
|
1082
|
-
};
|
|
1083
|
-
image_color_value?: {
|
|
1084
|
-
palette: {
|
|
1085
|
-
rgb: {
|
|
1086
|
-
blue: number;
|
|
1087
|
-
green: number;
|
|
1088
|
-
red: number;
|
|
1089
|
-
};
|
|
1090
|
-
percentage: number;
|
|
1091
|
-
}[];
|
|
1092
|
-
};
|
|
1093
|
-
};
|
|
1094
|
-
}[];
|
|
1095
|
-
card_platform: {
|
|
1096
|
-
platform: {
|
|
1097
|
-
audience: {
|
|
1098
|
-
name: string;
|
|
1099
|
-
};
|
|
1100
|
-
device: {
|
|
1101
|
-
name: string;
|
|
1102
|
-
version: string;
|
|
1103
|
-
};
|
|
1104
|
-
};
|
|
1105
|
-
};
|
|
1106
|
-
name: string;
|
|
1107
|
-
url: string;
|
|
1108
|
-
user_refs_results: {
|
|
1109
|
-
result: {
|
|
1110
|
-
__typename: string;
|
|
1111
|
-
id: string;
|
|
1112
|
-
rest_id: string;
|
|
1113
|
-
affiliates_highlighted_label: {};
|
|
1114
|
-
has_graduated_access: boolean;
|
|
1115
|
-
is_blue_verified: boolean;
|
|
1116
|
-
profile_image_shape: string;
|
|
1117
|
-
legacy: {
|
|
1118
|
-
can_dm: boolean;
|
|
1119
|
-
can_media_tag: boolean;
|
|
1120
|
-
created_at: string;
|
|
1121
|
-
default_profile: boolean;
|
|
1122
|
-
default_profile_image: boolean;
|
|
1123
|
-
description: string;
|
|
1124
|
-
entities: {
|
|
1125
|
-
description: {
|
|
1126
|
-
urls: {
|
|
1127
|
-
display_url: string;
|
|
1128
|
-
expanded_url: string;
|
|
1129
|
-
url: string;
|
|
1130
|
-
indices: number[];
|
|
1131
|
-
}[];
|
|
1132
|
-
};
|
|
1133
|
-
url?: {
|
|
1134
|
-
urls: {
|
|
1135
|
-
display_url: string;
|
|
1136
|
-
expanded_url: string;
|
|
1137
|
-
url: string;
|
|
1138
|
-
indices: number[];
|
|
1139
|
-
}[];
|
|
1140
|
-
};
|
|
1141
|
-
};
|
|
1142
|
-
fast_followers_count: number;
|
|
1143
|
-
favourites_count: number;
|
|
1144
|
-
followers_count: number;
|
|
1145
|
-
friends_count: number;
|
|
1146
|
-
has_custom_timelines: boolean;
|
|
1147
|
-
is_translator: boolean;
|
|
1148
|
-
listed_count: number;
|
|
1149
|
-
location: string;
|
|
1150
|
-
media_count: number;
|
|
1151
1167
|
name: string;
|
|
1152
|
-
normal_followers_count: number;
|
|
1153
|
-
pinned_tweet_ids_str: string[];
|
|
1154
|
-
possibly_sensitive: boolean;
|
|
1155
|
-
profile_image_url_https: string;
|
|
1156
|
-
profile_interstitial_type: string;
|
|
1157
1168
|
screen_name: string;
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
want_retweets: boolean;
|
|
1162
|
-
withheld_in_countries: unknown[];
|
|
1163
|
-
blocking?: boolean;
|
|
1164
|
-
profile_banner_url?: string;
|
|
1165
|
-
url?: string;
|
|
1166
|
-
verified_type?: string;
|
|
1167
|
-
};
|
|
1168
|
-
professional?: {
|
|
1169
|
-
rest_id: string;
|
|
1170
|
-
professional_type: string;
|
|
1171
|
-
category: {
|
|
1172
|
-
id: number;
|
|
1173
|
-
name: string;
|
|
1174
|
-
icon_name: string;
|
|
1175
|
-
}[];
|
|
1176
|
-
};
|
|
1169
|
+
indices: number[];
|
|
1170
|
+
}[];
|
|
1171
|
+
timestamps?: unknown[];
|
|
1177
1172
|
};
|
|
1178
|
-
|
|
1173
|
+
richtext?: {
|
|
1174
|
+
richtext_tags: {
|
|
1175
|
+
from_index: number;
|
|
1176
|
+
to_index: number;
|
|
1177
|
+
richtext_types: string[];
|
|
1178
|
+
}[];
|
|
1179
|
+
};
|
|
1180
|
+
media?: {
|
|
1181
|
+
inline_media: unknown[];
|
|
1182
|
+
};
|
|
1183
|
+
};
|
|
1179
1184
|
};
|
|
1180
1185
|
};
|
|
1181
|
-
unified_card?: {
|
|
1182
|
-
card_fetch_state: string;
|
|
1183
|
-
};
|
|
1184
1186
|
quoted_status_result?: {
|
|
1185
1187
|
result: {
|
|
1186
1188
|
__typename: string;
|
|
@@ -1241,9 +1243,10 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1241
1243
|
translator_type: string;
|
|
1242
1244
|
url?: string;
|
|
1243
1245
|
verified: boolean;
|
|
1246
|
+
verified_type?: string;
|
|
1244
1247
|
want_retweets: boolean;
|
|
1245
1248
|
withheld_in_countries: unknown[];
|
|
1246
|
-
|
|
1249
|
+
following?: boolean;
|
|
1247
1250
|
};
|
|
1248
1251
|
professional?: {
|
|
1249
1252
|
rest_id: string;
|
|
@@ -1254,67 +1257,258 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1254
1257
|
icon_name: string;
|
|
1255
1258
|
}[];
|
|
1256
1259
|
};
|
|
1257
|
-
};
|
|
1258
|
-
};
|
|
1259
|
-
};
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
}[];
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1260
|
+
};
|
|
1261
|
+
};
|
|
1262
|
+
};
|
|
1263
|
+
card?: {
|
|
1264
|
+
rest_id: string;
|
|
1265
|
+
legacy: {
|
|
1266
|
+
binding_values: {
|
|
1267
|
+
key: string;
|
|
1268
|
+
value: {
|
|
1269
|
+
string_value?: string;
|
|
1270
|
+
type: string;
|
|
1271
|
+
image_value?: {
|
|
1272
|
+
height: number;
|
|
1273
|
+
width: number;
|
|
1274
|
+
url: string;
|
|
1275
|
+
};
|
|
1276
|
+
scribe_key?: string;
|
|
1277
|
+
user_value?: {
|
|
1278
|
+
id_str: string;
|
|
1279
|
+
path: unknown[];
|
|
1280
|
+
};
|
|
1281
|
+
image_color_value?: {
|
|
1282
|
+
palette: {
|
|
1283
|
+
rgb: {
|
|
1284
|
+
blue: number;
|
|
1285
|
+
green: number;
|
|
1286
|
+
red: number;
|
|
1287
|
+
};
|
|
1288
|
+
percentage: number;
|
|
1289
|
+
}[];
|
|
1290
|
+
};
|
|
1291
|
+
};
|
|
1292
|
+
}[];
|
|
1293
|
+
card_platform: {
|
|
1294
|
+
platform: {
|
|
1295
|
+
audience: {
|
|
1296
|
+
name: string;
|
|
1297
|
+
};
|
|
1298
|
+
device: {
|
|
1299
|
+
name: string;
|
|
1300
|
+
version: string;
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
};
|
|
1304
|
+
name: string;
|
|
1305
|
+
url: string;
|
|
1306
|
+
user_refs_results: {
|
|
1307
|
+
result: {
|
|
1308
|
+
__typename: string;
|
|
1309
|
+
id: string;
|
|
1310
|
+
rest_id: string;
|
|
1311
|
+
affiliates_highlighted_label: {};
|
|
1312
|
+
has_graduated_access: boolean;
|
|
1313
|
+
is_blue_verified: boolean;
|
|
1314
|
+
profile_image_shape: string;
|
|
1315
|
+
legacy: {
|
|
1316
|
+
blocking?: boolean;
|
|
1317
|
+
can_dm: boolean;
|
|
1318
|
+
can_media_tag: boolean;
|
|
1319
|
+
created_at: string;
|
|
1320
|
+
default_profile: boolean;
|
|
1321
|
+
default_profile_image: boolean;
|
|
1322
|
+
description: string;
|
|
1323
|
+
entities: {
|
|
1324
|
+
description: {
|
|
1325
|
+
urls: {
|
|
1326
|
+
display_url: string;
|
|
1327
|
+
expanded_url: string;
|
|
1328
|
+
url: string;
|
|
1329
|
+
indices: number[];
|
|
1330
|
+
}[];
|
|
1331
|
+
};
|
|
1332
|
+
url: {
|
|
1333
|
+
urls: {
|
|
1334
|
+
display_url: string;
|
|
1335
|
+
expanded_url: string;
|
|
1336
|
+
url: string;
|
|
1337
|
+
indices: number[];
|
|
1338
|
+
}[];
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
fast_followers_count: number;
|
|
1342
|
+
favourites_count: number;
|
|
1343
|
+
followers_count: number;
|
|
1344
|
+
friends_count: number;
|
|
1345
|
+
has_custom_timelines: boolean;
|
|
1346
|
+
is_translator: boolean;
|
|
1347
|
+
listed_count: number;
|
|
1348
|
+
location: string;
|
|
1349
|
+
media_count: number;
|
|
1350
|
+
name: string;
|
|
1351
|
+
normal_followers_count: number;
|
|
1352
|
+
pinned_tweet_ids_str: string[];
|
|
1353
|
+
possibly_sensitive: boolean;
|
|
1354
|
+
profile_banner_url: string;
|
|
1355
|
+
profile_image_url_https: string;
|
|
1356
|
+
profile_interstitial_type: string;
|
|
1357
|
+
screen_name: string;
|
|
1358
|
+
statuses_count: number;
|
|
1359
|
+
translator_type: string;
|
|
1360
|
+
url: string;
|
|
1361
|
+
verified: boolean;
|
|
1362
|
+
verified_type?: string;
|
|
1363
|
+
want_retweets: boolean;
|
|
1364
|
+
withheld_in_countries: unknown[];
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
}[];
|
|
1368
|
+
};
|
|
1369
|
+
};
|
|
1370
|
+
unmention_data?: {
|
|
1371
|
+
hydrate?: {
|
|
1372
|
+
unmentioned_users_results: {
|
|
1373
|
+
rest_id: string;
|
|
1374
|
+
}[];
|
|
1375
|
+
};
|
|
1376
|
+
};
|
|
1377
|
+
unified_card?: {
|
|
1378
|
+
card_fetch_state: string;
|
|
1379
|
+
};
|
|
1380
|
+
edit_control?: {
|
|
1381
|
+
edit_tweet_ids?: string[];
|
|
1382
|
+
editable_until_msecs?: string;
|
|
1383
|
+
is_edit_eligible?: boolean;
|
|
1384
|
+
edits_remaining?: string;
|
|
1385
|
+
initial_tweet_id?: string;
|
|
1386
|
+
edit_control_initial?: {
|
|
1387
|
+
edit_tweet_ids: string[];
|
|
1388
|
+
editable_until_msecs: string;
|
|
1389
|
+
is_edit_eligible: boolean;
|
|
1390
|
+
edits_remaining: string;
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1393
|
+
is_translatable?: boolean;
|
|
1394
|
+
views?: {
|
|
1395
|
+
count?: string;
|
|
1396
|
+
state: string;
|
|
1397
|
+
};
|
|
1398
|
+
source?: string;
|
|
1399
|
+
legacy?: {
|
|
1400
|
+
bookmark_count: number;
|
|
1401
|
+
bookmarked: boolean;
|
|
1402
|
+
created_at: string;
|
|
1403
|
+
conversation_id_str: string;
|
|
1404
|
+
display_text_range: number[];
|
|
1405
|
+
entities: {
|
|
1406
|
+
hashtags: {
|
|
1407
|
+
indices: number[];
|
|
1408
|
+
text: string;
|
|
1409
|
+
}[];
|
|
1410
|
+
symbols: unknown[];
|
|
1411
|
+
timestamps?: unknown[];
|
|
1412
|
+
urls: {
|
|
1413
|
+
display_url: string;
|
|
1414
|
+
expanded_url: string;
|
|
1415
|
+
url: string;
|
|
1416
|
+
indices: number[];
|
|
1417
|
+
}[];
|
|
1418
|
+
user_mentions: {
|
|
1419
|
+
id_str: string;
|
|
1420
|
+
name: string;
|
|
1421
|
+
screen_name: string;
|
|
1422
|
+
indices: number[];
|
|
1423
|
+
}[];
|
|
1424
|
+
media?: {
|
|
1425
|
+
display_url: string;
|
|
1426
|
+
expanded_url: string;
|
|
1427
|
+
id_str: string;
|
|
1428
|
+
indices: number[];
|
|
1429
|
+
media_key: string;
|
|
1430
|
+
media_url_https: string;
|
|
1431
|
+
type: string;
|
|
1432
|
+
url: string;
|
|
1433
|
+
ext_media_availability: {
|
|
1434
|
+
status: string;
|
|
1435
|
+
};
|
|
1436
|
+
features?: {
|
|
1437
|
+
large: {
|
|
1438
|
+
faces: {
|
|
1439
|
+
x: number;
|
|
1440
|
+
y: number;
|
|
1441
|
+
h: number;
|
|
1442
|
+
w: number;
|
|
1443
|
+
}[];
|
|
1444
|
+
};
|
|
1445
|
+
medium: {
|
|
1446
|
+
faces: {
|
|
1447
|
+
x: number;
|
|
1448
|
+
y: number;
|
|
1449
|
+
h: number;
|
|
1450
|
+
w: number;
|
|
1451
|
+
}[];
|
|
1452
|
+
};
|
|
1453
|
+
small: {
|
|
1454
|
+
faces: {
|
|
1455
|
+
x: number;
|
|
1456
|
+
y: number;
|
|
1457
|
+
h: number;
|
|
1458
|
+
w: number;
|
|
1459
|
+
}[];
|
|
1460
|
+
};
|
|
1461
|
+
orig: {
|
|
1462
|
+
faces: {
|
|
1463
|
+
x: number;
|
|
1464
|
+
y: number;
|
|
1465
|
+
h: number;
|
|
1466
|
+
w: number;
|
|
1467
|
+
}[];
|
|
1468
|
+
};
|
|
1469
|
+
all?: {
|
|
1470
|
+
tags: {
|
|
1471
|
+
user_id: string;
|
|
1472
|
+
name: string;
|
|
1473
|
+
screen_name: string;
|
|
1474
|
+
type: string;
|
|
1475
|
+
}[];
|
|
1476
|
+
};
|
|
1477
|
+
};
|
|
1478
|
+
sizes: {
|
|
1479
|
+
large: {
|
|
1480
|
+
h: number;
|
|
1481
|
+
w: number;
|
|
1482
|
+
resize: string;
|
|
1483
|
+
};
|
|
1484
|
+
medium: {
|
|
1485
|
+
h: number;
|
|
1486
|
+
w: number;
|
|
1487
|
+
resize: string;
|
|
1488
|
+
};
|
|
1489
|
+
small: {
|
|
1490
|
+
h: number;
|
|
1491
|
+
w: number;
|
|
1492
|
+
resize: string;
|
|
1493
|
+
};
|
|
1494
|
+
thumb: {
|
|
1495
|
+
h: number;
|
|
1496
|
+
w: number;
|
|
1497
|
+
resize: string;
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1500
|
+
original_info: {
|
|
1501
|
+
height: number;
|
|
1502
|
+
width: number;
|
|
1503
|
+
focus_rects: {
|
|
1504
|
+
x: number;
|
|
1505
|
+
y: number;
|
|
1506
|
+
w: number;
|
|
1507
|
+
h: number;
|
|
1508
|
+
}[];
|
|
1509
|
+
};
|
|
1313
1510
|
additional_media_info?: {
|
|
1314
1511
|
monetizable: boolean;
|
|
1315
|
-
title?: string;
|
|
1316
|
-
description?: string;
|
|
1317
|
-
embeddable?: boolean;
|
|
1318
1512
|
source_user?: {
|
|
1319
1513
|
user_results: {
|
|
1320
1514
|
result: {
|
|
@@ -1322,7 +1516,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1322
1516
|
id: string;
|
|
1323
1517
|
rest_id: string;
|
|
1324
1518
|
affiliates_highlighted_label: {
|
|
1325
|
-
label
|
|
1519
|
+
label?: {
|
|
1326
1520
|
url: {
|
|
1327
1521
|
url: string;
|
|
1328
1522
|
urlType: string;
|
|
@@ -1374,7 +1568,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1374
1568
|
media_count: number;
|
|
1375
1569
|
name: string;
|
|
1376
1570
|
normal_followers_count: number;
|
|
1377
|
-
pinned_tweet_ids_str:
|
|
1571
|
+
pinned_tweet_ids_str: string[];
|
|
1378
1572
|
possibly_sensitive: boolean;
|
|
1379
1573
|
profile_banner_url: string;
|
|
1380
1574
|
profile_image_url_https: string;
|
|
@@ -1384,48 +1578,16 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1384
1578
|
translator_type: string;
|
|
1385
1579
|
url: string;
|
|
1386
1580
|
verified: boolean;
|
|
1387
|
-
verified_type: string;
|
|
1388
1581
|
want_retweets: boolean;
|
|
1389
1582
|
withheld_in_countries: unknown[];
|
|
1583
|
+
verified_type?: string;
|
|
1390
1584
|
};
|
|
1391
1585
|
};
|
|
1392
1586
|
};
|
|
1393
1587
|
};
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
};
|
|
1398
|
-
sizes: {
|
|
1399
|
-
large: {
|
|
1400
|
-
h: number;
|
|
1401
|
-
w: number;
|
|
1402
|
-
resize: string;
|
|
1403
|
-
};
|
|
1404
|
-
medium: {
|
|
1405
|
-
h: number;
|
|
1406
|
-
w: number;
|
|
1407
|
-
resize: string;
|
|
1408
|
-
};
|
|
1409
|
-
small: {
|
|
1410
|
-
h: number;
|
|
1411
|
-
w: number;
|
|
1412
|
-
resize: string;
|
|
1413
|
-
};
|
|
1414
|
-
thumb: {
|
|
1415
|
-
h: number;
|
|
1416
|
-
w: number;
|
|
1417
|
-
resize: string;
|
|
1418
|
-
};
|
|
1419
|
-
};
|
|
1420
|
-
original_info: {
|
|
1421
|
-
height: number;
|
|
1422
|
-
width: number;
|
|
1423
|
-
focus_rects: {
|
|
1424
|
-
x: number;
|
|
1425
|
-
y: number;
|
|
1426
|
-
w: number;
|
|
1427
|
-
h: number;
|
|
1428
|
-
}[];
|
|
1588
|
+
title?: string;
|
|
1589
|
+
description?: string;
|
|
1590
|
+
embeddable?: boolean;
|
|
1429
1591
|
};
|
|
1430
1592
|
video_info?: {
|
|
1431
1593
|
aspect_ratio: number[];
|
|
@@ -1436,15 +1598,41 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1436
1598
|
url: string;
|
|
1437
1599
|
}[];
|
|
1438
1600
|
};
|
|
1601
|
+
source_status_id_str?: string;
|
|
1602
|
+
source_user_id_str?: string;
|
|
1603
|
+
ext_alt_text?: string;
|
|
1604
|
+
}[];
|
|
1605
|
+
};
|
|
1606
|
+
favorite_count: number;
|
|
1607
|
+
favorited: boolean;
|
|
1608
|
+
full_text: string;
|
|
1609
|
+
in_reply_to_screen_name?: string;
|
|
1610
|
+
in_reply_to_status_id_str?: string;
|
|
1611
|
+
in_reply_to_user_id_str?: string;
|
|
1612
|
+
is_quote_status: boolean;
|
|
1613
|
+
lang: string;
|
|
1614
|
+
possibly_sensitive?: boolean;
|
|
1615
|
+
possibly_sensitive_editable?: boolean;
|
|
1616
|
+
quote_count: number;
|
|
1617
|
+
reply_count: number;
|
|
1618
|
+
retweet_count: number;
|
|
1619
|
+
retweeted: boolean;
|
|
1620
|
+
user_id_str: string;
|
|
1621
|
+
id_str: string;
|
|
1622
|
+
extended_entities?: {
|
|
1623
|
+
media: {
|
|
1624
|
+
display_url: string;
|
|
1625
|
+
expanded_url: string;
|
|
1626
|
+
id_str: string;
|
|
1627
|
+
indices: number[];
|
|
1628
|
+
media_key: string;
|
|
1629
|
+
media_url_https: string;
|
|
1630
|
+
type: string;
|
|
1631
|
+
url: string;
|
|
1632
|
+
ext_media_availability: {
|
|
1633
|
+
status: string;
|
|
1634
|
+
};
|
|
1439
1635
|
features?: {
|
|
1440
|
-
all?: {
|
|
1441
|
-
tags: {
|
|
1442
|
-
user_id: string;
|
|
1443
|
-
name: string;
|
|
1444
|
-
screen_name: string;
|
|
1445
|
-
type: string;
|
|
1446
|
-
}[];
|
|
1447
|
-
};
|
|
1448
1636
|
large: {
|
|
1449
1637
|
faces: {
|
|
1450
1638
|
x: number;
|
|
@@ -1477,44 +1665,49 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1477
1665
|
w: number;
|
|
1478
1666
|
}[];
|
|
1479
1667
|
};
|
|
1668
|
+
all?: {
|
|
1669
|
+
tags: {
|
|
1670
|
+
user_id: string;
|
|
1671
|
+
name: string;
|
|
1672
|
+
screen_name: string;
|
|
1673
|
+
type: string;
|
|
1674
|
+
}[];
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
sizes: {
|
|
1678
|
+
large: {
|
|
1679
|
+
h: number;
|
|
1680
|
+
w: number;
|
|
1681
|
+
resize: string;
|
|
1682
|
+
};
|
|
1683
|
+
medium: {
|
|
1684
|
+
h: number;
|
|
1685
|
+
w: number;
|
|
1686
|
+
resize: string;
|
|
1687
|
+
};
|
|
1688
|
+
small: {
|
|
1689
|
+
h: number;
|
|
1690
|
+
w: number;
|
|
1691
|
+
resize: string;
|
|
1692
|
+
};
|
|
1693
|
+
thumb: {
|
|
1694
|
+
h: number;
|
|
1695
|
+
w: number;
|
|
1696
|
+
resize: string;
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
original_info: {
|
|
1700
|
+
height: number;
|
|
1701
|
+
width: number;
|
|
1702
|
+
focus_rects: {
|
|
1703
|
+
x: number;
|
|
1704
|
+
y: number;
|
|
1705
|
+
w: number;
|
|
1706
|
+
h: number;
|
|
1707
|
+
}[];
|
|
1480
1708
|
};
|
|
1481
|
-
source_status_id_str?: string;
|
|
1482
|
-
source_user_id_str?: string;
|
|
1483
|
-
ext_alt_text?: string;
|
|
1484
|
-
}[];
|
|
1485
|
-
};
|
|
1486
|
-
favorite_count: number;
|
|
1487
|
-
favorited: boolean;
|
|
1488
|
-
full_text: string;
|
|
1489
|
-
is_quote_status: boolean;
|
|
1490
|
-
lang: string;
|
|
1491
|
-
quote_count: number;
|
|
1492
|
-
quoted_status_id_str?: string;
|
|
1493
|
-
quoted_status_permalink?: {
|
|
1494
|
-
url: string;
|
|
1495
|
-
expanded: string;
|
|
1496
|
-
display: string;
|
|
1497
|
-
};
|
|
1498
|
-
reply_count: number;
|
|
1499
|
-
retweet_count: number;
|
|
1500
|
-
retweeted: boolean;
|
|
1501
|
-
user_id_str: string;
|
|
1502
|
-
id_str: string;
|
|
1503
|
-
extended_entities?: {
|
|
1504
|
-
media: {
|
|
1505
|
-
display_url: string;
|
|
1506
|
-
expanded_url: string;
|
|
1507
|
-
id_str: string;
|
|
1508
|
-
indices: number[];
|
|
1509
|
-
media_key: string;
|
|
1510
|
-
media_url_https: string;
|
|
1511
|
-
type: string;
|
|
1512
|
-
url: string;
|
|
1513
1709
|
additional_media_info?: {
|
|
1514
1710
|
monetizable: boolean;
|
|
1515
|
-
title?: string;
|
|
1516
|
-
description?: string;
|
|
1517
|
-
embeddable?: boolean;
|
|
1518
1711
|
source_user?: {
|
|
1519
1712
|
user_results: {
|
|
1520
1713
|
result: {
|
|
@@ -1522,7 +1715,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1522
1715
|
id: string;
|
|
1523
1716
|
rest_id: string;
|
|
1524
1717
|
affiliates_highlighted_label: {
|
|
1525
|
-
label
|
|
1718
|
+
label?: {
|
|
1526
1719
|
url: {
|
|
1527
1720
|
url: string;
|
|
1528
1721
|
urlType: string;
|
|
@@ -1574,58 +1767,26 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1574
1767
|
media_count: number;
|
|
1575
1768
|
name: string;
|
|
1576
1769
|
normal_followers_count: number;
|
|
1577
|
-
pinned_tweet_ids_str:
|
|
1770
|
+
pinned_tweet_ids_str: string[];
|
|
1578
1771
|
possibly_sensitive: boolean;
|
|
1579
1772
|
profile_banner_url: string;
|
|
1580
1773
|
profile_image_url_https: string;
|
|
1581
1774
|
profile_interstitial_type: string;
|
|
1582
1775
|
screen_name: string;
|
|
1583
1776
|
statuses_count: number;
|
|
1584
|
-
translator_type: string;
|
|
1585
|
-
url: string;
|
|
1586
|
-
verified: boolean;
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
};
|
|
1591
|
-
};
|
|
1592
|
-
};
|
|
1593
|
-
};
|
|
1594
|
-
};
|
|
1595
|
-
ext_media_availability: {
|
|
1596
|
-
status: string;
|
|
1597
|
-
};
|
|
1598
|
-
sizes: {
|
|
1599
|
-
large: {
|
|
1600
|
-
h: number;
|
|
1601
|
-
w: number;
|
|
1602
|
-
resize: string;
|
|
1603
|
-
};
|
|
1604
|
-
medium: {
|
|
1605
|
-
h: number;
|
|
1606
|
-
w: number;
|
|
1607
|
-
resize: string;
|
|
1608
|
-
};
|
|
1609
|
-
small: {
|
|
1610
|
-
h: number;
|
|
1611
|
-
w: number;
|
|
1612
|
-
resize: string;
|
|
1613
|
-
};
|
|
1614
|
-
thumb: {
|
|
1615
|
-
h: number;
|
|
1616
|
-
w: number;
|
|
1617
|
-
resize: string;
|
|
1777
|
+
translator_type: string;
|
|
1778
|
+
url: string;
|
|
1779
|
+
verified: boolean;
|
|
1780
|
+
want_retweets: boolean;
|
|
1781
|
+
withheld_in_countries: unknown[];
|
|
1782
|
+
verified_type?: string;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1618
1786
|
};
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
width: number;
|
|
1623
|
-
focus_rects: {
|
|
1624
|
-
x: number;
|
|
1625
|
-
y: number;
|
|
1626
|
-
w: number;
|
|
1627
|
-
h: number;
|
|
1628
|
-
}[];
|
|
1787
|
+
title?: string;
|
|
1788
|
+
description?: string;
|
|
1789
|
+
embeddable?: boolean;
|
|
1629
1790
|
};
|
|
1630
1791
|
video_info?: {
|
|
1631
1792
|
aspect_ratio: number[];
|
|
@@ -1636,167 +1797,16 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1636
1797
|
url: string;
|
|
1637
1798
|
}[];
|
|
1638
1799
|
};
|
|
1639
|
-
features?: {
|
|
1640
|
-
all?: {
|
|
1641
|
-
tags: {
|
|
1642
|
-
user_id: string;
|
|
1643
|
-
name: string;
|
|
1644
|
-
screen_name: string;
|
|
1645
|
-
type: string;
|
|
1646
|
-
}[];
|
|
1647
|
-
};
|
|
1648
|
-
large: {
|
|
1649
|
-
faces: {
|
|
1650
|
-
x: number;
|
|
1651
|
-
y: number;
|
|
1652
|
-
h: number;
|
|
1653
|
-
w: number;
|
|
1654
|
-
}[];
|
|
1655
|
-
};
|
|
1656
|
-
medium: {
|
|
1657
|
-
faces: {
|
|
1658
|
-
x: number;
|
|
1659
|
-
y: number;
|
|
1660
|
-
h: number;
|
|
1661
|
-
w: number;
|
|
1662
|
-
}[];
|
|
1663
|
-
};
|
|
1664
|
-
small: {
|
|
1665
|
-
faces: {
|
|
1666
|
-
x: number;
|
|
1667
|
-
y: number;
|
|
1668
|
-
h: number;
|
|
1669
|
-
w: number;
|
|
1670
|
-
}[];
|
|
1671
|
-
};
|
|
1672
|
-
orig: {
|
|
1673
|
-
faces: {
|
|
1674
|
-
x: number;
|
|
1675
|
-
y: number;
|
|
1676
|
-
h: number;
|
|
1677
|
-
w: number;
|
|
1678
|
-
}[];
|
|
1679
|
-
};
|
|
1680
|
-
};
|
|
1681
1800
|
source_status_id_str?: string;
|
|
1682
1801
|
source_user_id_str?: string;
|
|
1683
1802
|
ext_alt_text?: string;
|
|
1684
1803
|
}[];
|
|
1685
1804
|
};
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
in_reply_to_screen_name?: string;
|
|
1689
|
-
in_reply_to_status_id_str?: string;
|
|
1690
|
-
in_reply_to_user_id_str?: string;
|
|
1691
|
-
};
|
|
1692
|
-
unified_card?: {
|
|
1693
|
-
card_fetch_state: string;
|
|
1694
|
-
};
|
|
1695
|
-
card?: {
|
|
1696
|
-
rest_id: string;
|
|
1697
|
-
legacy: {
|
|
1698
|
-
binding_values: {
|
|
1699
|
-
key: string;
|
|
1700
|
-
value: {
|
|
1701
|
-
image_value?: {
|
|
1702
|
-
height: number;
|
|
1703
|
-
width: number;
|
|
1704
|
-
url: string;
|
|
1705
|
-
};
|
|
1706
|
-
type: string;
|
|
1707
|
-
string_value?: string;
|
|
1708
|
-
scribe_key?: string;
|
|
1709
|
-
user_value?: {
|
|
1710
|
-
id_str: string;
|
|
1711
|
-
path: unknown[];
|
|
1712
|
-
};
|
|
1713
|
-
image_color_value?: {
|
|
1714
|
-
palette: {
|
|
1715
|
-
rgb: {
|
|
1716
|
-
blue: number;
|
|
1717
|
-
green: number;
|
|
1718
|
-
red: number;
|
|
1719
|
-
};
|
|
1720
|
-
percentage: number;
|
|
1721
|
-
}[];
|
|
1722
|
-
};
|
|
1723
|
-
};
|
|
1724
|
-
}[];
|
|
1725
|
-
card_platform: {
|
|
1726
|
-
platform: {
|
|
1727
|
-
audience: {
|
|
1728
|
-
name: string;
|
|
1729
|
-
};
|
|
1730
|
-
device: {
|
|
1731
|
-
name: string;
|
|
1732
|
-
version: string;
|
|
1733
|
-
};
|
|
1734
|
-
};
|
|
1735
|
-
};
|
|
1736
|
-
name: string;
|
|
1805
|
+
quoted_status_id_str?: string;
|
|
1806
|
+
quoted_status_permalink?: {
|
|
1737
1807
|
url: string;
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
__typename: string;
|
|
1741
|
-
id: string;
|
|
1742
|
-
rest_id: string;
|
|
1743
|
-
affiliates_highlighted_label: {};
|
|
1744
|
-
has_graduated_access: boolean;
|
|
1745
|
-
is_blue_verified: boolean;
|
|
1746
|
-
profile_image_shape: string;
|
|
1747
|
-
legacy: {
|
|
1748
|
-
can_dm: boolean;
|
|
1749
|
-
can_media_tag: boolean;
|
|
1750
|
-
created_at: string;
|
|
1751
|
-
default_profile: boolean;
|
|
1752
|
-
default_profile_image: boolean;
|
|
1753
|
-
description: string;
|
|
1754
|
-
entities: {
|
|
1755
|
-
description: {
|
|
1756
|
-
urls: {
|
|
1757
|
-
display_url: string;
|
|
1758
|
-
expanded_url: string;
|
|
1759
|
-
url: string;
|
|
1760
|
-
indices: number[];
|
|
1761
|
-
}[];
|
|
1762
|
-
};
|
|
1763
|
-
url: {
|
|
1764
|
-
urls: {
|
|
1765
|
-
display_url: string;
|
|
1766
|
-
expanded_url: string;
|
|
1767
|
-
url: string;
|
|
1768
|
-
indices: number[];
|
|
1769
|
-
}[];
|
|
1770
|
-
};
|
|
1771
|
-
};
|
|
1772
|
-
fast_followers_count: number;
|
|
1773
|
-
favourites_count: number;
|
|
1774
|
-
followers_count: number;
|
|
1775
|
-
friends_count: number;
|
|
1776
|
-
has_custom_timelines: boolean;
|
|
1777
|
-
is_translator: boolean;
|
|
1778
|
-
listed_count: number;
|
|
1779
|
-
location: string;
|
|
1780
|
-
media_count: number;
|
|
1781
|
-
name: string;
|
|
1782
|
-
normal_followers_count: number;
|
|
1783
|
-
pinned_tweet_ids_str: string[];
|
|
1784
|
-
possibly_sensitive: boolean;
|
|
1785
|
-
profile_banner_url: string;
|
|
1786
|
-
profile_image_url_https: string;
|
|
1787
|
-
profile_interstitial_type: string;
|
|
1788
|
-
screen_name: string;
|
|
1789
|
-
statuses_count: number;
|
|
1790
|
-
translator_type: string;
|
|
1791
|
-
url: string;
|
|
1792
|
-
verified: boolean;
|
|
1793
|
-
want_retweets: boolean;
|
|
1794
|
-
withheld_in_countries: unknown[];
|
|
1795
|
-
blocking?: boolean;
|
|
1796
|
-
verified_type?: string;
|
|
1797
|
-
};
|
|
1798
|
-
};
|
|
1799
|
-
}[];
|
|
1808
|
+
expanded: string;
|
|
1809
|
+
display: string;
|
|
1800
1810
|
};
|
|
1801
1811
|
};
|
|
1802
1812
|
tweet?: {
|
|
@@ -1849,16 +1859,16 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1849
1859
|
normal_followers_count: number;
|
|
1850
1860
|
pinned_tweet_ids_str: string[];
|
|
1851
1861
|
possibly_sensitive: boolean;
|
|
1852
|
-
profile_banner_url
|
|
1862
|
+
profile_banner_url?: string;
|
|
1853
1863
|
profile_image_url_https: string;
|
|
1854
1864
|
profile_interstitial_type: string;
|
|
1855
1865
|
screen_name: string;
|
|
1856
1866
|
statuses_count: number;
|
|
1857
1867
|
translator_type: string;
|
|
1868
|
+
url?: string;
|
|
1858
1869
|
verified: boolean;
|
|
1859
1870
|
want_retweets: boolean;
|
|
1860
1871
|
withheld_in_countries: unknown[];
|
|
1861
|
-
url?: string;
|
|
1862
1872
|
};
|
|
1863
1873
|
professional?: {
|
|
1864
1874
|
rest_id: string;
|
|
@@ -1885,6 +1895,12 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1885
1895
|
state: string;
|
|
1886
1896
|
};
|
|
1887
1897
|
source: string;
|
|
1898
|
+
quotedRefResult?: {
|
|
1899
|
+
result?: {
|
|
1900
|
+
__typename: string;
|
|
1901
|
+
rest_id: string;
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1888
1904
|
legacy: {
|
|
1889
1905
|
bookmark_count: number;
|
|
1890
1906
|
bookmarked: boolean;
|
|
@@ -1904,6 +1920,10 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1904
1920
|
display_text_range: number[];
|
|
1905
1921
|
entities: {
|
|
1906
1922
|
hashtags: unknown[];
|
|
1923
|
+
symbols: unknown[];
|
|
1924
|
+
timestamps: unknown[];
|
|
1925
|
+
urls: unknown[];
|
|
1926
|
+
user_mentions: unknown[];
|
|
1907
1927
|
media?: {
|
|
1908
1928
|
display_url: string;
|
|
1909
1929
|
expanded_url: string;
|
|
@@ -1913,12 +1933,31 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1913
1933
|
media_url_https: string;
|
|
1914
1934
|
type: string;
|
|
1915
1935
|
url: string;
|
|
1916
|
-
additional_media_info?: {
|
|
1917
|
-
monetizable: boolean;
|
|
1918
|
-
};
|
|
1919
1936
|
ext_media_availability: {
|
|
1920
1937
|
status: string;
|
|
1921
1938
|
};
|
|
1939
|
+
features?: {
|
|
1940
|
+
all?: {
|
|
1941
|
+
tags: {
|
|
1942
|
+
user_id: string;
|
|
1943
|
+
name: string;
|
|
1944
|
+
screen_name: string;
|
|
1945
|
+
type: string;
|
|
1946
|
+
}[];
|
|
1947
|
+
};
|
|
1948
|
+
large: {
|
|
1949
|
+
faces: unknown[];
|
|
1950
|
+
};
|
|
1951
|
+
medium: {
|
|
1952
|
+
faces: unknown[];
|
|
1953
|
+
};
|
|
1954
|
+
small: {
|
|
1955
|
+
faces: unknown[];
|
|
1956
|
+
};
|
|
1957
|
+
orig: {
|
|
1958
|
+
faces: unknown[];
|
|
1959
|
+
};
|
|
1960
|
+
};
|
|
1922
1961
|
sizes: {
|
|
1923
1962
|
large: {
|
|
1924
1963
|
h: number;
|
|
@@ -1951,6 +1990,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1951
1990
|
h: number;
|
|
1952
1991
|
}[];
|
|
1953
1992
|
};
|
|
1993
|
+
additional_media_info?: {
|
|
1994
|
+
monetizable: boolean;
|
|
1995
|
+
};
|
|
1954
1996
|
video_info?: {
|
|
1955
1997
|
aspect_ratio: number[];
|
|
1956
1998
|
duration_millis: number;
|
|
@@ -1960,26 +2002,26 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1960
2002
|
bitrate?: number;
|
|
1961
2003
|
}[];
|
|
1962
2004
|
};
|
|
1963
|
-
features?: {
|
|
1964
|
-
large: {
|
|
1965
|
-
faces: unknown[];
|
|
1966
|
-
};
|
|
1967
|
-
medium: {
|
|
1968
|
-
faces: unknown[];
|
|
1969
|
-
};
|
|
1970
|
-
small: {
|
|
1971
|
-
faces: unknown[];
|
|
1972
|
-
};
|
|
1973
|
-
orig: {
|
|
1974
|
-
faces: unknown[];
|
|
1975
|
-
};
|
|
1976
|
-
};
|
|
1977
2005
|
}[];
|
|
1978
|
-
symbols: unknown[];
|
|
1979
|
-
timestamps: unknown[];
|
|
1980
|
-
urls: unknown[];
|
|
1981
|
-
user_mentions: unknown[];
|
|
1982
2006
|
};
|
|
2007
|
+
favorite_count: number;
|
|
2008
|
+
favorited: boolean;
|
|
2009
|
+
full_text: string;
|
|
2010
|
+
is_quote_status: boolean;
|
|
2011
|
+
lang: string;
|
|
2012
|
+
limited_actions: string;
|
|
2013
|
+
quote_count: number;
|
|
2014
|
+
quoted_status_id_str?: string;
|
|
2015
|
+
quoted_status_permalink?: {
|
|
2016
|
+
url: string;
|
|
2017
|
+
expanded: string;
|
|
2018
|
+
display: string;
|
|
2019
|
+
};
|
|
2020
|
+
reply_count: number;
|
|
2021
|
+
retweet_count: number;
|
|
2022
|
+
retweeted: boolean;
|
|
2023
|
+
user_id_str: string;
|
|
2024
|
+
id_str: string;
|
|
1983
2025
|
extended_entities?: {
|
|
1984
2026
|
media: {
|
|
1985
2027
|
display_url: string;
|
|
@@ -1988,14 +2030,33 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
1988
2030
|
indices: number[];
|
|
1989
2031
|
media_key: string;
|
|
1990
2032
|
media_url_https: string;
|
|
1991
|
-
type: string;
|
|
1992
|
-
url: string;
|
|
1993
|
-
additional_media_info?: {
|
|
1994
|
-
monetizable: boolean;
|
|
1995
|
-
};
|
|
2033
|
+
type: string;
|
|
2034
|
+
url: string;
|
|
1996
2035
|
ext_media_availability: {
|
|
1997
2036
|
status: string;
|
|
1998
2037
|
};
|
|
2038
|
+
features?: {
|
|
2039
|
+
all?: {
|
|
2040
|
+
tags: {
|
|
2041
|
+
user_id: string;
|
|
2042
|
+
name: string;
|
|
2043
|
+
screen_name: string;
|
|
2044
|
+
type: string;
|
|
2045
|
+
}[];
|
|
2046
|
+
};
|
|
2047
|
+
large: {
|
|
2048
|
+
faces: unknown[];
|
|
2049
|
+
};
|
|
2050
|
+
medium: {
|
|
2051
|
+
faces: unknown[];
|
|
2052
|
+
};
|
|
2053
|
+
small: {
|
|
2054
|
+
faces: unknown[];
|
|
2055
|
+
};
|
|
2056
|
+
orig: {
|
|
2057
|
+
faces: unknown[];
|
|
2058
|
+
};
|
|
2059
|
+
};
|
|
1999
2060
|
sizes: {
|
|
2000
2061
|
large: {
|
|
2001
2062
|
h: number;
|
|
@@ -2028,6 +2089,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2028
2089
|
h: number;
|
|
2029
2090
|
}[];
|
|
2030
2091
|
};
|
|
2092
|
+
additional_media_info?: {
|
|
2093
|
+
monetizable: boolean;
|
|
2094
|
+
};
|
|
2031
2095
|
video_info?: {
|
|
2032
2096
|
aspect_ratio: number[];
|
|
2033
2097
|
duration_millis: number;
|
|
@@ -2037,44 +2101,11 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2037
2101
|
bitrate?: number;
|
|
2038
2102
|
}[];
|
|
2039
2103
|
};
|
|
2040
|
-
features?: {
|
|
2041
|
-
large: {
|
|
2042
|
-
faces: unknown[];
|
|
2043
|
-
};
|
|
2044
|
-
medium: {
|
|
2045
|
-
faces: unknown[];
|
|
2046
|
-
};
|
|
2047
|
-
small: {
|
|
2048
|
-
faces: unknown[];
|
|
2049
|
-
};
|
|
2050
|
-
orig: {
|
|
2051
|
-
faces: unknown[];
|
|
2052
|
-
};
|
|
2053
|
-
};
|
|
2054
2104
|
}[];
|
|
2055
2105
|
};
|
|
2056
|
-
favorite_count: number;
|
|
2057
|
-
favorited: boolean;
|
|
2058
|
-
full_text: string;
|
|
2059
|
-
is_quote_status: boolean;
|
|
2060
|
-
lang: string;
|
|
2061
|
-
limited_actions: string;
|
|
2062
2106
|
possibly_sensitive?: boolean;
|
|
2063
2107
|
possibly_sensitive_editable?: boolean;
|
|
2064
|
-
quote_count: number;
|
|
2065
|
-
reply_count: number;
|
|
2066
|
-
retweet_count: number;
|
|
2067
|
-
retweeted: boolean;
|
|
2068
|
-
user_id_str: string;
|
|
2069
|
-
id_str: string;
|
|
2070
|
-
quoted_status_id_str?: string;
|
|
2071
|
-
quoted_status_permalink?: {
|
|
2072
|
-
url: string;
|
|
2073
|
-
expanded: string;
|
|
2074
|
-
display: string;
|
|
2075
|
-
};
|
|
2076
2108
|
};
|
|
2077
|
-
quotedRefResult?: {};
|
|
2078
2109
|
};
|
|
2079
2110
|
limitedActionResults?: {
|
|
2080
2111
|
limited_actions: {
|
|
@@ -2093,45 +2124,19 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2093
2124
|
};
|
|
2094
2125
|
}[];
|
|
2095
2126
|
};
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
note_tweet_results: {
|
|
2101
|
-
result: {
|
|
2102
|
-
id: string;
|
|
2103
|
-
text: string;
|
|
2104
|
-
entity_set: {
|
|
2105
|
-
hashtags: {
|
|
2106
|
-
indices: number[];
|
|
2107
|
-
text: string;
|
|
2108
|
-
}[];
|
|
2109
|
-
symbols: unknown[];
|
|
2110
|
-
urls: {
|
|
2111
|
-
display_url: string;
|
|
2112
|
-
expanded_url: string;
|
|
2113
|
-
url: string;
|
|
2114
|
-
indices: number[];
|
|
2115
|
-
}[];
|
|
2116
|
-
user_mentions: {
|
|
2117
|
-
id_str: string;
|
|
2118
|
-
name: string;
|
|
2119
|
-
screen_name: string;
|
|
2120
|
-
indices: number[];
|
|
2121
|
-
}[];
|
|
2122
|
-
timestamps?: unknown[];
|
|
2123
|
-
};
|
|
2124
|
-
richtext?: {
|
|
2125
|
-
richtext_tags: {
|
|
2126
|
-
from_index: number;
|
|
2127
|
-
to_index: number;
|
|
2128
|
-
richtext_types: string[];
|
|
2129
|
-
}[];
|
|
2130
|
-
};
|
|
2131
|
-
media?: {
|
|
2132
|
-
inline_media: unknown[];
|
|
2127
|
+
quotedRefResult?: {
|
|
2128
|
+
result: {
|
|
2129
|
+
__typename: string;
|
|
2130
|
+
rest_id: string;
|
|
2133
2131
|
};
|
|
2134
2132
|
};
|
|
2133
|
+
previous_counts?: {
|
|
2134
|
+
bookmark_count: number;
|
|
2135
|
+
favorite_count: number;
|
|
2136
|
+
quote_count: number;
|
|
2137
|
+
reply_count: number;
|
|
2138
|
+
retweet_count: number;
|
|
2139
|
+
};
|
|
2135
2140
|
};
|
|
2136
2141
|
};
|
|
2137
2142
|
previous_counts?: {
|
|
@@ -2182,131 +2187,201 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2182
2187
|
};
|
|
2183
2188
|
};
|
|
2184
2189
|
};
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2190
|
+
extended_entities?: {
|
|
2191
|
+
media: {
|
|
2192
|
+
display_url: string;
|
|
2193
|
+
expanded_url: string;
|
|
2194
|
+
id_str: string;
|
|
2195
|
+
indices: number[];
|
|
2196
|
+
media_key: string;
|
|
2197
|
+
media_url_https: string;
|
|
2198
|
+
source_status_id_str?: string;
|
|
2199
|
+
source_user_id_str?: string;
|
|
2200
|
+
type: string;
|
|
2201
|
+
url: string;
|
|
2202
|
+
additional_media_info?: {
|
|
2203
|
+
monetizable: boolean;
|
|
2204
|
+
source_user?: {
|
|
2205
|
+
user_results: {
|
|
2206
|
+
result: {
|
|
2207
|
+
__typename: string;
|
|
2208
|
+
id: string;
|
|
2209
|
+
rest_id: string;
|
|
2210
|
+
affiliates_highlighted_label: {};
|
|
2211
|
+
has_graduated_access: boolean;
|
|
2212
|
+
is_blue_verified: boolean;
|
|
2213
|
+
profile_image_shape: string;
|
|
2214
|
+
legacy: {
|
|
2215
|
+
can_dm: boolean;
|
|
2216
|
+
can_media_tag: boolean;
|
|
2217
|
+
created_at: string;
|
|
2218
|
+
default_profile: boolean;
|
|
2219
|
+
default_profile_image: boolean;
|
|
2220
|
+
description: string;
|
|
2221
|
+
entities: {
|
|
2222
|
+
description: {
|
|
2223
|
+
urls: {
|
|
2224
|
+
display_url: string;
|
|
2225
|
+
expanded_url: string;
|
|
2226
|
+
url: string;
|
|
2227
|
+
indices: number[];
|
|
2228
|
+
}[];
|
|
2229
|
+
};
|
|
2230
|
+
url?: {
|
|
2231
|
+
urls: {
|
|
2232
|
+
display_url: string;
|
|
2233
|
+
expanded_url: string;
|
|
2234
|
+
url: string;
|
|
2235
|
+
indices: number[];
|
|
2236
|
+
}[];
|
|
2237
|
+
};
|
|
2238
|
+
};
|
|
2239
|
+
fast_followers_count: number;
|
|
2240
|
+
favourites_count: number;
|
|
2241
|
+
followers_count: number;
|
|
2242
|
+
friends_count: number;
|
|
2243
|
+
has_custom_timelines: boolean;
|
|
2244
|
+
is_translator: boolean;
|
|
2245
|
+
listed_count: number;
|
|
2246
|
+
location: string;
|
|
2247
|
+
media_count: number;
|
|
2248
|
+
name: string;
|
|
2249
|
+
normal_followers_count: number;
|
|
2250
|
+
pinned_tweet_ids_str: string[];
|
|
2251
|
+
possibly_sensitive: boolean;
|
|
2252
|
+
profile_banner_url?: string;
|
|
2253
|
+
profile_image_url_https: string;
|
|
2254
|
+
profile_interstitial_type: string;
|
|
2255
|
+
screen_name: string;
|
|
2256
|
+
statuses_count: number;
|
|
2257
|
+
translator_type: string;
|
|
2258
|
+
url?: string;
|
|
2259
|
+
verified: boolean;
|
|
2260
|
+
want_retweets: boolean;
|
|
2261
|
+
withheld_in_countries: unknown[];
|
|
2262
|
+
blocking?: boolean;
|
|
2263
|
+
verified_type?: string;
|
|
2264
|
+
};
|
|
2265
|
+
professional?: {
|
|
2266
|
+
rest_id: string;
|
|
2267
|
+
professional_type: string;
|
|
2268
|
+
category: {
|
|
2269
|
+
id: number;
|
|
2270
|
+
name: string;
|
|
2271
|
+
icon_name: string;
|
|
2272
|
+
}[];
|
|
2273
|
+
};
|
|
2274
|
+
};
|
|
2275
|
+
};
|
|
2276
|
+
};
|
|
2277
|
+
title?: string;
|
|
2278
|
+
description?: string;
|
|
2279
|
+
embeddable?: boolean;
|
|
2280
|
+
call_to_actions?: {
|
|
2281
|
+
visit_site: {
|
|
2282
|
+
url: string;
|
|
2283
|
+
};
|
|
2284
|
+
};
|
|
2285
|
+
};
|
|
2286
|
+
ext_media_availability: {
|
|
2287
|
+
status: string;
|
|
2288
|
+
};
|
|
2289
|
+
sizes: {
|
|
2290
|
+
large: {
|
|
2291
|
+
h: number;
|
|
2292
|
+
w: number;
|
|
2293
|
+
resize: string;
|
|
2294
|
+
};
|
|
2295
|
+
medium: {
|
|
2296
|
+
h: number;
|
|
2297
|
+
w: number;
|
|
2298
|
+
resize: string;
|
|
2299
|
+
};
|
|
2300
|
+
small: {
|
|
2301
|
+
h: number;
|
|
2302
|
+
w: number;
|
|
2303
|
+
resize: string;
|
|
2304
|
+
};
|
|
2305
|
+
thumb: {
|
|
2306
|
+
h: number;
|
|
2307
|
+
w: number;
|
|
2308
|
+
resize: string;
|
|
2309
|
+
};
|
|
2310
|
+
};
|
|
2311
|
+
original_info: {
|
|
2312
|
+
height: number;
|
|
2313
|
+
width: number;
|
|
2314
|
+
focus_rects: {
|
|
2315
|
+
x: number;
|
|
2316
|
+
y: number;
|
|
2317
|
+
w: number;
|
|
2318
|
+
h: number;
|
|
2319
|
+
}[];
|
|
2320
|
+
};
|
|
2321
|
+
video_info?: {
|
|
2322
|
+
aspect_ratio: number[];
|
|
2323
|
+
duration_millis?: number;
|
|
2324
|
+
variants: {
|
|
2325
|
+
bitrate?: number;
|
|
2326
|
+
content_type: string;
|
|
2204
2327
|
url: string;
|
|
2205
|
-
};
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
green: number;
|
|
2215
|
-
red: number;
|
|
2216
|
-
};
|
|
2217
|
-
percentage: number;
|
|
2328
|
+
}[];
|
|
2329
|
+
};
|
|
2330
|
+
features?: {
|
|
2331
|
+
large: {
|
|
2332
|
+
faces: {
|
|
2333
|
+
x: number;
|
|
2334
|
+
y: number;
|
|
2335
|
+
h: number;
|
|
2336
|
+
w: number;
|
|
2218
2337
|
}[];
|
|
2219
2338
|
};
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2339
|
+
medium: {
|
|
2340
|
+
faces: {
|
|
2341
|
+
x: number;
|
|
2342
|
+
y: number;
|
|
2343
|
+
h: number;
|
|
2344
|
+
w: number;
|
|
2345
|
+
}[];
|
|
2226
2346
|
};
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2347
|
+
small: {
|
|
2348
|
+
faces: {
|
|
2349
|
+
x: number;
|
|
2350
|
+
y: number;
|
|
2351
|
+
h: number;
|
|
2352
|
+
w: number;
|
|
2353
|
+
}[];
|
|
2230
2354
|
};
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
id: string;
|
|
2239
|
-
rest_id: string;
|
|
2240
|
-
affiliates_highlighted_label: {};
|
|
2241
|
-
has_graduated_access: boolean;
|
|
2242
|
-
is_blue_verified: boolean;
|
|
2243
|
-
profile_image_shape: string;
|
|
2244
|
-
legacy: {
|
|
2245
|
-
blocking?: boolean;
|
|
2246
|
-
can_dm: boolean;
|
|
2247
|
-
can_media_tag: boolean;
|
|
2248
|
-
created_at: string;
|
|
2249
|
-
default_profile: boolean;
|
|
2250
|
-
default_profile_image: boolean;
|
|
2251
|
-
description: string;
|
|
2252
|
-
entities: {
|
|
2253
|
-
description: {
|
|
2254
|
-
urls: {
|
|
2255
|
-
display_url: string;
|
|
2256
|
-
expanded_url: string;
|
|
2257
|
-
url: string;
|
|
2258
|
-
indices: number[];
|
|
2259
|
-
}[];
|
|
2260
|
-
};
|
|
2261
|
-
url?: {
|
|
2262
|
-
urls: {
|
|
2263
|
-
display_url: string;
|
|
2264
|
-
expanded_url: string;
|
|
2265
|
-
url: string;
|
|
2266
|
-
indices: number[];
|
|
2267
|
-
}[];
|
|
2268
|
-
};
|
|
2269
|
-
};
|
|
2270
|
-
fast_followers_count: number;
|
|
2271
|
-
favourites_count: number;
|
|
2272
|
-
followers_count: number;
|
|
2273
|
-
friends_count: number;
|
|
2274
|
-
has_custom_timelines: boolean;
|
|
2275
|
-
is_translator: boolean;
|
|
2276
|
-
listed_count: number;
|
|
2277
|
-
location: string;
|
|
2278
|
-
media_count: number;
|
|
2279
|
-
name: string;
|
|
2280
|
-
normal_followers_count: number;
|
|
2281
|
-
pinned_tweet_ids_str: string[];
|
|
2282
|
-
possibly_sensitive: boolean;
|
|
2283
|
-
profile_banner_url?: string;
|
|
2284
|
-
profile_image_url_https: string;
|
|
2285
|
-
profile_interstitial_type: string;
|
|
2286
|
-
screen_name: string;
|
|
2287
|
-
statuses_count: number;
|
|
2288
|
-
translator_type: string;
|
|
2289
|
-
url?: string;
|
|
2290
|
-
verified: boolean;
|
|
2291
|
-
verified_type?: string;
|
|
2292
|
-
want_retweets: boolean;
|
|
2293
|
-
withheld_in_countries: unknown[];
|
|
2355
|
+
orig: {
|
|
2356
|
+
faces: {
|
|
2357
|
+
x: number;
|
|
2358
|
+
y: number;
|
|
2359
|
+
h: number;
|
|
2360
|
+
w: number;
|
|
2361
|
+
}[];
|
|
2294
2362
|
};
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
category: {
|
|
2299
|
-
id: number;
|
|
2363
|
+
all?: {
|
|
2364
|
+
tags: {
|
|
2365
|
+
user_id: string;
|
|
2300
2366
|
name: string;
|
|
2301
|
-
|
|
2367
|
+
screen_name: string;
|
|
2368
|
+
type: string;
|
|
2302
2369
|
}[];
|
|
2303
2370
|
};
|
|
2304
2371
|
};
|
|
2372
|
+
sensitive_media_warning?: {
|
|
2373
|
+
other?: boolean;
|
|
2374
|
+
adult_content?: boolean;
|
|
2375
|
+
};
|
|
2376
|
+
ext_alt_text?: string;
|
|
2305
2377
|
}[];
|
|
2306
2378
|
};
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2379
|
+
quoted_status_id_str?: string;
|
|
2380
|
+
quoted_status_permalink?: {
|
|
2381
|
+
url: string;
|
|
2382
|
+
expanded: string;
|
|
2383
|
+
display: string;
|
|
2384
|
+
};
|
|
2310
2385
|
};
|
|
2311
2386
|
tweet?: {
|
|
2312
2387
|
rest_id: string;
|
|
@@ -2364,6 +2439,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2364
2439
|
verified: boolean;
|
|
2365
2440
|
want_retweets: boolean;
|
|
2366
2441
|
withheld_in_countries: unknown[];
|
|
2442
|
+
muting?: boolean;
|
|
2367
2443
|
url?: string;
|
|
2368
2444
|
};
|
|
2369
2445
|
};
|
|
@@ -2464,6 +2540,14 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2464
2540
|
w: number;
|
|
2465
2541
|
}[];
|
|
2466
2542
|
};
|
|
2543
|
+
all?: {
|
|
2544
|
+
tags: {
|
|
2545
|
+
user_id: string;
|
|
2546
|
+
name: string;
|
|
2547
|
+
screen_name: string;
|
|
2548
|
+
type: string;
|
|
2549
|
+
}[];
|
|
2550
|
+
};
|
|
2467
2551
|
};
|
|
2468
2552
|
sizes: {
|
|
2469
2553
|
large: {
|
|
@@ -2571,6 +2655,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2571
2655
|
url: string;
|
|
2572
2656
|
}[];
|
|
2573
2657
|
};
|
|
2658
|
+
sensitive_media_warning?: {
|
|
2659
|
+
other: boolean;
|
|
2660
|
+
};
|
|
2574
2661
|
}[];
|
|
2575
2662
|
};
|
|
2576
2663
|
favorite_count: number;
|
|
@@ -2644,11 +2731,12 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2644
2731
|
screen_name: string;
|
|
2645
2732
|
statuses_count: number;
|
|
2646
2733
|
translator_type: string;
|
|
2647
|
-
url?: string;
|
|
2648
2734
|
verified: boolean;
|
|
2649
2735
|
want_retweets: boolean;
|
|
2650
2736
|
withheld_in_countries: unknown[];
|
|
2651
2737
|
blocking?: boolean;
|
|
2738
|
+
url?: string;
|
|
2739
|
+
following?: boolean;
|
|
2652
2740
|
};
|
|
2653
2741
|
professional?: {
|
|
2654
2742
|
rest_id: string;
|
|
@@ -2751,6 +2839,14 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2751
2839
|
w: number;
|
|
2752
2840
|
}[];
|
|
2753
2841
|
};
|
|
2842
|
+
all?: {
|
|
2843
|
+
tags: {
|
|
2844
|
+
user_id: string;
|
|
2845
|
+
name: string;
|
|
2846
|
+
screen_name: string;
|
|
2847
|
+
type: string;
|
|
2848
|
+
}[];
|
|
2849
|
+
};
|
|
2754
2850
|
};
|
|
2755
2851
|
sizes: {
|
|
2756
2852
|
large: {
|
|
@@ -2796,6 +2892,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2796
2892
|
url: string;
|
|
2797
2893
|
}[];
|
|
2798
2894
|
};
|
|
2895
|
+
sensitive_media_warning?: {
|
|
2896
|
+
other: boolean;
|
|
2897
|
+
};
|
|
2799
2898
|
}[];
|
|
2800
2899
|
};
|
|
2801
2900
|
favorite_count: number;
|
|
@@ -2856,6 +2955,14 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2856
2955
|
w: number;
|
|
2857
2956
|
}[];
|
|
2858
2957
|
};
|
|
2958
|
+
all?: {
|
|
2959
|
+
tags: {
|
|
2960
|
+
user_id: string;
|
|
2961
|
+
name: string;
|
|
2962
|
+
screen_name: string;
|
|
2963
|
+
type: string;
|
|
2964
|
+
}[];
|
|
2965
|
+
};
|
|
2859
2966
|
};
|
|
2860
2967
|
sizes: {
|
|
2861
2968
|
large: {
|
|
@@ -2901,6 +3008,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2901
3008
|
url: string;
|
|
2902
3009
|
}[];
|
|
2903
3010
|
};
|
|
3011
|
+
sensitive_media_warning?: {
|
|
3012
|
+
other: boolean;
|
|
3013
|
+
};
|
|
2904
3014
|
}[];
|
|
2905
3015
|
};
|
|
2906
3016
|
possibly_sensitive?: boolean;
|
|
@@ -2912,9 +3022,6 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2912
3022
|
display: string;
|
|
2913
3023
|
};
|
|
2914
3024
|
};
|
|
2915
|
-
unified_card?: {
|
|
2916
|
-
card_fetch_state: string;
|
|
2917
|
-
};
|
|
2918
3025
|
quoted_status_result?: {
|
|
2919
3026
|
result: {
|
|
2920
3027
|
__typename: string;
|
|
@@ -2986,12 +3093,6 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
2986
3093
|
state: string;
|
|
2987
3094
|
};
|
|
2988
3095
|
source: string;
|
|
2989
|
-
quotedRefResult: {
|
|
2990
|
-
result: {
|
|
2991
|
-
__typename: string;
|
|
2992
|
-
rest_id: string;
|
|
2993
|
-
};
|
|
2994
|
-
};
|
|
2995
3096
|
legacy: {
|
|
2996
3097
|
bookmark_count: number;
|
|
2997
3098
|
bookmarked: boolean;
|
|
@@ -3010,10 +3111,11 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3010
3111
|
conversation_id_str: string;
|
|
3011
3112
|
display_text_range: number[];
|
|
3012
3113
|
entities: {
|
|
3013
|
-
user_mentions: unknown[];
|
|
3014
|
-
urls: unknown[];
|
|
3015
3114
|
hashtags: unknown[];
|
|
3016
3115
|
symbols: unknown[];
|
|
3116
|
+
timestamps?: unknown[];
|
|
3117
|
+
urls: unknown[];
|
|
3118
|
+
user_mentions: unknown[];
|
|
3017
3119
|
};
|
|
3018
3120
|
favorite_count: number;
|
|
3019
3121
|
favorited: boolean;
|
|
@@ -3022,17 +3124,23 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3022
3124
|
lang: string;
|
|
3023
3125
|
limited_actions: string;
|
|
3024
3126
|
quote_count: number;
|
|
3025
|
-
quoted_status_id_str: string;
|
|
3026
|
-
quoted_status_permalink: {
|
|
3027
|
-
url: string;
|
|
3028
|
-
expanded: string;
|
|
3029
|
-
display: string;
|
|
3030
|
-
};
|
|
3031
3127
|
reply_count: number;
|
|
3032
3128
|
retweet_count: number;
|
|
3033
3129
|
retweeted: boolean;
|
|
3034
3130
|
user_id_str: string;
|
|
3035
3131
|
id_str: string;
|
|
3132
|
+
quoted_status_id_str?: string;
|
|
3133
|
+
quoted_status_permalink?: {
|
|
3134
|
+
url: string;
|
|
3135
|
+
expanded: string;
|
|
3136
|
+
display: string;
|
|
3137
|
+
};
|
|
3138
|
+
};
|
|
3139
|
+
quotedRefResult?: {
|
|
3140
|
+
result: {
|
|
3141
|
+
__typename: string;
|
|
3142
|
+
rest_id: string;
|
|
3143
|
+
};
|
|
3036
3144
|
};
|
|
3037
3145
|
};
|
|
3038
3146
|
limitedActionResults?: {
|
|
@@ -3163,6 +3271,24 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3163
3271
|
};
|
|
3164
3272
|
};
|
|
3165
3273
|
};
|
|
3274
|
+
note_tweet?: {
|
|
3275
|
+
is_expandable: boolean;
|
|
3276
|
+
note_tweet_results: {
|
|
3277
|
+
result: {
|
|
3278
|
+
id: string;
|
|
3279
|
+
text: string;
|
|
3280
|
+
entity_set: {
|
|
3281
|
+
hashtags: unknown[];
|
|
3282
|
+
symbols: unknown[];
|
|
3283
|
+
urls: unknown[];
|
|
3284
|
+
user_mentions: unknown[];
|
|
3285
|
+
};
|
|
3286
|
+
};
|
|
3287
|
+
};
|
|
3288
|
+
};
|
|
3289
|
+
unified_card?: {
|
|
3290
|
+
card_fetch_state: string;
|
|
3291
|
+
};
|
|
3166
3292
|
};
|
|
3167
3293
|
limitedActionResults: {
|
|
3168
3294
|
limited_actions: {
|
|
@@ -3231,6 +3357,14 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3231
3357
|
w: number;
|
|
3232
3358
|
}[];
|
|
3233
3359
|
};
|
|
3360
|
+
all?: {
|
|
3361
|
+
tags: {
|
|
3362
|
+
user_id: string;
|
|
3363
|
+
name: string;
|
|
3364
|
+
screen_name: string;
|
|
3365
|
+
type: string;
|
|
3366
|
+
}[];
|
|
3367
|
+
};
|
|
3234
3368
|
};
|
|
3235
3369
|
sizes: {
|
|
3236
3370
|
large: {
|
|
@@ -3338,6 +3472,9 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3338
3472
|
url: string;
|
|
3339
3473
|
}[];
|
|
3340
3474
|
};
|
|
3475
|
+
sensitive_media_warning?: {
|
|
3476
|
+
other: boolean;
|
|
3477
|
+
};
|
|
3341
3478
|
}[];
|
|
3342
3479
|
};
|
|
3343
3480
|
possibly_sensitive?: boolean;
|
|
@@ -3831,6 +3968,14 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3831
3968
|
description: {
|
|
3832
3969
|
urls: unknown[];
|
|
3833
3970
|
};
|
|
3971
|
+
url?: {
|
|
3972
|
+
urls: {
|
|
3973
|
+
display_url: string;
|
|
3974
|
+
expanded_url: string;
|
|
3975
|
+
url: string;
|
|
3976
|
+
indices: number[];
|
|
3977
|
+
}[];
|
|
3978
|
+
};
|
|
3834
3979
|
};
|
|
3835
3980
|
fast_followers_count: number;
|
|
3836
3981
|
favourites_count: number;
|
|
@@ -3842,6 +3987,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3842
3987
|
location: string;
|
|
3843
3988
|
media_count: number;
|
|
3844
3989
|
name: string;
|
|
3990
|
+
needs_phone_verification?: boolean;
|
|
3845
3991
|
normal_followers_count: number;
|
|
3846
3992
|
pinned_tweet_ids_str: string[];
|
|
3847
3993
|
possibly_sensitive: boolean;
|
|
@@ -3851,6 +3997,7 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3851
3997
|
screen_name: string;
|
|
3852
3998
|
statuses_count: number;
|
|
3853
3999
|
translator_type: string;
|
|
4000
|
+
url?: string;
|
|
3854
4001
|
verified: boolean;
|
|
3855
4002
|
want_retweets: boolean;
|
|
3856
4003
|
withheld_in_countries: unknown[];
|
|
@@ -3879,6 +4026,10 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3879
4026
|
display_text_range: number[];
|
|
3880
4027
|
entities: {
|
|
3881
4028
|
hashtags: unknown[];
|
|
4029
|
+
symbols: unknown[];
|
|
4030
|
+
timestamps: unknown[];
|
|
4031
|
+
urls: unknown[];
|
|
4032
|
+
user_mentions: unknown[];
|
|
3882
4033
|
media?: {
|
|
3883
4034
|
display_url: string;
|
|
3884
4035
|
expanded_url: string;
|
|
@@ -3958,11 +4109,21 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
3958
4109
|
}[];
|
|
3959
4110
|
};
|
|
3960
4111
|
}[];
|
|
3961
|
-
symbols: unknown[];
|
|
3962
|
-
timestamps: unknown[];
|
|
3963
|
-
urls: unknown[];
|
|
3964
|
-
user_mentions: unknown[];
|
|
3965
4112
|
};
|
|
4113
|
+
favorite_count: number;
|
|
4114
|
+
favorited: boolean;
|
|
4115
|
+
full_text: string;
|
|
4116
|
+
is_quote_status: boolean;
|
|
4117
|
+
lang: string;
|
|
4118
|
+
quote_count: number;
|
|
4119
|
+
reply_count: number;
|
|
4120
|
+
retweet_count: number;
|
|
4121
|
+
retweeted: boolean;
|
|
4122
|
+
user_id_str: string;
|
|
4123
|
+
id_str: string;
|
|
4124
|
+
in_reply_to_screen_name?: string;
|
|
4125
|
+
in_reply_to_status_id_str?: string;
|
|
4126
|
+
in_reply_to_user_id_str?: string;
|
|
3966
4127
|
extended_entities?: {
|
|
3967
4128
|
media: {
|
|
3968
4129
|
display_url: string;
|
|
@@ -4044,22 +4205,8 @@ export interface GraphQLGetListLatestTweetsTimelineSuccessResponse {
|
|
|
4044
4205
|
};
|
|
4045
4206
|
}[];
|
|
4046
4207
|
};
|
|
4047
|
-
favorite_count: number;
|
|
4048
|
-
favorited: boolean;
|
|
4049
|
-
full_text: string;
|
|
4050
|
-
is_quote_status: boolean;
|
|
4051
|
-
lang: string;
|
|
4052
4208
|
possibly_sensitive?: boolean;
|
|
4053
4209
|
possibly_sensitive_editable?: boolean;
|
|
4054
|
-
quote_count: number;
|
|
4055
|
-
reply_count: number;
|
|
4056
|
-
retweet_count: number;
|
|
4057
|
-
retweeted: boolean;
|
|
4058
|
-
user_id_str: string;
|
|
4059
|
-
id_str: string;
|
|
4060
|
-
in_reply_to_screen_name?: string;
|
|
4061
|
-
in_reply_to_status_id_str?: string;
|
|
4062
|
-
in_reply_to_user_id_str?: string;
|
|
4063
4210
|
};
|
|
4064
4211
|
};
|
|
4065
4212
|
};
|