@book000/twitterts 0.39.0 → 0.41.0
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 +8 -1
- package/dist/generate-types/custom-types-generator.d.ts.map +1 -1
- package/dist/generate-types/custom-types-generator.js +31 -18
- package/dist/generate-types/custom-types-generator.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts +5164 -0
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts.map +1 -0
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.js +4 -0
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.js.map +1 -0
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +157 -157
- 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 +1077 -809
- 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 +33 -33
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-object.d.ts +271 -10
- package/dist/models/responses/custom/custom-tweet-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +154 -154
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +373 -14
- 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 +48 -8
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts +157 -157
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts +2 -2
- 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 +1215 -1215
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +428 -14
- 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 +236 -236
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
- package/dist/parser/home-timeline-parser.d.ts +2 -2
- package/dist/parser/home-timeline-parser.d.ts.map +1 -1
- package/dist/parser/home-timeline-parser.js.map +1 -1
- package/dist/scraper.d.ts +3 -2
- package/dist/scraper.d.ts.map +1 -1
- package/dist/scraper.js +5 -2
- package/dist/scraper.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/twitter.d.ts.map +1 -1
- package/dist/twitter.js +4 -2
- package/dist/twitter.js.map +1 -1
- package/package.json +1 -1
|
@@ -8,20 +8,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
8
8
|
timeline: {
|
|
9
9
|
instructions: {
|
|
10
10
|
type: string;
|
|
11
|
-
|
|
11
|
+
entries?: {
|
|
12
12
|
entryId: string;
|
|
13
13
|
sortIndex: string;
|
|
14
14
|
content: {
|
|
15
15
|
entryType: string;
|
|
16
16
|
__typename: string;
|
|
17
|
-
itemContent
|
|
17
|
+
itemContent?: {
|
|
18
18
|
itemType: string;
|
|
19
19
|
__typename: string;
|
|
20
20
|
tweet_results: {
|
|
21
21
|
result: {
|
|
22
22
|
__typename: string;
|
|
23
|
-
rest_id
|
|
24
|
-
core
|
|
23
|
+
rest_id?: string;
|
|
24
|
+
core?: {
|
|
25
25
|
user_results: {
|
|
26
26
|
result: {
|
|
27
27
|
__typename: string;
|
|
@@ -79,6 +79,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
79
79
|
location: string;
|
|
80
80
|
media_count: number;
|
|
81
81
|
name: string;
|
|
82
|
+
needs_phone_verification?: boolean;
|
|
82
83
|
normal_followers_count: number;
|
|
83
84
|
pinned_tweet_ids_str: string[];
|
|
84
85
|
possibly_sensitive: boolean;
|
|
@@ -88,12 +89,13 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
88
89
|
screen_name: string;
|
|
89
90
|
statuses_count: number;
|
|
90
91
|
translator_type: string;
|
|
91
|
-
url?: string;
|
|
92
92
|
verified: boolean;
|
|
93
93
|
want_retweets: boolean;
|
|
94
94
|
withheld_in_countries: unknown[];
|
|
95
|
-
|
|
95
|
+
url?: string;
|
|
96
96
|
verified_type?: string;
|
|
97
|
+
following?: boolean;
|
|
98
|
+
blocking?: boolean;
|
|
97
99
|
};
|
|
98
100
|
professional?: {
|
|
99
101
|
rest_id: string;
|
|
@@ -108,7 +110,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
108
110
|
};
|
|
109
111
|
};
|
|
110
112
|
};
|
|
111
|
-
edit_control
|
|
113
|
+
edit_control?: {
|
|
112
114
|
edit_tweet_ids: string[];
|
|
113
115
|
editable_until_msecs: string;
|
|
114
116
|
is_edit_eligible: boolean;
|
|
@@ -118,13 +120,13 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
118
120
|
favorited: boolean;
|
|
119
121
|
retweeted: boolean;
|
|
120
122
|
};
|
|
121
|
-
is_translatable
|
|
122
|
-
views
|
|
123
|
-
count?: string;
|
|
123
|
+
is_translatable?: boolean;
|
|
124
|
+
views?: {
|
|
124
125
|
state: string;
|
|
126
|
+
count?: string;
|
|
125
127
|
};
|
|
126
|
-
source
|
|
127
|
-
legacy
|
|
128
|
+
source?: string;
|
|
129
|
+
legacy?: {
|
|
128
130
|
bookmark_count: number;
|
|
129
131
|
bookmarked: boolean;
|
|
130
132
|
created_at: string;
|
|
@@ -158,16 +160,44 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
158
160
|
url: string;
|
|
159
161
|
features: {
|
|
160
162
|
large?: {
|
|
161
|
-
faces:
|
|
163
|
+
faces: {
|
|
164
|
+
x: number;
|
|
165
|
+
y: number;
|
|
166
|
+
h: number;
|
|
167
|
+
w: number;
|
|
168
|
+
}[];
|
|
162
169
|
};
|
|
163
170
|
medium?: {
|
|
164
|
-
faces:
|
|
171
|
+
faces: {
|
|
172
|
+
x: number;
|
|
173
|
+
y: number;
|
|
174
|
+
h: number;
|
|
175
|
+
w: number;
|
|
176
|
+
}[];
|
|
165
177
|
};
|
|
166
178
|
small?: {
|
|
167
|
-
faces:
|
|
179
|
+
faces: {
|
|
180
|
+
x: number;
|
|
181
|
+
y: number;
|
|
182
|
+
h: number;
|
|
183
|
+
w: number;
|
|
184
|
+
}[];
|
|
168
185
|
};
|
|
169
186
|
orig?: {
|
|
170
|
-
faces:
|
|
187
|
+
faces: {
|
|
188
|
+
x: number;
|
|
189
|
+
y: number;
|
|
190
|
+
h: number;
|
|
191
|
+
w: number;
|
|
192
|
+
}[];
|
|
193
|
+
};
|
|
194
|
+
all?: {
|
|
195
|
+
tags: {
|
|
196
|
+
user_id: string;
|
|
197
|
+
name: string;
|
|
198
|
+
screen_name: string;
|
|
199
|
+
type: string;
|
|
200
|
+
}[];
|
|
171
201
|
};
|
|
172
202
|
};
|
|
173
203
|
sizes: {
|
|
@@ -202,6 +232,8 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
202
232
|
h: number;
|
|
203
233
|
}[];
|
|
204
234
|
};
|
|
235
|
+
source_status_id_str?: string;
|
|
236
|
+
source_user_id_str?: string;
|
|
205
237
|
}[];
|
|
206
238
|
};
|
|
207
239
|
favorite_count: number;
|
|
@@ -209,19 +241,16 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
209
241
|
full_text: string;
|
|
210
242
|
is_quote_status: boolean;
|
|
211
243
|
lang: string;
|
|
212
|
-
possibly_sensitive?: boolean;
|
|
213
|
-
possibly_sensitive_editable?: boolean;
|
|
214
244
|
quote_count: number;
|
|
215
245
|
reply_count: number;
|
|
216
246
|
retweet_count: number;
|
|
217
247
|
retweeted: boolean;
|
|
218
248
|
user_id_str: string;
|
|
219
249
|
id_str: string;
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
display: string;
|
|
250
|
+
possibly_sensitive?: boolean;
|
|
251
|
+
possibly_sensitive_editable?: boolean;
|
|
252
|
+
scopes?: {
|
|
253
|
+
followers: boolean;
|
|
225
254
|
};
|
|
226
255
|
extended_entities?: {
|
|
227
256
|
media: {
|
|
@@ -233,28 +262,49 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
233
262
|
media_url_https: string;
|
|
234
263
|
type: string;
|
|
235
264
|
url: string;
|
|
236
|
-
additional_media_info?: {
|
|
237
|
-
title: string;
|
|
238
|
-
monetizable: boolean;
|
|
239
|
-
};
|
|
240
|
-
mediaStats?: {
|
|
241
|
-
viewCount: number;
|
|
242
|
-
};
|
|
243
265
|
ext_media_availability: {
|
|
244
266
|
status: string;
|
|
245
267
|
};
|
|
246
268
|
features: {
|
|
247
269
|
large?: {
|
|
248
|
-
faces:
|
|
270
|
+
faces: {
|
|
271
|
+
x: number;
|
|
272
|
+
y: number;
|
|
273
|
+
h: number;
|
|
274
|
+
w: number;
|
|
275
|
+
}[];
|
|
249
276
|
};
|
|
250
277
|
medium?: {
|
|
251
|
-
faces:
|
|
278
|
+
faces: {
|
|
279
|
+
x: number;
|
|
280
|
+
y: number;
|
|
281
|
+
h: number;
|
|
282
|
+
w: number;
|
|
283
|
+
}[];
|
|
252
284
|
};
|
|
253
285
|
small?: {
|
|
254
|
-
faces:
|
|
286
|
+
faces: {
|
|
287
|
+
x: number;
|
|
288
|
+
y: number;
|
|
289
|
+
h: number;
|
|
290
|
+
w: number;
|
|
291
|
+
}[];
|
|
255
292
|
};
|
|
256
293
|
orig?: {
|
|
257
|
-
faces:
|
|
294
|
+
faces: {
|
|
295
|
+
x: number;
|
|
296
|
+
y: number;
|
|
297
|
+
h: number;
|
|
298
|
+
w: number;
|
|
299
|
+
}[];
|
|
300
|
+
};
|
|
301
|
+
all?: {
|
|
302
|
+
tags: {
|
|
303
|
+
user_id: string;
|
|
304
|
+
name: string;
|
|
305
|
+
screen_name: string;
|
|
306
|
+
type: string;
|
|
307
|
+
}[];
|
|
258
308
|
};
|
|
259
309
|
};
|
|
260
310
|
sizes: {
|
|
@@ -289,6 +339,107 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
289
339
|
h: number;
|
|
290
340
|
}[];
|
|
291
341
|
};
|
|
342
|
+
source_status_id_str?: string;
|
|
343
|
+
source_user_id_str?: string;
|
|
344
|
+
additional_media_info?: {
|
|
345
|
+
title?: string;
|
|
346
|
+
description?: string;
|
|
347
|
+
call_to_actions?: {
|
|
348
|
+
watch_now: {
|
|
349
|
+
url: string;
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
embeddable?: boolean;
|
|
353
|
+
monetizable: boolean;
|
|
354
|
+
source_user?: {
|
|
355
|
+
user_results: {
|
|
356
|
+
result: {
|
|
357
|
+
__typename: string;
|
|
358
|
+
id: string;
|
|
359
|
+
rest_id: string;
|
|
360
|
+
affiliates_highlighted_label: {
|
|
361
|
+
label?: {
|
|
362
|
+
url: {
|
|
363
|
+
url: string;
|
|
364
|
+
urlType: string;
|
|
365
|
+
};
|
|
366
|
+
badge: {
|
|
367
|
+
url: string;
|
|
368
|
+
};
|
|
369
|
+
description: string;
|
|
370
|
+
userLabelType: string;
|
|
371
|
+
userLabelDisplayType: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
has_graduated_access: boolean;
|
|
375
|
+
is_blue_verified: boolean;
|
|
376
|
+
profile_image_shape: string;
|
|
377
|
+
legacy: {
|
|
378
|
+
can_dm: boolean;
|
|
379
|
+
can_media_tag: boolean;
|
|
380
|
+
created_at: string;
|
|
381
|
+
default_profile: boolean;
|
|
382
|
+
default_profile_image: boolean;
|
|
383
|
+
description: string;
|
|
384
|
+
entities: {
|
|
385
|
+
description: {
|
|
386
|
+
urls: {
|
|
387
|
+
display_url: string;
|
|
388
|
+
expanded_url: string;
|
|
389
|
+
url: string;
|
|
390
|
+
indices: number[];
|
|
391
|
+
}[];
|
|
392
|
+
};
|
|
393
|
+
url: {
|
|
394
|
+
urls: {
|
|
395
|
+
display_url: string;
|
|
396
|
+
expanded_url: string;
|
|
397
|
+
url: string;
|
|
398
|
+
indices: number[];
|
|
399
|
+
}[];
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
fast_followers_count: number;
|
|
403
|
+
favourites_count: number;
|
|
404
|
+
followers_count: number;
|
|
405
|
+
friends_count: number;
|
|
406
|
+
has_custom_timelines: boolean;
|
|
407
|
+
is_translator: boolean;
|
|
408
|
+
listed_count: number;
|
|
409
|
+
location: string;
|
|
410
|
+
media_count: number;
|
|
411
|
+
name: string;
|
|
412
|
+
normal_followers_count: number;
|
|
413
|
+
pinned_tweet_ids_str: string[];
|
|
414
|
+
possibly_sensitive: boolean;
|
|
415
|
+
profile_banner_url: string;
|
|
416
|
+
profile_image_url_https: string;
|
|
417
|
+
profile_interstitial_type: string;
|
|
418
|
+
screen_name: string;
|
|
419
|
+
statuses_count: number;
|
|
420
|
+
translator_type: string;
|
|
421
|
+
url: string;
|
|
422
|
+
verified: boolean;
|
|
423
|
+
want_retweets: boolean;
|
|
424
|
+
withheld_in_countries: unknown[];
|
|
425
|
+
verified_type?: string;
|
|
426
|
+
};
|
|
427
|
+
professional?: {
|
|
428
|
+
rest_id: string;
|
|
429
|
+
professional_type: string;
|
|
430
|
+
category: {
|
|
431
|
+
id: number;
|
|
432
|
+
name: string;
|
|
433
|
+
icon_name: string;
|
|
434
|
+
}[];
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
mediaStats?: {
|
|
441
|
+
viewCount: number;
|
|
442
|
+
};
|
|
292
443
|
video_info?: {
|
|
293
444
|
aspect_ratio: number[];
|
|
294
445
|
duration_millis: number;
|
|
@@ -298,1055 +449,317 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
298
449
|
url: string;
|
|
299
450
|
}[];
|
|
300
451
|
};
|
|
452
|
+
ext_alt_text?: string;
|
|
301
453
|
}[];
|
|
302
454
|
};
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
rest_id: string;
|
|
317
|
-
affiliates_highlighted_label: {
|
|
318
|
-
label: {
|
|
319
|
-
url: {
|
|
320
|
-
url: string;
|
|
321
|
-
urlType: string;
|
|
322
|
-
};
|
|
323
|
-
badge: {
|
|
324
|
-
url: string;
|
|
325
|
-
};
|
|
326
|
-
description: string;
|
|
327
|
-
userLabelType: string;
|
|
328
|
-
userLabelDisplayType: string;
|
|
329
|
-
};
|
|
330
|
-
};
|
|
331
|
-
has_graduated_access: boolean;
|
|
332
|
-
is_blue_verified: boolean;
|
|
333
|
-
profile_image_shape: string;
|
|
334
|
-
legacy: {
|
|
335
|
-
can_dm: boolean;
|
|
336
|
-
can_media_tag: boolean;
|
|
337
|
-
created_at: string;
|
|
338
|
-
default_profile: boolean;
|
|
339
|
-
default_profile_image: boolean;
|
|
340
|
-
description: string;
|
|
341
|
-
entities: {
|
|
342
|
-
description: {
|
|
343
|
-
urls: {
|
|
344
|
-
display_url: string;
|
|
345
|
-
expanded_url: string;
|
|
455
|
+
retweeted_status_result?: {
|
|
456
|
+
result: {
|
|
457
|
+
__typename: string;
|
|
458
|
+
rest_id: string;
|
|
459
|
+
core: {
|
|
460
|
+
user_results: {
|
|
461
|
+
result: {
|
|
462
|
+
__typename: string;
|
|
463
|
+
id: string;
|
|
464
|
+
rest_id: string;
|
|
465
|
+
affiliates_highlighted_label: {
|
|
466
|
+
label?: {
|
|
467
|
+
badge: {
|
|
346
468
|
url: string;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
469
|
+
};
|
|
470
|
+
description: string;
|
|
471
|
+
longDescription?: {
|
|
472
|
+
text: string;
|
|
473
|
+
entities: {
|
|
474
|
+
fromIndex: number;
|
|
475
|
+
toIndex: number;
|
|
476
|
+
ref: {
|
|
477
|
+
type: string;
|
|
478
|
+
screen_name: string;
|
|
479
|
+
mention_results: {
|
|
480
|
+
result: {
|
|
481
|
+
__typename: string;
|
|
482
|
+
legacy: {
|
|
483
|
+
screen_name: string;
|
|
484
|
+
};
|
|
485
|
+
rest_id: string;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
}[];
|
|
490
|
+
};
|
|
491
|
+
userLabelType: string;
|
|
492
|
+
url?: {
|
|
354
493
|
url: string;
|
|
355
|
-
|
|
356
|
-
}
|
|
494
|
+
urlType: string;
|
|
495
|
+
};
|
|
496
|
+
userLabelDisplayType?: string;
|
|
357
497
|
};
|
|
358
498
|
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
499
|
+
has_graduated_access: boolean;
|
|
500
|
+
is_blue_verified: boolean;
|
|
501
|
+
profile_image_shape: string;
|
|
502
|
+
legacy: {
|
|
503
|
+
can_dm: boolean;
|
|
504
|
+
can_media_tag: boolean;
|
|
505
|
+
created_at: string;
|
|
506
|
+
default_profile: boolean;
|
|
507
|
+
default_profile_image: boolean;
|
|
508
|
+
description: string;
|
|
509
|
+
entities: {
|
|
510
|
+
description: {
|
|
511
|
+
urls: {
|
|
512
|
+
display_url: string;
|
|
513
|
+
expanded_url: string;
|
|
514
|
+
url: string;
|
|
515
|
+
indices: number[];
|
|
516
|
+
}[];
|
|
517
|
+
};
|
|
518
|
+
url?: {
|
|
519
|
+
urls: {
|
|
520
|
+
display_url?: string;
|
|
521
|
+
expanded_url?: string;
|
|
522
|
+
url: string;
|
|
523
|
+
indices: number[];
|
|
524
|
+
}[];
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
fast_followers_count: number;
|
|
528
|
+
favourites_count: number;
|
|
529
|
+
followers_count: number;
|
|
530
|
+
friends_count: number;
|
|
531
|
+
has_custom_timelines: boolean;
|
|
532
|
+
is_translator: boolean;
|
|
533
|
+
listed_count: number;
|
|
534
|
+
location: string;
|
|
535
|
+
media_count: number;
|
|
536
|
+
name: string;
|
|
537
|
+
normal_followers_count: number;
|
|
538
|
+
pinned_tweet_ids_str: string[];
|
|
539
|
+
possibly_sensitive: boolean;
|
|
540
|
+
profile_banner_url?: string;
|
|
541
|
+
profile_image_url_https: string;
|
|
542
|
+
profile_interstitial_type: string;
|
|
543
|
+
screen_name: string;
|
|
544
|
+
statuses_count: number;
|
|
545
|
+
translator_type: string;
|
|
546
|
+
url?: string;
|
|
547
|
+
verified: boolean;
|
|
548
|
+
want_retweets: boolean;
|
|
549
|
+
withheld_in_countries: unknown[];
|
|
550
|
+
verified_type?: string;
|
|
551
|
+
};
|
|
552
|
+
professional?: {
|
|
553
|
+
rest_id: string;
|
|
554
|
+
professional_type: string;
|
|
555
|
+
category: {
|
|
556
|
+
id: number;
|
|
557
|
+
name: string;
|
|
558
|
+
icon_name: string;
|
|
559
|
+
}[];
|
|
560
|
+
};
|
|
561
|
+
super_follow_eligible?: boolean;
|
|
383
562
|
};
|
|
384
563
|
};
|
|
385
564
|
};
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
is_translatable: boolean;
|
|
398
|
-
views: {
|
|
399
|
-
count: string;
|
|
400
|
-
state: string;
|
|
401
|
-
};
|
|
402
|
-
source: string;
|
|
403
|
-
legacy: {
|
|
404
|
-
bookmark_count: number;
|
|
405
|
-
bookmarked: boolean;
|
|
406
|
-
created_at: string;
|
|
407
|
-
conversation_id_str: string;
|
|
408
|
-
display_text_range: number[];
|
|
409
|
-
entities: {
|
|
410
|
-
user_mentions: unknown[];
|
|
411
|
-
urls: {
|
|
412
|
-
display_url: string;
|
|
413
|
-
expanded_url: string;
|
|
414
|
-
url: string;
|
|
415
|
-
indices: number[];
|
|
416
|
-
}[];
|
|
417
|
-
hashtags: unknown[];
|
|
418
|
-
symbols: unknown[];
|
|
419
|
-
};
|
|
420
|
-
favorite_count: number;
|
|
421
|
-
favorited: boolean;
|
|
422
|
-
full_text: string;
|
|
423
|
-
is_quote_status: boolean;
|
|
424
|
-
lang: string;
|
|
425
|
-
possibly_sensitive: boolean;
|
|
426
|
-
possibly_sensitive_editable: boolean;
|
|
427
|
-
quote_count: number;
|
|
428
|
-
reply_count: number;
|
|
429
|
-
retweet_count: number;
|
|
430
|
-
retweeted: boolean;
|
|
431
|
-
user_id_str: string;
|
|
432
|
-
id_str: string;
|
|
433
|
-
};
|
|
434
|
-
};
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
|
-
};
|
|
438
|
-
tweetDisplayType: string;
|
|
439
|
-
socialContext: {
|
|
440
|
-
type: string;
|
|
441
|
-
contextType: string;
|
|
442
|
-
text: string;
|
|
443
|
-
};
|
|
444
|
-
};
|
|
445
|
-
clientEventInfo: {
|
|
446
|
-
component: string;
|
|
447
|
-
element: string;
|
|
448
|
-
};
|
|
449
|
-
};
|
|
450
|
-
};
|
|
451
|
-
entries?: {
|
|
452
|
-
entryId: string;
|
|
453
|
-
sortIndex: string;
|
|
454
|
-
content: {
|
|
455
|
-
entryType: string;
|
|
456
|
-
__typename: string;
|
|
457
|
-
itemContent?: {
|
|
458
|
-
itemType: string;
|
|
459
|
-
__typename: string;
|
|
460
|
-
tweet_results: {
|
|
461
|
-
result: {
|
|
462
|
-
__typename: string;
|
|
463
|
-
rest_id?: string;
|
|
464
|
-
core?: {
|
|
465
|
-
user_results: {
|
|
466
|
-
result: {
|
|
467
|
-
__typename: string;
|
|
468
|
-
id: string;
|
|
469
|
-
rest_id: string;
|
|
470
|
-
affiliates_highlighted_label: {
|
|
471
|
-
label?: {
|
|
472
|
-
url: {
|
|
473
|
-
url: string;
|
|
474
|
-
urlType: string;
|
|
475
|
-
};
|
|
476
|
-
badge: {
|
|
477
|
-
url: string;
|
|
478
|
-
};
|
|
479
|
-
description: string;
|
|
480
|
-
userLabelType: string;
|
|
481
|
-
userLabelDisplayType: string;
|
|
565
|
+
edit_control: {
|
|
566
|
+
edit_tweet_ids?: string[];
|
|
567
|
+
editable_until_msecs?: string;
|
|
568
|
+
is_edit_eligible?: boolean;
|
|
569
|
+
edits_remaining?: string;
|
|
570
|
+
initial_tweet_id?: string;
|
|
571
|
+
edit_control_initial?: {
|
|
572
|
+
edit_tweet_ids: string[];
|
|
573
|
+
editable_until_msecs: string;
|
|
574
|
+
is_edit_eligible: boolean;
|
|
575
|
+
edits_remaining: string;
|
|
482
576
|
};
|
|
483
577
|
};
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
legacy: {
|
|
488
|
-
can_dm: boolean;
|
|
489
|
-
can_media_tag: boolean;
|
|
490
|
-
created_at: string;
|
|
491
|
-
default_profile: boolean;
|
|
492
|
-
default_profile_image: boolean;
|
|
493
|
-
description: string;
|
|
494
|
-
entities: {
|
|
495
|
-
description: {
|
|
496
|
-
urls: {
|
|
497
|
-
display_url: string;
|
|
498
|
-
expanded_url: string;
|
|
499
|
-
url: string;
|
|
500
|
-
indices: number[];
|
|
501
|
-
}[];
|
|
502
|
-
};
|
|
503
|
-
url?: {
|
|
504
|
-
urls: {
|
|
505
|
-
display_url: string;
|
|
506
|
-
expanded_url: string;
|
|
507
|
-
url: string;
|
|
508
|
-
indices: number[];
|
|
509
|
-
}[];
|
|
510
|
-
};
|
|
511
|
-
};
|
|
512
|
-
fast_followers_count: number;
|
|
513
|
-
favourites_count: number;
|
|
514
|
-
followers_count: number;
|
|
515
|
-
friends_count: number;
|
|
516
|
-
has_custom_timelines: boolean;
|
|
517
|
-
is_translator: boolean;
|
|
518
|
-
listed_count: number;
|
|
519
|
-
location: string;
|
|
520
|
-
media_count: number;
|
|
521
|
-
name: string;
|
|
522
|
-
normal_followers_count: number;
|
|
523
|
-
pinned_tweet_ids_str: string[];
|
|
524
|
-
possibly_sensitive: boolean;
|
|
525
|
-
profile_banner_url: string;
|
|
526
|
-
profile_image_url_https: string;
|
|
527
|
-
profile_interstitial_type: string;
|
|
528
|
-
screen_name: string;
|
|
529
|
-
statuses_count: number;
|
|
530
|
-
translator_type: string;
|
|
531
|
-
url?: string;
|
|
532
|
-
verified: boolean;
|
|
533
|
-
want_retweets: boolean;
|
|
534
|
-
withheld_in_countries: unknown[];
|
|
535
|
-
verified_type?: string;
|
|
536
|
-
needs_phone_verification?: boolean;
|
|
537
|
-
following?: boolean;
|
|
538
|
-
blocking?: boolean;
|
|
539
|
-
};
|
|
540
|
-
professional?: {
|
|
541
|
-
rest_id: string;
|
|
542
|
-
professional_type: string;
|
|
543
|
-
category: {
|
|
544
|
-
id: number;
|
|
545
|
-
name: string;
|
|
546
|
-
icon_name: string;
|
|
547
|
-
}[];
|
|
548
|
-
};
|
|
549
|
-
super_follow_eligible?: boolean;
|
|
550
|
-
};
|
|
551
|
-
};
|
|
552
|
-
};
|
|
553
|
-
card?: {
|
|
554
|
-
rest_id: string;
|
|
555
|
-
legacy: {
|
|
556
|
-
binding_values: {
|
|
557
|
-
key: string;
|
|
558
|
-
value: {
|
|
559
|
-
image_value?: {
|
|
560
|
-
height: number;
|
|
561
|
-
width: number;
|
|
562
|
-
url: string;
|
|
563
|
-
alt?: string;
|
|
564
|
-
};
|
|
565
|
-
type: string;
|
|
566
|
-
string_value?: string;
|
|
567
|
-
scribe_key?: string;
|
|
568
|
-
user_value?: {
|
|
569
|
-
id_str: string;
|
|
570
|
-
path: unknown[];
|
|
571
|
-
};
|
|
572
|
-
image_color_value?: {
|
|
573
|
-
palette: {
|
|
574
|
-
rgb: {
|
|
575
|
-
blue: number;
|
|
576
|
-
green: number;
|
|
577
|
-
red: number;
|
|
578
|
-
};
|
|
579
|
-
percentage: number;
|
|
580
|
-
}[];
|
|
581
|
-
};
|
|
582
|
-
boolean_value?: boolean;
|
|
578
|
+
edit_perspective?: {
|
|
579
|
+
favorited: boolean;
|
|
580
|
+
retweeted: boolean;
|
|
583
581
|
};
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
name: string;
|
|
589
|
-
};
|
|
590
|
-
device: {
|
|
591
|
-
name: string;
|
|
592
|
-
version: string;
|
|
593
|
-
};
|
|
582
|
+
is_translatable: boolean;
|
|
583
|
+
views: {
|
|
584
|
+
count: string;
|
|
585
|
+
state: string;
|
|
594
586
|
};
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
587
|
+
source: string;
|
|
588
|
+
legacy: {
|
|
589
|
+
bookmark_count: number;
|
|
590
|
+
bookmarked: boolean;
|
|
591
|
+
created_at: string;
|
|
592
|
+
conversation_id_str: string;
|
|
593
|
+
display_text_range: number[];
|
|
594
|
+
entities: {
|
|
595
|
+
media?: {
|
|
596
|
+
display_url: string;
|
|
597
|
+
expanded_url: string;
|
|
598
|
+
id_str: string;
|
|
599
|
+
indices: number[];
|
|
600
|
+
media_url_https: string;
|
|
601
|
+
type: string;
|
|
602
|
+
url: string;
|
|
603
|
+
features: {
|
|
604
|
+
large?: {
|
|
605
|
+
faces: {
|
|
606
|
+
x: number;
|
|
607
|
+
y: number;
|
|
608
|
+
h: number;
|
|
609
|
+
w: number;
|
|
610
|
+
}[];
|
|
611
|
+
};
|
|
612
|
+
medium?: {
|
|
613
|
+
faces: {
|
|
614
|
+
x: number;
|
|
615
|
+
y: number;
|
|
616
|
+
h: number;
|
|
617
|
+
w: number;
|
|
618
|
+
}[];
|
|
619
|
+
};
|
|
620
|
+
small?: {
|
|
621
|
+
faces: {
|
|
622
|
+
x: number;
|
|
623
|
+
y: number;
|
|
624
|
+
h: number;
|
|
625
|
+
w: number;
|
|
626
|
+
}[];
|
|
627
|
+
};
|
|
628
|
+
orig?: {
|
|
629
|
+
faces: {
|
|
630
|
+
x: number;
|
|
631
|
+
y: number;
|
|
632
|
+
h: number;
|
|
633
|
+
w: number;
|
|
634
|
+
}[];
|
|
635
|
+
};
|
|
636
|
+
all?: {
|
|
637
|
+
tags: {
|
|
638
|
+
user_id: string;
|
|
639
|
+
name: string;
|
|
640
|
+
screen_name: string;
|
|
641
|
+
type: string;
|
|
642
|
+
}[];
|
|
643
|
+
};
|
|
611
644
|
};
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
indices: number[];
|
|
634
|
-
}[];
|
|
645
|
+
sizes: {
|
|
646
|
+
large: {
|
|
647
|
+
h: number;
|
|
648
|
+
w: number;
|
|
649
|
+
resize: string;
|
|
650
|
+
};
|
|
651
|
+
medium: {
|
|
652
|
+
h: number;
|
|
653
|
+
w: number;
|
|
654
|
+
resize: string;
|
|
655
|
+
};
|
|
656
|
+
small: {
|
|
657
|
+
h: number;
|
|
658
|
+
w: number;
|
|
659
|
+
resize: string;
|
|
660
|
+
};
|
|
661
|
+
thumb: {
|
|
662
|
+
h: number;
|
|
663
|
+
w: number;
|
|
664
|
+
resize: string;
|
|
665
|
+
};
|
|
635
666
|
};
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
667
|
+
original_info: {
|
|
668
|
+
height: number;
|
|
669
|
+
width: number;
|
|
670
|
+
focus_rects?: {
|
|
671
|
+
x: number;
|
|
672
|
+
y: number;
|
|
673
|
+
w: number;
|
|
674
|
+
h: number;
|
|
642
675
|
}[];
|
|
643
676
|
};
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
favourites_count: number;
|
|
647
|
-
followers_count: number;
|
|
648
|
-
friends_count: number;
|
|
649
|
-
has_custom_timelines: boolean;
|
|
650
|
-
is_translator: boolean;
|
|
651
|
-
listed_count: number;
|
|
652
|
-
location: string;
|
|
653
|
-
media_count: number;
|
|
654
|
-
name: string;
|
|
655
|
-
normal_followers_count: number;
|
|
656
|
-
pinned_tweet_ids_str: string[];
|
|
657
|
-
possibly_sensitive: boolean;
|
|
658
|
-
profile_banner_url?: string;
|
|
659
|
-
profile_image_url_https: string;
|
|
660
|
-
profile_interstitial_type: string;
|
|
661
|
-
screen_name: string;
|
|
662
|
-
statuses_count: number;
|
|
663
|
-
translator_type: string;
|
|
664
|
-
url?: string;
|
|
665
|
-
verified: boolean;
|
|
666
|
-
verified_type?: string;
|
|
667
|
-
want_retweets: boolean;
|
|
668
|
-
withheld_in_countries: unknown[];
|
|
669
|
-
};
|
|
670
|
-
unavailable_message?: {
|
|
671
|
-
rtl: boolean;
|
|
672
|
-
text: string;
|
|
673
|
-
entities: {
|
|
674
|
-
fromIndex: number;
|
|
675
|
-
toIndex: number;
|
|
676
|
-
ref: {
|
|
677
|
-
type: string;
|
|
678
|
-
url: string;
|
|
679
|
-
urlType: string;
|
|
680
|
-
};
|
|
681
|
-
}[];
|
|
682
|
-
};
|
|
683
|
-
reason?: string;
|
|
684
|
-
professional?: {
|
|
685
|
-
rest_id: string;
|
|
686
|
-
professional_type: string;
|
|
687
|
-
category: {
|
|
688
|
-
id: number;
|
|
689
|
-
name: string;
|
|
690
|
-
icon_name: string;
|
|
691
|
-
}[];
|
|
692
|
-
};
|
|
693
|
-
};
|
|
694
|
-
}[];
|
|
695
|
-
};
|
|
696
|
-
};
|
|
697
|
-
unified_card?: {
|
|
698
|
-
card_fetch_state: string;
|
|
699
|
-
};
|
|
700
|
-
edit_control?: {
|
|
701
|
-
edit_tweet_ids: string[];
|
|
702
|
-
editable_until_msecs: string;
|
|
703
|
-
is_edit_eligible: boolean;
|
|
704
|
-
edits_remaining: string;
|
|
705
|
-
};
|
|
706
|
-
edit_perspective?: {
|
|
707
|
-
favorited: boolean;
|
|
708
|
-
retweeted: boolean;
|
|
709
|
-
};
|
|
710
|
-
is_translatable?: boolean;
|
|
711
|
-
views?: {
|
|
712
|
-
count?: string;
|
|
713
|
-
state: string;
|
|
714
|
-
};
|
|
715
|
-
source?: string;
|
|
716
|
-
legacy?: {
|
|
717
|
-
bookmark_count: number;
|
|
718
|
-
bookmarked: boolean;
|
|
719
|
-
created_at: string;
|
|
720
|
-
conversation_id_str: string;
|
|
721
|
-
display_text_range: number[];
|
|
722
|
-
entities: {
|
|
723
|
-
user_mentions: {
|
|
724
|
-
id_str: string;
|
|
725
|
-
name: string;
|
|
726
|
-
screen_name: string;
|
|
727
|
-
indices: number[];
|
|
728
|
-
}[];
|
|
729
|
-
urls: {
|
|
730
|
-
display_url: string;
|
|
731
|
-
expanded_url: string;
|
|
732
|
-
url: string;
|
|
733
|
-
indices: number[];
|
|
734
|
-
}[];
|
|
735
|
-
hashtags: {
|
|
736
|
-
indices: number[];
|
|
737
|
-
text: string;
|
|
738
|
-
}[];
|
|
739
|
-
symbols: unknown[];
|
|
740
|
-
media?: {
|
|
741
|
-
display_url: string;
|
|
742
|
-
expanded_url: string;
|
|
743
|
-
id_str: string;
|
|
744
|
-
indices: number[];
|
|
745
|
-
media_url_https: string;
|
|
746
|
-
type: string;
|
|
747
|
-
url: string;
|
|
748
|
-
features: {
|
|
749
|
-
large?: {
|
|
750
|
-
faces: {
|
|
751
|
-
x: number;
|
|
752
|
-
y: number;
|
|
753
|
-
h: number;
|
|
754
|
-
w: number;
|
|
755
|
-
}[];
|
|
756
|
-
};
|
|
757
|
-
medium?: {
|
|
758
|
-
faces: {
|
|
759
|
-
x: number;
|
|
760
|
-
y: number;
|
|
761
|
-
h: number;
|
|
762
|
-
w: number;
|
|
763
|
-
}[];
|
|
764
|
-
};
|
|
765
|
-
small?: {
|
|
766
|
-
faces: {
|
|
767
|
-
x: number;
|
|
768
|
-
y: number;
|
|
769
|
-
h: number;
|
|
770
|
-
w: number;
|
|
771
|
-
}[];
|
|
772
|
-
};
|
|
773
|
-
orig?: {
|
|
774
|
-
faces: {
|
|
775
|
-
x: number;
|
|
776
|
-
y: number;
|
|
777
|
-
h: number;
|
|
778
|
-
w: number;
|
|
677
|
+
source_status_id_str?: string;
|
|
678
|
+
source_user_id_str?: string;
|
|
779
679
|
}[];
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
tags: {
|
|
783
|
-
user_id: string;
|
|
680
|
+
user_mentions: {
|
|
681
|
+
id_str: string;
|
|
784
682
|
name: string;
|
|
785
683
|
screen_name: string;
|
|
786
|
-
|
|
787
|
-
}[];
|
|
788
|
-
};
|
|
789
|
-
};
|
|
790
|
-
sizes: {
|
|
791
|
-
large: {
|
|
792
|
-
h: number;
|
|
793
|
-
w: number;
|
|
794
|
-
resize: string;
|
|
795
|
-
};
|
|
796
|
-
medium: {
|
|
797
|
-
h: number;
|
|
798
|
-
w: number;
|
|
799
|
-
resize: string;
|
|
800
|
-
};
|
|
801
|
-
small: {
|
|
802
|
-
h: number;
|
|
803
|
-
w: number;
|
|
804
|
-
resize: string;
|
|
805
|
-
};
|
|
806
|
-
thumb: {
|
|
807
|
-
h: number;
|
|
808
|
-
w: number;
|
|
809
|
-
resize: string;
|
|
810
|
-
};
|
|
811
|
-
};
|
|
812
|
-
original_info: {
|
|
813
|
-
height: number;
|
|
814
|
-
width: number;
|
|
815
|
-
focus_rects?: {
|
|
816
|
-
x: number;
|
|
817
|
-
y: number;
|
|
818
|
-
w: number;
|
|
819
|
-
h: number;
|
|
820
|
-
}[];
|
|
821
|
-
};
|
|
822
|
-
source_status_id_str?: string;
|
|
823
|
-
source_user_id_str?: string;
|
|
824
|
-
}[];
|
|
825
|
-
};
|
|
826
|
-
favorite_count: number;
|
|
827
|
-
favorited: boolean;
|
|
828
|
-
full_text: string;
|
|
829
|
-
is_quote_status: boolean;
|
|
830
|
-
lang: string;
|
|
831
|
-
possibly_sensitive?: boolean;
|
|
832
|
-
possibly_sensitive_editable?: boolean;
|
|
833
|
-
quote_count: number;
|
|
834
|
-
reply_count: number;
|
|
835
|
-
retweet_count: number;
|
|
836
|
-
retweeted: boolean;
|
|
837
|
-
user_id_str: string;
|
|
838
|
-
id_str: string;
|
|
839
|
-
scopes?: {
|
|
840
|
-
followers: boolean;
|
|
841
|
-
};
|
|
842
|
-
extended_entities?: {
|
|
843
|
-
media: {
|
|
844
|
-
display_url: string;
|
|
845
|
-
expanded_url: string;
|
|
846
|
-
id_str: string;
|
|
847
|
-
indices: number[];
|
|
848
|
-
media_key: string;
|
|
849
|
-
media_url_https: string;
|
|
850
|
-
type: string;
|
|
851
|
-
url: string;
|
|
852
|
-
ext_media_availability: {
|
|
853
|
-
status: string;
|
|
854
|
-
};
|
|
855
|
-
features: {
|
|
856
|
-
large?: {
|
|
857
|
-
faces: {
|
|
858
|
-
x: number;
|
|
859
|
-
y: number;
|
|
860
|
-
h: number;
|
|
861
|
-
w: number;
|
|
862
|
-
}[];
|
|
863
|
-
};
|
|
864
|
-
medium?: {
|
|
865
|
-
faces: {
|
|
866
|
-
x: number;
|
|
867
|
-
y: number;
|
|
868
|
-
h: number;
|
|
869
|
-
w: number;
|
|
684
|
+
indices: number[];
|
|
870
685
|
}[];
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
h: number;
|
|
877
|
-
w: number;
|
|
686
|
+
urls: {
|
|
687
|
+
display_url: string;
|
|
688
|
+
expanded_url: string;
|
|
689
|
+
url: string;
|
|
690
|
+
indices: number[];
|
|
878
691
|
}[];
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
x: number;
|
|
883
|
-
y: number;
|
|
884
|
-
h: number;
|
|
885
|
-
w: number;
|
|
692
|
+
hashtags: {
|
|
693
|
+
indices: number[];
|
|
694
|
+
text: string;
|
|
886
695
|
}[];
|
|
696
|
+
symbols: unknown[];
|
|
887
697
|
};
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
698
|
+
extended_entities?: {
|
|
699
|
+
media: {
|
|
700
|
+
display_url: string;
|
|
701
|
+
expanded_url: string;
|
|
702
|
+
id_str: string;
|
|
703
|
+
indices: number[];
|
|
704
|
+
media_key: string;
|
|
705
|
+
media_url_https: string;
|
|
893
706
|
type: string;
|
|
894
|
-
}[];
|
|
895
|
-
};
|
|
896
|
-
};
|
|
897
|
-
sizes: {
|
|
898
|
-
large: {
|
|
899
|
-
h: number;
|
|
900
|
-
w: number;
|
|
901
|
-
resize: string;
|
|
902
|
-
};
|
|
903
|
-
medium: {
|
|
904
|
-
h: number;
|
|
905
|
-
w: number;
|
|
906
|
-
resize: string;
|
|
907
|
-
};
|
|
908
|
-
small: {
|
|
909
|
-
h: number;
|
|
910
|
-
w: number;
|
|
911
|
-
resize: string;
|
|
912
|
-
};
|
|
913
|
-
thumb: {
|
|
914
|
-
h: number;
|
|
915
|
-
w: number;
|
|
916
|
-
resize: string;
|
|
917
|
-
};
|
|
918
|
-
};
|
|
919
|
-
original_info: {
|
|
920
|
-
height: number;
|
|
921
|
-
width: number;
|
|
922
|
-
focus_rects?: {
|
|
923
|
-
x: number;
|
|
924
|
-
y: number;
|
|
925
|
-
w: number;
|
|
926
|
-
h: number;
|
|
927
|
-
}[];
|
|
928
|
-
};
|
|
929
|
-
source_status_id_str?: string;
|
|
930
|
-
source_user_id_str?: string;
|
|
931
|
-
additional_media_info?: {
|
|
932
|
-
monetizable: boolean;
|
|
933
|
-
title?: string;
|
|
934
|
-
description?: string;
|
|
935
|
-
call_to_actions?: {
|
|
936
|
-
watch_now: {
|
|
937
707
|
url: string;
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
url: {
|
|
950
|
-
url: string;
|
|
951
|
-
urlType: string;
|
|
952
|
-
};
|
|
953
|
-
badge: {
|
|
954
|
-
url: string;
|
|
955
|
-
};
|
|
956
|
-
description: string;
|
|
957
|
-
userLabelType: string;
|
|
958
|
-
userLabelDisplayType: string;
|
|
959
|
-
};
|
|
708
|
+
ext_media_availability: {
|
|
709
|
+
status: string;
|
|
710
|
+
};
|
|
711
|
+
features: {
|
|
712
|
+
large?: {
|
|
713
|
+
faces: {
|
|
714
|
+
x: number;
|
|
715
|
+
y: number;
|
|
716
|
+
h: number;
|
|
717
|
+
w: number;
|
|
718
|
+
}[];
|
|
960
719
|
};
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
default_profile: boolean;
|
|
969
|
-
default_profile_image: boolean;
|
|
970
|
-
description: string;
|
|
971
|
-
entities: {
|
|
972
|
-
description: {
|
|
973
|
-
urls: {
|
|
974
|
-
display_url: string;
|
|
975
|
-
expanded_url: string;
|
|
976
|
-
url: string;
|
|
977
|
-
indices: number[];
|
|
978
|
-
}[];
|
|
979
|
-
};
|
|
980
|
-
url: {
|
|
981
|
-
urls: {
|
|
982
|
-
display_url: string;
|
|
983
|
-
expanded_url: string;
|
|
984
|
-
url: string;
|
|
985
|
-
indices: number[];
|
|
986
|
-
}[];
|
|
987
|
-
};
|
|
988
|
-
};
|
|
989
|
-
fast_followers_count: number;
|
|
990
|
-
favourites_count: number;
|
|
991
|
-
followers_count: number;
|
|
992
|
-
friends_count: number;
|
|
993
|
-
has_custom_timelines: boolean;
|
|
994
|
-
is_translator: boolean;
|
|
995
|
-
listed_count: number;
|
|
996
|
-
location: string;
|
|
997
|
-
media_count: number;
|
|
998
|
-
name: string;
|
|
999
|
-
normal_followers_count: number;
|
|
1000
|
-
pinned_tweet_ids_str: string[];
|
|
1001
|
-
possibly_sensitive: boolean;
|
|
1002
|
-
profile_banner_url: string;
|
|
1003
|
-
profile_image_url_https: string;
|
|
1004
|
-
profile_interstitial_type: string;
|
|
1005
|
-
screen_name: string;
|
|
1006
|
-
statuses_count: number;
|
|
1007
|
-
translator_type: string;
|
|
1008
|
-
url: string;
|
|
1009
|
-
verified: boolean;
|
|
1010
|
-
want_retweets: boolean;
|
|
1011
|
-
withheld_in_countries: unknown[];
|
|
1012
|
-
verified_type?: string;
|
|
720
|
+
medium?: {
|
|
721
|
+
faces: {
|
|
722
|
+
x: number;
|
|
723
|
+
y: number;
|
|
724
|
+
h: number;
|
|
725
|
+
w: number;
|
|
726
|
+
}[];
|
|
1013
727
|
};
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
728
|
+
small?: {
|
|
729
|
+
faces: {
|
|
730
|
+
x: number;
|
|
731
|
+
y: number;
|
|
732
|
+
h: number;
|
|
733
|
+
w: number;
|
|
734
|
+
}[];
|
|
735
|
+
};
|
|
736
|
+
orig?: {
|
|
737
|
+
faces: {
|
|
738
|
+
x: number;
|
|
739
|
+
y: number;
|
|
740
|
+
h: number;
|
|
741
|
+
w: number;
|
|
742
|
+
}[];
|
|
743
|
+
};
|
|
744
|
+
all?: {
|
|
745
|
+
tags: {
|
|
746
|
+
user_id: string;
|
|
1019
747
|
name: string;
|
|
1020
|
-
|
|
748
|
+
screen_name: string;
|
|
749
|
+
type: string;
|
|
1021
750
|
}[];
|
|
1022
751
|
};
|
|
1023
752
|
};
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
};
|
|
1030
|
-
video_info?: {
|
|
1031
|
-
aspect_ratio: number[];
|
|
1032
|
-
duration_millis: number;
|
|
1033
|
-
variants: {
|
|
1034
|
-
bitrate?: number;
|
|
1035
|
-
content_type: string;
|
|
1036
|
-
url: string;
|
|
1037
|
-
}[];
|
|
1038
|
-
};
|
|
1039
|
-
ext_alt_text?: string;
|
|
1040
|
-
}[];
|
|
1041
|
-
};
|
|
1042
|
-
retweeted_status_result?: {
|
|
1043
|
-
result: {
|
|
1044
|
-
__typename: string;
|
|
1045
|
-
rest_id: string;
|
|
1046
|
-
core: {
|
|
1047
|
-
user_results: {
|
|
1048
|
-
result: {
|
|
1049
|
-
__typename: string;
|
|
1050
|
-
id: string;
|
|
1051
|
-
rest_id: string;
|
|
1052
|
-
affiliates_highlighted_label: {
|
|
1053
|
-
label?: {
|
|
1054
|
-
badge: {
|
|
1055
|
-
url: string;
|
|
1056
|
-
};
|
|
1057
|
-
description: string;
|
|
1058
|
-
longDescription?: {
|
|
1059
|
-
text: string;
|
|
1060
|
-
entities: {
|
|
1061
|
-
fromIndex: number;
|
|
1062
|
-
toIndex: number;
|
|
1063
|
-
ref: {
|
|
1064
|
-
type: string;
|
|
1065
|
-
screen_name: string;
|
|
1066
|
-
mention_results: {
|
|
1067
|
-
result: {
|
|
1068
|
-
__typename: string;
|
|
1069
|
-
legacy: {
|
|
1070
|
-
screen_name: string;
|
|
1071
|
-
};
|
|
1072
|
-
rest_id: string;
|
|
1073
|
-
};
|
|
1074
|
-
};
|
|
1075
|
-
};
|
|
1076
|
-
}[];
|
|
1077
|
-
};
|
|
1078
|
-
userLabelType: string;
|
|
1079
|
-
url?: {
|
|
1080
|
-
url: string;
|
|
1081
|
-
urlType: string;
|
|
1082
|
-
};
|
|
1083
|
-
userLabelDisplayType?: string;
|
|
753
|
+
sizes: {
|
|
754
|
+
large: {
|
|
755
|
+
h: number;
|
|
756
|
+
w: number;
|
|
757
|
+
resize: string;
|
|
1084
758
|
};
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
legacy: {
|
|
1090
|
-
can_dm: boolean;
|
|
1091
|
-
can_media_tag: boolean;
|
|
1092
|
-
created_at: string;
|
|
1093
|
-
default_profile: boolean;
|
|
1094
|
-
default_profile_image: boolean;
|
|
1095
|
-
description: string;
|
|
1096
|
-
entities: {
|
|
1097
|
-
description: {
|
|
1098
|
-
urls: {
|
|
1099
|
-
display_url: string;
|
|
1100
|
-
expanded_url: string;
|
|
1101
|
-
url: string;
|
|
1102
|
-
indices: number[];
|
|
1103
|
-
}[];
|
|
1104
|
-
};
|
|
1105
|
-
url?: {
|
|
1106
|
-
urls: {
|
|
1107
|
-
display_url?: string;
|
|
1108
|
-
expanded_url?: string;
|
|
1109
|
-
url: string;
|
|
1110
|
-
indices: number[];
|
|
1111
|
-
}[];
|
|
1112
|
-
};
|
|
1113
|
-
};
|
|
1114
|
-
fast_followers_count: number;
|
|
1115
|
-
favourites_count: number;
|
|
1116
|
-
followers_count: number;
|
|
1117
|
-
friends_count: number;
|
|
1118
|
-
has_custom_timelines: boolean;
|
|
1119
|
-
is_translator: boolean;
|
|
1120
|
-
listed_count: number;
|
|
1121
|
-
location: string;
|
|
1122
|
-
media_count: number;
|
|
1123
|
-
name: string;
|
|
1124
|
-
normal_followers_count: number;
|
|
1125
|
-
pinned_tweet_ids_str: string[];
|
|
1126
|
-
possibly_sensitive: boolean;
|
|
1127
|
-
profile_banner_url?: string;
|
|
1128
|
-
profile_image_url_https: string;
|
|
1129
|
-
profile_interstitial_type: string;
|
|
1130
|
-
screen_name: string;
|
|
1131
|
-
statuses_count: number;
|
|
1132
|
-
translator_type: string;
|
|
1133
|
-
url?: string;
|
|
1134
|
-
verified: boolean;
|
|
1135
|
-
want_retweets: boolean;
|
|
1136
|
-
withheld_in_countries: unknown[];
|
|
1137
|
-
verified_type?: string;
|
|
1138
|
-
};
|
|
1139
|
-
professional?: {
|
|
1140
|
-
rest_id: string;
|
|
1141
|
-
professional_type: string;
|
|
1142
|
-
category: {
|
|
1143
|
-
id: number;
|
|
1144
|
-
name: string;
|
|
1145
|
-
icon_name: string;
|
|
1146
|
-
}[];
|
|
1147
|
-
};
|
|
1148
|
-
super_follow_eligible?: boolean;
|
|
1149
|
-
};
|
|
1150
|
-
};
|
|
1151
|
-
};
|
|
1152
|
-
edit_control: {
|
|
1153
|
-
edit_tweet_ids?: string[];
|
|
1154
|
-
editable_until_msecs?: string;
|
|
1155
|
-
is_edit_eligible?: boolean;
|
|
1156
|
-
edits_remaining?: string;
|
|
1157
|
-
initial_tweet_id?: string;
|
|
1158
|
-
edit_control_initial?: {
|
|
1159
|
-
edit_tweet_ids: string[];
|
|
1160
|
-
editable_until_msecs: string;
|
|
1161
|
-
is_edit_eligible: boolean;
|
|
1162
|
-
edits_remaining: string;
|
|
1163
|
-
};
|
|
1164
|
-
};
|
|
1165
|
-
edit_perspective?: {
|
|
1166
|
-
favorited: boolean;
|
|
1167
|
-
retweeted: boolean;
|
|
1168
|
-
};
|
|
1169
|
-
is_translatable: boolean;
|
|
1170
|
-
views: {
|
|
1171
|
-
count: string;
|
|
1172
|
-
state: string;
|
|
1173
|
-
};
|
|
1174
|
-
source: string;
|
|
1175
|
-
legacy: {
|
|
1176
|
-
bookmark_count: number;
|
|
1177
|
-
bookmarked: boolean;
|
|
1178
|
-
created_at: string;
|
|
1179
|
-
conversation_id_str: string;
|
|
1180
|
-
display_text_range: number[];
|
|
1181
|
-
entities: {
|
|
1182
|
-
media?: {
|
|
1183
|
-
display_url: string;
|
|
1184
|
-
expanded_url: string;
|
|
1185
|
-
id_str: string;
|
|
1186
|
-
indices: number[];
|
|
1187
|
-
media_url_https: string;
|
|
1188
|
-
type: string;
|
|
1189
|
-
url: string;
|
|
1190
|
-
features: {
|
|
1191
|
-
large?: {
|
|
1192
|
-
faces: {
|
|
1193
|
-
x: number;
|
|
1194
|
-
y: number;
|
|
1195
|
-
h: number;
|
|
1196
|
-
w: number;
|
|
1197
|
-
}[];
|
|
1198
|
-
};
|
|
1199
|
-
medium?: {
|
|
1200
|
-
faces: {
|
|
1201
|
-
x: number;
|
|
1202
|
-
y: number;
|
|
1203
|
-
h: number;
|
|
1204
|
-
w: number;
|
|
1205
|
-
}[];
|
|
1206
|
-
};
|
|
1207
|
-
small?: {
|
|
1208
|
-
faces: {
|
|
1209
|
-
x: number;
|
|
1210
|
-
y: number;
|
|
1211
|
-
h: number;
|
|
1212
|
-
w: number;
|
|
1213
|
-
}[];
|
|
1214
|
-
};
|
|
1215
|
-
orig?: {
|
|
1216
|
-
faces: {
|
|
1217
|
-
x: number;
|
|
1218
|
-
y: number;
|
|
1219
|
-
h: number;
|
|
1220
|
-
w: number;
|
|
1221
|
-
}[];
|
|
1222
|
-
};
|
|
1223
|
-
all?: {
|
|
1224
|
-
tags: {
|
|
1225
|
-
user_id: string;
|
|
1226
|
-
name: string;
|
|
1227
|
-
screen_name: string;
|
|
1228
|
-
type: string;
|
|
1229
|
-
}[];
|
|
1230
|
-
};
|
|
1231
|
-
};
|
|
1232
|
-
sizes: {
|
|
1233
|
-
large: {
|
|
1234
|
-
h: number;
|
|
1235
|
-
w: number;
|
|
1236
|
-
resize: string;
|
|
1237
|
-
};
|
|
1238
|
-
medium: {
|
|
1239
|
-
h: number;
|
|
1240
|
-
w: number;
|
|
1241
|
-
resize: string;
|
|
1242
|
-
};
|
|
1243
|
-
small: {
|
|
1244
|
-
h: number;
|
|
1245
|
-
w: number;
|
|
1246
|
-
resize: string;
|
|
1247
|
-
};
|
|
1248
|
-
thumb: {
|
|
1249
|
-
h: number;
|
|
1250
|
-
w: number;
|
|
1251
|
-
resize: string;
|
|
1252
|
-
};
|
|
1253
|
-
};
|
|
1254
|
-
original_info: {
|
|
1255
|
-
height: number;
|
|
1256
|
-
width: number;
|
|
1257
|
-
focus_rects?: {
|
|
1258
|
-
x: number;
|
|
1259
|
-
y: number;
|
|
1260
|
-
w: number;
|
|
1261
|
-
h: number;
|
|
1262
|
-
}[];
|
|
1263
|
-
};
|
|
1264
|
-
source_status_id_str?: string;
|
|
1265
|
-
source_user_id_str?: string;
|
|
1266
|
-
}[];
|
|
1267
|
-
user_mentions: {
|
|
1268
|
-
id_str: string;
|
|
1269
|
-
name: string;
|
|
1270
|
-
screen_name: string;
|
|
1271
|
-
indices: number[];
|
|
1272
|
-
}[];
|
|
1273
|
-
urls: {
|
|
1274
|
-
display_url: string;
|
|
1275
|
-
expanded_url: string;
|
|
1276
|
-
url: string;
|
|
1277
|
-
indices: number[];
|
|
1278
|
-
}[];
|
|
1279
|
-
hashtags: {
|
|
1280
|
-
indices: number[];
|
|
1281
|
-
text: string;
|
|
1282
|
-
}[];
|
|
1283
|
-
symbols: unknown[];
|
|
1284
|
-
};
|
|
1285
|
-
extended_entities?: {
|
|
1286
|
-
media: {
|
|
1287
|
-
display_url: string;
|
|
1288
|
-
expanded_url: string;
|
|
1289
|
-
id_str: string;
|
|
1290
|
-
indices: number[];
|
|
1291
|
-
media_key: string;
|
|
1292
|
-
media_url_https: string;
|
|
1293
|
-
type: string;
|
|
1294
|
-
url: string;
|
|
1295
|
-
ext_media_availability: {
|
|
1296
|
-
status: string;
|
|
1297
|
-
};
|
|
1298
|
-
features: {
|
|
1299
|
-
large?: {
|
|
1300
|
-
faces: {
|
|
1301
|
-
x: number;
|
|
1302
|
-
y: number;
|
|
1303
|
-
h: number;
|
|
1304
|
-
w: number;
|
|
1305
|
-
}[];
|
|
1306
|
-
};
|
|
1307
|
-
medium?: {
|
|
1308
|
-
faces: {
|
|
1309
|
-
x: number;
|
|
1310
|
-
y: number;
|
|
1311
|
-
h: number;
|
|
1312
|
-
w: number;
|
|
1313
|
-
}[];
|
|
1314
|
-
};
|
|
1315
|
-
small?: {
|
|
1316
|
-
faces: {
|
|
1317
|
-
x: number;
|
|
1318
|
-
y: number;
|
|
1319
|
-
h: number;
|
|
1320
|
-
w: number;
|
|
1321
|
-
}[];
|
|
1322
|
-
};
|
|
1323
|
-
orig?: {
|
|
1324
|
-
faces: {
|
|
1325
|
-
x: number;
|
|
1326
|
-
y: number;
|
|
1327
|
-
h: number;
|
|
1328
|
-
w: number;
|
|
1329
|
-
}[];
|
|
1330
|
-
};
|
|
1331
|
-
all?: {
|
|
1332
|
-
tags: {
|
|
1333
|
-
user_id: string;
|
|
1334
|
-
name: string;
|
|
1335
|
-
screen_name: string;
|
|
1336
|
-
type: string;
|
|
1337
|
-
}[];
|
|
1338
|
-
};
|
|
1339
|
-
};
|
|
1340
|
-
sizes: {
|
|
1341
|
-
large: {
|
|
1342
|
-
h: number;
|
|
1343
|
-
w: number;
|
|
1344
|
-
resize: string;
|
|
1345
|
-
};
|
|
1346
|
-
medium: {
|
|
1347
|
-
h: number;
|
|
1348
|
-
w: number;
|
|
1349
|
-
resize: string;
|
|
759
|
+
medium: {
|
|
760
|
+
h: number;
|
|
761
|
+
w: number;
|
|
762
|
+
resize: string;
|
|
1350
763
|
};
|
|
1351
764
|
small: {
|
|
1352
765
|
h: number;
|
|
@@ -2431,29 +1844,176 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2431
1844
|
quick_promote_eligibility?: {
|
|
2432
1845
|
eligibility: string;
|
|
2433
1846
|
};
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
1847
|
+
card?: {
|
|
1848
|
+
rest_id: string;
|
|
1849
|
+
legacy: {
|
|
1850
|
+
binding_values: {
|
|
1851
|
+
key: string;
|
|
1852
|
+
value: {
|
|
1853
|
+
image_value?: {
|
|
1854
|
+
height: number;
|
|
1855
|
+
width: number;
|
|
1856
|
+
url: string;
|
|
1857
|
+
alt?: string;
|
|
1858
|
+
};
|
|
1859
|
+
type: string;
|
|
1860
|
+
string_value?: string;
|
|
1861
|
+
scribe_key?: string;
|
|
1862
|
+
user_value?: {
|
|
1863
|
+
id_str: string;
|
|
1864
|
+
path: unknown[];
|
|
1865
|
+
};
|
|
1866
|
+
image_color_value?: {
|
|
1867
|
+
palette: {
|
|
1868
|
+
rgb: {
|
|
1869
|
+
blue: number;
|
|
1870
|
+
green: number;
|
|
1871
|
+
red: number;
|
|
1872
|
+
};
|
|
1873
|
+
percentage: number;
|
|
1874
|
+
}[];
|
|
1875
|
+
};
|
|
1876
|
+
boolean_value?: boolean;
|
|
1877
|
+
};
|
|
1878
|
+
}[];
|
|
1879
|
+
card_platform: {
|
|
1880
|
+
platform: {
|
|
1881
|
+
audience: {
|
|
1882
|
+
name: string;
|
|
1883
|
+
};
|
|
1884
|
+
device: {
|
|
1885
|
+
name: string;
|
|
1886
|
+
version: string;
|
|
1887
|
+
};
|
|
1888
|
+
};
|
|
1889
|
+
};
|
|
1890
|
+
name: string;
|
|
1891
|
+
url: string;
|
|
1892
|
+
user_refs_results: {
|
|
1893
|
+
result: {
|
|
1894
|
+
__typename: string;
|
|
1895
|
+
id?: string;
|
|
1896
|
+
rest_id?: string;
|
|
1897
|
+
affiliates_highlighted_label?: {
|
|
1898
|
+
label?: {
|
|
1899
|
+
url: {
|
|
1900
|
+
url: string;
|
|
1901
|
+
urlType: string;
|
|
1902
|
+
};
|
|
1903
|
+
badge: {
|
|
1904
|
+
url: string;
|
|
1905
|
+
};
|
|
1906
|
+
description: string;
|
|
1907
|
+
userLabelType: string;
|
|
1908
|
+
userLabelDisplayType: string;
|
|
1909
|
+
};
|
|
1910
|
+
};
|
|
1911
|
+
has_graduated_access?: boolean;
|
|
1912
|
+
is_blue_verified?: boolean;
|
|
1913
|
+
profile_image_shape?: string;
|
|
1914
|
+
legacy?: {
|
|
1915
|
+
can_dm: boolean;
|
|
1916
|
+
can_media_tag: boolean;
|
|
1917
|
+
created_at: string;
|
|
1918
|
+
default_profile: boolean;
|
|
1919
|
+
default_profile_image: boolean;
|
|
1920
|
+
description: string;
|
|
1921
|
+
entities: {
|
|
1922
|
+
description: {
|
|
1923
|
+
urls: {
|
|
1924
|
+
display_url: string;
|
|
1925
|
+
expanded_url: string;
|
|
1926
|
+
url: string;
|
|
1927
|
+
indices: number[];
|
|
1928
|
+
}[];
|
|
1929
|
+
};
|
|
1930
|
+
url?: {
|
|
1931
|
+
urls: {
|
|
1932
|
+
display_url: string;
|
|
1933
|
+
expanded_url: string;
|
|
1934
|
+
url: string;
|
|
1935
|
+
indices: number[];
|
|
1936
|
+
}[];
|
|
1937
|
+
};
|
|
1938
|
+
};
|
|
1939
|
+
fast_followers_count: number;
|
|
1940
|
+
favourites_count: number;
|
|
1941
|
+
followers_count: number;
|
|
1942
|
+
friends_count: number;
|
|
1943
|
+
has_custom_timelines: boolean;
|
|
1944
|
+
is_translator: boolean;
|
|
1945
|
+
listed_count: number;
|
|
1946
|
+
location: string;
|
|
1947
|
+
media_count: number;
|
|
1948
|
+
name: string;
|
|
1949
|
+
normal_followers_count: number;
|
|
1950
|
+
pinned_tweet_ids_str: string[];
|
|
1951
|
+
possibly_sensitive: boolean;
|
|
1952
|
+
profile_banner_url?: string;
|
|
1953
|
+
profile_image_url_https: string;
|
|
1954
|
+
profile_interstitial_type: string;
|
|
1955
|
+
screen_name: string;
|
|
1956
|
+
statuses_count: number;
|
|
1957
|
+
translator_type: string;
|
|
1958
|
+
url?: string;
|
|
1959
|
+
verified: boolean;
|
|
1960
|
+
verified_type?: string;
|
|
1961
|
+
want_retweets: boolean;
|
|
1962
|
+
withheld_in_countries: unknown[];
|
|
1963
|
+
};
|
|
1964
|
+
unavailable_message?: {
|
|
1965
|
+
rtl: boolean;
|
|
1966
|
+
text: string;
|
|
1967
|
+
entities: {
|
|
1968
|
+
fromIndex: number;
|
|
1969
|
+
toIndex: number;
|
|
1970
|
+
ref: {
|
|
1971
|
+
type: string;
|
|
1972
|
+
url: string;
|
|
1973
|
+
urlType: string;
|
|
1974
|
+
};
|
|
1975
|
+
}[];
|
|
1976
|
+
};
|
|
1977
|
+
reason?: string;
|
|
1978
|
+
professional?: {
|
|
1979
|
+
rest_id: string;
|
|
1980
|
+
professional_type: string;
|
|
1981
|
+
category: {
|
|
1982
|
+
id: number;
|
|
1983
|
+
name: string;
|
|
1984
|
+
icon_name: string;
|
|
1985
|
+
}[];
|
|
1986
|
+
};
|
|
1987
|
+
};
|
|
1988
|
+
}[];
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
unified_card?: {
|
|
1992
|
+
card_fetch_state: string;
|
|
1993
|
+
};
|
|
1994
|
+
quoted_status_result?: {
|
|
1995
|
+
result: {
|
|
1996
|
+
__typename: string;
|
|
1997
|
+
rest_id?: string;
|
|
1998
|
+
core?: {
|
|
1999
|
+
user_results: {
|
|
2000
|
+
result: {
|
|
2001
|
+
__typename: string;
|
|
2002
|
+
id: string;
|
|
2003
|
+
rest_id: string;
|
|
2004
|
+
affiliates_highlighted_label: {
|
|
2005
|
+
label?: {
|
|
2006
|
+
url: {
|
|
2007
|
+
url: string;
|
|
2008
|
+
urlType: string;
|
|
2009
|
+
};
|
|
2010
|
+
badge: {
|
|
2011
|
+
url: string;
|
|
2012
|
+
};
|
|
2013
|
+
description: string;
|
|
2014
|
+
userLabelType: string;
|
|
2015
|
+
userLabelDisplayType: string;
|
|
2016
|
+
};
|
|
2457
2017
|
};
|
|
2458
2018
|
has_graduated_access: boolean;
|
|
2459
2019
|
is_blue_verified: boolean;
|
|
@@ -3420,9 +2980,9 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
3420
2980
|
translator_type: string;
|
|
3421
2981
|
url?: string;
|
|
3422
2982
|
verified: boolean;
|
|
3423
|
-
verified_type?: string;
|
|
3424
2983
|
want_retweets: boolean;
|
|
3425
2984
|
withheld_in_countries: unknown[];
|
|
2985
|
+
verified_type?: string;
|
|
3426
2986
|
};
|
|
3427
2987
|
professional?: {
|
|
3428
2988
|
rest_id: string;
|
|
@@ -3535,10 +3095,10 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
3535
3095
|
screen_name: string;
|
|
3536
3096
|
statuses_count: number;
|
|
3537
3097
|
translator_type: string;
|
|
3538
|
-
url?: string;
|
|
3539
3098
|
verified: boolean;
|
|
3540
3099
|
want_retweets: boolean;
|
|
3541
3100
|
withheld_in_countries: unknown[];
|
|
3101
|
+
url?: string;
|
|
3542
3102
|
verified_type?: string;
|
|
3543
3103
|
followed_by?: boolean;
|
|
3544
3104
|
};
|
|
@@ -4178,165 +3738,605 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
4178
3738
|
resize: string;
|
|
4179
3739
|
};
|
|
4180
3740
|
};
|
|
4181
|
-
original_info: {
|
|
4182
|
-
height: number;
|
|
4183
|
-
width: number;
|
|
3741
|
+
original_info: {
|
|
3742
|
+
height: number;
|
|
3743
|
+
width: number;
|
|
3744
|
+
};
|
|
3745
|
+
video_info: {
|
|
3746
|
+
aspect_ratio: number[];
|
|
3747
|
+
duration_millis: number;
|
|
3748
|
+
variants: {
|
|
3749
|
+
bitrate?: number;
|
|
3750
|
+
content_type: string;
|
|
3751
|
+
url: string;
|
|
3752
|
+
}[];
|
|
3753
|
+
};
|
|
3754
|
+
}[];
|
|
3755
|
+
};
|
|
3756
|
+
possibly_sensitive?: boolean;
|
|
3757
|
+
possibly_sensitive_editable?: boolean;
|
|
3758
|
+
};
|
|
3759
|
+
};
|
|
3760
|
+
};
|
|
3761
|
+
};
|
|
3762
|
+
};
|
|
3763
|
+
tweetDisplayType?: string;
|
|
3764
|
+
promotedMetadata?: {
|
|
3765
|
+
advertiser_results: {
|
|
3766
|
+
result: {
|
|
3767
|
+
__typename: string;
|
|
3768
|
+
id: string;
|
|
3769
|
+
rest_id: string;
|
|
3770
|
+
affiliates_highlighted_label: {
|
|
3771
|
+
label?: {
|
|
3772
|
+
url: {
|
|
3773
|
+
url: string;
|
|
3774
|
+
urlType: string;
|
|
3775
|
+
};
|
|
3776
|
+
badge: {
|
|
3777
|
+
url: string;
|
|
3778
|
+
};
|
|
3779
|
+
description: string;
|
|
3780
|
+
userLabelType: string;
|
|
3781
|
+
userLabelDisplayType: string;
|
|
3782
|
+
};
|
|
3783
|
+
};
|
|
3784
|
+
has_graduated_access: boolean;
|
|
3785
|
+
is_blue_verified: boolean;
|
|
3786
|
+
profile_image_shape: string;
|
|
3787
|
+
legacy: {
|
|
3788
|
+
can_dm: boolean;
|
|
3789
|
+
can_media_tag: boolean;
|
|
3790
|
+
created_at: string;
|
|
3791
|
+
default_profile: boolean;
|
|
3792
|
+
default_profile_image: boolean;
|
|
3793
|
+
description: string;
|
|
3794
|
+
entities: {
|
|
3795
|
+
description: {
|
|
3796
|
+
urls: {
|
|
3797
|
+
display_url: string;
|
|
3798
|
+
expanded_url: string;
|
|
3799
|
+
url: string;
|
|
3800
|
+
indices: number[];
|
|
3801
|
+
}[];
|
|
3802
|
+
};
|
|
3803
|
+
url: {
|
|
3804
|
+
urls: {
|
|
3805
|
+
display_url: string;
|
|
3806
|
+
expanded_url: string;
|
|
3807
|
+
url: string;
|
|
3808
|
+
indices: number[];
|
|
3809
|
+
}[];
|
|
3810
|
+
};
|
|
3811
|
+
};
|
|
3812
|
+
fast_followers_count: number;
|
|
3813
|
+
favourites_count: number;
|
|
3814
|
+
followers_count: number;
|
|
3815
|
+
friends_count: number;
|
|
3816
|
+
has_custom_timelines: boolean;
|
|
3817
|
+
is_translator: boolean;
|
|
3818
|
+
listed_count: number;
|
|
3819
|
+
location: string;
|
|
3820
|
+
media_count: number;
|
|
3821
|
+
name: string;
|
|
3822
|
+
normal_followers_count: number;
|
|
3823
|
+
pinned_tweet_ids_str: string[];
|
|
3824
|
+
possibly_sensitive: boolean;
|
|
3825
|
+
profile_banner_url: string;
|
|
3826
|
+
profile_image_url_https: string;
|
|
3827
|
+
profile_interstitial_type: string;
|
|
3828
|
+
screen_name: string;
|
|
3829
|
+
statuses_count: number;
|
|
3830
|
+
translator_type: string;
|
|
3831
|
+
url: string;
|
|
3832
|
+
verified: boolean;
|
|
3833
|
+
verified_type: string;
|
|
3834
|
+
want_retweets: boolean;
|
|
3835
|
+
withheld_in_countries: unknown[];
|
|
3836
|
+
};
|
|
3837
|
+
professional?: {
|
|
3838
|
+
rest_id: string;
|
|
3839
|
+
professional_type: string;
|
|
3840
|
+
category: {
|
|
3841
|
+
id: number;
|
|
3842
|
+
name: string;
|
|
3843
|
+
icon_name: string;
|
|
3844
|
+
}[];
|
|
3845
|
+
};
|
|
3846
|
+
};
|
|
3847
|
+
};
|
|
3848
|
+
disclosureType: string;
|
|
3849
|
+
experimentValues: {
|
|
3850
|
+
key: string;
|
|
3851
|
+
value: string;
|
|
3852
|
+
}[];
|
|
3853
|
+
impressionId: string;
|
|
3854
|
+
impressionString: string;
|
|
3855
|
+
clickTrackingInfo: {
|
|
3856
|
+
urlParams: {
|
|
3857
|
+
key: string;
|
|
3858
|
+
value: string;
|
|
3859
|
+
}[];
|
|
3860
|
+
};
|
|
3861
|
+
};
|
|
3862
|
+
};
|
|
3863
|
+
clientEventInfo: {
|
|
3864
|
+
component: string;
|
|
3865
|
+
element: string;
|
|
3866
|
+
details: {
|
|
3867
|
+
timelinesDetails: {
|
|
3868
|
+
injectionType: string;
|
|
3869
|
+
controllerData: string;
|
|
3870
|
+
sourceData?: string;
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3873
|
+
};
|
|
3874
|
+
};
|
|
3875
|
+
}[];
|
|
3876
|
+
displayType?: string;
|
|
3877
|
+
header?: {
|
|
3878
|
+
displayType: string;
|
|
3879
|
+
text: string;
|
|
3880
|
+
sticky: boolean;
|
|
3881
|
+
};
|
|
3882
|
+
footer?: {
|
|
3883
|
+
displayType: string;
|
|
3884
|
+
text: string;
|
|
3885
|
+
landingUrl: {
|
|
3886
|
+
url: string;
|
|
3887
|
+
urlType: string;
|
|
3888
|
+
};
|
|
3889
|
+
};
|
|
3890
|
+
value?: string;
|
|
3891
|
+
cursorType?: string;
|
|
3892
|
+
metadata?: {
|
|
3893
|
+
conversationMetadata: {
|
|
3894
|
+
allTweetIds: string[];
|
|
3895
|
+
enableDeduplication: boolean;
|
|
3896
|
+
};
|
|
3897
|
+
};
|
|
3898
|
+
};
|
|
3899
|
+
}[];
|
|
3900
|
+
entry?: {
|
|
3901
|
+
entryId: string;
|
|
3902
|
+
sortIndex: string;
|
|
3903
|
+
content: {
|
|
3904
|
+
entryType: string;
|
|
3905
|
+
__typename: string;
|
|
3906
|
+
itemContent: {
|
|
3907
|
+
itemType: string;
|
|
3908
|
+
__typename: string;
|
|
3909
|
+
tweet_results: {
|
|
3910
|
+
result: {
|
|
3911
|
+
__typename: string;
|
|
3912
|
+
rest_id: string;
|
|
3913
|
+
core: {
|
|
3914
|
+
user_results: {
|
|
3915
|
+
result: {
|
|
3916
|
+
__typename: string;
|
|
3917
|
+
id: string;
|
|
3918
|
+
rest_id: string;
|
|
3919
|
+
affiliates_highlighted_label: {
|
|
3920
|
+
label?: {
|
|
3921
|
+
url: {
|
|
3922
|
+
url: string;
|
|
3923
|
+
urlType: string;
|
|
3924
|
+
};
|
|
3925
|
+
badge: {
|
|
3926
|
+
url: string;
|
|
3927
|
+
};
|
|
3928
|
+
description: string;
|
|
3929
|
+
userLabelType: string;
|
|
3930
|
+
userLabelDisplayType: string;
|
|
3931
|
+
};
|
|
3932
|
+
};
|
|
3933
|
+
has_graduated_access: boolean;
|
|
3934
|
+
is_blue_verified: boolean;
|
|
3935
|
+
profile_image_shape: string;
|
|
3936
|
+
legacy: {
|
|
3937
|
+
can_dm: boolean;
|
|
3938
|
+
can_media_tag: boolean;
|
|
3939
|
+
created_at: string;
|
|
3940
|
+
default_profile: boolean;
|
|
3941
|
+
default_profile_image: boolean;
|
|
3942
|
+
description: string;
|
|
3943
|
+
entities: {
|
|
3944
|
+
description: {
|
|
3945
|
+
urls: {
|
|
3946
|
+
display_url: string;
|
|
3947
|
+
expanded_url: string;
|
|
3948
|
+
url: string;
|
|
3949
|
+
indices: number[];
|
|
3950
|
+
}[];
|
|
3951
|
+
};
|
|
3952
|
+
url?: {
|
|
3953
|
+
urls: {
|
|
3954
|
+
display_url: string;
|
|
3955
|
+
expanded_url: string;
|
|
3956
|
+
url: string;
|
|
3957
|
+
indices: number[];
|
|
3958
|
+
}[];
|
|
3959
|
+
};
|
|
3960
|
+
};
|
|
3961
|
+
fast_followers_count: number;
|
|
3962
|
+
favourites_count: number;
|
|
3963
|
+
followers_count: number;
|
|
3964
|
+
friends_count: number;
|
|
3965
|
+
has_custom_timelines: boolean;
|
|
3966
|
+
is_translator: boolean;
|
|
3967
|
+
listed_count: number;
|
|
3968
|
+
location: string;
|
|
3969
|
+
media_count: number;
|
|
3970
|
+
name: string;
|
|
3971
|
+
normal_followers_count: number;
|
|
3972
|
+
pinned_tweet_ids_str: string[];
|
|
3973
|
+
possibly_sensitive: boolean;
|
|
3974
|
+
profile_banner_url: string;
|
|
3975
|
+
profile_image_url_https: string;
|
|
3976
|
+
profile_interstitial_type: string;
|
|
3977
|
+
screen_name: string;
|
|
3978
|
+
statuses_count: number;
|
|
3979
|
+
translator_type: string;
|
|
3980
|
+
url?: string;
|
|
3981
|
+
verified: boolean;
|
|
3982
|
+
want_retweets: boolean;
|
|
3983
|
+
withheld_in_countries: unknown[];
|
|
3984
|
+
following?: boolean;
|
|
3985
|
+
verified_type?: string;
|
|
3986
|
+
};
|
|
3987
|
+
professional?: {
|
|
3988
|
+
rest_id: string;
|
|
3989
|
+
professional_type: string;
|
|
3990
|
+
category: {
|
|
3991
|
+
id: number;
|
|
3992
|
+
name: string;
|
|
3993
|
+
icon_name: string;
|
|
3994
|
+
}[];
|
|
3995
|
+
};
|
|
3996
|
+
super_follow_eligible?: boolean;
|
|
3997
|
+
};
|
|
3998
|
+
};
|
|
3999
|
+
};
|
|
4000
|
+
edit_control: {
|
|
4001
|
+
edit_tweet_ids: string[];
|
|
4002
|
+
editable_until_msecs: string;
|
|
4003
|
+
is_edit_eligible: boolean;
|
|
4004
|
+
edits_remaining: string;
|
|
4005
|
+
};
|
|
4006
|
+
edit_perspective?: {
|
|
4007
|
+
favorited: boolean;
|
|
4008
|
+
retweeted: boolean;
|
|
4009
|
+
};
|
|
4010
|
+
is_translatable: boolean;
|
|
4011
|
+
views: {
|
|
4012
|
+
count?: string;
|
|
4013
|
+
state: string;
|
|
4014
|
+
};
|
|
4015
|
+
source: string;
|
|
4016
|
+
legacy: {
|
|
4017
|
+
bookmark_count: number;
|
|
4018
|
+
bookmarked: boolean;
|
|
4019
|
+
created_at: string;
|
|
4020
|
+
conversation_id_str: string;
|
|
4021
|
+
display_text_range: number[];
|
|
4022
|
+
entities: {
|
|
4023
|
+
user_mentions: {
|
|
4024
|
+
id_str: string;
|
|
4025
|
+
name: string;
|
|
4026
|
+
screen_name: string;
|
|
4027
|
+
indices: number[];
|
|
4028
|
+
}[];
|
|
4029
|
+
urls: {
|
|
4030
|
+
display_url: string;
|
|
4031
|
+
expanded_url: string;
|
|
4032
|
+
url: string;
|
|
4033
|
+
indices: number[];
|
|
4034
|
+
}[];
|
|
4035
|
+
hashtags: {
|
|
4036
|
+
indices: number[];
|
|
4037
|
+
text: string;
|
|
4038
|
+
}[];
|
|
4039
|
+
symbols: unknown[];
|
|
4040
|
+
media?: {
|
|
4041
|
+
display_url: string;
|
|
4042
|
+
expanded_url: string;
|
|
4043
|
+
id_str: string;
|
|
4044
|
+
indices: number[];
|
|
4045
|
+
media_url_https: string;
|
|
4046
|
+
type: string;
|
|
4047
|
+
url: string;
|
|
4048
|
+
features: {
|
|
4049
|
+
large?: {
|
|
4050
|
+
faces: unknown[];
|
|
4051
|
+
};
|
|
4052
|
+
medium?: {
|
|
4053
|
+
faces: unknown[];
|
|
4054
|
+
};
|
|
4055
|
+
small?: {
|
|
4056
|
+
faces: unknown[];
|
|
4057
|
+
};
|
|
4058
|
+
orig?: {
|
|
4059
|
+
faces: unknown[];
|
|
4060
|
+
};
|
|
4061
|
+
};
|
|
4062
|
+
sizes: {
|
|
4063
|
+
large: {
|
|
4064
|
+
h: number;
|
|
4065
|
+
w: number;
|
|
4066
|
+
resize: string;
|
|
4067
|
+
};
|
|
4068
|
+
medium: {
|
|
4069
|
+
h: number;
|
|
4070
|
+
w: number;
|
|
4071
|
+
resize: string;
|
|
4072
|
+
};
|
|
4073
|
+
small: {
|
|
4074
|
+
h: number;
|
|
4075
|
+
w: number;
|
|
4076
|
+
resize: string;
|
|
4077
|
+
};
|
|
4078
|
+
thumb: {
|
|
4079
|
+
h: number;
|
|
4080
|
+
w: number;
|
|
4081
|
+
resize: string;
|
|
4082
|
+
};
|
|
4083
|
+
};
|
|
4084
|
+
original_info: {
|
|
4085
|
+
height: number;
|
|
4086
|
+
width: number;
|
|
4087
|
+
focus_rects?: {
|
|
4088
|
+
x: number;
|
|
4089
|
+
y: number;
|
|
4090
|
+
w: number;
|
|
4091
|
+
h: number;
|
|
4092
|
+
}[];
|
|
4093
|
+
};
|
|
4094
|
+
}[];
|
|
4095
|
+
};
|
|
4096
|
+
favorite_count: number;
|
|
4097
|
+
favorited: boolean;
|
|
4098
|
+
full_text: string;
|
|
4099
|
+
is_quote_status: boolean;
|
|
4100
|
+
lang: string;
|
|
4101
|
+
possibly_sensitive?: boolean;
|
|
4102
|
+
possibly_sensitive_editable?: boolean;
|
|
4103
|
+
quote_count: number;
|
|
4104
|
+
reply_count: number;
|
|
4105
|
+
retweet_count: number;
|
|
4106
|
+
retweeted: boolean;
|
|
4107
|
+
user_id_str: string;
|
|
4108
|
+
id_str: string;
|
|
4109
|
+
quoted_status_id_str?: string;
|
|
4110
|
+
quoted_status_permalink?: {
|
|
4111
|
+
url: string;
|
|
4112
|
+
expanded: string;
|
|
4113
|
+
display: string;
|
|
4114
|
+
};
|
|
4115
|
+
extended_entities?: {
|
|
4116
|
+
media: {
|
|
4117
|
+
display_url: string;
|
|
4118
|
+
expanded_url: string;
|
|
4119
|
+
id_str: string;
|
|
4120
|
+
indices: number[];
|
|
4121
|
+
media_key: string;
|
|
4122
|
+
media_url_https: string;
|
|
4123
|
+
type: string;
|
|
4124
|
+
url: string;
|
|
4125
|
+
additional_media_info?: {
|
|
4126
|
+
title: string;
|
|
4127
|
+
monetizable: boolean;
|
|
4128
|
+
};
|
|
4129
|
+
mediaStats?: {
|
|
4130
|
+
viewCount: number;
|
|
4131
|
+
};
|
|
4132
|
+
ext_media_availability: {
|
|
4133
|
+
status: string;
|
|
4134
|
+
};
|
|
4135
|
+
features: {
|
|
4136
|
+
large?: {
|
|
4137
|
+
faces: unknown[];
|
|
4138
|
+
};
|
|
4139
|
+
medium?: {
|
|
4140
|
+
faces: unknown[];
|
|
4141
|
+
};
|
|
4142
|
+
small?: {
|
|
4143
|
+
faces: unknown[];
|
|
4144
|
+
};
|
|
4145
|
+
orig?: {
|
|
4146
|
+
faces: unknown[];
|
|
4147
|
+
};
|
|
4148
|
+
};
|
|
4149
|
+
sizes: {
|
|
4150
|
+
large: {
|
|
4151
|
+
h: number;
|
|
4152
|
+
w: number;
|
|
4153
|
+
resize: string;
|
|
4154
|
+
};
|
|
4155
|
+
medium: {
|
|
4156
|
+
h: number;
|
|
4157
|
+
w: number;
|
|
4158
|
+
resize: string;
|
|
4159
|
+
};
|
|
4160
|
+
small: {
|
|
4161
|
+
h: number;
|
|
4162
|
+
w: number;
|
|
4163
|
+
resize: string;
|
|
4164
|
+
};
|
|
4165
|
+
thumb: {
|
|
4166
|
+
h: number;
|
|
4167
|
+
w: number;
|
|
4168
|
+
resize: string;
|
|
4169
|
+
};
|
|
4170
|
+
};
|
|
4171
|
+
original_info: {
|
|
4172
|
+
height: number;
|
|
4173
|
+
width: number;
|
|
4174
|
+
focus_rects?: {
|
|
4175
|
+
x: number;
|
|
4176
|
+
y: number;
|
|
4177
|
+
w: number;
|
|
4178
|
+
h: number;
|
|
4179
|
+
}[];
|
|
4180
|
+
};
|
|
4181
|
+
video_info?: {
|
|
4182
|
+
aspect_ratio: number[];
|
|
4183
|
+
duration_millis: number;
|
|
4184
|
+
variants: {
|
|
4185
|
+
bitrate?: number;
|
|
4186
|
+
content_type: string;
|
|
4187
|
+
url: string;
|
|
4188
|
+
}[];
|
|
4189
|
+
};
|
|
4190
|
+
}[];
|
|
4191
|
+
};
|
|
4192
|
+
};
|
|
4193
|
+
quick_promote_eligibility: {
|
|
4194
|
+
eligibility: string;
|
|
4195
|
+
};
|
|
4196
|
+
quoted_status_result?: {
|
|
4197
|
+
result: {
|
|
4198
|
+
__typename: string;
|
|
4199
|
+
rest_id: string;
|
|
4200
|
+
core: {
|
|
4201
|
+
user_results: {
|
|
4202
|
+
result: {
|
|
4203
|
+
__typename: string;
|
|
4204
|
+
id: string;
|
|
4205
|
+
rest_id: string;
|
|
4206
|
+
affiliates_highlighted_label: {
|
|
4207
|
+
label: {
|
|
4208
|
+
url: {
|
|
4209
|
+
url: string;
|
|
4210
|
+
urlType: string;
|
|
4211
|
+
};
|
|
4212
|
+
badge: {
|
|
4213
|
+
url: string;
|
|
4184
4214
|
};
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4215
|
+
description: string;
|
|
4216
|
+
userLabelType: string;
|
|
4217
|
+
userLabelDisplayType: string;
|
|
4218
|
+
};
|
|
4219
|
+
};
|
|
4220
|
+
has_graduated_access: boolean;
|
|
4221
|
+
is_blue_verified: boolean;
|
|
4222
|
+
profile_image_shape: string;
|
|
4223
|
+
legacy: {
|
|
4224
|
+
can_dm: boolean;
|
|
4225
|
+
can_media_tag: boolean;
|
|
4226
|
+
created_at: string;
|
|
4227
|
+
default_profile: boolean;
|
|
4228
|
+
default_profile_image: boolean;
|
|
4229
|
+
description: string;
|
|
4230
|
+
entities: {
|
|
4231
|
+
description: {
|
|
4232
|
+
urls: {
|
|
4233
|
+
display_url: string;
|
|
4234
|
+
expanded_url: string;
|
|
4191
4235
|
url: string;
|
|
4236
|
+
indices: number[];
|
|
4192
4237
|
}[];
|
|
4193
4238
|
};
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4239
|
+
url: {
|
|
4240
|
+
urls: {
|
|
4241
|
+
display_url: string;
|
|
4242
|
+
expanded_url: string;
|
|
4243
|
+
url: string;
|
|
4244
|
+
indices: number[];
|
|
4245
|
+
}[];
|
|
4246
|
+
};
|
|
4247
|
+
};
|
|
4248
|
+
fast_followers_count: number;
|
|
4249
|
+
favourites_count: number;
|
|
4250
|
+
followers_count: number;
|
|
4251
|
+
friends_count: number;
|
|
4252
|
+
has_custom_timelines: boolean;
|
|
4253
|
+
is_translator: boolean;
|
|
4254
|
+
listed_count: number;
|
|
4255
|
+
location: string;
|
|
4256
|
+
media_count: number;
|
|
4257
|
+
name: string;
|
|
4258
|
+
normal_followers_count: number;
|
|
4259
|
+
pinned_tweet_ids_str: unknown[];
|
|
4260
|
+
possibly_sensitive: boolean;
|
|
4261
|
+
profile_banner_url: string;
|
|
4262
|
+
profile_image_url_https: string;
|
|
4263
|
+
profile_interstitial_type: string;
|
|
4264
|
+
screen_name: string;
|
|
4265
|
+
statuses_count: number;
|
|
4266
|
+
translator_type: string;
|
|
4217
4267
|
url: string;
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
};
|
|
4223
|
-
};
|
|
4224
|
-
has_graduated_access: boolean;
|
|
4225
|
-
is_blue_verified: boolean;
|
|
4226
|
-
profile_image_shape: string;
|
|
4227
|
-
legacy: {
|
|
4228
|
-
can_dm: boolean;
|
|
4229
|
-
can_media_tag: boolean;
|
|
4230
|
-
created_at: string;
|
|
4231
|
-
default_profile: boolean;
|
|
4232
|
-
default_profile_image: boolean;
|
|
4233
|
-
description: string;
|
|
4234
|
-
entities: {
|
|
4235
|
-
description: {
|
|
4236
|
-
urls: {
|
|
4237
|
-
display_url: string;
|
|
4238
|
-
expanded_url: string;
|
|
4239
|
-
url: string;
|
|
4240
|
-
indices: number[];
|
|
4241
|
-
}[];
|
|
4242
|
-
};
|
|
4243
|
-
url: {
|
|
4244
|
-
urls: {
|
|
4245
|
-
display_url: string;
|
|
4246
|
-
expanded_url: string;
|
|
4247
|
-
url: string;
|
|
4248
|
-
indices: number[];
|
|
4249
|
-
}[];
|
|
4268
|
+
verified: boolean;
|
|
4269
|
+
verified_type: string;
|
|
4270
|
+
want_retweets: boolean;
|
|
4271
|
+
withheld_in_countries: unknown[];
|
|
4250
4272
|
};
|
|
4251
4273
|
};
|
|
4252
|
-
fast_followers_count: number;
|
|
4253
|
-
favourites_count: number;
|
|
4254
|
-
followers_count: number;
|
|
4255
|
-
friends_count: number;
|
|
4256
|
-
has_custom_timelines: boolean;
|
|
4257
|
-
is_translator: boolean;
|
|
4258
|
-
listed_count: number;
|
|
4259
|
-
location: string;
|
|
4260
|
-
media_count: number;
|
|
4261
|
-
name: string;
|
|
4262
|
-
normal_followers_count: number;
|
|
4263
|
-
pinned_tweet_ids_str: string[];
|
|
4264
|
-
possibly_sensitive: boolean;
|
|
4265
|
-
profile_banner_url: string;
|
|
4266
|
-
profile_image_url_https: string;
|
|
4267
|
-
profile_interstitial_type: string;
|
|
4268
|
-
screen_name: string;
|
|
4269
|
-
statuses_count: number;
|
|
4270
|
-
translator_type: string;
|
|
4271
|
-
url: string;
|
|
4272
|
-
verified: boolean;
|
|
4273
|
-
verified_type: string;
|
|
4274
|
-
want_retweets: boolean;
|
|
4275
|
-
withheld_in_countries: unknown[];
|
|
4276
4274
|
};
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4275
|
+
};
|
|
4276
|
+
edit_control: {
|
|
4277
|
+
edit_tweet_ids: string[];
|
|
4278
|
+
editable_until_msecs: string;
|
|
4279
|
+
is_edit_eligible: boolean;
|
|
4280
|
+
edits_remaining: string;
|
|
4281
|
+
};
|
|
4282
|
+
edit_perspective: {
|
|
4283
|
+
favorited: boolean;
|
|
4284
|
+
retweeted: boolean;
|
|
4285
|
+
};
|
|
4286
|
+
is_translatable: boolean;
|
|
4287
|
+
views: {
|
|
4288
|
+
count: string;
|
|
4289
|
+
state: string;
|
|
4290
|
+
};
|
|
4291
|
+
source: string;
|
|
4292
|
+
legacy: {
|
|
4293
|
+
bookmark_count: number;
|
|
4294
|
+
bookmarked: boolean;
|
|
4295
|
+
created_at: string;
|
|
4296
|
+
conversation_id_str: string;
|
|
4297
|
+
display_text_range: number[];
|
|
4298
|
+
entities: {
|
|
4299
|
+
user_mentions: unknown[];
|
|
4300
|
+
urls: {
|
|
4301
|
+
display_url: string;
|
|
4302
|
+
expanded_url: string;
|
|
4303
|
+
url: string;
|
|
4304
|
+
indices: number[];
|
|
4284
4305
|
}[];
|
|
4306
|
+
hashtags: unknown[];
|
|
4307
|
+
symbols: unknown[];
|
|
4285
4308
|
};
|
|
4309
|
+
favorite_count: number;
|
|
4310
|
+
favorited: boolean;
|
|
4311
|
+
full_text: string;
|
|
4312
|
+
is_quote_status: boolean;
|
|
4313
|
+
lang: string;
|
|
4314
|
+
possibly_sensitive: boolean;
|
|
4315
|
+
possibly_sensitive_editable: boolean;
|
|
4316
|
+
quote_count: number;
|
|
4317
|
+
reply_count: number;
|
|
4318
|
+
retweet_count: number;
|
|
4319
|
+
retweeted: boolean;
|
|
4320
|
+
user_id_str: string;
|
|
4321
|
+
id_str: string;
|
|
4286
4322
|
};
|
|
4287
4323
|
};
|
|
4288
|
-
disclosureType: string;
|
|
4289
|
-
experimentValues: {
|
|
4290
|
-
key: string;
|
|
4291
|
-
value: string;
|
|
4292
|
-
}[];
|
|
4293
|
-
impressionId: string;
|
|
4294
|
-
impressionString: string;
|
|
4295
|
-
clickTrackingInfo: {
|
|
4296
|
-
urlParams: {
|
|
4297
|
-
key: string;
|
|
4298
|
-
value: string;
|
|
4299
|
-
}[];
|
|
4300
|
-
};
|
|
4301
|
-
};
|
|
4302
|
-
};
|
|
4303
|
-
clientEventInfo: {
|
|
4304
|
-
component: string;
|
|
4305
|
-
element: string;
|
|
4306
|
-
details: {
|
|
4307
|
-
timelinesDetails: {
|
|
4308
|
-
injectionType: string;
|
|
4309
|
-
controllerData: string;
|
|
4310
|
-
sourceData?: string;
|
|
4311
|
-
};
|
|
4312
4324
|
};
|
|
4313
4325
|
};
|
|
4314
4326
|
};
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
sticky: boolean;
|
|
4321
|
-
};
|
|
4322
|
-
footer?: {
|
|
4323
|
-
displayType: string;
|
|
4324
|
-
text: string;
|
|
4325
|
-
landingUrl: {
|
|
4326
|
-
url: string;
|
|
4327
|
-
urlType: string;
|
|
4327
|
+
tweetDisplayType: string;
|
|
4328
|
+
socialContext: {
|
|
4329
|
+
type: string;
|
|
4330
|
+
contextType: string;
|
|
4331
|
+
text: string;
|
|
4328
4332
|
};
|
|
4329
4333
|
};
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
enableDeduplication: boolean;
|
|
4334
|
-
};
|
|
4334
|
+
clientEventInfo: {
|
|
4335
|
+
component: string;
|
|
4336
|
+
element: string;
|
|
4335
4337
|
};
|
|
4336
|
-
value?: string;
|
|
4337
|
-
cursorType?: string;
|
|
4338
4338
|
};
|
|
4339
|
-
}
|
|
4339
|
+
};
|
|
4340
4340
|
}[];
|
|
4341
4341
|
metadata: {
|
|
4342
4342
|
scribeConfig: {
|