@book000/twitterts 0.10.7 → 0.12.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.js +72 -9
- package/dist/generate-types.js.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +25 -4
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts +1718 -2
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +2824 -0
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -0
- package/dist/models/responses/custom/custom-user-tweet-entry.js +4 -0
- package/dist/models/responses/custom/custom-user-tweet-entry.js.map +1 -0
- package/dist/models/responses/endpoints.d.ts +14 -2
- package/dist/models/responses/endpoints.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +178 -0
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/audio-space-by-id-success.js +4 -0
- package/dist/models/responses/graphql/get/audio-space-by-id-success.js.map +1 -0
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +296 -6
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/likes-success.d.ts +1318 -0
- package/dist/models/responses/graphql/get/likes-success.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/likes-success.js +4 -0
- package/dist/models/responses/graphql/get/likes-success.js.map +1 -0
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts +25 -4
- 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 +41 -2
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-media-success.d.ts +697 -0
- package/dist/models/responses/graphql/get/user-media-success.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/user-media-success.js +4 -0
- package/dist/models/responses/graphql/get/user-media-success.js.map +1 -0
- package/dist/models/responses/graphql/get/user-tweets-and-replies-success.d.ts +2841 -0
- package/dist/models/responses/graphql/get/user-tweets-and-replies-success.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/user-tweets-and-replies-success.js +4 -0
- package/dist/models/responses/graphql/get/user-tweets-and-replies-success.js.map +1 -0
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts +1742 -183
- 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 +112 -6
- 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 +241 -21
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
- package/dist/options.d.ts +19 -0
- package/dist/options.d.ts.map +1 -1
- package/dist/options.js.map +1 -1
- package/dist/parser/parser.test.d.ts +2 -0
- package/dist/parser/parser.test.d.ts.map +1 -0
- package/dist/parser/parser.test.js +46 -0
- package/dist/parser/parser.test.js.map +1 -0
- package/dist/parser/search-timeline.d.ts.map +1 -1
- package/dist/parser/search-timeline.js +9 -6
- package/dist/parser/search-timeline.js.map +1 -1
- package/dist/parser/user-like-tweets.d.ts +20 -0
- package/dist/parser/user-like-tweets.d.ts.map +1 -0
- package/dist/parser/user-like-tweets.js +59 -0
- package/dist/parser/user-like-tweets.js.map +1 -0
- package/dist/parser/user-tweets.d.ts +20 -0
- package/dist/parser/user-tweets.d.ts.map +1 -0
- package/dist/parser/user-tweets.js +59 -0
- package/dist/parser/user-tweets.js.map +1 -0
- package/dist/scraper.d.ts.map +1 -1
- package/dist/scraper.js +1 -0
- 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 +15 -1
- package/dist/twitter.d.ts.map +1 -1
- package/dist/twitter.js +90 -1
- package/dist/twitter.js.map +1 -1
- package/dist/twitter.test.js +14 -0
- package/dist/twitter.test.js.map +1 -1
- package/package.json +13 -9
|
@@ -31,7 +31,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
31
31
|
__typename: string;
|
|
32
32
|
id: string;
|
|
33
33
|
rest_id: string;
|
|
34
|
-
affiliates_highlighted_label: {
|
|
34
|
+
affiliates_highlighted_label: {
|
|
35
|
+
label?: {
|
|
36
|
+
url: {
|
|
37
|
+
url: string;
|
|
38
|
+
urlType: string;
|
|
39
|
+
};
|
|
40
|
+
badge: {
|
|
41
|
+
url: string;
|
|
42
|
+
};
|
|
43
|
+
description: string;
|
|
44
|
+
userLabelType: string;
|
|
45
|
+
userLabelDisplayType: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
35
48
|
has_graduated_access: boolean;
|
|
36
49
|
is_blue_verified: boolean;
|
|
37
50
|
profile_image_shape: string;
|
|
@@ -46,7 +59,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
46
59
|
description: {
|
|
47
60
|
urls: unknown[];
|
|
48
61
|
};
|
|
49
|
-
url
|
|
62
|
+
url?: {
|
|
50
63
|
urls: {
|
|
51
64
|
display_url: string;
|
|
52
65
|
expanded_url: string;
|
|
@@ -74,11 +87,21 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
74
87
|
screen_name: string;
|
|
75
88
|
statuses_count: number;
|
|
76
89
|
translator_type: string;
|
|
77
|
-
url
|
|
90
|
+
url?: string;
|
|
78
91
|
verified: boolean;
|
|
79
92
|
want_retweets: boolean;
|
|
80
93
|
withheld_in_countries: unknown[];
|
|
81
94
|
};
|
|
95
|
+
professional?: {
|
|
96
|
+
rest_id: string;
|
|
97
|
+
professional_type: string;
|
|
98
|
+
category: {
|
|
99
|
+
id: number;
|
|
100
|
+
name: string;
|
|
101
|
+
icon_name: string;
|
|
102
|
+
}[];
|
|
103
|
+
};
|
|
104
|
+
super_follow_eligible?: boolean;
|
|
82
105
|
};
|
|
83
106
|
};
|
|
84
107
|
};
|
|
@@ -156,7 +179,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
156
179
|
description: string;
|
|
157
180
|
entities: {
|
|
158
181
|
description: {
|
|
159
|
-
urls:
|
|
182
|
+
urls: {
|
|
183
|
+
display_url: string;
|
|
184
|
+
expanded_url: string;
|
|
185
|
+
url: string;
|
|
186
|
+
indices: number[];
|
|
187
|
+
}[];
|
|
160
188
|
};
|
|
161
189
|
url?: {
|
|
162
190
|
urls: {
|
|
@@ -192,6 +220,15 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
192
220
|
url?: string;
|
|
193
221
|
verified_type?: string;
|
|
194
222
|
};
|
|
223
|
+
professional?: {
|
|
224
|
+
rest_id: string;
|
|
225
|
+
professional_type: string;
|
|
226
|
+
category: {
|
|
227
|
+
id: number;
|
|
228
|
+
name: string;
|
|
229
|
+
icon_name: string;
|
|
230
|
+
}[];
|
|
231
|
+
};
|
|
195
232
|
};
|
|
196
233
|
}[];
|
|
197
234
|
};
|
|
@@ -222,7 +259,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
222
259
|
conversation_id_str: string;
|
|
223
260
|
display_text_range: number[];
|
|
224
261
|
entities: {
|
|
225
|
-
user_mentions:
|
|
262
|
+
user_mentions: {
|
|
263
|
+
id_str: string;
|
|
264
|
+
name: string;
|
|
265
|
+
screen_name: string;
|
|
266
|
+
indices: number[];
|
|
267
|
+
}[];
|
|
226
268
|
urls: {
|
|
227
269
|
display_url: string;
|
|
228
270
|
expanded_url: string;
|
|
@@ -241,16 +283,36 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
241
283
|
url: string;
|
|
242
284
|
features: {
|
|
243
285
|
large: {
|
|
244
|
-
faces:
|
|
286
|
+
faces: {
|
|
287
|
+
x: number;
|
|
288
|
+
y: number;
|
|
289
|
+
h: number;
|
|
290
|
+
w: number;
|
|
291
|
+
}[];
|
|
245
292
|
};
|
|
246
293
|
medium: {
|
|
247
|
-
faces:
|
|
294
|
+
faces: {
|
|
295
|
+
x: number;
|
|
296
|
+
y: number;
|
|
297
|
+
h: number;
|
|
298
|
+
w: number;
|
|
299
|
+
}[];
|
|
248
300
|
};
|
|
249
301
|
small: {
|
|
250
|
-
faces:
|
|
302
|
+
faces: {
|
|
303
|
+
x: number;
|
|
304
|
+
y: number;
|
|
305
|
+
h: number;
|
|
306
|
+
w: number;
|
|
307
|
+
}[];
|
|
251
308
|
};
|
|
252
309
|
orig: {
|
|
253
|
-
faces:
|
|
310
|
+
faces: {
|
|
311
|
+
x: number;
|
|
312
|
+
y: number;
|
|
313
|
+
h: number;
|
|
314
|
+
w: number;
|
|
315
|
+
}[];
|
|
254
316
|
};
|
|
255
317
|
};
|
|
256
318
|
sizes: {
|
|
@@ -318,16 +380,36 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
318
380
|
};
|
|
319
381
|
features: {
|
|
320
382
|
large: {
|
|
321
|
-
faces:
|
|
383
|
+
faces: {
|
|
384
|
+
x: number;
|
|
385
|
+
y: number;
|
|
386
|
+
h: number;
|
|
387
|
+
w: number;
|
|
388
|
+
}[];
|
|
322
389
|
};
|
|
323
390
|
medium: {
|
|
324
|
-
faces:
|
|
391
|
+
faces: {
|
|
392
|
+
x: number;
|
|
393
|
+
y: number;
|
|
394
|
+
h: number;
|
|
395
|
+
w: number;
|
|
396
|
+
}[];
|
|
325
397
|
};
|
|
326
398
|
small: {
|
|
327
|
-
faces:
|
|
399
|
+
faces: {
|
|
400
|
+
x: number;
|
|
401
|
+
y: number;
|
|
402
|
+
h: number;
|
|
403
|
+
w: number;
|
|
404
|
+
}[];
|
|
328
405
|
};
|
|
329
406
|
orig: {
|
|
330
|
-
faces:
|
|
407
|
+
faces: {
|
|
408
|
+
x: number;
|
|
409
|
+
y: number;
|
|
410
|
+
h: number;
|
|
411
|
+
w: number;
|
|
412
|
+
}[];
|
|
331
413
|
};
|
|
332
414
|
};
|
|
333
415
|
sizes: {
|
|
@@ -364,10 +446,214 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
364
446
|
};
|
|
365
447
|
}[];
|
|
366
448
|
};
|
|
449
|
+
quoted_status_id_str?: string;
|
|
450
|
+
quoted_status_permalink?: {
|
|
451
|
+
url: string;
|
|
452
|
+
expanded: string;
|
|
453
|
+
display: string;
|
|
454
|
+
};
|
|
367
455
|
};
|
|
368
456
|
quick_promote_eligibility: {
|
|
369
457
|
eligibility: string;
|
|
370
458
|
};
|
|
459
|
+
quoted_status_result?: {
|
|
460
|
+
result: {
|
|
461
|
+
__typename: string;
|
|
462
|
+
rest_id: string;
|
|
463
|
+
core: {
|
|
464
|
+
user_results: {
|
|
465
|
+
result: {
|
|
466
|
+
__typename: string;
|
|
467
|
+
id: string;
|
|
468
|
+
rest_id: string;
|
|
469
|
+
affiliates_highlighted_label: {};
|
|
470
|
+
has_graduated_access: boolean;
|
|
471
|
+
is_blue_verified: boolean;
|
|
472
|
+
profile_image_shape: string;
|
|
473
|
+
legacy: {
|
|
474
|
+
can_dm: boolean;
|
|
475
|
+
can_media_tag: boolean;
|
|
476
|
+
created_at: string;
|
|
477
|
+
default_profile: boolean;
|
|
478
|
+
default_profile_image: boolean;
|
|
479
|
+
description: string;
|
|
480
|
+
entities: {
|
|
481
|
+
description: {
|
|
482
|
+
urls: unknown[];
|
|
483
|
+
};
|
|
484
|
+
url: {
|
|
485
|
+
urls: {
|
|
486
|
+
display_url: string;
|
|
487
|
+
expanded_url: string;
|
|
488
|
+
url: string;
|
|
489
|
+
indices: number[];
|
|
490
|
+
}[];
|
|
491
|
+
};
|
|
492
|
+
};
|
|
493
|
+
fast_followers_count: number;
|
|
494
|
+
favourites_count: number;
|
|
495
|
+
followers_count: number;
|
|
496
|
+
friends_count: number;
|
|
497
|
+
has_custom_timelines: boolean;
|
|
498
|
+
is_translator: boolean;
|
|
499
|
+
listed_count: number;
|
|
500
|
+
location: string;
|
|
501
|
+
media_count: number;
|
|
502
|
+
name: string;
|
|
503
|
+
normal_followers_count: number;
|
|
504
|
+
pinned_tweet_ids_str: string[];
|
|
505
|
+
possibly_sensitive: boolean;
|
|
506
|
+
profile_banner_url: string;
|
|
507
|
+
profile_image_url_https: string;
|
|
508
|
+
profile_interstitial_type: string;
|
|
509
|
+
screen_name: string;
|
|
510
|
+
statuses_count: number;
|
|
511
|
+
translator_type: string;
|
|
512
|
+
url: string;
|
|
513
|
+
verified: boolean;
|
|
514
|
+
want_retweets: boolean;
|
|
515
|
+
withheld_in_countries: unknown[];
|
|
516
|
+
};
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
edit_control: {
|
|
521
|
+
edit_tweet_ids: string[];
|
|
522
|
+
editable_until_msecs: string;
|
|
523
|
+
is_edit_eligible: boolean;
|
|
524
|
+
edits_remaining: string;
|
|
525
|
+
};
|
|
526
|
+
edit_perspective: {
|
|
527
|
+
favorited: boolean;
|
|
528
|
+
retweeted: boolean;
|
|
529
|
+
};
|
|
530
|
+
is_translatable: boolean;
|
|
531
|
+
views: {
|
|
532
|
+
state: string;
|
|
533
|
+
count?: string;
|
|
534
|
+
};
|
|
535
|
+
source: string;
|
|
536
|
+
legacy: {
|
|
537
|
+
bookmark_count: number;
|
|
538
|
+
bookmarked: boolean;
|
|
539
|
+
created_at: string;
|
|
540
|
+
conversation_id_str: string;
|
|
541
|
+
display_text_range: number[];
|
|
542
|
+
entities: {
|
|
543
|
+
user_mentions: unknown[];
|
|
544
|
+
urls: unknown[];
|
|
545
|
+
hashtags: unknown[];
|
|
546
|
+
symbols: unknown[];
|
|
547
|
+
media?: {
|
|
548
|
+
display_url: string;
|
|
549
|
+
expanded_url: string;
|
|
550
|
+
id_str: string;
|
|
551
|
+
indices: number[];
|
|
552
|
+
media_url_https: string;
|
|
553
|
+
type: string;
|
|
554
|
+
url: string;
|
|
555
|
+
features: {};
|
|
556
|
+
sizes: {
|
|
557
|
+
large: {
|
|
558
|
+
h: number;
|
|
559
|
+
w: number;
|
|
560
|
+
resize: string;
|
|
561
|
+
};
|
|
562
|
+
medium: {
|
|
563
|
+
h: number;
|
|
564
|
+
w: number;
|
|
565
|
+
resize: string;
|
|
566
|
+
};
|
|
567
|
+
small: {
|
|
568
|
+
h: number;
|
|
569
|
+
w: number;
|
|
570
|
+
resize: string;
|
|
571
|
+
};
|
|
572
|
+
thumb: {
|
|
573
|
+
h: number;
|
|
574
|
+
w: number;
|
|
575
|
+
resize: string;
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
original_info: {
|
|
579
|
+
height: number;
|
|
580
|
+
width: number;
|
|
581
|
+
};
|
|
582
|
+
}[];
|
|
583
|
+
};
|
|
584
|
+
favorite_count: number;
|
|
585
|
+
favorited: boolean;
|
|
586
|
+
full_text: string;
|
|
587
|
+
is_quote_status: boolean;
|
|
588
|
+
lang: string;
|
|
589
|
+
quote_count: number;
|
|
590
|
+
reply_count: number;
|
|
591
|
+
retweet_count: number;
|
|
592
|
+
retweeted: boolean;
|
|
593
|
+
user_id_str: string;
|
|
594
|
+
id_str: string;
|
|
595
|
+
extended_entities?: {
|
|
596
|
+
media: {
|
|
597
|
+
display_url: string;
|
|
598
|
+
expanded_url: string;
|
|
599
|
+
id_str: string;
|
|
600
|
+
indices: number[];
|
|
601
|
+
media_key: string;
|
|
602
|
+
media_url_https: string;
|
|
603
|
+
type: string;
|
|
604
|
+
url: string;
|
|
605
|
+
additional_media_info: {
|
|
606
|
+
monetizable: boolean;
|
|
607
|
+
};
|
|
608
|
+
mediaStats: {
|
|
609
|
+
viewCount: number;
|
|
610
|
+
};
|
|
611
|
+
ext_media_availability: {
|
|
612
|
+
status: string;
|
|
613
|
+
};
|
|
614
|
+
features: {};
|
|
615
|
+
sizes: {
|
|
616
|
+
large: {
|
|
617
|
+
h: number;
|
|
618
|
+
w: number;
|
|
619
|
+
resize: string;
|
|
620
|
+
};
|
|
621
|
+
medium: {
|
|
622
|
+
h: number;
|
|
623
|
+
w: number;
|
|
624
|
+
resize: string;
|
|
625
|
+
};
|
|
626
|
+
small: {
|
|
627
|
+
h: number;
|
|
628
|
+
w: number;
|
|
629
|
+
resize: string;
|
|
630
|
+
};
|
|
631
|
+
thumb: {
|
|
632
|
+
h: number;
|
|
633
|
+
w: number;
|
|
634
|
+
resize: string;
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
original_info: {
|
|
638
|
+
height: number;
|
|
639
|
+
width: number;
|
|
640
|
+
};
|
|
641
|
+
video_info: {
|
|
642
|
+
aspect_ratio: number[];
|
|
643
|
+
duration_millis: number;
|
|
644
|
+
variants: {
|
|
645
|
+
bitrate?: number;
|
|
646
|
+
content_type: string;
|
|
647
|
+
url: string;
|
|
648
|
+
}[];
|
|
649
|
+
};
|
|
650
|
+
}[];
|
|
651
|
+
};
|
|
652
|
+
possibly_sensitive?: boolean;
|
|
653
|
+
possibly_sensitive_editable?: boolean;
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
};
|
|
371
657
|
};
|
|
372
658
|
};
|
|
373
659
|
tweetDisplayType?: string;
|
|
@@ -376,7 +662,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
376
662
|
__typename: string;
|
|
377
663
|
id: string;
|
|
378
664
|
rest_id: string;
|
|
379
|
-
affiliates_highlighted_label: {
|
|
665
|
+
affiliates_highlighted_label: {
|
|
666
|
+
label?: {
|
|
667
|
+
url: {
|
|
668
|
+
url: string;
|
|
669
|
+
urlType: string;
|
|
670
|
+
};
|
|
671
|
+
badge: {
|
|
672
|
+
url: string;
|
|
673
|
+
};
|
|
674
|
+
description: string;
|
|
675
|
+
userLabelType: string;
|
|
676
|
+
userLabelDisplayType: string;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
380
679
|
has_graduated_access: boolean;
|
|
381
680
|
is_blue_verified: boolean;
|
|
382
681
|
profile_image_shape: string;
|
|
@@ -428,6 +727,8 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
428
727
|
want_retweets: boolean;
|
|
429
728
|
withheld_in_countries: unknown[];
|
|
430
729
|
url?: string;
|
|
730
|
+
verified_type?: string;
|
|
731
|
+
followed_by?: boolean;
|
|
431
732
|
};
|
|
432
733
|
professional?: {
|
|
433
734
|
rest_id: string;
|
|
@@ -446,57 +747,165 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
446
747
|
contextType: string;
|
|
447
748
|
text: string;
|
|
448
749
|
};
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
component: string;
|
|
452
|
-
details: {
|
|
453
|
-
timelinesDetails: {
|
|
454
|
-
injectionType: string;
|
|
455
|
-
controllerData?: string;
|
|
456
|
-
sourceData?: string;
|
|
457
|
-
};
|
|
458
|
-
};
|
|
459
|
-
element?: string;
|
|
460
|
-
};
|
|
461
|
-
};
|
|
462
|
-
}[];
|
|
463
|
-
metadata?: {
|
|
464
|
-
conversationMetadata: {
|
|
465
|
-
allTweetIds: string[];
|
|
466
|
-
enableDeduplication: boolean;
|
|
467
|
-
};
|
|
468
|
-
};
|
|
469
|
-
displayType?: string;
|
|
470
|
-
clientEventInfo?: {
|
|
471
|
-
component: string;
|
|
472
|
-
details: {
|
|
473
|
-
timelinesDetails: {
|
|
474
|
-
injectionType: string;
|
|
475
|
-
controllerData?: string;
|
|
476
|
-
};
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
itemContent?: {
|
|
480
|
-
itemType: string;
|
|
481
|
-
__typename: string;
|
|
482
|
-
tweet_results: {
|
|
483
|
-
result: {
|
|
484
|
-
__typename: string;
|
|
485
|
-
rest_id?: string;
|
|
486
|
-
core?: {
|
|
487
|
-
user_results: {
|
|
750
|
+
promotedMetadata?: {
|
|
751
|
+
advertiser_results: {
|
|
488
752
|
result: {
|
|
489
753
|
__typename: string;
|
|
490
754
|
id: string;
|
|
491
755
|
rest_id: string;
|
|
492
|
-
affiliates_highlighted_label: {
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
756
|
+
affiliates_highlighted_label: {
|
|
757
|
+
label: {
|
|
758
|
+
url: {
|
|
759
|
+
url: string;
|
|
760
|
+
urlType: string;
|
|
761
|
+
};
|
|
762
|
+
badge: {
|
|
763
|
+
url: string;
|
|
764
|
+
};
|
|
765
|
+
description: string;
|
|
766
|
+
userLabelType: string;
|
|
767
|
+
userLabelDisplayType: string;
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
has_graduated_access: boolean;
|
|
771
|
+
is_blue_verified: boolean;
|
|
772
|
+
profile_image_shape: string;
|
|
773
|
+
legacy: {
|
|
774
|
+
can_dm: boolean;
|
|
775
|
+
can_media_tag: boolean;
|
|
776
|
+
created_at: string;
|
|
777
|
+
default_profile: boolean;
|
|
778
|
+
default_profile_image: boolean;
|
|
779
|
+
description: string;
|
|
780
|
+
entities: {
|
|
781
|
+
description: {
|
|
782
|
+
urls: unknown[];
|
|
783
|
+
};
|
|
784
|
+
url: {
|
|
785
|
+
urls: {
|
|
786
|
+
display_url: string;
|
|
787
|
+
expanded_url: string;
|
|
788
|
+
url: string;
|
|
789
|
+
indices: number[];
|
|
790
|
+
}[];
|
|
791
|
+
};
|
|
792
|
+
};
|
|
793
|
+
fast_followers_count: number;
|
|
794
|
+
favourites_count: number;
|
|
795
|
+
followers_count: number;
|
|
796
|
+
friends_count: number;
|
|
797
|
+
has_custom_timelines: boolean;
|
|
798
|
+
is_translator: boolean;
|
|
799
|
+
listed_count: number;
|
|
800
|
+
location: string;
|
|
801
|
+
media_count: number;
|
|
802
|
+
name: string;
|
|
803
|
+
normal_followers_count: number;
|
|
804
|
+
pinned_tweet_ids_str: string[];
|
|
805
|
+
possibly_sensitive: boolean;
|
|
806
|
+
profile_banner_url: string;
|
|
807
|
+
profile_image_url_https: string;
|
|
808
|
+
profile_interstitial_type: string;
|
|
809
|
+
screen_name: string;
|
|
810
|
+
statuses_count: number;
|
|
811
|
+
translator_type: string;
|
|
812
|
+
url: string;
|
|
813
|
+
verified: boolean;
|
|
814
|
+
verified_type: string;
|
|
815
|
+
want_retweets: boolean;
|
|
816
|
+
withheld_in_countries: unknown[];
|
|
817
|
+
};
|
|
818
|
+
professional: {
|
|
819
|
+
rest_id: string;
|
|
820
|
+
professional_type: string;
|
|
821
|
+
category: {
|
|
822
|
+
id: number;
|
|
823
|
+
name: string;
|
|
824
|
+
icon_name: string;
|
|
825
|
+
}[];
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
disclosureType: string;
|
|
830
|
+
experimentValues: {
|
|
831
|
+
key: string;
|
|
832
|
+
value: string;
|
|
833
|
+
}[];
|
|
834
|
+
impressionId: string;
|
|
835
|
+
impressionString: string;
|
|
836
|
+
clickTrackingInfo: {
|
|
837
|
+
urlParams: {
|
|
838
|
+
key: string;
|
|
839
|
+
value: string;
|
|
840
|
+
}[];
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
clientEventInfo: {
|
|
845
|
+
component: string;
|
|
846
|
+
details: {
|
|
847
|
+
timelinesDetails: {
|
|
848
|
+
injectionType: string;
|
|
849
|
+
controllerData?: string;
|
|
850
|
+
sourceData?: string;
|
|
851
|
+
};
|
|
852
|
+
};
|
|
853
|
+
element?: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
}[];
|
|
857
|
+
metadata?: {
|
|
858
|
+
conversationMetadata: {
|
|
859
|
+
allTweetIds: string[];
|
|
860
|
+
enableDeduplication: boolean;
|
|
861
|
+
};
|
|
862
|
+
};
|
|
863
|
+
displayType?: string;
|
|
864
|
+
clientEventInfo?: {
|
|
865
|
+
component: string;
|
|
866
|
+
details: {
|
|
867
|
+
timelinesDetails: {
|
|
868
|
+
injectionType: string;
|
|
869
|
+
controllerData?: string;
|
|
870
|
+
sourceData?: string;
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
element?: string;
|
|
874
|
+
};
|
|
875
|
+
itemContent?: {
|
|
876
|
+
itemType: string;
|
|
877
|
+
__typename: string;
|
|
878
|
+
tweet_results: {
|
|
879
|
+
result: {
|
|
880
|
+
__typename: string;
|
|
881
|
+
rest_id?: string;
|
|
882
|
+
core?: {
|
|
883
|
+
user_results: {
|
|
884
|
+
result: {
|
|
885
|
+
__typename: string;
|
|
886
|
+
id: string;
|
|
887
|
+
rest_id: string;
|
|
888
|
+
affiliates_highlighted_label: {
|
|
889
|
+
label?: {
|
|
890
|
+
url: {
|
|
891
|
+
url: string;
|
|
892
|
+
urlType: string;
|
|
893
|
+
};
|
|
894
|
+
badge: {
|
|
895
|
+
url: string;
|
|
896
|
+
};
|
|
897
|
+
description: string;
|
|
898
|
+
userLabelType: string;
|
|
899
|
+
userLabelDisplayType: string;
|
|
900
|
+
};
|
|
901
|
+
};
|
|
902
|
+
has_graduated_access: boolean;
|
|
903
|
+
is_blue_verified: boolean;
|
|
904
|
+
profile_image_shape: string;
|
|
905
|
+
legacy: {
|
|
906
|
+
can_dm: boolean;
|
|
907
|
+
can_media_tag: boolean;
|
|
908
|
+
created_at: string;
|
|
500
909
|
default_profile: boolean;
|
|
501
910
|
default_profile_image: boolean;
|
|
502
911
|
description: string;
|
|
@@ -554,6 +963,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
554
963
|
icon_name: string;
|
|
555
964
|
}[];
|
|
556
965
|
};
|
|
966
|
+
super_follow_eligible?: boolean;
|
|
557
967
|
};
|
|
558
968
|
};
|
|
559
969
|
};
|
|
@@ -570,6 +980,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
570
980
|
height: number;
|
|
571
981
|
width: number;
|
|
572
982
|
url: string;
|
|
983
|
+
alt?: string;
|
|
573
984
|
};
|
|
574
985
|
user_value?: {
|
|
575
986
|
id_str: string;
|
|
@@ -585,6 +996,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
585
996
|
percentage: number;
|
|
586
997
|
}[];
|
|
587
998
|
};
|
|
999
|
+
boolean_value?: boolean;
|
|
588
1000
|
};
|
|
589
1001
|
}[];
|
|
590
1002
|
card_platform: {
|
|
@@ -603,13 +1015,26 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
603
1015
|
user_refs_results: {
|
|
604
1016
|
result: {
|
|
605
1017
|
__typename: string;
|
|
606
|
-
id
|
|
607
|
-
rest_id
|
|
608
|
-
affiliates_highlighted_label
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
1018
|
+
id?: string;
|
|
1019
|
+
rest_id?: string;
|
|
1020
|
+
affiliates_highlighted_label?: {
|
|
1021
|
+
label?: {
|
|
1022
|
+
url: {
|
|
1023
|
+
url: string;
|
|
1024
|
+
urlType: string;
|
|
1025
|
+
};
|
|
1026
|
+
badge: {
|
|
1027
|
+
url: string;
|
|
1028
|
+
};
|
|
1029
|
+
description: string;
|
|
1030
|
+
userLabelType: string;
|
|
1031
|
+
userLabelDisplayType: string;
|
|
1032
|
+
};
|
|
1033
|
+
};
|
|
1034
|
+
has_graduated_access?: boolean;
|
|
1035
|
+
is_blue_verified?: boolean;
|
|
1036
|
+
profile_image_shape?: string;
|
|
1037
|
+
legacy?: {
|
|
613
1038
|
can_dm: boolean;
|
|
614
1039
|
can_media_tag: boolean;
|
|
615
1040
|
created_at: string;
|
|
@@ -668,6 +1093,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
668
1093
|
icon_name: string;
|
|
669
1094
|
}[];
|
|
670
1095
|
};
|
|
1096
|
+
unavailable_message?: {
|
|
1097
|
+
rtl: boolean;
|
|
1098
|
+
text: string;
|
|
1099
|
+
entities: {
|
|
1100
|
+
fromIndex: number;
|
|
1101
|
+
toIndex: number;
|
|
1102
|
+
ref: {
|
|
1103
|
+
type: string;
|
|
1104
|
+
url: string;
|
|
1105
|
+
urlType: string;
|
|
1106
|
+
};
|
|
1107
|
+
}[];
|
|
1108
|
+
};
|
|
1109
|
+
reason?: string;
|
|
671
1110
|
};
|
|
672
1111
|
}[];
|
|
673
1112
|
};
|
|
@@ -821,7 +1260,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
821
1260
|
rest_id: string;
|
|
822
1261
|
affiliates_highlighted_label: {
|
|
823
1262
|
label?: {
|
|
824
|
-
url
|
|
1263
|
+
url?: {
|
|
825
1264
|
url: string;
|
|
826
1265
|
urlType: string;
|
|
827
1266
|
};
|
|
@@ -830,7 +1269,27 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
830
1269
|
};
|
|
831
1270
|
description: string;
|
|
832
1271
|
userLabelType: string;
|
|
833
|
-
userLabelDisplayType
|
|
1272
|
+
userLabelDisplayType?: string;
|
|
1273
|
+
longDescription?: {
|
|
1274
|
+
text: string;
|
|
1275
|
+
entities: {
|
|
1276
|
+
fromIndex: number;
|
|
1277
|
+
toIndex: number;
|
|
1278
|
+
ref: {
|
|
1279
|
+
type: string;
|
|
1280
|
+
screen_name: string;
|
|
1281
|
+
mention_results: {
|
|
1282
|
+
result: {
|
|
1283
|
+
__typename: string;
|
|
1284
|
+
legacy: {
|
|
1285
|
+
screen_name: string;
|
|
1286
|
+
};
|
|
1287
|
+
rest_id: string;
|
|
1288
|
+
};
|
|
1289
|
+
};
|
|
1290
|
+
};
|
|
1291
|
+
}[];
|
|
1292
|
+
};
|
|
834
1293
|
};
|
|
835
1294
|
};
|
|
836
1295
|
has_graduated_access: boolean;
|
|
@@ -909,6 +1368,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
909
1368
|
height: number;
|
|
910
1369
|
width: number;
|
|
911
1370
|
url: string;
|
|
1371
|
+
alt?: string;
|
|
912
1372
|
};
|
|
913
1373
|
type: string;
|
|
914
1374
|
string_value?: string;
|
|
@@ -927,6 +1387,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
927
1387
|
percentage: number;
|
|
928
1388
|
}[];
|
|
929
1389
|
};
|
|
1390
|
+
boolean_value?: boolean;
|
|
930
1391
|
};
|
|
931
1392
|
}[];
|
|
932
1393
|
card_platform: {
|
|
@@ -947,7 +1408,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
947
1408
|
__typename: string;
|
|
948
1409
|
id: string;
|
|
949
1410
|
rest_id: string;
|
|
950
|
-
affiliates_highlighted_label: {
|
|
1411
|
+
affiliates_highlighted_label: {
|
|
1412
|
+
label?: {
|
|
1413
|
+
url: {
|
|
1414
|
+
url: string;
|
|
1415
|
+
urlType: string;
|
|
1416
|
+
};
|
|
1417
|
+
badge: {
|
|
1418
|
+
url: string;
|
|
1419
|
+
};
|
|
1420
|
+
description: string;
|
|
1421
|
+
userLabelType: string;
|
|
1422
|
+
userLabelDisplayType: string;
|
|
1423
|
+
};
|
|
1424
|
+
};
|
|
951
1425
|
has_graduated_access: boolean;
|
|
952
1426
|
is_blue_verified: boolean;
|
|
953
1427
|
profile_image_shape: string;
|
|
@@ -999,6 +1473,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
999
1473
|
verified: boolean;
|
|
1000
1474
|
want_retweets: boolean;
|
|
1001
1475
|
withheld_in_countries: unknown[];
|
|
1476
|
+
verified_type?: string;
|
|
1002
1477
|
};
|
|
1003
1478
|
professional?: {
|
|
1004
1479
|
rest_id: string;
|
|
@@ -1017,10 +1492,17 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1017
1492
|
card_fetch_state: string;
|
|
1018
1493
|
};
|
|
1019
1494
|
edit_control: {
|
|
1020
|
-
edit_tweet_ids
|
|
1021
|
-
editable_until_msecs
|
|
1022
|
-
is_edit_eligible
|
|
1023
|
-
edits_remaining
|
|
1495
|
+
edit_tweet_ids?: string[];
|
|
1496
|
+
editable_until_msecs?: string;
|
|
1497
|
+
is_edit_eligible?: boolean;
|
|
1498
|
+
edits_remaining?: string;
|
|
1499
|
+
initial_tweet_id?: string;
|
|
1500
|
+
edit_control_initial?: {
|
|
1501
|
+
edit_tweet_ids: string[];
|
|
1502
|
+
editable_until_msecs: string;
|
|
1503
|
+
is_edit_eligible: boolean;
|
|
1504
|
+
edits_remaining: string;
|
|
1505
|
+
};
|
|
1024
1506
|
};
|
|
1025
1507
|
edit_perspective: {
|
|
1026
1508
|
favorited: boolean;
|
|
@@ -1313,6 +1795,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1313
1795
|
};
|
|
1314
1796
|
source_status_id_str?: string;
|
|
1315
1797
|
source_user_id_str?: string;
|
|
1798
|
+
ext_alt_text?: string;
|
|
1316
1799
|
}[];
|
|
1317
1800
|
};
|
|
1318
1801
|
in_reply_to_screen_name?: string;
|
|
@@ -1353,7 +1836,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1353
1836
|
__typename: string;
|
|
1354
1837
|
id: string;
|
|
1355
1838
|
rest_id: string;
|
|
1356
|
-
affiliates_highlighted_label: {
|
|
1839
|
+
affiliates_highlighted_label: {
|
|
1840
|
+
label?: {
|
|
1841
|
+
url: {
|
|
1842
|
+
url: string;
|
|
1843
|
+
urlType: string;
|
|
1844
|
+
};
|
|
1845
|
+
badge: {
|
|
1846
|
+
url: string;
|
|
1847
|
+
};
|
|
1848
|
+
description: string;
|
|
1849
|
+
userLabelType: string;
|
|
1850
|
+
userLabelDisplayType: string;
|
|
1851
|
+
};
|
|
1852
|
+
};
|
|
1357
1853
|
has_graduated_access: boolean;
|
|
1358
1854
|
is_blue_verified: boolean;
|
|
1359
1855
|
profile_image_shape: string;
|
|
@@ -1407,14 +1903,31 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1407
1903
|
url?: string;
|
|
1408
1904
|
verified_type?: string;
|
|
1409
1905
|
};
|
|
1906
|
+
professional?: {
|
|
1907
|
+
rest_id: string;
|
|
1908
|
+
professional_type: string;
|
|
1909
|
+
category: {
|
|
1910
|
+
id: number;
|
|
1911
|
+
name: string;
|
|
1912
|
+
icon_name: string;
|
|
1913
|
+
}[];
|
|
1914
|
+
};
|
|
1915
|
+
has_nft_avatar?: boolean;
|
|
1410
1916
|
};
|
|
1411
1917
|
};
|
|
1412
1918
|
};
|
|
1413
1919
|
edit_control?: {
|
|
1414
|
-
edit_tweet_ids
|
|
1415
|
-
editable_until_msecs
|
|
1416
|
-
is_edit_eligible
|
|
1417
|
-
edits_remaining
|
|
1920
|
+
edit_tweet_ids?: string[];
|
|
1921
|
+
editable_until_msecs?: string;
|
|
1922
|
+
is_edit_eligible?: boolean;
|
|
1923
|
+
edits_remaining?: string;
|
|
1924
|
+
initial_tweet_id?: string;
|
|
1925
|
+
edit_control_initial?: {
|
|
1926
|
+
edit_tweet_ids: string[];
|
|
1927
|
+
editable_until_msecs: string;
|
|
1928
|
+
is_edit_eligible: boolean;
|
|
1929
|
+
edits_remaining: string;
|
|
1930
|
+
};
|
|
1418
1931
|
};
|
|
1419
1932
|
edit_perspective?: {
|
|
1420
1933
|
favorited: boolean;
|
|
@@ -1474,6 +1987,14 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1474
1987
|
w: number;
|
|
1475
1988
|
}[];
|
|
1476
1989
|
};
|
|
1990
|
+
all?: {
|
|
1991
|
+
tags: {
|
|
1992
|
+
user_id: string;
|
|
1993
|
+
name: string;
|
|
1994
|
+
screen_name: string;
|
|
1995
|
+
type: string;
|
|
1996
|
+
}[];
|
|
1997
|
+
};
|
|
1477
1998
|
};
|
|
1478
1999
|
sizes: {
|
|
1479
2000
|
large: {
|
|
@@ -1578,6 +2099,14 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1578
2099
|
w: number;
|
|
1579
2100
|
}[];
|
|
1580
2101
|
};
|
|
2102
|
+
all?: {
|
|
2103
|
+
tags: {
|
|
2104
|
+
user_id: string;
|
|
2105
|
+
name: string;
|
|
2106
|
+
screen_name: string;
|
|
2107
|
+
type: string;
|
|
2108
|
+
}[];
|
|
2109
|
+
};
|
|
1581
2110
|
};
|
|
1582
2111
|
sizes: {
|
|
1583
2112
|
large: {
|
|
@@ -1656,6 +2185,9 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1656
2185
|
place_type: string;
|
|
1657
2186
|
url: string;
|
|
1658
2187
|
};
|
|
2188
|
+
in_reply_to_screen_name?: string;
|
|
2189
|
+
in_reply_to_status_id_str?: string;
|
|
2190
|
+
in_reply_to_user_id_str?: string;
|
|
1659
2191
|
};
|
|
1660
2192
|
card?: {
|
|
1661
2193
|
rest_id: string;
|
|
@@ -1667,6 +2199,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1667
2199
|
height: number;
|
|
1668
2200
|
width: number;
|
|
1669
2201
|
url: string;
|
|
2202
|
+
alt?: string;
|
|
1670
2203
|
};
|
|
1671
2204
|
type: string;
|
|
1672
2205
|
string_value?: string;
|
|
@@ -1820,65 +2353,323 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1820
2353
|
};
|
|
1821
2354
|
};
|
|
1822
2355
|
};
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
id: string;
|
|
1830
|
-
text: string;
|
|
1831
|
-
entity_set: {
|
|
1832
|
-
user_mentions: {
|
|
1833
|
-
id_str: string;
|
|
1834
|
-
name: string;
|
|
1835
|
-
screen_name: string;
|
|
1836
|
-
indices: number[];
|
|
1837
|
-
}[];
|
|
1838
|
-
urls: {
|
|
1839
|
-
display_url: string;
|
|
1840
|
-
expanded_url: string;
|
|
1841
|
-
url: string;
|
|
1842
|
-
indices: number[];
|
|
1843
|
-
}[];
|
|
1844
|
-
hashtags: {
|
|
1845
|
-
indices: number[];
|
|
1846
|
-
text: string;
|
|
1847
|
-
}[];
|
|
1848
|
-
symbols: unknown[];
|
|
1849
|
-
};
|
|
1850
|
-
richtext: {
|
|
1851
|
-
richtext_tags: {
|
|
1852
|
-
from_index: number;
|
|
1853
|
-
to_index: number;
|
|
1854
|
-
richtext_types: string[];
|
|
1855
|
-
}[];
|
|
1856
|
-
};
|
|
1857
|
-
media: {
|
|
1858
|
-
inline_media: unknown[];
|
|
1859
|
-
};
|
|
2356
|
+
previous_counts?: {
|
|
2357
|
+
bookmark_count: number;
|
|
2358
|
+
favorite_count: number;
|
|
2359
|
+
quote_count: number;
|
|
2360
|
+
reply_count: number;
|
|
2361
|
+
retweet_count: number;
|
|
1860
2362
|
};
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
2363
|
+
tweet?: {
|
|
2364
|
+
rest_id: string;
|
|
2365
|
+
core: {
|
|
2366
|
+
user_results: {
|
|
2367
|
+
result: {
|
|
2368
|
+
__typename: string;
|
|
2369
|
+
id: string;
|
|
2370
|
+
rest_id: string;
|
|
2371
|
+
affiliates_highlighted_label: {};
|
|
2372
|
+
has_graduated_access: boolean;
|
|
2373
|
+
is_blue_verified: boolean;
|
|
2374
|
+
profile_image_shape: string;
|
|
2375
|
+
legacy: {
|
|
2376
|
+
can_dm: boolean;
|
|
2377
|
+
can_media_tag: boolean;
|
|
2378
|
+
created_at: string;
|
|
2379
|
+
default_profile: boolean;
|
|
2380
|
+
default_profile_image: boolean;
|
|
2381
|
+
description: string;
|
|
2382
|
+
entities: {
|
|
2383
|
+
description: {
|
|
2384
|
+
urls: {
|
|
2385
|
+
display_url: string;
|
|
2386
|
+
expanded_url: string;
|
|
2387
|
+
url: string;
|
|
2388
|
+
indices: number[];
|
|
2389
|
+
}[];
|
|
2390
|
+
};
|
|
2391
|
+
};
|
|
2392
|
+
fast_followers_count: number;
|
|
2393
|
+
favourites_count: number;
|
|
2394
|
+
followers_count: number;
|
|
2395
|
+
friends_count: number;
|
|
2396
|
+
has_custom_timelines: boolean;
|
|
2397
|
+
is_translator: boolean;
|
|
2398
|
+
listed_count: number;
|
|
2399
|
+
location: string;
|
|
2400
|
+
media_count: number;
|
|
2401
|
+
name: string;
|
|
2402
|
+
normal_followers_count: number;
|
|
2403
|
+
pinned_tweet_ids_str: unknown[];
|
|
2404
|
+
possibly_sensitive: boolean;
|
|
2405
|
+
profile_banner_url: string;
|
|
2406
|
+
profile_image_url_https: string;
|
|
2407
|
+
profile_interstitial_type: string;
|
|
2408
|
+
screen_name: string;
|
|
2409
|
+
statuses_count: number;
|
|
2410
|
+
translator_type: string;
|
|
2411
|
+
verified: boolean;
|
|
2412
|
+
want_retweets: boolean;
|
|
2413
|
+
withheld_in_countries: unknown[];
|
|
2414
|
+
};
|
|
2415
|
+
super_follow_eligible: boolean;
|
|
2416
|
+
};
|
|
2417
|
+
};
|
|
2418
|
+
};
|
|
2419
|
+
edit_control: {
|
|
2420
|
+
edit_tweet_ids: string[];
|
|
2421
|
+
editable_until_msecs: string;
|
|
2422
|
+
is_edit_eligible: boolean;
|
|
2423
|
+
edits_remaining: string;
|
|
2424
|
+
};
|
|
2425
|
+
edit_perspective: {
|
|
2426
|
+
favorited: boolean;
|
|
2427
|
+
retweeted: boolean;
|
|
2428
|
+
};
|
|
2429
|
+
is_translatable: boolean;
|
|
2430
|
+
views: {
|
|
2431
|
+
count: string;
|
|
2432
|
+
state: string;
|
|
2433
|
+
};
|
|
2434
|
+
source: string;
|
|
2435
|
+
legacy: {
|
|
2436
|
+
bookmark_count: number;
|
|
2437
|
+
bookmarked: boolean;
|
|
2438
|
+
created_at: string;
|
|
2439
|
+
conversation_control: {
|
|
2440
|
+
policy: string;
|
|
2441
|
+
conversation_owner_results: {
|
|
2442
|
+
result: {
|
|
2443
|
+
__typename: string;
|
|
2444
|
+
legacy: {
|
|
2445
|
+
screen_name: string;
|
|
2446
|
+
};
|
|
2447
|
+
};
|
|
2448
|
+
};
|
|
2449
|
+
};
|
|
2450
|
+
conversation_id_str: string;
|
|
2451
|
+
display_text_range: number[];
|
|
2452
|
+
entities: {
|
|
2453
|
+
media: {
|
|
2454
|
+
display_url: string;
|
|
2455
|
+
expanded_url: string;
|
|
2456
|
+
id_str: string;
|
|
2457
|
+
indices: number[];
|
|
2458
|
+
media_url_https: string;
|
|
2459
|
+
type: string;
|
|
2460
|
+
url: string;
|
|
2461
|
+
features: {
|
|
2462
|
+
large: {
|
|
2463
|
+
faces: unknown[];
|
|
2464
|
+
};
|
|
2465
|
+
medium: {
|
|
2466
|
+
faces: unknown[];
|
|
2467
|
+
};
|
|
2468
|
+
small: {
|
|
2469
|
+
faces: unknown[];
|
|
2470
|
+
};
|
|
2471
|
+
orig: {
|
|
2472
|
+
faces: unknown[];
|
|
2473
|
+
};
|
|
2474
|
+
};
|
|
2475
|
+
sizes: {
|
|
2476
|
+
large: {
|
|
2477
|
+
h: number;
|
|
2478
|
+
w: number;
|
|
2479
|
+
resize: string;
|
|
2480
|
+
};
|
|
2481
|
+
medium: {
|
|
2482
|
+
h: number;
|
|
2483
|
+
w: number;
|
|
2484
|
+
resize: string;
|
|
2485
|
+
};
|
|
2486
|
+
small: {
|
|
2487
|
+
h: number;
|
|
2488
|
+
w: number;
|
|
2489
|
+
resize: string;
|
|
2490
|
+
};
|
|
2491
|
+
thumb: {
|
|
2492
|
+
h: number;
|
|
2493
|
+
w: number;
|
|
2494
|
+
resize: string;
|
|
2495
|
+
};
|
|
2496
|
+
};
|
|
2497
|
+
original_info: {
|
|
2498
|
+
height: number;
|
|
2499
|
+
width: number;
|
|
2500
|
+
focus_rects: {
|
|
2501
|
+
x: number;
|
|
2502
|
+
y: number;
|
|
2503
|
+
w: number;
|
|
2504
|
+
h: number;
|
|
2505
|
+
}[];
|
|
2506
|
+
};
|
|
2507
|
+
}[];
|
|
2508
|
+
user_mentions: unknown[];
|
|
2509
|
+
urls: unknown[];
|
|
2510
|
+
hashtags: unknown[];
|
|
2511
|
+
symbols: unknown[];
|
|
2512
|
+
};
|
|
2513
|
+
extended_entities: {
|
|
2514
|
+
media: {
|
|
2515
|
+
display_url: string;
|
|
2516
|
+
expanded_url: string;
|
|
2517
|
+
id_str: string;
|
|
2518
|
+
indices: number[];
|
|
2519
|
+
media_key: string;
|
|
2520
|
+
media_url_https: string;
|
|
2521
|
+
type: string;
|
|
2522
|
+
url: string;
|
|
2523
|
+
ext_media_availability: {
|
|
2524
|
+
status: string;
|
|
2525
|
+
};
|
|
2526
|
+
features: {
|
|
2527
|
+
large: {
|
|
2528
|
+
faces: unknown[];
|
|
2529
|
+
};
|
|
2530
|
+
medium: {
|
|
2531
|
+
faces: unknown[];
|
|
2532
|
+
};
|
|
2533
|
+
small: {
|
|
2534
|
+
faces: unknown[];
|
|
2535
|
+
};
|
|
2536
|
+
orig: {
|
|
2537
|
+
faces: unknown[];
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
sizes: {
|
|
2541
|
+
large: {
|
|
2542
|
+
h: number;
|
|
2543
|
+
w: number;
|
|
2544
|
+
resize: string;
|
|
2545
|
+
};
|
|
2546
|
+
medium: {
|
|
2547
|
+
h: number;
|
|
2548
|
+
w: number;
|
|
2549
|
+
resize: string;
|
|
2550
|
+
};
|
|
2551
|
+
small: {
|
|
2552
|
+
h: number;
|
|
2553
|
+
w: number;
|
|
2554
|
+
resize: string;
|
|
2555
|
+
};
|
|
2556
|
+
thumb: {
|
|
2557
|
+
h: number;
|
|
2558
|
+
w: number;
|
|
2559
|
+
resize: string;
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
original_info: {
|
|
2563
|
+
height: number;
|
|
2564
|
+
width: number;
|
|
2565
|
+
focus_rects: {
|
|
2566
|
+
x: number;
|
|
2567
|
+
y: number;
|
|
2568
|
+
w: number;
|
|
2569
|
+
h: number;
|
|
2570
|
+
}[];
|
|
2571
|
+
};
|
|
2572
|
+
}[];
|
|
2573
|
+
};
|
|
2574
|
+
favorite_count: number;
|
|
2575
|
+
favorited: boolean;
|
|
2576
|
+
full_text: string;
|
|
2577
|
+
is_quote_status: boolean;
|
|
2578
|
+
lang: string;
|
|
2579
|
+
limited_actions: string;
|
|
2580
|
+
possibly_sensitive: boolean;
|
|
2581
|
+
possibly_sensitive_editable: boolean;
|
|
2582
|
+
quote_count: number;
|
|
2583
|
+
reply_count: number;
|
|
2584
|
+
retweet_count: number;
|
|
2585
|
+
retweeted: boolean;
|
|
2586
|
+
user_id_str: string;
|
|
2587
|
+
id_str: string;
|
|
2588
|
+
};
|
|
2589
|
+
};
|
|
2590
|
+
limitedActionResults?: {
|
|
2591
|
+
limited_actions: {
|
|
2592
|
+
action: string;
|
|
2593
|
+
prompt: {
|
|
2594
|
+
__typename: string;
|
|
2595
|
+
cta_type: string;
|
|
2596
|
+
headline: {
|
|
2597
|
+
text: string;
|
|
2598
|
+
entities: unknown[];
|
|
2599
|
+
};
|
|
2600
|
+
subtext: {
|
|
2601
|
+
text: string;
|
|
2602
|
+
entities: unknown[];
|
|
2603
|
+
};
|
|
2604
|
+
};
|
|
2605
|
+
}[];
|
|
2606
|
+
};
|
|
2607
|
+
};
|
|
2608
|
+
};
|
|
2609
|
+
note_tweet?: {
|
|
2610
|
+
is_expandable: boolean;
|
|
2611
|
+
note_tweet_results: {
|
|
2612
|
+
result: {
|
|
2613
|
+
id: string;
|
|
2614
|
+
text: string;
|
|
2615
|
+
entity_set: {
|
|
2616
|
+
user_mentions: {
|
|
2617
|
+
id_str: string;
|
|
2618
|
+
name: string;
|
|
2619
|
+
screen_name: string;
|
|
2620
|
+
indices: number[];
|
|
2621
|
+
}[];
|
|
2622
|
+
urls: {
|
|
2623
|
+
display_url: string;
|
|
2624
|
+
expanded_url: string;
|
|
2625
|
+
url: string;
|
|
2626
|
+
indices: number[];
|
|
2627
|
+
}[];
|
|
2628
|
+
hashtags: {
|
|
2629
|
+
indices: number[];
|
|
2630
|
+
text: string;
|
|
2631
|
+
}[];
|
|
2632
|
+
symbols: unknown[];
|
|
2633
|
+
};
|
|
2634
|
+
richtext: {
|
|
2635
|
+
richtext_tags: {
|
|
2636
|
+
from_index: number;
|
|
2637
|
+
to_index: number;
|
|
2638
|
+
richtext_types: string[];
|
|
2639
|
+
}[];
|
|
2640
|
+
};
|
|
2641
|
+
media: {
|
|
2642
|
+
inline_media: unknown[];
|
|
2643
|
+
};
|
|
2644
|
+
};
|
|
2645
|
+
};
|
|
2646
|
+
};
|
|
2647
|
+
previous_counts?: {
|
|
2648
|
+
bookmark_count: number;
|
|
2649
|
+
favorite_count: number;
|
|
2650
|
+
quote_count: number;
|
|
2651
|
+
reply_count: number;
|
|
2652
|
+
retweet_count: number;
|
|
2653
|
+
};
|
|
2654
|
+
};
|
|
2655
|
+
};
|
|
2656
|
+
extended_entities?: {
|
|
2657
|
+
media: {
|
|
2658
|
+
display_url: string;
|
|
2659
|
+
expanded_url: string;
|
|
2660
|
+
id_str: string;
|
|
2661
|
+
indices: number[];
|
|
2662
|
+
media_key: string;
|
|
2663
|
+
media_url_https: string;
|
|
2664
|
+
source_status_id_str?: string;
|
|
2665
|
+
source_user_id_str?: string;
|
|
2666
|
+
type: string;
|
|
2667
|
+
url: string;
|
|
2668
|
+
ext_media_availability: {
|
|
2669
|
+
status: string;
|
|
2670
|
+
};
|
|
2671
|
+
features: {
|
|
2672
|
+
large?: {
|
|
1882
2673
|
faces: {
|
|
1883
2674
|
x: number;
|
|
1884
2675
|
y: number;
|
|
@@ -1945,13 +2736,26 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1945
2736
|
};
|
|
1946
2737
|
additional_media_info?: {
|
|
1947
2738
|
monetizable: boolean;
|
|
1948
|
-
source_user
|
|
2739
|
+
source_user?: {
|
|
1949
2740
|
user_results: {
|
|
1950
2741
|
result: {
|
|
1951
2742
|
__typename: string;
|
|
1952
2743
|
id: string;
|
|
1953
2744
|
rest_id: string;
|
|
1954
|
-
affiliates_highlighted_label: {
|
|
2745
|
+
affiliates_highlighted_label: {
|
|
2746
|
+
label?: {
|
|
2747
|
+
url: {
|
|
2748
|
+
url: string;
|
|
2749
|
+
urlType: string;
|
|
2750
|
+
};
|
|
2751
|
+
badge: {
|
|
2752
|
+
url: string;
|
|
2753
|
+
};
|
|
2754
|
+
description: string;
|
|
2755
|
+
userLabelType: string;
|
|
2756
|
+
userLabelDisplayType: string;
|
|
2757
|
+
};
|
|
2758
|
+
};
|
|
1955
2759
|
has_graduated_access: boolean;
|
|
1956
2760
|
is_blue_verified: boolean;
|
|
1957
2761
|
profile_image_shape: string;
|
|
@@ -1964,7 +2768,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
1964
2768
|
description: string;
|
|
1965
2769
|
entities: {
|
|
1966
2770
|
description: {
|
|
1967
|
-
urls:
|
|
2771
|
+
urls: {
|
|
2772
|
+
display_url: string;
|
|
2773
|
+
expanded_url: string;
|
|
2774
|
+
url: string;
|
|
2775
|
+
indices: number[];
|
|
2776
|
+
}[];
|
|
1968
2777
|
};
|
|
1969
2778
|
url?: {
|
|
1970
2779
|
urls: {
|
|
@@ -2012,6 +2821,14 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2012
2821
|
};
|
|
2013
2822
|
};
|
|
2014
2823
|
};
|
|
2824
|
+
title?: string;
|
|
2825
|
+
description?: string;
|
|
2826
|
+
call_to_actions?: {
|
|
2827
|
+
watch_now: {
|
|
2828
|
+
url: string;
|
|
2829
|
+
};
|
|
2830
|
+
};
|
|
2831
|
+
embeddable?: boolean;
|
|
2015
2832
|
};
|
|
2016
2833
|
mediaStats?: {
|
|
2017
2834
|
viewCount: number;
|
|
@@ -2048,7 +2865,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2048
2865
|
__typename: string;
|
|
2049
2866
|
id: string;
|
|
2050
2867
|
rest_id: string;
|
|
2051
|
-
affiliates_highlighted_label: {
|
|
2868
|
+
affiliates_highlighted_label: {
|
|
2869
|
+
label?: {
|
|
2870
|
+
url: {
|
|
2871
|
+
url: string;
|
|
2872
|
+
urlType: string;
|
|
2873
|
+
};
|
|
2874
|
+
badge: {
|
|
2875
|
+
url: string;
|
|
2876
|
+
};
|
|
2877
|
+
description: string;
|
|
2878
|
+
userLabelType: string;
|
|
2879
|
+
userLabelDisplayType: string;
|
|
2880
|
+
};
|
|
2881
|
+
};
|
|
2052
2882
|
has_graduated_access: boolean;
|
|
2053
2883
|
is_blue_verified: boolean;
|
|
2054
2884
|
profile_image_shape: string;
|
|
@@ -2112,6 +2942,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2112
2942
|
icon_name: string;
|
|
2113
2943
|
}[];
|
|
2114
2944
|
};
|
|
2945
|
+
super_follow_eligible?: boolean;
|
|
2115
2946
|
};
|
|
2116
2947
|
};
|
|
2117
2948
|
};
|
|
@@ -2239,7 +3070,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2239
3070
|
bookmark_count: number;
|
|
2240
3071
|
bookmarked: boolean;
|
|
2241
3072
|
created_at: string;
|
|
2242
|
-
conversation_control
|
|
3073
|
+
conversation_control?: {
|
|
2243
3074
|
policy: string;
|
|
2244
3075
|
conversation_owner_results: {
|
|
2245
3076
|
result: {
|
|
@@ -2259,7 +3090,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2259
3090
|
screen_name: string;
|
|
2260
3091
|
indices: number[];
|
|
2261
3092
|
}[];
|
|
2262
|
-
urls:
|
|
3093
|
+
urls: {
|
|
3094
|
+
display_url: string;
|
|
3095
|
+
expanded_url: string;
|
|
3096
|
+
url: string;
|
|
3097
|
+
indices: number[];
|
|
3098
|
+
}[];
|
|
2263
3099
|
hashtags: {
|
|
2264
3100
|
indices: number[];
|
|
2265
3101
|
text: string;
|
|
@@ -2329,7 +3165,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2329
3165
|
media_count: number;
|
|
2330
3166
|
name: string;
|
|
2331
3167
|
normal_followers_count: number;
|
|
2332
|
-
pinned_tweet_ids_str:
|
|
3168
|
+
pinned_tweet_ids_str: string[];
|
|
2333
3169
|
possibly_sensitive: boolean;
|
|
2334
3170
|
profile_banner_url: string;
|
|
2335
3171
|
profile_image_url_https: string;
|
|
@@ -2341,6 +3177,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2341
3177
|
verified: boolean;
|
|
2342
3178
|
want_retweets: boolean;
|
|
2343
3179
|
withheld_in_countries: unknown[];
|
|
3180
|
+
verified_type?: string;
|
|
3181
|
+
};
|
|
3182
|
+
professional?: {
|
|
3183
|
+
rest_id: string;
|
|
3184
|
+
professional_type: string;
|
|
3185
|
+
category: unknown[];
|
|
2344
3186
|
};
|
|
2345
3187
|
};
|
|
2346
3188
|
};
|
|
@@ -2357,7 +3199,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2357
3199
|
};
|
|
2358
3200
|
is_translatable: boolean;
|
|
2359
3201
|
views: {
|
|
2360
|
-
count
|
|
3202
|
+
count?: string;
|
|
2361
3203
|
state: string;
|
|
2362
3204
|
};
|
|
2363
3205
|
source: string;
|
|
@@ -2365,7 +3207,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2365
3207
|
bookmark_count: number;
|
|
2366
3208
|
bookmarked: boolean;
|
|
2367
3209
|
created_at: string;
|
|
2368
|
-
conversation_control
|
|
3210
|
+
conversation_control?: {
|
|
2369
3211
|
policy: string;
|
|
2370
3212
|
conversation_owner_results: {
|
|
2371
3213
|
result: {
|
|
@@ -2380,28 +3222,184 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2380
3222
|
display_text_range: number[];
|
|
2381
3223
|
entities: {
|
|
2382
3224
|
user_mentions: unknown[];
|
|
2383
|
-
urls:
|
|
3225
|
+
urls: {
|
|
3226
|
+
display_url: string;
|
|
3227
|
+
expanded_url: string;
|
|
3228
|
+
url: string;
|
|
3229
|
+
indices: number[];
|
|
3230
|
+
}[];
|
|
2384
3231
|
hashtags: unknown[];
|
|
2385
3232
|
symbols: unknown[];
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
3233
|
+
media?: {
|
|
3234
|
+
display_url: string;
|
|
3235
|
+
expanded_url: string;
|
|
3236
|
+
id_str: string;
|
|
3237
|
+
indices: number[];
|
|
3238
|
+
media_url_https: string;
|
|
3239
|
+
type: string;
|
|
3240
|
+
url: string;
|
|
3241
|
+
features: {
|
|
3242
|
+
large: {
|
|
3243
|
+
faces: unknown[];
|
|
3244
|
+
};
|
|
3245
|
+
medium: {
|
|
3246
|
+
faces: unknown[];
|
|
3247
|
+
};
|
|
3248
|
+
small: {
|
|
3249
|
+
faces: unknown[];
|
|
3250
|
+
};
|
|
3251
|
+
orig: {
|
|
3252
|
+
faces: unknown[];
|
|
3253
|
+
};
|
|
3254
|
+
};
|
|
3255
|
+
sizes: {
|
|
3256
|
+
large: {
|
|
3257
|
+
h: number;
|
|
3258
|
+
w: number;
|
|
3259
|
+
resize: string;
|
|
3260
|
+
};
|
|
3261
|
+
medium: {
|
|
3262
|
+
h: number;
|
|
3263
|
+
w: number;
|
|
3264
|
+
resize: string;
|
|
3265
|
+
};
|
|
3266
|
+
small: {
|
|
3267
|
+
h: number;
|
|
3268
|
+
w: number;
|
|
3269
|
+
resize: string;
|
|
3270
|
+
};
|
|
3271
|
+
thumb: {
|
|
3272
|
+
h: number;
|
|
3273
|
+
w: number;
|
|
3274
|
+
resize: string;
|
|
3275
|
+
};
|
|
3276
|
+
};
|
|
3277
|
+
original_info: {
|
|
3278
|
+
height: number;
|
|
3279
|
+
width: number;
|
|
3280
|
+
focus_rects: {
|
|
3281
|
+
x: number;
|
|
3282
|
+
y: number;
|
|
3283
|
+
w: number;
|
|
3284
|
+
h: number;
|
|
3285
|
+
}[];
|
|
3286
|
+
};
|
|
3287
|
+
}[];
|
|
3288
|
+
};
|
|
3289
|
+
favorite_count: number;
|
|
3290
|
+
favorited: boolean;
|
|
3291
|
+
full_text: string;
|
|
3292
|
+
is_quote_status: boolean;
|
|
3293
|
+
lang: string;
|
|
3294
|
+
limited_actions: string;
|
|
2393
3295
|
quote_count: number;
|
|
2394
3296
|
reply_count: number;
|
|
2395
3297
|
retweet_count: number;
|
|
2396
3298
|
retweeted: boolean;
|
|
2397
3299
|
user_id_str: string;
|
|
2398
3300
|
id_str: string;
|
|
3301
|
+
extended_entities?: {
|
|
3302
|
+
media: {
|
|
3303
|
+
display_url: string;
|
|
3304
|
+
expanded_url: string;
|
|
3305
|
+
id_str: string;
|
|
3306
|
+
indices: number[];
|
|
3307
|
+
media_key: string;
|
|
3308
|
+
media_url_https: string;
|
|
3309
|
+
type: string;
|
|
3310
|
+
url: string;
|
|
3311
|
+
ext_media_availability: {
|
|
3312
|
+
status: string;
|
|
3313
|
+
};
|
|
3314
|
+
features: {
|
|
3315
|
+
large: {
|
|
3316
|
+
faces: unknown[];
|
|
3317
|
+
};
|
|
3318
|
+
medium: {
|
|
3319
|
+
faces: unknown[];
|
|
3320
|
+
};
|
|
3321
|
+
small: {
|
|
3322
|
+
faces: unknown[];
|
|
3323
|
+
};
|
|
3324
|
+
orig: {
|
|
3325
|
+
faces: unknown[];
|
|
3326
|
+
};
|
|
3327
|
+
};
|
|
3328
|
+
sizes: {
|
|
3329
|
+
large: {
|
|
3330
|
+
h: number;
|
|
3331
|
+
w: number;
|
|
3332
|
+
resize: string;
|
|
3333
|
+
};
|
|
3334
|
+
medium: {
|
|
3335
|
+
h: number;
|
|
3336
|
+
w: number;
|
|
3337
|
+
resize: string;
|
|
3338
|
+
};
|
|
3339
|
+
small: {
|
|
3340
|
+
h: number;
|
|
3341
|
+
w: number;
|
|
3342
|
+
resize: string;
|
|
3343
|
+
};
|
|
3344
|
+
thumb: {
|
|
3345
|
+
h: number;
|
|
3346
|
+
w: number;
|
|
3347
|
+
resize: string;
|
|
3348
|
+
};
|
|
3349
|
+
};
|
|
3350
|
+
original_info: {
|
|
3351
|
+
height: number;
|
|
3352
|
+
width: number;
|
|
3353
|
+
focus_rects: {
|
|
3354
|
+
x: number;
|
|
3355
|
+
y: number;
|
|
3356
|
+
w: number;
|
|
3357
|
+
h: number;
|
|
3358
|
+
}[];
|
|
3359
|
+
};
|
|
3360
|
+
}[];
|
|
3361
|
+
};
|
|
3362
|
+
possibly_sensitive?: boolean;
|
|
3363
|
+
possibly_sensitive_editable?: boolean;
|
|
3364
|
+
};
|
|
3365
|
+
note_tweet?: {
|
|
3366
|
+
is_expandable: boolean;
|
|
3367
|
+
note_tweet_results: {
|
|
3368
|
+
result: {
|
|
3369
|
+
id: string;
|
|
3370
|
+
text: string;
|
|
3371
|
+
entity_set: {
|
|
3372
|
+
user_mentions: unknown[];
|
|
3373
|
+
urls: {
|
|
3374
|
+
display_url: string;
|
|
3375
|
+
expanded_url: string;
|
|
3376
|
+
url: string;
|
|
3377
|
+
indices: number[];
|
|
3378
|
+
}[];
|
|
3379
|
+
hashtags: unknown[];
|
|
3380
|
+
symbols: unknown[];
|
|
3381
|
+
};
|
|
3382
|
+
richtext: {
|
|
3383
|
+
richtext_tags: {
|
|
3384
|
+
from_index: number;
|
|
3385
|
+
to_index: number;
|
|
3386
|
+
richtext_types: string[];
|
|
3387
|
+
}[];
|
|
3388
|
+
};
|
|
3389
|
+
media: {
|
|
3390
|
+
inline_media: {
|
|
3391
|
+
media_id: string;
|
|
3392
|
+
index: number;
|
|
3393
|
+
}[];
|
|
3394
|
+
};
|
|
3395
|
+
};
|
|
3396
|
+
};
|
|
2399
3397
|
};
|
|
2400
3398
|
};
|
|
2401
3399
|
limitedActionResults: {
|
|
2402
3400
|
limited_actions: {
|
|
2403
3401
|
action: string;
|
|
2404
|
-
prompt
|
|
3402
|
+
prompt?: {
|
|
2405
3403
|
__typename: string;
|
|
2406
3404
|
cta_type: string;
|
|
2407
3405
|
headline: {
|
|
@@ -2413,31 +3411,406 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2413
3411
|
entities: unknown[];
|
|
2414
3412
|
};
|
|
2415
3413
|
};
|
|
2416
|
-
}[];
|
|
3414
|
+
}[];
|
|
3415
|
+
};
|
|
3416
|
+
};
|
|
3417
|
+
};
|
|
3418
|
+
};
|
|
3419
|
+
quick_promote_eligibility: {
|
|
3420
|
+
eligibility: string;
|
|
3421
|
+
};
|
|
3422
|
+
};
|
|
3423
|
+
limitedActionResults?: {
|
|
3424
|
+
limited_actions: {
|
|
3425
|
+
action: string;
|
|
3426
|
+
prompt?: {
|
|
3427
|
+
__typename: string;
|
|
3428
|
+
cta_type: string;
|
|
3429
|
+
headline: {
|
|
3430
|
+
text: string;
|
|
3431
|
+
entities: unknown[];
|
|
3432
|
+
};
|
|
3433
|
+
subtext: {
|
|
3434
|
+
text: string;
|
|
3435
|
+
entities: unknown[];
|
|
3436
|
+
};
|
|
3437
|
+
};
|
|
3438
|
+
}[];
|
|
3439
|
+
};
|
|
3440
|
+
quoted_status_result?: {
|
|
3441
|
+
result: {
|
|
3442
|
+
__typename: string;
|
|
3443
|
+
rest_id?: string;
|
|
3444
|
+
core?: {
|
|
3445
|
+
user_results: {
|
|
3446
|
+
result: {
|
|
3447
|
+
__typename: string;
|
|
3448
|
+
id: string;
|
|
3449
|
+
rest_id: string;
|
|
3450
|
+
affiliates_highlighted_label: {
|
|
3451
|
+
label?: {
|
|
3452
|
+
url: {
|
|
3453
|
+
url: string;
|
|
3454
|
+
urlType: string;
|
|
3455
|
+
};
|
|
3456
|
+
badge: {
|
|
3457
|
+
url: string;
|
|
3458
|
+
};
|
|
3459
|
+
description: string;
|
|
3460
|
+
userLabelType: string;
|
|
3461
|
+
userLabelDisplayType: string;
|
|
3462
|
+
};
|
|
3463
|
+
};
|
|
3464
|
+
has_graduated_access: boolean;
|
|
3465
|
+
is_blue_verified: boolean;
|
|
3466
|
+
profile_image_shape: string;
|
|
3467
|
+
legacy: {
|
|
3468
|
+
can_dm: boolean;
|
|
3469
|
+
can_media_tag: boolean;
|
|
3470
|
+
created_at: string;
|
|
3471
|
+
default_profile: boolean;
|
|
3472
|
+
default_profile_image: boolean;
|
|
3473
|
+
description: string;
|
|
3474
|
+
entities: {
|
|
3475
|
+
description: {
|
|
3476
|
+
urls: {
|
|
3477
|
+
display_url: string;
|
|
3478
|
+
expanded_url: string;
|
|
3479
|
+
url: string;
|
|
3480
|
+
indices: number[];
|
|
3481
|
+
}[];
|
|
3482
|
+
};
|
|
3483
|
+
url?: {
|
|
3484
|
+
urls: {
|
|
3485
|
+
display_url: string;
|
|
3486
|
+
expanded_url: string;
|
|
3487
|
+
url: string;
|
|
3488
|
+
indices: number[];
|
|
3489
|
+
}[];
|
|
3490
|
+
};
|
|
3491
|
+
};
|
|
3492
|
+
fast_followers_count: number;
|
|
3493
|
+
favourites_count: number;
|
|
3494
|
+
followers_count: number;
|
|
3495
|
+
friends_count: number;
|
|
3496
|
+
has_custom_timelines: boolean;
|
|
3497
|
+
is_translator: boolean;
|
|
3498
|
+
listed_count: number;
|
|
3499
|
+
location: string;
|
|
3500
|
+
media_count: number;
|
|
3501
|
+
name: string;
|
|
3502
|
+
normal_followers_count: number;
|
|
3503
|
+
pinned_tweet_ids_str: string[];
|
|
3504
|
+
possibly_sensitive: boolean;
|
|
3505
|
+
profile_image_url_https: string;
|
|
3506
|
+
profile_interstitial_type: string;
|
|
3507
|
+
screen_name: string;
|
|
3508
|
+
statuses_count: number;
|
|
3509
|
+
translator_type: string;
|
|
3510
|
+
url?: string;
|
|
3511
|
+
verified: boolean;
|
|
3512
|
+
want_retweets: boolean;
|
|
3513
|
+
withheld_in_countries: unknown[];
|
|
3514
|
+
profile_banner_url?: string;
|
|
3515
|
+
verified_type?: string;
|
|
3516
|
+
};
|
|
3517
|
+
professional?: {
|
|
3518
|
+
rest_id: string;
|
|
3519
|
+
professional_type: string;
|
|
3520
|
+
category: {
|
|
3521
|
+
id: number;
|
|
3522
|
+
name: string;
|
|
3523
|
+
icon_name: string;
|
|
3524
|
+
}[];
|
|
3525
|
+
};
|
|
3526
|
+
super_follow_eligible?: boolean;
|
|
3527
|
+
};
|
|
3528
|
+
};
|
|
3529
|
+
};
|
|
3530
|
+
edit_control?: {
|
|
3531
|
+
edit_tweet_ids: string[];
|
|
3532
|
+
editable_until_msecs: string;
|
|
3533
|
+
is_edit_eligible: boolean;
|
|
3534
|
+
edits_remaining: string;
|
|
3535
|
+
};
|
|
3536
|
+
edit_perspective?: {
|
|
3537
|
+
favorited: boolean;
|
|
3538
|
+
retweeted: boolean;
|
|
3539
|
+
};
|
|
3540
|
+
is_translatable?: boolean;
|
|
3541
|
+
views?: {
|
|
3542
|
+
count: string;
|
|
3543
|
+
state: string;
|
|
3544
|
+
};
|
|
3545
|
+
source?: string;
|
|
3546
|
+
quotedRefResult?: {
|
|
3547
|
+
result: {
|
|
3548
|
+
__typename: string;
|
|
3549
|
+
rest_id?: string;
|
|
3550
|
+
tweet?: {
|
|
3551
|
+
rest_id: string;
|
|
3552
|
+
};
|
|
3553
|
+
};
|
|
3554
|
+
};
|
|
3555
|
+
legacy?: {
|
|
3556
|
+
bookmark_count: number;
|
|
3557
|
+
bookmarked: boolean;
|
|
3558
|
+
created_at: string;
|
|
3559
|
+
conversation_id_str: string;
|
|
3560
|
+
display_text_range: number[];
|
|
3561
|
+
entities: {
|
|
3562
|
+
user_mentions: {
|
|
3563
|
+
id_str: string;
|
|
3564
|
+
name: string;
|
|
3565
|
+
screen_name: string;
|
|
3566
|
+
indices: number[];
|
|
3567
|
+
}[];
|
|
3568
|
+
urls: {
|
|
3569
|
+
display_url: string;
|
|
3570
|
+
expanded_url: string;
|
|
3571
|
+
url: string;
|
|
3572
|
+
indices: number[];
|
|
3573
|
+
}[];
|
|
3574
|
+
hashtags: unknown[];
|
|
3575
|
+
symbols: unknown[];
|
|
3576
|
+
media?: {
|
|
3577
|
+
display_url: string;
|
|
3578
|
+
expanded_url: string;
|
|
3579
|
+
id_str: string;
|
|
3580
|
+
indices: number[];
|
|
3581
|
+
media_url_https: string;
|
|
3582
|
+
type: string;
|
|
3583
|
+
url: string;
|
|
3584
|
+
features: {
|
|
3585
|
+
large?: {
|
|
3586
|
+
faces: {
|
|
3587
|
+
x: number;
|
|
3588
|
+
y: number;
|
|
3589
|
+
h: number;
|
|
3590
|
+
w: number;
|
|
3591
|
+
}[];
|
|
3592
|
+
};
|
|
3593
|
+
medium?: {
|
|
3594
|
+
faces: {
|
|
3595
|
+
x: number;
|
|
3596
|
+
y: number;
|
|
3597
|
+
h: number;
|
|
3598
|
+
w: number;
|
|
3599
|
+
}[];
|
|
3600
|
+
};
|
|
3601
|
+
small?: {
|
|
3602
|
+
faces: {
|
|
3603
|
+
x: number;
|
|
3604
|
+
y: number;
|
|
3605
|
+
h: number;
|
|
3606
|
+
w: number;
|
|
3607
|
+
}[];
|
|
3608
|
+
};
|
|
3609
|
+
orig?: {
|
|
3610
|
+
faces: {
|
|
3611
|
+
x: number;
|
|
3612
|
+
y: number;
|
|
3613
|
+
h: number;
|
|
3614
|
+
w: number;
|
|
3615
|
+
}[];
|
|
3616
|
+
};
|
|
3617
|
+
};
|
|
3618
|
+
sizes: {
|
|
3619
|
+
large: {
|
|
3620
|
+
h: number;
|
|
3621
|
+
w: number;
|
|
3622
|
+
resize: string;
|
|
3623
|
+
};
|
|
3624
|
+
medium: {
|
|
3625
|
+
h: number;
|
|
3626
|
+
w: number;
|
|
3627
|
+
resize: string;
|
|
3628
|
+
};
|
|
3629
|
+
small: {
|
|
3630
|
+
h: number;
|
|
3631
|
+
w: number;
|
|
3632
|
+
resize: string;
|
|
3633
|
+
};
|
|
3634
|
+
thumb: {
|
|
3635
|
+
h: number;
|
|
3636
|
+
w: number;
|
|
3637
|
+
resize: string;
|
|
3638
|
+
};
|
|
3639
|
+
};
|
|
3640
|
+
original_info: {
|
|
3641
|
+
height: number;
|
|
3642
|
+
width: number;
|
|
3643
|
+
focus_rects?: {
|
|
3644
|
+
x: number;
|
|
3645
|
+
y: number;
|
|
3646
|
+
w: number;
|
|
3647
|
+
h: number;
|
|
3648
|
+
}[];
|
|
3649
|
+
};
|
|
3650
|
+
}[];
|
|
3651
|
+
};
|
|
3652
|
+
favorite_count: number;
|
|
3653
|
+
favorited: boolean;
|
|
3654
|
+
full_text: string;
|
|
3655
|
+
is_quote_status: boolean;
|
|
3656
|
+
lang: string;
|
|
3657
|
+
quote_count: number;
|
|
3658
|
+
quoted_status_id_str?: string;
|
|
3659
|
+
quoted_status_permalink?: {
|
|
3660
|
+
url: string;
|
|
3661
|
+
expanded: string;
|
|
3662
|
+
display: string;
|
|
3663
|
+
};
|
|
3664
|
+
reply_count: number;
|
|
3665
|
+
retweet_count: number;
|
|
3666
|
+
retweeted: boolean;
|
|
3667
|
+
user_id_str: string;
|
|
3668
|
+
id_str: string;
|
|
3669
|
+
extended_entities?: {
|
|
3670
|
+
media: {
|
|
3671
|
+
display_url: string;
|
|
3672
|
+
expanded_url: string;
|
|
3673
|
+
id_str: string;
|
|
3674
|
+
indices: number[];
|
|
3675
|
+
media_key: string;
|
|
3676
|
+
media_url_https: string;
|
|
3677
|
+
type: string;
|
|
3678
|
+
url: string;
|
|
3679
|
+
additional_media_info?: {
|
|
3680
|
+
monetizable: boolean;
|
|
3681
|
+
title?: string;
|
|
3682
|
+
description?: string;
|
|
3683
|
+
embeddable?: boolean;
|
|
3684
|
+
};
|
|
3685
|
+
mediaStats?: {
|
|
3686
|
+
viewCount: number;
|
|
3687
|
+
};
|
|
3688
|
+
ext_media_availability: {
|
|
3689
|
+
status: string;
|
|
3690
|
+
};
|
|
3691
|
+
features: {
|
|
3692
|
+
large?: {
|
|
3693
|
+
faces: {
|
|
3694
|
+
x: number;
|
|
3695
|
+
y: number;
|
|
3696
|
+
h: number;
|
|
3697
|
+
w: number;
|
|
3698
|
+
}[];
|
|
3699
|
+
};
|
|
3700
|
+
medium?: {
|
|
3701
|
+
faces: {
|
|
3702
|
+
x: number;
|
|
3703
|
+
y: number;
|
|
3704
|
+
h: number;
|
|
3705
|
+
w: number;
|
|
3706
|
+
}[];
|
|
3707
|
+
};
|
|
3708
|
+
small?: {
|
|
3709
|
+
faces: {
|
|
3710
|
+
x: number;
|
|
3711
|
+
y: number;
|
|
3712
|
+
h: number;
|
|
3713
|
+
w: number;
|
|
3714
|
+
}[];
|
|
3715
|
+
};
|
|
3716
|
+
orig?: {
|
|
3717
|
+
faces: {
|
|
3718
|
+
x: number;
|
|
3719
|
+
y: number;
|
|
3720
|
+
h: number;
|
|
3721
|
+
w: number;
|
|
3722
|
+
}[];
|
|
3723
|
+
};
|
|
3724
|
+
};
|
|
3725
|
+
sizes: {
|
|
3726
|
+
large: {
|
|
3727
|
+
h: number;
|
|
3728
|
+
w: number;
|
|
3729
|
+
resize: string;
|
|
3730
|
+
};
|
|
3731
|
+
medium: {
|
|
3732
|
+
h: number;
|
|
3733
|
+
w: number;
|
|
3734
|
+
resize: string;
|
|
3735
|
+
};
|
|
3736
|
+
small: {
|
|
3737
|
+
h: number;
|
|
3738
|
+
w: number;
|
|
3739
|
+
resize: string;
|
|
3740
|
+
};
|
|
3741
|
+
thumb: {
|
|
3742
|
+
h: number;
|
|
3743
|
+
w: number;
|
|
3744
|
+
resize: string;
|
|
3745
|
+
};
|
|
3746
|
+
};
|
|
3747
|
+
original_info: {
|
|
3748
|
+
height: number;
|
|
3749
|
+
width: number;
|
|
3750
|
+
focus_rects?: {
|
|
3751
|
+
x: number;
|
|
3752
|
+
y: number;
|
|
3753
|
+
w: number;
|
|
3754
|
+
h: number;
|
|
3755
|
+
}[];
|
|
3756
|
+
};
|
|
3757
|
+
video_info?: {
|
|
3758
|
+
aspect_ratio: number[];
|
|
3759
|
+
duration_millis: number;
|
|
3760
|
+
variants: {
|
|
3761
|
+
bitrate?: number;
|
|
3762
|
+
content_type: string;
|
|
3763
|
+
url: string;
|
|
3764
|
+
}[];
|
|
3765
|
+
};
|
|
3766
|
+
}[];
|
|
3767
|
+
};
|
|
3768
|
+
possibly_sensitive?: boolean;
|
|
3769
|
+
possibly_sensitive_editable?: boolean;
|
|
3770
|
+
};
|
|
3771
|
+
note_tweet?: {
|
|
3772
|
+
is_expandable: boolean;
|
|
3773
|
+
note_tweet_results: {
|
|
3774
|
+
result: {
|
|
3775
|
+
id: string;
|
|
3776
|
+
text: string;
|
|
3777
|
+
entity_set: {
|
|
3778
|
+
user_mentions: {
|
|
3779
|
+
id_str: string;
|
|
3780
|
+
name: string;
|
|
3781
|
+
screen_name: string;
|
|
3782
|
+
indices: number[];
|
|
3783
|
+
}[];
|
|
3784
|
+
urls: unknown[];
|
|
3785
|
+
hashtags: unknown[];
|
|
3786
|
+
symbols: unknown[];
|
|
3787
|
+
};
|
|
3788
|
+
richtext: {
|
|
3789
|
+
richtext_tags: unknown[];
|
|
3790
|
+
};
|
|
3791
|
+
media: {
|
|
3792
|
+
inline_media: unknown[];
|
|
3793
|
+
};
|
|
2417
3794
|
};
|
|
2418
3795
|
};
|
|
2419
3796
|
};
|
|
2420
|
-
|
|
2421
|
-
quick_promote_eligibility: {
|
|
2422
|
-
eligibility: string;
|
|
2423
|
-
};
|
|
2424
|
-
};
|
|
2425
|
-
limitedActionResults?: {
|
|
2426
|
-
limited_actions: {
|
|
2427
|
-
action: string;
|
|
2428
|
-
prompt: {
|
|
3797
|
+
tombstone?: {
|
|
2429
3798
|
__typename: string;
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
text: string;
|
|
2433
|
-
entities: unknown[];
|
|
2434
|
-
};
|
|
2435
|
-
subtext: {
|
|
3799
|
+
text: {
|
|
3800
|
+
rtl: boolean;
|
|
2436
3801
|
text: string;
|
|
2437
|
-
entities:
|
|
3802
|
+
entities: {
|
|
3803
|
+
fromIndex: number;
|
|
3804
|
+
toIndex: number;
|
|
3805
|
+
ref: {
|
|
3806
|
+
type: string;
|
|
3807
|
+
url: string;
|
|
3808
|
+
urlType: string;
|
|
3809
|
+
};
|
|
3810
|
+
}[];
|
|
2438
3811
|
};
|
|
2439
3812
|
};
|
|
2440
|
-
}
|
|
3813
|
+
};
|
|
2441
3814
|
};
|
|
2442
3815
|
};
|
|
2443
3816
|
};
|
|
@@ -2448,7 +3821,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2448
3821
|
__typename: string;
|
|
2449
3822
|
id: string;
|
|
2450
3823
|
rest_id: string;
|
|
2451
|
-
affiliates_highlighted_label: {
|
|
3824
|
+
affiliates_highlighted_label: {
|
|
3825
|
+
label?: {
|
|
3826
|
+
url: {
|
|
3827
|
+
url: string;
|
|
3828
|
+
urlType: string;
|
|
3829
|
+
};
|
|
3830
|
+
badge: {
|
|
3831
|
+
url: string;
|
|
3832
|
+
};
|
|
3833
|
+
description: string;
|
|
3834
|
+
userLabelType: string;
|
|
3835
|
+
userLabelDisplayType: string;
|
|
3836
|
+
};
|
|
3837
|
+
};
|
|
2452
3838
|
has_graduated_access: boolean;
|
|
2453
3839
|
is_blue_verified: boolean;
|
|
2454
3840
|
profile_image_shape: string;
|
|
@@ -2468,7 +3854,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2468
3854
|
indices: number[];
|
|
2469
3855
|
}[];
|
|
2470
3856
|
};
|
|
2471
|
-
url
|
|
3857
|
+
url?: {
|
|
2472
3858
|
urls: {
|
|
2473
3859
|
display_url: string;
|
|
2474
3860
|
expanded_url: string;
|
|
@@ -2496,7 +3882,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2496
3882
|
screen_name: string;
|
|
2497
3883
|
statuses_count: number;
|
|
2498
3884
|
translator_type: string;
|
|
2499
|
-
url
|
|
3885
|
+
url?: string;
|
|
2500
3886
|
verified: boolean;
|
|
2501
3887
|
verified_type?: string;
|
|
2502
3888
|
want_retweets: boolean;
|
|
@@ -2525,6 +3911,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2525
3911
|
value: string;
|
|
2526
3912
|
}[];
|
|
2527
3913
|
};
|
|
3914
|
+
impressionString?: string;
|
|
2528
3915
|
};
|
|
2529
3916
|
};
|
|
2530
3917
|
header?: {
|
|
@@ -2564,7 +3951,20 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2564
3951
|
__typename: string;
|
|
2565
3952
|
id: string;
|
|
2566
3953
|
rest_id: string;
|
|
2567
|
-
affiliates_highlighted_label: {
|
|
3954
|
+
affiliates_highlighted_label: {
|
|
3955
|
+
label?: {
|
|
3956
|
+
url: {
|
|
3957
|
+
url: string;
|
|
3958
|
+
urlType: string;
|
|
3959
|
+
};
|
|
3960
|
+
badge: {
|
|
3961
|
+
url: string;
|
|
3962
|
+
};
|
|
3963
|
+
description: string;
|
|
3964
|
+
userLabelType: string;
|
|
3965
|
+
userLabelDisplayType: string;
|
|
3966
|
+
};
|
|
3967
|
+
};
|
|
2568
3968
|
has_graduated_access: boolean;
|
|
2569
3969
|
is_blue_verified: boolean;
|
|
2570
3970
|
profile_image_shape: string;
|
|
@@ -2579,7 +3979,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2579
3979
|
description: {
|
|
2580
3980
|
urls: unknown[];
|
|
2581
3981
|
};
|
|
2582
|
-
url
|
|
3982
|
+
url?: {
|
|
2583
3983
|
urls: {
|
|
2584
3984
|
display_url: string;
|
|
2585
3985
|
expanded_url: string;
|
|
@@ -2607,11 +4007,21 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2607
4007
|
screen_name: string;
|
|
2608
4008
|
statuses_count: number;
|
|
2609
4009
|
translator_type: string;
|
|
2610
|
-
url
|
|
4010
|
+
url?: string;
|
|
2611
4011
|
verified: boolean;
|
|
2612
4012
|
want_retweets: boolean;
|
|
2613
4013
|
withheld_in_countries: unknown[];
|
|
2614
4014
|
};
|
|
4015
|
+
professional?: {
|
|
4016
|
+
rest_id: string;
|
|
4017
|
+
professional_type: string;
|
|
4018
|
+
category: {
|
|
4019
|
+
id: number;
|
|
4020
|
+
name: string;
|
|
4021
|
+
icon_name: string;
|
|
4022
|
+
}[];
|
|
4023
|
+
};
|
|
4024
|
+
super_follow_eligible?: boolean;
|
|
2615
4025
|
};
|
|
2616
4026
|
};
|
|
2617
4027
|
};
|
|
@@ -2628,6 +4038,7 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2628
4038
|
is_translatable: boolean;
|
|
2629
4039
|
views: {
|
|
2630
4040
|
state: string;
|
|
4041
|
+
count?: string;
|
|
2631
4042
|
};
|
|
2632
4043
|
source: string;
|
|
2633
4044
|
legacy: {
|
|
@@ -2638,7 +4049,12 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2638
4049
|
display_text_range: number[];
|
|
2639
4050
|
entities: {
|
|
2640
4051
|
user_mentions: unknown[];
|
|
2641
|
-
urls:
|
|
4052
|
+
urls: {
|
|
4053
|
+
display_url: string;
|
|
4054
|
+
expanded_url: string;
|
|
4055
|
+
url: string;
|
|
4056
|
+
indices: number[];
|
|
4057
|
+
}[];
|
|
2642
4058
|
hashtags: unknown[];
|
|
2643
4059
|
symbols: unknown[];
|
|
2644
4060
|
};
|
|
@@ -2653,10 +4069,147 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2653
4069
|
retweeted: boolean;
|
|
2654
4070
|
user_id_str: string;
|
|
2655
4071
|
id_str: string;
|
|
4072
|
+
possibly_sensitive?: boolean;
|
|
4073
|
+
possibly_sensitive_editable?: boolean;
|
|
4074
|
+
quoted_status_id_str?: string;
|
|
4075
|
+
quoted_status_permalink?: {
|
|
4076
|
+
url: string;
|
|
4077
|
+
expanded: string;
|
|
4078
|
+
display: string;
|
|
4079
|
+
};
|
|
2656
4080
|
};
|
|
2657
4081
|
quick_promote_eligibility: {
|
|
2658
4082
|
eligibility: string;
|
|
2659
4083
|
};
|
|
4084
|
+
quoted_status_result?: {
|
|
4085
|
+
result: {
|
|
4086
|
+
__typename: string;
|
|
4087
|
+
rest_id: string;
|
|
4088
|
+
core: {
|
|
4089
|
+
user_results: {
|
|
4090
|
+
result: {
|
|
4091
|
+
__typename: string;
|
|
4092
|
+
id: string;
|
|
4093
|
+
rest_id: string;
|
|
4094
|
+
affiliates_highlighted_label: {
|
|
4095
|
+
label: {
|
|
4096
|
+
url: {
|
|
4097
|
+
url: string;
|
|
4098
|
+
urlType: string;
|
|
4099
|
+
};
|
|
4100
|
+
badge: {
|
|
4101
|
+
url: string;
|
|
4102
|
+
};
|
|
4103
|
+
description: string;
|
|
4104
|
+
userLabelType: string;
|
|
4105
|
+
userLabelDisplayType: string;
|
|
4106
|
+
};
|
|
4107
|
+
};
|
|
4108
|
+
has_graduated_access: boolean;
|
|
4109
|
+
is_blue_verified: boolean;
|
|
4110
|
+
profile_image_shape: string;
|
|
4111
|
+
legacy: {
|
|
4112
|
+
can_dm: boolean;
|
|
4113
|
+
can_media_tag: boolean;
|
|
4114
|
+
created_at: string;
|
|
4115
|
+
default_profile: boolean;
|
|
4116
|
+
default_profile_image: boolean;
|
|
4117
|
+
description: string;
|
|
4118
|
+
entities: {
|
|
4119
|
+
description: {
|
|
4120
|
+
urls: {
|
|
4121
|
+
display_url: string;
|
|
4122
|
+
expanded_url: string;
|
|
4123
|
+
url: string;
|
|
4124
|
+
indices: number[];
|
|
4125
|
+
}[];
|
|
4126
|
+
};
|
|
4127
|
+
url: {
|
|
4128
|
+
urls: {
|
|
4129
|
+
display_url: string;
|
|
4130
|
+
expanded_url: string;
|
|
4131
|
+
url: string;
|
|
4132
|
+
indices: number[];
|
|
4133
|
+
}[];
|
|
4134
|
+
};
|
|
4135
|
+
};
|
|
4136
|
+
fast_followers_count: number;
|
|
4137
|
+
favourites_count: number;
|
|
4138
|
+
followers_count: number;
|
|
4139
|
+
friends_count: number;
|
|
4140
|
+
has_custom_timelines: boolean;
|
|
4141
|
+
is_translator: boolean;
|
|
4142
|
+
listed_count: number;
|
|
4143
|
+
location: string;
|
|
4144
|
+
media_count: number;
|
|
4145
|
+
name: string;
|
|
4146
|
+
normal_followers_count: number;
|
|
4147
|
+
pinned_tweet_ids_str: unknown[];
|
|
4148
|
+
possibly_sensitive: boolean;
|
|
4149
|
+
profile_banner_url: string;
|
|
4150
|
+
profile_image_url_https: string;
|
|
4151
|
+
profile_interstitial_type: string;
|
|
4152
|
+
screen_name: string;
|
|
4153
|
+
statuses_count: number;
|
|
4154
|
+
translator_type: string;
|
|
4155
|
+
url: string;
|
|
4156
|
+
verified: boolean;
|
|
4157
|
+
verified_type: string;
|
|
4158
|
+
want_retweets: boolean;
|
|
4159
|
+
withheld_in_countries: unknown[];
|
|
4160
|
+
};
|
|
4161
|
+
};
|
|
4162
|
+
};
|
|
4163
|
+
};
|
|
4164
|
+
edit_control: {
|
|
4165
|
+
edit_tweet_ids: string[];
|
|
4166
|
+
editable_until_msecs: string;
|
|
4167
|
+
is_edit_eligible: boolean;
|
|
4168
|
+
edits_remaining: string;
|
|
4169
|
+
};
|
|
4170
|
+
edit_perspective: {
|
|
4171
|
+
favorited: boolean;
|
|
4172
|
+
retweeted: boolean;
|
|
4173
|
+
};
|
|
4174
|
+
is_translatable: boolean;
|
|
4175
|
+
views: {
|
|
4176
|
+
count: string;
|
|
4177
|
+
state: string;
|
|
4178
|
+
};
|
|
4179
|
+
source: string;
|
|
4180
|
+
legacy: {
|
|
4181
|
+
bookmark_count: number;
|
|
4182
|
+
bookmarked: boolean;
|
|
4183
|
+
created_at: string;
|
|
4184
|
+
conversation_id_str: string;
|
|
4185
|
+
display_text_range: number[];
|
|
4186
|
+
entities: {
|
|
4187
|
+
user_mentions: unknown[];
|
|
4188
|
+
urls: {
|
|
4189
|
+
display_url: string;
|
|
4190
|
+
expanded_url: string;
|
|
4191
|
+
url: string;
|
|
4192
|
+
indices: number[];
|
|
4193
|
+
}[];
|
|
4194
|
+
hashtags: unknown[];
|
|
4195
|
+
symbols: unknown[];
|
|
4196
|
+
};
|
|
4197
|
+
favorite_count: number;
|
|
4198
|
+
favorited: boolean;
|
|
4199
|
+
full_text: string;
|
|
4200
|
+
is_quote_status: boolean;
|
|
4201
|
+
lang: string;
|
|
4202
|
+
possibly_sensitive: boolean;
|
|
4203
|
+
possibly_sensitive_editable: boolean;
|
|
4204
|
+
quote_count: number;
|
|
4205
|
+
reply_count: number;
|
|
4206
|
+
retweet_count: number;
|
|
4207
|
+
retweeted: boolean;
|
|
4208
|
+
user_id_str: string;
|
|
4209
|
+
id_str: string;
|
|
4210
|
+
};
|
|
4211
|
+
};
|
|
4212
|
+
};
|
|
2660
4213
|
};
|
|
2661
4214
|
};
|
|
2662
4215
|
tweetDisplayType: string;
|
|
@@ -2668,19 +4221,25 @@ export interface GraphQLGetUserTweetsSuccessResponse {
|
|
|
2668
4221
|
};
|
|
2669
4222
|
clientEventInfo: {
|
|
2670
4223
|
component: string;
|
|
2671
|
-
details
|
|
4224
|
+
details?: {
|
|
2672
4225
|
timelinesDetails: {
|
|
2673
4226
|
injectionType: string;
|
|
2674
4227
|
};
|
|
2675
4228
|
};
|
|
4229
|
+
element?: string;
|
|
2676
4230
|
};
|
|
2677
4231
|
};
|
|
2678
4232
|
};
|
|
2679
4233
|
}[];
|
|
2680
|
-
responseObjects
|
|
4234
|
+
responseObjects?: {
|
|
2681
4235
|
feedbackActions: unknown[];
|
|
2682
4236
|
immediateReactions: unknown[];
|
|
2683
4237
|
};
|
|
4238
|
+
metadata?: {
|
|
4239
|
+
scribeConfig: {
|
|
4240
|
+
page: string;
|
|
4241
|
+
};
|
|
4242
|
+
};
|
|
2684
4243
|
};
|
|
2685
4244
|
};
|
|
2686
4245
|
};
|