@book000/twitterts 0.10.6 → 0.11.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.
Files changed (58) hide show
  1. package/dist/generate-types.js +72 -9
  2. package/dist/generate-types.js.map +1 -1
  3. package/dist/index.d.ts +3 -0
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js +3 -0
  6. package/dist/index.js.map +1 -1
  7. package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +24 -3
  8. package/dist/models/responses/custom/custom-search-timeline-entry.d.ts.map +1 -1
  9. package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts +1718 -2
  10. package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
  11. package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +2824 -0
  12. package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -0
  13. package/dist/models/responses/custom/custom-user-tweet-entry.js +4 -0
  14. package/dist/models/responses/custom/custom-user-tweet-entry.js.map +1 -0
  15. package/dist/models/responses/endpoints.d.ts +5 -2
  16. package/dist/models/responses/endpoints.d.ts.map +1 -1
  17. package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +178 -0
  18. package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -0
  19. package/dist/models/responses/graphql/get/audio-space-by-id-success.js +4 -0
  20. package/dist/models/responses/graphql/get/audio-space-by-id-success.js.map +1 -0
  21. package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +78 -5
  22. package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts.map +1 -1
  23. package/dist/models/responses/graphql/get/search-timeline-success.d.ts +24 -3
  24. package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
  25. package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts +41 -2
  26. package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts.map +1 -1
  27. package/dist/models/responses/graphql/get/user-tweets-success.d.ts +1557 -105
  28. package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
  29. package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +29 -5
  30. package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts.map +1 -1
  31. package/dist/models/responses/graphql/post/home-timeline-success.d.ts +241 -21
  32. package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
  33. package/dist/options.d.ts +10 -0
  34. package/dist/options.d.ts.map +1 -1
  35. package/dist/options.js.map +1 -1
  36. package/dist/parser/parser.test.d.ts +2 -0
  37. package/dist/parser/parser.test.d.ts.map +1 -0
  38. package/dist/parser/parser.test.js +46 -0
  39. package/dist/parser/parser.test.js.map +1 -0
  40. package/dist/parser/search-timeline.d.ts.map +1 -1
  41. package/dist/parser/search-timeline.js +9 -6
  42. package/dist/parser/search-timeline.js.map +1 -1
  43. package/dist/parser/user-tweets.d.ts +20 -0
  44. package/dist/parser/user-tweets.d.ts.map +1 -0
  45. package/dist/parser/user-tweets.js +59 -0
  46. package/dist/parser/user-tweets.js.map +1 -0
  47. package/dist/scraper.d.ts.map +1 -1
  48. package/dist/scraper.js +1 -0
  49. package/dist/scraper.js.map +1 -1
  50. package/dist/tsconfig.build.tsbuildinfo +1 -1
  51. package/dist/tsconfig.tsbuildinfo +1 -1
  52. package/dist/twitter.d.ts +8 -1
  53. package/dist/twitter.d.ts.map +1 -1
  54. package/dist/twitter.js +47 -1
  55. package/dist/twitter.js.map +1 -1
  56. package/dist/twitter.test.js +7 -0
  57. package/dist/twitter.test.js.map +1 -1
  58. package/package.json +6 -2
@@ -0,0 +1,2824 @@
1
+ /** ユーザーツイートモデル */
2
+ export interface CustomUserTweetEntry {
3
+ entryId: string;
4
+ sortIndex: string;
5
+ content: {
6
+ entryType: string;
7
+ __typename: string;
8
+ itemContent: {
9
+ itemType: string;
10
+ __typename: string;
11
+ tweet_results: {
12
+ result: {
13
+ __typename: string;
14
+ rest_id?: string;
15
+ core?: {
16
+ user_results: {
17
+ result: {
18
+ __typename: string;
19
+ id: string;
20
+ rest_id: string;
21
+ affiliates_highlighted_label: {
22
+ label?: {
23
+ url: {
24
+ url: string;
25
+ urlType: string;
26
+ };
27
+ badge: {
28
+ url: string;
29
+ };
30
+ description: string;
31
+ userLabelType: string;
32
+ userLabelDisplayType: string;
33
+ };
34
+ };
35
+ has_graduated_access: boolean;
36
+ is_blue_verified: boolean;
37
+ profile_image_shape: string;
38
+ legacy: {
39
+ can_dm: boolean;
40
+ can_media_tag: boolean;
41
+ created_at: string;
42
+ default_profile: boolean;
43
+ default_profile_image: boolean;
44
+ description: string;
45
+ entities: {
46
+ description: {
47
+ urls: unknown[];
48
+ };
49
+ url?: {
50
+ urls: {
51
+ display_url: string;
52
+ expanded_url: string;
53
+ url: string;
54
+ indices: number[];
55
+ }[];
56
+ };
57
+ };
58
+ fast_followers_count: number;
59
+ favourites_count: number;
60
+ followers_count: number;
61
+ friends_count: number;
62
+ has_custom_timelines: boolean;
63
+ is_translator: boolean;
64
+ listed_count: number;
65
+ location: string;
66
+ media_count: number;
67
+ name: string;
68
+ normal_followers_count: number;
69
+ pinned_tweet_ids_str: string[];
70
+ possibly_sensitive: boolean;
71
+ profile_banner_url: string;
72
+ profile_image_url_https: string;
73
+ profile_interstitial_type: string;
74
+ screen_name: string;
75
+ statuses_count: number;
76
+ translator_type: string;
77
+ url?: string;
78
+ verified: boolean;
79
+ want_retweets: boolean;
80
+ withheld_in_countries: unknown[];
81
+ needs_phone_verification?: boolean;
82
+ followed_by?: boolean;
83
+ };
84
+ professional?: {
85
+ rest_id: string;
86
+ professional_type: string;
87
+ category: {
88
+ id: number;
89
+ name: string;
90
+ icon_name: string;
91
+ }[];
92
+ };
93
+ super_follow_eligible?: boolean;
94
+ };
95
+ };
96
+ };
97
+ card?: {
98
+ rest_id: string;
99
+ legacy: {
100
+ binding_values: {
101
+ key: string;
102
+ value: {
103
+ image_value?: {
104
+ height: number;
105
+ width: number;
106
+ url: string;
107
+ alt?: string;
108
+ };
109
+ type: string;
110
+ string_value?: string;
111
+ scribe_key?: string;
112
+ user_value?: {
113
+ id_str: string;
114
+ path: unknown[];
115
+ };
116
+ image_color_value?: {
117
+ palette: {
118
+ rgb: {
119
+ blue: number;
120
+ green: number;
121
+ red: number;
122
+ };
123
+ percentage: number;
124
+ }[];
125
+ };
126
+ boolean_value?: boolean;
127
+ };
128
+ }[];
129
+ card_platform: {
130
+ platform: {
131
+ audience: {
132
+ name: string;
133
+ };
134
+ device: {
135
+ name: string;
136
+ version: string;
137
+ };
138
+ };
139
+ };
140
+ name: string;
141
+ url: string;
142
+ user_refs_results: {
143
+ result: {
144
+ __typename: string;
145
+ id?: string;
146
+ rest_id?: string;
147
+ affiliates_highlighted_label?: {
148
+ label?: {
149
+ url: {
150
+ url: string;
151
+ urlType: string;
152
+ };
153
+ badge: {
154
+ url: string;
155
+ };
156
+ description: string;
157
+ userLabelType: string;
158
+ userLabelDisplayType: string;
159
+ };
160
+ };
161
+ has_graduated_access?: boolean;
162
+ is_blue_verified?: boolean;
163
+ profile_image_shape?: string;
164
+ legacy?: {
165
+ can_dm: boolean;
166
+ can_media_tag: boolean;
167
+ created_at: string;
168
+ default_profile: boolean;
169
+ default_profile_image: boolean;
170
+ description: string;
171
+ entities: {
172
+ description: {
173
+ urls: {
174
+ display_url: string;
175
+ expanded_url: string;
176
+ url: string;
177
+ indices: number[];
178
+ }[];
179
+ };
180
+ url?: {
181
+ urls: {
182
+ display_url: string;
183
+ expanded_url: string;
184
+ url: string;
185
+ indices: number[];
186
+ }[];
187
+ };
188
+ };
189
+ fast_followers_count: number;
190
+ favourites_count: number;
191
+ followers_count: number;
192
+ friends_count: number;
193
+ has_custom_timelines: boolean;
194
+ is_translator: boolean;
195
+ listed_count: number;
196
+ location: string;
197
+ media_count: number;
198
+ name: string;
199
+ normal_followers_count: number;
200
+ pinned_tweet_ids_str: string[];
201
+ possibly_sensitive: boolean;
202
+ profile_banner_url?: string;
203
+ profile_image_url_https: string;
204
+ profile_interstitial_type: string;
205
+ screen_name: string;
206
+ statuses_count: number;
207
+ translator_type: string;
208
+ url?: string;
209
+ verified: boolean;
210
+ want_retweets: boolean;
211
+ withheld_in_countries: unknown[];
212
+ verified_type?: string;
213
+ };
214
+ professional?: {
215
+ rest_id: string;
216
+ professional_type: string;
217
+ category: {
218
+ id: number;
219
+ name: string;
220
+ icon_name: string;
221
+ }[];
222
+ };
223
+ unavailable_message?: {
224
+ rtl: boolean;
225
+ text: string;
226
+ entities: {
227
+ fromIndex: number;
228
+ toIndex: number;
229
+ ref: {
230
+ type: string;
231
+ url: string;
232
+ urlType: string;
233
+ };
234
+ }[];
235
+ };
236
+ reason?: string;
237
+ };
238
+ }[];
239
+ };
240
+ };
241
+ unified_card?: {
242
+ card_fetch_state: string;
243
+ };
244
+ edit_control?: {
245
+ edit_tweet_ids: string[];
246
+ editable_until_msecs: string;
247
+ is_edit_eligible: boolean;
248
+ edits_remaining: string;
249
+ };
250
+ edit_perspective?: {
251
+ favorited: boolean;
252
+ retweeted: boolean;
253
+ };
254
+ is_translatable?: boolean;
255
+ views?: {
256
+ state: string;
257
+ count?: string;
258
+ };
259
+ source?: string;
260
+ legacy?: {
261
+ bookmark_count: number;
262
+ bookmarked: boolean;
263
+ created_at: string;
264
+ conversation_id_str: string;
265
+ display_text_range: number[];
266
+ entities: {
267
+ user_mentions: {
268
+ id_str: string;
269
+ name: string;
270
+ screen_name: string;
271
+ indices: number[];
272
+ }[];
273
+ urls: {
274
+ display_url: string;
275
+ expanded_url: string;
276
+ url: string;
277
+ indices: number[];
278
+ }[];
279
+ hashtags: {
280
+ indices: number[];
281
+ text: string;
282
+ }[];
283
+ symbols: unknown[];
284
+ media?: {
285
+ display_url: string;
286
+ expanded_url: string;
287
+ id_str: string;
288
+ indices: number[];
289
+ media_url_https: string;
290
+ source_status_id_str?: string;
291
+ source_user_id_str?: string;
292
+ type: string;
293
+ url: string;
294
+ features: {
295
+ large?: {
296
+ faces: {
297
+ x: number;
298
+ y: number;
299
+ h: number;
300
+ w: number;
301
+ }[];
302
+ };
303
+ medium?: {
304
+ faces: {
305
+ x: number;
306
+ y: number;
307
+ h: number;
308
+ w: number;
309
+ }[];
310
+ };
311
+ small?: {
312
+ faces: {
313
+ x: number;
314
+ y: number;
315
+ h: number;
316
+ w: number;
317
+ }[];
318
+ };
319
+ orig?: {
320
+ faces: {
321
+ x: number;
322
+ y: number;
323
+ h: number;
324
+ w: number;
325
+ }[];
326
+ };
327
+ };
328
+ sizes: {
329
+ large: {
330
+ h: number;
331
+ w: number;
332
+ resize: string;
333
+ };
334
+ medium: {
335
+ h: number;
336
+ w: number;
337
+ resize: string;
338
+ };
339
+ small: {
340
+ h: number;
341
+ w: number;
342
+ resize: string;
343
+ };
344
+ thumb: {
345
+ h: number;
346
+ w: number;
347
+ resize: string;
348
+ };
349
+ };
350
+ original_info: {
351
+ height: number;
352
+ width: number;
353
+ focus_rects?: {
354
+ x: number;
355
+ y: number;
356
+ w: number;
357
+ h: number;
358
+ }[];
359
+ };
360
+ }[];
361
+ };
362
+ favorite_count: number;
363
+ favorited: boolean;
364
+ full_text: string;
365
+ is_quote_status: boolean;
366
+ lang: string;
367
+ possibly_sensitive?: boolean;
368
+ possibly_sensitive_editable?: boolean;
369
+ quote_count: number;
370
+ reply_count: number;
371
+ retweet_count: number;
372
+ retweeted: boolean;
373
+ user_id_str: string;
374
+ id_str: string;
375
+ retweeted_status_result?: {
376
+ result: {
377
+ __typename: string;
378
+ rest_id: string;
379
+ core: {
380
+ user_results: {
381
+ result: {
382
+ __typename: string;
383
+ id: string;
384
+ rest_id: string;
385
+ affiliates_highlighted_label: {
386
+ label?: {
387
+ url?: {
388
+ url: string;
389
+ urlType: string;
390
+ };
391
+ badge: {
392
+ url: string;
393
+ };
394
+ description: string;
395
+ userLabelType: string;
396
+ userLabelDisplayType?: string;
397
+ longDescription?: {
398
+ text: string;
399
+ entities: {
400
+ fromIndex: number;
401
+ toIndex: number;
402
+ ref: {
403
+ type: string;
404
+ screen_name: string;
405
+ mention_results: {
406
+ result: {
407
+ __typename: string;
408
+ legacy: {
409
+ screen_name: string;
410
+ };
411
+ rest_id: string;
412
+ };
413
+ };
414
+ };
415
+ }[];
416
+ };
417
+ };
418
+ };
419
+ has_graduated_access: boolean;
420
+ is_blue_verified: boolean;
421
+ profile_image_shape: string;
422
+ legacy: {
423
+ can_dm: boolean;
424
+ can_media_tag: boolean;
425
+ created_at: string;
426
+ default_profile: boolean;
427
+ default_profile_image: boolean;
428
+ description: string;
429
+ entities: {
430
+ description: {
431
+ urls: {
432
+ display_url: string;
433
+ expanded_url: string;
434
+ url: string;
435
+ indices: number[];
436
+ }[];
437
+ };
438
+ url?: {
439
+ urls: {
440
+ display_url?: string;
441
+ expanded_url?: string;
442
+ url: string;
443
+ indices: number[];
444
+ }[];
445
+ };
446
+ };
447
+ fast_followers_count: number;
448
+ favourites_count: number;
449
+ followers_count: number;
450
+ friends_count: number;
451
+ has_custom_timelines: boolean;
452
+ is_translator: boolean;
453
+ listed_count: number;
454
+ location: string;
455
+ media_count: number;
456
+ name: string;
457
+ normal_followers_count: number;
458
+ pinned_tweet_ids_str: string[];
459
+ possibly_sensitive: boolean;
460
+ profile_image_url_https: string;
461
+ profile_interstitial_type: string;
462
+ screen_name: string;
463
+ statuses_count: number;
464
+ translator_type: string;
465
+ url?: string;
466
+ verified: boolean;
467
+ want_retweets: boolean;
468
+ withheld_in_countries: unknown[];
469
+ profile_banner_url?: string;
470
+ verified_type?: string;
471
+ };
472
+ professional?: {
473
+ rest_id: string;
474
+ professional_type: string;
475
+ category: {
476
+ id: number;
477
+ name: string;
478
+ icon_name: string;
479
+ }[];
480
+ };
481
+ super_follow_eligible?: boolean;
482
+ };
483
+ };
484
+ };
485
+ card?: {
486
+ rest_id: string;
487
+ legacy: {
488
+ binding_values: {
489
+ key: string;
490
+ value: {
491
+ image_value?: {
492
+ height: number;
493
+ width: number;
494
+ url: string;
495
+ alt?: string;
496
+ };
497
+ type: string;
498
+ string_value?: string;
499
+ scribe_key?: string;
500
+ user_value?: {
501
+ id_str: string;
502
+ path: unknown[];
503
+ };
504
+ image_color_value?: {
505
+ palette: {
506
+ rgb: {
507
+ blue: number;
508
+ green: number;
509
+ red: number;
510
+ };
511
+ percentage: number;
512
+ }[];
513
+ };
514
+ boolean_value?: boolean;
515
+ };
516
+ }[];
517
+ card_platform: {
518
+ platform: {
519
+ audience: {
520
+ name: string;
521
+ };
522
+ device: {
523
+ name: string;
524
+ version: string;
525
+ };
526
+ };
527
+ };
528
+ name: string;
529
+ url: string;
530
+ user_refs_results: {
531
+ result: {
532
+ __typename: string;
533
+ id: string;
534
+ rest_id: string;
535
+ affiliates_highlighted_label: {
536
+ label?: {
537
+ url: {
538
+ url: string;
539
+ urlType: string;
540
+ };
541
+ badge: {
542
+ url: string;
543
+ };
544
+ description: string;
545
+ userLabelType: string;
546
+ userLabelDisplayType: string;
547
+ };
548
+ };
549
+ has_graduated_access: boolean;
550
+ is_blue_verified: boolean;
551
+ profile_image_shape: string;
552
+ legacy: {
553
+ can_dm: boolean;
554
+ can_media_tag: boolean;
555
+ created_at: string;
556
+ default_profile: boolean;
557
+ default_profile_image: boolean;
558
+ description: string;
559
+ entities: {
560
+ description: {
561
+ urls: {
562
+ display_url: string;
563
+ expanded_url: string;
564
+ url: string;
565
+ indices: number[];
566
+ }[];
567
+ };
568
+ url?: {
569
+ urls: {
570
+ display_url: string;
571
+ expanded_url: string;
572
+ url: string;
573
+ indices: number[];
574
+ }[];
575
+ };
576
+ };
577
+ fast_followers_count: number;
578
+ favourites_count: number;
579
+ followers_count: number;
580
+ friends_count: number;
581
+ has_custom_timelines: boolean;
582
+ is_translator: boolean;
583
+ listed_count: number;
584
+ location: string;
585
+ media_count: number;
586
+ name: string;
587
+ normal_followers_count: number;
588
+ pinned_tweet_ids_str: string[];
589
+ possibly_sensitive: boolean;
590
+ profile_banner_url: string;
591
+ profile_image_url_https: string;
592
+ profile_interstitial_type: string;
593
+ screen_name: string;
594
+ statuses_count: number;
595
+ translator_type: string;
596
+ url?: string;
597
+ verified: boolean;
598
+ want_retweets: boolean;
599
+ withheld_in_countries: unknown[];
600
+ verified_type?: string;
601
+ };
602
+ professional?: {
603
+ rest_id: string;
604
+ professional_type: string;
605
+ category: {
606
+ id: number;
607
+ name: string;
608
+ icon_name: string;
609
+ }[];
610
+ };
611
+ };
612
+ }[];
613
+ };
614
+ };
615
+ unified_card?: {
616
+ card_fetch_state: string;
617
+ };
618
+ edit_control: {
619
+ edit_tweet_ids?: string[];
620
+ editable_until_msecs?: string;
621
+ is_edit_eligible?: boolean;
622
+ edits_remaining?: string;
623
+ initial_tweet_id?: string;
624
+ edit_control_initial?: {
625
+ edit_tweet_ids: string[];
626
+ editable_until_msecs: string;
627
+ is_edit_eligible: boolean;
628
+ edits_remaining: string;
629
+ };
630
+ };
631
+ edit_perspective: {
632
+ favorited: boolean;
633
+ retweeted: boolean;
634
+ };
635
+ is_translatable: boolean;
636
+ views: {
637
+ count: string;
638
+ state: string;
639
+ };
640
+ source: string;
641
+ legacy: {
642
+ bookmark_count: number;
643
+ bookmarked: boolean;
644
+ created_at: string;
645
+ conversation_id_str: string;
646
+ display_text_range: number[];
647
+ entities: {
648
+ user_mentions: {
649
+ id_str: string;
650
+ name: string;
651
+ screen_name: string;
652
+ indices: number[];
653
+ }[];
654
+ urls: {
655
+ display_url: string;
656
+ expanded_url: string;
657
+ url: string;
658
+ indices: number[];
659
+ }[];
660
+ hashtags: {
661
+ indices: number[];
662
+ text: string;
663
+ }[];
664
+ symbols: unknown[];
665
+ media?: {
666
+ display_url: string;
667
+ expanded_url: string;
668
+ id_str: string;
669
+ indices: number[];
670
+ media_url_https: string;
671
+ type: string;
672
+ url: string;
673
+ features: {
674
+ large?: {
675
+ faces: {
676
+ x: number;
677
+ y: number;
678
+ h: number;
679
+ w: number;
680
+ }[];
681
+ };
682
+ medium?: {
683
+ faces: {
684
+ x: number;
685
+ y: number;
686
+ h: number;
687
+ w: number;
688
+ }[];
689
+ };
690
+ small?: {
691
+ faces: {
692
+ x: number;
693
+ y: number;
694
+ h: number;
695
+ w: number;
696
+ }[];
697
+ };
698
+ orig?: {
699
+ faces: {
700
+ x: number;
701
+ y: number;
702
+ h: number;
703
+ w: number;
704
+ }[];
705
+ };
706
+ };
707
+ sizes: {
708
+ large: {
709
+ h: number;
710
+ w: number;
711
+ resize: string;
712
+ };
713
+ medium: {
714
+ h: number;
715
+ w: number;
716
+ resize: string;
717
+ };
718
+ small: {
719
+ h: number;
720
+ w: number;
721
+ resize: string;
722
+ };
723
+ thumb: {
724
+ h: number;
725
+ w: number;
726
+ resize: string;
727
+ };
728
+ };
729
+ original_info: {
730
+ height: number;
731
+ width: number;
732
+ focus_rects?: {
733
+ x: number;
734
+ y: number;
735
+ w: number;
736
+ h: number;
737
+ }[];
738
+ };
739
+ source_status_id_str?: string;
740
+ source_user_id_str?: string;
741
+ }[];
742
+ };
743
+ favorite_count: number;
744
+ favorited: boolean;
745
+ full_text: string;
746
+ is_quote_status: boolean;
747
+ lang: string;
748
+ possibly_sensitive?: boolean;
749
+ possibly_sensitive_editable?: boolean;
750
+ quote_count: number;
751
+ reply_count: number;
752
+ retweet_count: number;
753
+ retweeted: boolean;
754
+ user_id_str: string;
755
+ id_str: string;
756
+ extended_entities?: {
757
+ media: {
758
+ display_url: string;
759
+ expanded_url: string;
760
+ id_str: string;
761
+ indices: number[];
762
+ media_key: string;
763
+ media_url_https: string;
764
+ type: string;
765
+ url: string;
766
+ ext_media_availability: {
767
+ status: string;
768
+ };
769
+ features: {
770
+ large?: {
771
+ faces: {
772
+ x: number;
773
+ y: number;
774
+ h: number;
775
+ w: number;
776
+ }[];
777
+ };
778
+ medium?: {
779
+ faces: {
780
+ x: number;
781
+ y: number;
782
+ h: number;
783
+ w: number;
784
+ }[];
785
+ };
786
+ small?: {
787
+ faces: {
788
+ x: number;
789
+ y: number;
790
+ h: number;
791
+ w: number;
792
+ }[];
793
+ };
794
+ orig?: {
795
+ faces: {
796
+ x: number;
797
+ y: number;
798
+ h: number;
799
+ w: number;
800
+ }[];
801
+ };
802
+ };
803
+ sizes: {
804
+ large: {
805
+ h: number;
806
+ w: number;
807
+ resize: string;
808
+ };
809
+ medium: {
810
+ h: number;
811
+ w: number;
812
+ resize: string;
813
+ };
814
+ small: {
815
+ h: number;
816
+ w: number;
817
+ resize: string;
818
+ };
819
+ thumb: {
820
+ h: number;
821
+ w: number;
822
+ resize: string;
823
+ };
824
+ };
825
+ original_info: {
826
+ height: number;
827
+ width: number;
828
+ focus_rects?: {
829
+ x: number;
830
+ y: number;
831
+ w: number;
832
+ h: number;
833
+ }[];
834
+ };
835
+ additional_media_info?: {
836
+ monetizable: boolean;
837
+ title?: string;
838
+ description?: string;
839
+ embeddable?: boolean;
840
+ source_user?: {
841
+ user_results: {
842
+ result: {
843
+ __typename: string;
844
+ id: string;
845
+ rest_id: string;
846
+ affiliates_highlighted_label: {};
847
+ has_graduated_access: boolean;
848
+ is_blue_verified: boolean;
849
+ profile_image_shape: string;
850
+ legacy: {
851
+ can_dm: boolean;
852
+ can_media_tag: boolean;
853
+ created_at: string;
854
+ default_profile: boolean;
855
+ default_profile_image: boolean;
856
+ description: string;
857
+ entities: {
858
+ description: {
859
+ urls: unknown[];
860
+ };
861
+ };
862
+ fast_followers_count: number;
863
+ favourites_count: number;
864
+ followers_count: number;
865
+ friends_count: number;
866
+ has_custom_timelines: boolean;
867
+ is_translator: boolean;
868
+ listed_count: number;
869
+ location: string;
870
+ media_count: number;
871
+ name: string;
872
+ normal_followers_count: number;
873
+ pinned_tweet_ids_str: string[];
874
+ possibly_sensitive: boolean;
875
+ profile_banner_url: string;
876
+ profile_image_url_https: string;
877
+ profile_interstitial_type: string;
878
+ screen_name: string;
879
+ statuses_count: number;
880
+ translator_type: string;
881
+ verified: boolean;
882
+ want_retweets: boolean;
883
+ withheld_in_countries: unknown[];
884
+ };
885
+ professional: {
886
+ rest_id: string;
887
+ professional_type: string;
888
+ category: {
889
+ id: number;
890
+ name: string;
891
+ icon_name: string;
892
+ }[];
893
+ };
894
+ };
895
+ };
896
+ };
897
+ };
898
+ mediaStats?: {
899
+ viewCount: number;
900
+ };
901
+ video_info?: {
902
+ aspect_ratio: number[];
903
+ duration_millis?: number;
904
+ variants: {
905
+ bitrate?: number;
906
+ content_type: string;
907
+ url: string;
908
+ }[];
909
+ };
910
+ source_status_id_str?: string;
911
+ source_user_id_str?: string;
912
+ ext_alt_text?: string;
913
+ }[];
914
+ };
915
+ in_reply_to_screen_name?: string;
916
+ in_reply_to_status_id_str?: string;
917
+ in_reply_to_user_id_str?: string;
918
+ quoted_status_id_str?: string;
919
+ quoted_status_permalink?: {
920
+ url: string;
921
+ expanded: string;
922
+ display: string;
923
+ };
924
+ scopes?: {
925
+ followers: boolean;
926
+ };
927
+ place?: {
928
+ attributes: {};
929
+ bounding_box: {
930
+ coordinates: number[][][];
931
+ type: string;
932
+ };
933
+ contained_within: unknown[];
934
+ country: string;
935
+ country_code: string;
936
+ full_name: string;
937
+ name: string;
938
+ id: string;
939
+ place_type: string;
940
+ url: string;
941
+ };
942
+ };
943
+ quoted_status_result?: {
944
+ result: {
945
+ __typename: string;
946
+ rest_id?: string;
947
+ core?: {
948
+ user_results: {
949
+ result: {
950
+ __typename: string;
951
+ id: string;
952
+ rest_id: string;
953
+ affiliates_highlighted_label: {
954
+ label?: {
955
+ url: {
956
+ url: string;
957
+ urlType: string;
958
+ };
959
+ badge: {
960
+ url: string;
961
+ };
962
+ description: string;
963
+ userLabelType: string;
964
+ userLabelDisplayType: string;
965
+ };
966
+ };
967
+ has_graduated_access: boolean;
968
+ is_blue_verified: boolean;
969
+ profile_image_shape: string;
970
+ legacy: {
971
+ can_dm: boolean;
972
+ can_media_tag: boolean;
973
+ created_at: string;
974
+ default_profile: boolean;
975
+ default_profile_image: boolean;
976
+ description: string;
977
+ entities: {
978
+ description: {
979
+ urls: {
980
+ display_url: string;
981
+ expanded_url: string;
982
+ url: string;
983
+ indices: number[];
984
+ }[];
985
+ };
986
+ url?: {
987
+ urls: {
988
+ display_url: string;
989
+ expanded_url: string;
990
+ url: string;
991
+ indices: number[];
992
+ }[];
993
+ };
994
+ };
995
+ fast_followers_count: number;
996
+ favourites_count: number;
997
+ followers_count: number;
998
+ friends_count: number;
999
+ has_custom_timelines: boolean;
1000
+ is_translator: boolean;
1001
+ listed_count: number;
1002
+ location: string;
1003
+ media_count: number;
1004
+ name: string;
1005
+ normal_followers_count: number;
1006
+ pinned_tweet_ids_str: string[];
1007
+ possibly_sensitive: boolean;
1008
+ profile_banner_url?: string;
1009
+ profile_image_url_https: string;
1010
+ profile_interstitial_type: string;
1011
+ screen_name: string;
1012
+ statuses_count: number;
1013
+ translator_type: string;
1014
+ verified: boolean;
1015
+ want_retweets: boolean;
1016
+ withheld_in_countries: unknown[];
1017
+ url?: string;
1018
+ verified_type?: string;
1019
+ };
1020
+ professional?: {
1021
+ rest_id: string;
1022
+ professional_type: string;
1023
+ category: {
1024
+ id: number;
1025
+ name: string;
1026
+ icon_name: string;
1027
+ }[];
1028
+ };
1029
+ has_nft_avatar?: boolean;
1030
+ };
1031
+ };
1032
+ };
1033
+ edit_control?: {
1034
+ edit_tweet_ids?: string[];
1035
+ editable_until_msecs?: string;
1036
+ is_edit_eligible?: boolean;
1037
+ edits_remaining?: string;
1038
+ initial_tweet_id?: string;
1039
+ edit_control_initial?: {
1040
+ edit_tweet_ids: string[];
1041
+ editable_until_msecs: string;
1042
+ is_edit_eligible: boolean;
1043
+ edits_remaining: string;
1044
+ };
1045
+ };
1046
+ edit_perspective?: {
1047
+ favorited: boolean;
1048
+ retweeted: boolean;
1049
+ };
1050
+ is_translatable?: boolean;
1051
+ views?: {
1052
+ count?: string;
1053
+ state: string;
1054
+ };
1055
+ source?: string;
1056
+ legacy?: {
1057
+ bookmark_count: number;
1058
+ bookmarked: boolean;
1059
+ created_at: string;
1060
+ conversation_id_str: string;
1061
+ display_text_range: number[];
1062
+ entities: {
1063
+ media?: {
1064
+ display_url: string;
1065
+ expanded_url: string;
1066
+ id_str: string;
1067
+ indices: number[];
1068
+ media_url_https: string;
1069
+ type: string;
1070
+ url: string;
1071
+ features: {
1072
+ large?: {
1073
+ faces: {
1074
+ x: number;
1075
+ y: number;
1076
+ h: number;
1077
+ w: number;
1078
+ }[];
1079
+ };
1080
+ medium?: {
1081
+ faces: {
1082
+ x: number;
1083
+ y: number;
1084
+ h: number;
1085
+ w: number;
1086
+ }[];
1087
+ };
1088
+ small?: {
1089
+ faces: {
1090
+ x: number;
1091
+ y: number;
1092
+ h: number;
1093
+ w: number;
1094
+ }[];
1095
+ };
1096
+ orig?: {
1097
+ faces: {
1098
+ x: number;
1099
+ y: number;
1100
+ h: number;
1101
+ w: number;
1102
+ }[];
1103
+ };
1104
+ all?: {
1105
+ tags: {
1106
+ user_id: string;
1107
+ name: string;
1108
+ screen_name: string;
1109
+ type: string;
1110
+ }[];
1111
+ };
1112
+ };
1113
+ sizes: {
1114
+ large: {
1115
+ h: number;
1116
+ w: number;
1117
+ resize: string;
1118
+ };
1119
+ medium: {
1120
+ h: number;
1121
+ w: number;
1122
+ resize: string;
1123
+ };
1124
+ small: {
1125
+ h: number;
1126
+ w: number;
1127
+ resize: string;
1128
+ };
1129
+ thumb: {
1130
+ h: number;
1131
+ w: number;
1132
+ resize: string;
1133
+ };
1134
+ };
1135
+ original_info: {
1136
+ height: number;
1137
+ width: number;
1138
+ focus_rects?: {
1139
+ x: number;
1140
+ y: number;
1141
+ w: number;
1142
+ h: number;
1143
+ }[];
1144
+ };
1145
+ }[];
1146
+ user_mentions: {
1147
+ id_str: string;
1148
+ name: string;
1149
+ screen_name: string;
1150
+ indices: number[];
1151
+ }[];
1152
+ urls: {
1153
+ display_url: string;
1154
+ expanded_url: string;
1155
+ url: string;
1156
+ indices: number[];
1157
+ }[];
1158
+ hashtags: {
1159
+ indices: number[];
1160
+ text: string;
1161
+ }[];
1162
+ symbols: unknown[];
1163
+ };
1164
+ extended_entities?: {
1165
+ media: {
1166
+ display_url: string;
1167
+ expanded_url: string;
1168
+ id_str: string;
1169
+ indices: number[];
1170
+ media_key: string;
1171
+ media_url_https: string;
1172
+ type: string;
1173
+ url: string;
1174
+ additional_media_info?: {
1175
+ monetizable: boolean;
1176
+ };
1177
+ mediaStats?: {
1178
+ viewCount: number;
1179
+ };
1180
+ ext_media_availability: {
1181
+ status: string;
1182
+ };
1183
+ features: {
1184
+ large?: {
1185
+ faces: {
1186
+ x: number;
1187
+ y: number;
1188
+ h: number;
1189
+ w: number;
1190
+ }[];
1191
+ };
1192
+ medium?: {
1193
+ faces: {
1194
+ x: number;
1195
+ y: number;
1196
+ h: number;
1197
+ w: number;
1198
+ }[];
1199
+ };
1200
+ small?: {
1201
+ faces: {
1202
+ x: number;
1203
+ y: number;
1204
+ h: number;
1205
+ w: number;
1206
+ }[];
1207
+ };
1208
+ orig?: {
1209
+ faces: {
1210
+ x: number;
1211
+ y: number;
1212
+ h: number;
1213
+ w: number;
1214
+ }[];
1215
+ };
1216
+ all?: {
1217
+ tags: {
1218
+ user_id: string;
1219
+ name: string;
1220
+ screen_name: string;
1221
+ type: string;
1222
+ }[];
1223
+ };
1224
+ };
1225
+ sizes: {
1226
+ large: {
1227
+ h: number;
1228
+ w: number;
1229
+ resize: string;
1230
+ };
1231
+ medium: {
1232
+ h: number;
1233
+ w: number;
1234
+ resize: string;
1235
+ };
1236
+ small: {
1237
+ h: number;
1238
+ w: number;
1239
+ resize: string;
1240
+ };
1241
+ thumb: {
1242
+ h: number;
1243
+ w: number;
1244
+ resize: string;
1245
+ };
1246
+ };
1247
+ original_info: {
1248
+ height: number;
1249
+ width: number;
1250
+ focus_rects?: {
1251
+ x: number;
1252
+ y: number;
1253
+ w: number;
1254
+ h: number;
1255
+ }[];
1256
+ };
1257
+ video_info?: {
1258
+ aspect_ratio: number[];
1259
+ duration_millis: number;
1260
+ variants: {
1261
+ bitrate?: number;
1262
+ content_type: string;
1263
+ url: string;
1264
+ }[];
1265
+ };
1266
+ }[];
1267
+ };
1268
+ favorite_count: number;
1269
+ favorited: boolean;
1270
+ full_text: string;
1271
+ is_quote_status: boolean;
1272
+ lang: string;
1273
+ possibly_sensitive?: boolean;
1274
+ possibly_sensitive_editable?: boolean;
1275
+ quote_count: number;
1276
+ reply_count: number;
1277
+ retweet_count: number;
1278
+ retweeted: boolean;
1279
+ user_id_str: string;
1280
+ id_str: string;
1281
+ quoted_status_id_str?: string;
1282
+ quoted_status_permalink?: {
1283
+ url: string;
1284
+ expanded: string;
1285
+ display: string;
1286
+ };
1287
+ place?: {
1288
+ attributes: {};
1289
+ bounding_box: {
1290
+ coordinates: number[][][];
1291
+ type: string;
1292
+ };
1293
+ contained_within: unknown[];
1294
+ country: string;
1295
+ country_code: string;
1296
+ full_name: string;
1297
+ name: string;
1298
+ id: string;
1299
+ place_type: string;
1300
+ url: string;
1301
+ };
1302
+ in_reply_to_screen_name?: string;
1303
+ in_reply_to_status_id_str?: string;
1304
+ in_reply_to_user_id_str?: string;
1305
+ };
1306
+ card?: {
1307
+ rest_id: string;
1308
+ legacy: {
1309
+ binding_values: {
1310
+ key: string;
1311
+ value: {
1312
+ image_value?: {
1313
+ height: number;
1314
+ width: number;
1315
+ url: string;
1316
+ alt?: string;
1317
+ };
1318
+ type: string;
1319
+ string_value?: string;
1320
+ scribe_key?: string;
1321
+ user_value?: {
1322
+ id_str: string;
1323
+ path: unknown[];
1324
+ };
1325
+ image_color_value?: {
1326
+ palette: {
1327
+ rgb: {
1328
+ blue: number;
1329
+ green: number;
1330
+ red: number;
1331
+ };
1332
+ percentage: number;
1333
+ }[];
1334
+ };
1335
+ };
1336
+ }[];
1337
+ card_platform: {
1338
+ platform: {
1339
+ audience: {
1340
+ name: string;
1341
+ };
1342
+ device: {
1343
+ name: string;
1344
+ version: string;
1345
+ };
1346
+ };
1347
+ };
1348
+ name: string;
1349
+ url: string;
1350
+ user_refs_results: {
1351
+ result: {
1352
+ __typename: string;
1353
+ id: string;
1354
+ rest_id: string;
1355
+ affiliates_highlighted_label: {
1356
+ label: {
1357
+ url: {
1358
+ url: string;
1359
+ urlType: string;
1360
+ };
1361
+ badge: {
1362
+ url: string;
1363
+ };
1364
+ description: string;
1365
+ userLabelType: string;
1366
+ userLabelDisplayType: string;
1367
+ };
1368
+ };
1369
+ has_graduated_access: boolean;
1370
+ is_blue_verified: boolean;
1371
+ profile_image_shape: string;
1372
+ legacy: {
1373
+ can_dm: boolean;
1374
+ can_media_tag: boolean;
1375
+ created_at: string;
1376
+ default_profile: boolean;
1377
+ default_profile_image: boolean;
1378
+ description: string;
1379
+ entities: {
1380
+ description: {
1381
+ urls: unknown[];
1382
+ };
1383
+ url: {
1384
+ urls: {
1385
+ display_url: string;
1386
+ expanded_url: string;
1387
+ url: string;
1388
+ indices: number[];
1389
+ }[];
1390
+ };
1391
+ };
1392
+ fast_followers_count: number;
1393
+ favourites_count: number;
1394
+ followers_count: number;
1395
+ friends_count: number;
1396
+ has_custom_timelines: boolean;
1397
+ is_translator: boolean;
1398
+ listed_count: number;
1399
+ location: string;
1400
+ media_count: number;
1401
+ name: string;
1402
+ normal_followers_count: number;
1403
+ pinned_tweet_ids_str: unknown[];
1404
+ possibly_sensitive: boolean;
1405
+ profile_banner_url: string;
1406
+ profile_image_url_https: string;
1407
+ profile_interstitial_type: string;
1408
+ screen_name: string;
1409
+ statuses_count: number;
1410
+ translator_type: string;
1411
+ url: string;
1412
+ verified: boolean;
1413
+ verified_type: string;
1414
+ want_retweets: boolean;
1415
+ withheld_in_countries: unknown[];
1416
+ };
1417
+ };
1418
+ }[];
1419
+ };
1420
+ };
1421
+ unified_card?: {
1422
+ card_fetch_state: string;
1423
+ };
1424
+ quotedRefResult?: {
1425
+ result: {
1426
+ __typename: string;
1427
+ rest_id: string;
1428
+ };
1429
+ };
1430
+ tombstone?: {
1431
+ __typename: string;
1432
+ text: {
1433
+ rtl: boolean;
1434
+ text: string;
1435
+ entities: {
1436
+ fromIndex: number;
1437
+ toIndex: number;
1438
+ ref: {
1439
+ type: string;
1440
+ url: string;
1441
+ urlType: string;
1442
+ };
1443
+ }[];
1444
+ };
1445
+ };
1446
+ note_tweet?: {
1447
+ is_expandable: boolean;
1448
+ note_tweet_results: {
1449
+ result: {
1450
+ id: string;
1451
+ text: string;
1452
+ entity_set: {
1453
+ user_mentions: unknown[];
1454
+ urls: unknown[];
1455
+ hashtags: {
1456
+ indices: number[];
1457
+ text: string;
1458
+ }[];
1459
+ symbols: unknown[];
1460
+ };
1461
+ richtext: {
1462
+ richtext_tags: unknown[];
1463
+ };
1464
+ media: {
1465
+ inline_media: unknown[];
1466
+ };
1467
+ };
1468
+ };
1469
+ };
1470
+ previous_counts?: {
1471
+ bookmark_count: number;
1472
+ favorite_count: number;
1473
+ quote_count: number;
1474
+ reply_count: number;
1475
+ retweet_count: number;
1476
+ };
1477
+ tweet?: {
1478
+ rest_id: string;
1479
+ core: {
1480
+ user_results: {
1481
+ result: {
1482
+ __typename: string;
1483
+ id: string;
1484
+ rest_id: string;
1485
+ affiliates_highlighted_label: {};
1486
+ has_graduated_access: boolean;
1487
+ is_blue_verified: boolean;
1488
+ profile_image_shape: string;
1489
+ legacy: {
1490
+ can_dm: boolean;
1491
+ can_media_tag: boolean;
1492
+ created_at: string;
1493
+ default_profile: boolean;
1494
+ default_profile_image: boolean;
1495
+ description: string;
1496
+ entities: {
1497
+ description: {
1498
+ urls: {
1499
+ display_url: string;
1500
+ expanded_url: string;
1501
+ url: string;
1502
+ indices: number[];
1503
+ }[];
1504
+ };
1505
+ };
1506
+ fast_followers_count: number;
1507
+ favourites_count: number;
1508
+ followers_count: number;
1509
+ friends_count: number;
1510
+ has_custom_timelines: boolean;
1511
+ is_translator: boolean;
1512
+ listed_count: number;
1513
+ location: string;
1514
+ media_count: number;
1515
+ name: string;
1516
+ normal_followers_count: number;
1517
+ pinned_tweet_ids_str: unknown[];
1518
+ possibly_sensitive: boolean;
1519
+ profile_banner_url: string;
1520
+ profile_image_url_https: string;
1521
+ profile_interstitial_type: string;
1522
+ screen_name: string;
1523
+ statuses_count: number;
1524
+ translator_type: string;
1525
+ verified: boolean;
1526
+ want_retweets: boolean;
1527
+ withheld_in_countries: unknown[];
1528
+ };
1529
+ super_follow_eligible: boolean;
1530
+ };
1531
+ };
1532
+ };
1533
+ edit_control: {
1534
+ edit_tweet_ids: string[];
1535
+ editable_until_msecs: string;
1536
+ is_edit_eligible: boolean;
1537
+ edits_remaining: string;
1538
+ };
1539
+ edit_perspective: {
1540
+ favorited: boolean;
1541
+ retweeted: boolean;
1542
+ };
1543
+ is_translatable: boolean;
1544
+ views: {
1545
+ count: string;
1546
+ state: string;
1547
+ };
1548
+ source: string;
1549
+ legacy: {
1550
+ bookmark_count: number;
1551
+ bookmarked: boolean;
1552
+ created_at: string;
1553
+ conversation_control: {
1554
+ policy: string;
1555
+ conversation_owner_results: {
1556
+ result: {
1557
+ __typename: string;
1558
+ legacy: {
1559
+ screen_name: string;
1560
+ };
1561
+ };
1562
+ };
1563
+ };
1564
+ conversation_id_str: string;
1565
+ display_text_range: number[];
1566
+ entities: {
1567
+ media: {
1568
+ display_url: string;
1569
+ expanded_url: string;
1570
+ id_str: string;
1571
+ indices: number[];
1572
+ media_url_https: string;
1573
+ type: string;
1574
+ url: string;
1575
+ features: {
1576
+ large: {
1577
+ faces: unknown[];
1578
+ };
1579
+ medium: {
1580
+ faces: unknown[];
1581
+ };
1582
+ small: {
1583
+ faces: unknown[];
1584
+ };
1585
+ orig: {
1586
+ faces: unknown[];
1587
+ };
1588
+ };
1589
+ sizes: {
1590
+ large: {
1591
+ h: number;
1592
+ w: number;
1593
+ resize: string;
1594
+ };
1595
+ medium: {
1596
+ h: number;
1597
+ w: number;
1598
+ resize: string;
1599
+ };
1600
+ small: {
1601
+ h: number;
1602
+ w: number;
1603
+ resize: string;
1604
+ };
1605
+ thumb: {
1606
+ h: number;
1607
+ w: number;
1608
+ resize: string;
1609
+ };
1610
+ };
1611
+ original_info: {
1612
+ height: number;
1613
+ width: number;
1614
+ focus_rects: {
1615
+ x: number;
1616
+ y: number;
1617
+ w: number;
1618
+ h: number;
1619
+ }[];
1620
+ };
1621
+ }[];
1622
+ user_mentions: unknown[];
1623
+ urls: unknown[];
1624
+ hashtags: unknown[];
1625
+ symbols: unknown[];
1626
+ };
1627
+ extended_entities: {
1628
+ media: {
1629
+ display_url: string;
1630
+ expanded_url: string;
1631
+ id_str: string;
1632
+ indices: number[];
1633
+ media_key: string;
1634
+ media_url_https: string;
1635
+ type: string;
1636
+ url: string;
1637
+ ext_media_availability: {
1638
+ status: string;
1639
+ };
1640
+ features: {
1641
+ large: {
1642
+ faces: unknown[];
1643
+ };
1644
+ medium: {
1645
+ faces: unknown[];
1646
+ };
1647
+ small: {
1648
+ faces: unknown[];
1649
+ };
1650
+ orig: {
1651
+ faces: unknown[];
1652
+ };
1653
+ };
1654
+ sizes: {
1655
+ large: {
1656
+ h: number;
1657
+ w: number;
1658
+ resize: string;
1659
+ };
1660
+ medium: {
1661
+ h: number;
1662
+ w: number;
1663
+ resize: string;
1664
+ };
1665
+ small: {
1666
+ h: number;
1667
+ w: number;
1668
+ resize: string;
1669
+ };
1670
+ thumb: {
1671
+ h: number;
1672
+ w: number;
1673
+ resize: string;
1674
+ };
1675
+ };
1676
+ original_info: {
1677
+ height: number;
1678
+ width: number;
1679
+ focus_rects: {
1680
+ x: number;
1681
+ y: number;
1682
+ w: number;
1683
+ h: number;
1684
+ }[];
1685
+ };
1686
+ }[];
1687
+ };
1688
+ favorite_count: number;
1689
+ favorited: boolean;
1690
+ full_text: string;
1691
+ is_quote_status: boolean;
1692
+ lang: string;
1693
+ limited_actions: string;
1694
+ possibly_sensitive: boolean;
1695
+ possibly_sensitive_editable: boolean;
1696
+ quote_count: number;
1697
+ reply_count: number;
1698
+ retweet_count: number;
1699
+ retweeted: boolean;
1700
+ user_id_str: string;
1701
+ id_str: string;
1702
+ };
1703
+ };
1704
+ limitedActionResults?: {
1705
+ limited_actions: {
1706
+ action: string;
1707
+ prompt: {
1708
+ __typename: string;
1709
+ cta_type: string;
1710
+ headline: {
1711
+ text: string;
1712
+ entities: unknown[];
1713
+ };
1714
+ subtext: {
1715
+ text: string;
1716
+ entities: unknown[];
1717
+ };
1718
+ };
1719
+ }[];
1720
+ };
1721
+ };
1722
+ };
1723
+ note_tweet?: {
1724
+ is_expandable: boolean;
1725
+ note_tweet_results: {
1726
+ result: {
1727
+ id: string;
1728
+ text: string;
1729
+ entity_set: {
1730
+ user_mentions: {
1731
+ id_str: string;
1732
+ name: string;
1733
+ screen_name: string;
1734
+ indices: number[];
1735
+ }[];
1736
+ urls: {
1737
+ display_url: string;
1738
+ expanded_url: string;
1739
+ url: string;
1740
+ indices: number[];
1741
+ }[];
1742
+ hashtags: {
1743
+ indices: number[];
1744
+ text: string;
1745
+ }[];
1746
+ symbols: unknown[];
1747
+ };
1748
+ richtext: {
1749
+ richtext_tags: {
1750
+ from_index: number;
1751
+ to_index: number;
1752
+ richtext_types: string[];
1753
+ }[];
1754
+ };
1755
+ media: {
1756
+ inline_media: unknown[];
1757
+ };
1758
+ };
1759
+ };
1760
+ };
1761
+ previous_counts?: {
1762
+ bookmark_count: number;
1763
+ favorite_count: number;
1764
+ quote_count: number;
1765
+ reply_count: number;
1766
+ retweet_count: number;
1767
+ };
1768
+ };
1769
+ };
1770
+ extended_entities?: {
1771
+ media: {
1772
+ display_url: string;
1773
+ expanded_url: string;
1774
+ id_str: string;
1775
+ indices: number[];
1776
+ media_key: string;
1777
+ media_url_https: string;
1778
+ source_status_id_str?: string;
1779
+ source_user_id_str?: string;
1780
+ type: string;
1781
+ url: string;
1782
+ ext_media_availability: {
1783
+ status: string;
1784
+ };
1785
+ features: {
1786
+ large?: {
1787
+ faces: {
1788
+ x: number;
1789
+ y: number;
1790
+ h: number;
1791
+ w: number;
1792
+ }[];
1793
+ };
1794
+ medium?: {
1795
+ faces: {
1796
+ x: number;
1797
+ y: number;
1798
+ h: number;
1799
+ w: number;
1800
+ }[];
1801
+ };
1802
+ small?: {
1803
+ faces: {
1804
+ x: number;
1805
+ y: number;
1806
+ h: number;
1807
+ w: number;
1808
+ }[];
1809
+ };
1810
+ orig?: {
1811
+ faces: {
1812
+ x: number;
1813
+ y: number;
1814
+ h: number;
1815
+ w: number;
1816
+ }[];
1817
+ };
1818
+ };
1819
+ sizes: {
1820
+ large: {
1821
+ h: number;
1822
+ w: number;
1823
+ resize: string;
1824
+ };
1825
+ medium: {
1826
+ h: number;
1827
+ w: number;
1828
+ resize: string;
1829
+ };
1830
+ small: {
1831
+ h: number;
1832
+ w: number;
1833
+ resize: string;
1834
+ };
1835
+ thumb: {
1836
+ h: number;
1837
+ w: number;
1838
+ resize: string;
1839
+ };
1840
+ };
1841
+ original_info: {
1842
+ height: number;
1843
+ width: number;
1844
+ focus_rects?: {
1845
+ x: number;
1846
+ y: number;
1847
+ w: number;
1848
+ h: number;
1849
+ }[];
1850
+ };
1851
+ additional_media_info?: {
1852
+ monetizable: boolean;
1853
+ source_user: {
1854
+ user_results: {
1855
+ result: {
1856
+ __typename: string;
1857
+ id: string;
1858
+ rest_id: string;
1859
+ affiliates_highlighted_label: {
1860
+ label?: {
1861
+ url: {
1862
+ url: string;
1863
+ urlType: string;
1864
+ };
1865
+ badge: {
1866
+ url: string;
1867
+ };
1868
+ description: string;
1869
+ userLabelType: string;
1870
+ userLabelDisplayType: string;
1871
+ };
1872
+ };
1873
+ has_graduated_access: boolean;
1874
+ is_blue_verified: boolean;
1875
+ profile_image_shape: string;
1876
+ legacy: {
1877
+ can_dm: boolean;
1878
+ can_media_tag: boolean;
1879
+ created_at: string;
1880
+ default_profile: boolean;
1881
+ default_profile_image: boolean;
1882
+ description: string;
1883
+ entities: {
1884
+ description: {
1885
+ urls: {
1886
+ display_url: string;
1887
+ expanded_url: string;
1888
+ url: string;
1889
+ indices: number[];
1890
+ }[];
1891
+ };
1892
+ url?: {
1893
+ urls: {
1894
+ display_url: string;
1895
+ expanded_url: string;
1896
+ url: string;
1897
+ indices: number[];
1898
+ }[];
1899
+ };
1900
+ };
1901
+ fast_followers_count: number;
1902
+ favourites_count: number;
1903
+ followers_count: number;
1904
+ friends_count: number;
1905
+ has_custom_timelines: boolean;
1906
+ is_translator: boolean;
1907
+ listed_count: number;
1908
+ location: string;
1909
+ media_count: number;
1910
+ name: string;
1911
+ normal_followers_count: number;
1912
+ pinned_tweet_ids_str: string[];
1913
+ possibly_sensitive: boolean;
1914
+ profile_banner_url: string;
1915
+ profile_image_url_https: string;
1916
+ profile_interstitial_type: string;
1917
+ screen_name: string;
1918
+ statuses_count: number;
1919
+ translator_type: string;
1920
+ url?: string;
1921
+ verified: boolean;
1922
+ want_retweets: boolean;
1923
+ withheld_in_countries: unknown[];
1924
+ verified_type?: string;
1925
+ };
1926
+ professional?: {
1927
+ rest_id: string;
1928
+ professional_type: string;
1929
+ category: {
1930
+ id: number;
1931
+ name: string;
1932
+ icon_name: string;
1933
+ }[];
1934
+ };
1935
+ };
1936
+ };
1937
+ };
1938
+ title?: string;
1939
+ description?: string;
1940
+ embeddable?: boolean;
1941
+ };
1942
+ mediaStats?: {
1943
+ viewCount: number;
1944
+ };
1945
+ video_info?: {
1946
+ aspect_ratio: number[];
1947
+ duration_millis?: number;
1948
+ variants: {
1949
+ bitrate?: number;
1950
+ content_type: string;
1951
+ url: string;
1952
+ }[];
1953
+ };
1954
+ }[];
1955
+ };
1956
+ quoted_status_id_str?: string;
1957
+ quoted_status_permalink?: {
1958
+ url: string;
1959
+ expanded: string;
1960
+ display: string;
1961
+ };
1962
+ in_reply_to_screen_name?: string;
1963
+ in_reply_to_status_id_str?: string;
1964
+ in_reply_to_user_id_str?: string;
1965
+ };
1966
+ quick_promote_eligibility?: {
1967
+ eligibility: string;
1968
+ };
1969
+ tweet?: {
1970
+ rest_id: string;
1971
+ core: {
1972
+ user_results: {
1973
+ result: {
1974
+ __typename: string;
1975
+ id: string;
1976
+ rest_id: string;
1977
+ affiliates_highlighted_label: {
1978
+ label?: {
1979
+ url: {
1980
+ url: string;
1981
+ urlType: string;
1982
+ };
1983
+ badge: {
1984
+ url: string;
1985
+ };
1986
+ description: string;
1987
+ userLabelType: string;
1988
+ userLabelDisplayType: string;
1989
+ };
1990
+ };
1991
+ has_graduated_access: boolean;
1992
+ is_blue_verified: boolean;
1993
+ profile_image_shape: string;
1994
+ legacy: {
1995
+ followed_by?: boolean;
1996
+ can_dm: boolean;
1997
+ can_media_tag: boolean;
1998
+ created_at: string;
1999
+ default_profile: boolean;
2000
+ default_profile_image: boolean;
2001
+ description: string;
2002
+ entities: {
2003
+ description: {
2004
+ urls: unknown[];
2005
+ };
2006
+ url?: {
2007
+ urls: {
2008
+ display_url: string;
2009
+ expanded_url: string;
2010
+ url: string;
2011
+ indices: number[];
2012
+ }[];
2013
+ };
2014
+ };
2015
+ fast_followers_count: number;
2016
+ favourites_count: number;
2017
+ followers_count: number;
2018
+ friends_count: number;
2019
+ has_custom_timelines: boolean;
2020
+ is_translator: boolean;
2021
+ listed_count: number;
2022
+ location: string;
2023
+ media_count: number;
2024
+ name: string;
2025
+ normal_followers_count: number;
2026
+ pinned_tweet_ids_str: string[];
2027
+ possibly_sensitive: boolean;
2028
+ profile_banner_url: string;
2029
+ profile_image_url_https: string;
2030
+ profile_interstitial_type: string;
2031
+ screen_name: string;
2032
+ statuses_count: number;
2033
+ translator_type: string;
2034
+ verified: boolean;
2035
+ want_retweets: boolean;
2036
+ withheld_in_countries: unknown[];
2037
+ url?: string;
2038
+ };
2039
+ professional?: {
2040
+ rest_id: string;
2041
+ professional_type: string;
2042
+ category: {
2043
+ id: number;
2044
+ name: string;
2045
+ icon_name: string;
2046
+ }[];
2047
+ };
2048
+ super_follow_eligible?: boolean;
2049
+ };
2050
+ };
2051
+ };
2052
+ edit_control: {
2053
+ edit_tweet_ids: string[];
2054
+ editable_until_msecs: string;
2055
+ is_edit_eligible: boolean;
2056
+ edits_remaining: string;
2057
+ };
2058
+ edit_perspective: {
2059
+ favorited: boolean;
2060
+ retweeted: boolean;
2061
+ };
2062
+ is_translatable: boolean;
2063
+ views: {
2064
+ state: string;
2065
+ count?: string;
2066
+ };
2067
+ source: string;
2068
+ legacy: {
2069
+ bookmark_count: number;
2070
+ bookmarked: boolean;
2071
+ created_at: string;
2072
+ conversation_control?: {
2073
+ policy: string;
2074
+ conversation_owner_results: {
2075
+ result: {
2076
+ __typename: string;
2077
+ legacy: {
2078
+ screen_name: string;
2079
+ };
2080
+ };
2081
+ };
2082
+ };
2083
+ conversation_id_str: string;
2084
+ display_text_range: number[];
2085
+ entities: {
2086
+ user_mentions: {
2087
+ id_str: string;
2088
+ name: string;
2089
+ screen_name: string;
2090
+ indices: number[];
2091
+ }[];
2092
+ urls: {
2093
+ display_url: string;
2094
+ expanded_url: string;
2095
+ url: string;
2096
+ indices: number[];
2097
+ }[];
2098
+ hashtags: unknown[];
2099
+ symbols: unknown[];
2100
+ };
2101
+ favorite_count: number;
2102
+ favorited: boolean;
2103
+ full_text: string;
2104
+ is_quote_status: boolean;
2105
+ lang: string;
2106
+ limited_actions: string;
2107
+ quote_count: number;
2108
+ reply_count: number;
2109
+ retweet_count: number;
2110
+ retweeted: boolean;
2111
+ user_id_str: string;
2112
+ id_str: string;
2113
+ retweeted_status_result: {
2114
+ result: {
2115
+ __typename: string;
2116
+ tweet: {
2117
+ rest_id: string;
2118
+ core: {
2119
+ user_results: {
2120
+ result: {
2121
+ __typename: string;
2122
+ id: string;
2123
+ rest_id: string;
2124
+ affiliates_highlighted_label: {};
2125
+ has_graduated_access: boolean;
2126
+ is_blue_verified: boolean;
2127
+ profile_image_shape: string;
2128
+ legacy: {
2129
+ can_dm: boolean;
2130
+ can_media_tag: boolean;
2131
+ created_at: string;
2132
+ default_profile: boolean;
2133
+ default_profile_image: boolean;
2134
+ description: string;
2135
+ entities: {
2136
+ description: {
2137
+ urls: unknown[];
2138
+ };
2139
+ url: {
2140
+ urls: {
2141
+ display_url: string;
2142
+ expanded_url: string;
2143
+ url: string;
2144
+ indices: number[];
2145
+ }[];
2146
+ };
2147
+ };
2148
+ fast_followers_count: number;
2149
+ favourites_count: number;
2150
+ followers_count: number;
2151
+ friends_count: number;
2152
+ has_custom_timelines: boolean;
2153
+ is_translator: boolean;
2154
+ listed_count: number;
2155
+ location: string;
2156
+ media_count: number;
2157
+ name: string;
2158
+ normal_followers_count: number;
2159
+ pinned_tweet_ids_str: string[];
2160
+ possibly_sensitive: boolean;
2161
+ profile_banner_url: string;
2162
+ profile_image_url_https: string;
2163
+ profile_interstitial_type: string;
2164
+ screen_name: string;
2165
+ statuses_count: number;
2166
+ translator_type: string;
2167
+ url: string;
2168
+ verified: boolean;
2169
+ want_retweets: boolean;
2170
+ withheld_in_countries: unknown[];
2171
+ verified_type?: string;
2172
+ };
2173
+ professional?: {
2174
+ rest_id: string;
2175
+ professional_type: string;
2176
+ category: unknown[];
2177
+ };
2178
+ };
2179
+ };
2180
+ };
2181
+ edit_control: {
2182
+ edit_tweet_ids: string[];
2183
+ editable_until_msecs: string;
2184
+ is_edit_eligible: boolean;
2185
+ edits_remaining: string;
2186
+ };
2187
+ edit_perspective: {
2188
+ favorited: boolean;
2189
+ retweeted: boolean;
2190
+ };
2191
+ is_translatable: boolean;
2192
+ views: {
2193
+ count?: string;
2194
+ state: string;
2195
+ };
2196
+ source: string;
2197
+ legacy: {
2198
+ bookmark_count: number;
2199
+ bookmarked: boolean;
2200
+ created_at: string;
2201
+ conversation_control?: {
2202
+ policy: string;
2203
+ conversation_owner_results: {
2204
+ result: {
2205
+ __typename: string;
2206
+ legacy: {
2207
+ screen_name: string;
2208
+ };
2209
+ };
2210
+ };
2211
+ };
2212
+ conversation_id_str: string;
2213
+ display_text_range: number[];
2214
+ entities: {
2215
+ user_mentions: unknown[];
2216
+ urls: {
2217
+ display_url: string;
2218
+ expanded_url: string;
2219
+ url: string;
2220
+ indices: number[];
2221
+ }[];
2222
+ hashtags: unknown[];
2223
+ symbols: unknown[];
2224
+ media?: {
2225
+ display_url: string;
2226
+ expanded_url: string;
2227
+ id_str: string;
2228
+ indices: number[];
2229
+ media_url_https: string;
2230
+ type: string;
2231
+ url: string;
2232
+ features: {
2233
+ large: {
2234
+ faces: unknown[];
2235
+ };
2236
+ medium: {
2237
+ faces: unknown[];
2238
+ };
2239
+ small: {
2240
+ faces: unknown[];
2241
+ };
2242
+ orig: {
2243
+ faces: unknown[];
2244
+ };
2245
+ };
2246
+ sizes: {
2247
+ large: {
2248
+ h: number;
2249
+ w: number;
2250
+ resize: string;
2251
+ };
2252
+ medium: {
2253
+ h: number;
2254
+ w: number;
2255
+ resize: string;
2256
+ };
2257
+ small: {
2258
+ h: number;
2259
+ w: number;
2260
+ resize: string;
2261
+ };
2262
+ thumb: {
2263
+ h: number;
2264
+ w: number;
2265
+ resize: string;
2266
+ };
2267
+ };
2268
+ original_info: {
2269
+ height: number;
2270
+ width: number;
2271
+ focus_rects: {
2272
+ x: number;
2273
+ y: number;
2274
+ w: number;
2275
+ h: number;
2276
+ }[];
2277
+ };
2278
+ }[];
2279
+ };
2280
+ favorite_count: number;
2281
+ favorited: boolean;
2282
+ full_text: string;
2283
+ is_quote_status: boolean;
2284
+ lang: string;
2285
+ limited_actions: string;
2286
+ quote_count: number;
2287
+ reply_count: number;
2288
+ retweet_count: number;
2289
+ retweeted: boolean;
2290
+ user_id_str: string;
2291
+ id_str: string;
2292
+ extended_entities?: {
2293
+ media: {
2294
+ display_url: string;
2295
+ expanded_url: string;
2296
+ id_str: string;
2297
+ indices: number[];
2298
+ media_key: string;
2299
+ media_url_https: string;
2300
+ type: string;
2301
+ url: string;
2302
+ ext_media_availability: {
2303
+ status: string;
2304
+ };
2305
+ features: {
2306
+ large: {
2307
+ faces: unknown[];
2308
+ };
2309
+ medium: {
2310
+ faces: unknown[];
2311
+ };
2312
+ small: {
2313
+ faces: unknown[];
2314
+ };
2315
+ orig: {
2316
+ faces: unknown[];
2317
+ };
2318
+ };
2319
+ sizes: {
2320
+ large: {
2321
+ h: number;
2322
+ w: number;
2323
+ resize: string;
2324
+ };
2325
+ medium: {
2326
+ h: number;
2327
+ w: number;
2328
+ resize: string;
2329
+ };
2330
+ small: {
2331
+ h: number;
2332
+ w: number;
2333
+ resize: string;
2334
+ };
2335
+ thumb: {
2336
+ h: number;
2337
+ w: number;
2338
+ resize: string;
2339
+ };
2340
+ };
2341
+ original_info: {
2342
+ height: number;
2343
+ width: number;
2344
+ focus_rects: {
2345
+ x: number;
2346
+ y: number;
2347
+ w: number;
2348
+ h: number;
2349
+ }[];
2350
+ };
2351
+ }[];
2352
+ };
2353
+ possibly_sensitive?: boolean;
2354
+ possibly_sensitive_editable?: boolean;
2355
+ };
2356
+ note_tweet?: {
2357
+ is_expandable: boolean;
2358
+ note_tweet_results: {
2359
+ result: {
2360
+ id: string;
2361
+ text: string;
2362
+ entity_set: {
2363
+ user_mentions: unknown[];
2364
+ urls: {
2365
+ display_url: string;
2366
+ expanded_url: string;
2367
+ url: string;
2368
+ indices: number[];
2369
+ }[];
2370
+ hashtags: unknown[];
2371
+ symbols: unknown[];
2372
+ };
2373
+ richtext: {
2374
+ richtext_tags: {
2375
+ from_index: number;
2376
+ to_index: number;
2377
+ richtext_types: string[];
2378
+ }[];
2379
+ };
2380
+ media: {
2381
+ inline_media: {
2382
+ media_id: string;
2383
+ index: number;
2384
+ }[];
2385
+ };
2386
+ };
2387
+ };
2388
+ };
2389
+ };
2390
+ limitedActionResults: {
2391
+ limited_actions: {
2392
+ action: string;
2393
+ prompt?: {
2394
+ __typename: string;
2395
+ cta_type: string;
2396
+ headline: {
2397
+ text: string;
2398
+ entities: unknown[];
2399
+ };
2400
+ subtext: {
2401
+ text: string;
2402
+ entities: unknown[];
2403
+ };
2404
+ };
2405
+ }[];
2406
+ };
2407
+ };
2408
+ };
2409
+ possibly_sensitive?: boolean;
2410
+ possibly_sensitive_editable?: boolean;
2411
+ };
2412
+ quick_promote_eligibility: {
2413
+ eligibility: string;
2414
+ };
2415
+ };
2416
+ limitedActionResults?: {
2417
+ limited_actions: {
2418
+ action: string;
2419
+ prompt?: {
2420
+ __typename: string;
2421
+ cta_type: string;
2422
+ headline: {
2423
+ text: string;
2424
+ entities: unknown[];
2425
+ };
2426
+ subtext: {
2427
+ text: string;
2428
+ entities: unknown[];
2429
+ };
2430
+ };
2431
+ }[];
2432
+ };
2433
+ quoted_status_result?: {
2434
+ result: {
2435
+ __typename: string;
2436
+ rest_id?: string;
2437
+ core?: {
2438
+ user_results: {
2439
+ result: {
2440
+ __typename: string;
2441
+ id: string;
2442
+ rest_id: string;
2443
+ affiliates_highlighted_label: {
2444
+ label?: {
2445
+ url: {
2446
+ url: string;
2447
+ urlType: string;
2448
+ };
2449
+ badge: {
2450
+ url: string;
2451
+ };
2452
+ description: string;
2453
+ userLabelType: string;
2454
+ userLabelDisplayType: string;
2455
+ };
2456
+ };
2457
+ has_graduated_access: boolean;
2458
+ is_blue_verified: boolean;
2459
+ profile_image_shape: string;
2460
+ legacy: {
2461
+ can_dm: boolean;
2462
+ can_media_tag: boolean;
2463
+ created_at: string;
2464
+ default_profile: boolean;
2465
+ default_profile_image: boolean;
2466
+ description: string;
2467
+ entities: {
2468
+ description: {
2469
+ urls: {
2470
+ display_url: string;
2471
+ expanded_url: string;
2472
+ url: string;
2473
+ indices: number[];
2474
+ }[];
2475
+ };
2476
+ url?: {
2477
+ urls: {
2478
+ display_url: string;
2479
+ expanded_url: string;
2480
+ url: string;
2481
+ indices: number[];
2482
+ }[];
2483
+ };
2484
+ };
2485
+ fast_followers_count: number;
2486
+ favourites_count: number;
2487
+ followers_count: number;
2488
+ friends_count: number;
2489
+ has_custom_timelines: boolean;
2490
+ is_translator: boolean;
2491
+ listed_count: number;
2492
+ location: string;
2493
+ media_count: number;
2494
+ name: string;
2495
+ normal_followers_count: number;
2496
+ pinned_tweet_ids_str: string[];
2497
+ possibly_sensitive: boolean;
2498
+ profile_image_url_https: string;
2499
+ profile_interstitial_type: string;
2500
+ screen_name: string;
2501
+ statuses_count: number;
2502
+ translator_type: string;
2503
+ url?: string;
2504
+ verified: boolean;
2505
+ want_retweets: boolean;
2506
+ withheld_in_countries: unknown[];
2507
+ profile_banner_url?: string;
2508
+ verified_type?: string;
2509
+ };
2510
+ professional?: {
2511
+ rest_id: string;
2512
+ professional_type: string;
2513
+ category: {
2514
+ id: number;
2515
+ name: string;
2516
+ icon_name: string;
2517
+ }[];
2518
+ };
2519
+ super_follow_eligible?: boolean;
2520
+ };
2521
+ };
2522
+ };
2523
+ edit_control?: {
2524
+ edit_tweet_ids: string[];
2525
+ editable_until_msecs: string;
2526
+ is_edit_eligible: boolean;
2527
+ edits_remaining: string;
2528
+ };
2529
+ edit_perspective?: {
2530
+ favorited: boolean;
2531
+ retweeted: boolean;
2532
+ };
2533
+ is_translatable?: boolean;
2534
+ views?: {
2535
+ count: string;
2536
+ state: string;
2537
+ };
2538
+ source?: string;
2539
+ quotedRefResult?: {
2540
+ result: {
2541
+ __typename: string;
2542
+ rest_id?: string;
2543
+ tweet?: {
2544
+ rest_id: string;
2545
+ };
2546
+ };
2547
+ };
2548
+ legacy?: {
2549
+ bookmark_count: number;
2550
+ bookmarked: boolean;
2551
+ created_at: string;
2552
+ conversation_id_str: string;
2553
+ display_text_range: number[];
2554
+ entities: {
2555
+ user_mentions: {
2556
+ id_str: string;
2557
+ name: string;
2558
+ screen_name: string;
2559
+ indices: number[];
2560
+ }[];
2561
+ urls: {
2562
+ display_url: string;
2563
+ expanded_url: string;
2564
+ url: string;
2565
+ indices: number[];
2566
+ }[];
2567
+ hashtags: unknown[];
2568
+ symbols: unknown[];
2569
+ media?: {
2570
+ display_url: string;
2571
+ expanded_url: string;
2572
+ id_str: string;
2573
+ indices: number[];
2574
+ media_url_https: string;
2575
+ type: string;
2576
+ url: string;
2577
+ features: {
2578
+ large?: {
2579
+ faces: {
2580
+ x: number;
2581
+ y: number;
2582
+ h: number;
2583
+ w: number;
2584
+ }[];
2585
+ };
2586
+ medium?: {
2587
+ faces: {
2588
+ x: number;
2589
+ y: number;
2590
+ h: number;
2591
+ w: number;
2592
+ }[];
2593
+ };
2594
+ small?: {
2595
+ faces: {
2596
+ x: number;
2597
+ y: number;
2598
+ h: number;
2599
+ w: number;
2600
+ }[];
2601
+ };
2602
+ orig?: {
2603
+ faces: {
2604
+ x: number;
2605
+ y: number;
2606
+ h: number;
2607
+ w: number;
2608
+ }[];
2609
+ };
2610
+ };
2611
+ sizes: {
2612
+ large: {
2613
+ h: number;
2614
+ w: number;
2615
+ resize: string;
2616
+ };
2617
+ medium: {
2618
+ h: number;
2619
+ w: number;
2620
+ resize: string;
2621
+ };
2622
+ small: {
2623
+ h: number;
2624
+ w: number;
2625
+ resize: string;
2626
+ };
2627
+ thumb: {
2628
+ h: number;
2629
+ w: number;
2630
+ resize: string;
2631
+ };
2632
+ };
2633
+ original_info: {
2634
+ height: number;
2635
+ width: number;
2636
+ focus_rects?: {
2637
+ x: number;
2638
+ y: number;
2639
+ w: number;
2640
+ h: number;
2641
+ }[];
2642
+ };
2643
+ }[];
2644
+ };
2645
+ favorite_count: number;
2646
+ favorited: boolean;
2647
+ full_text: string;
2648
+ is_quote_status: boolean;
2649
+ lang: string;
2650
+ quote_count: number;
2651
+ quoted_status_id_str?: string;
2652
+ quoted_status_permalink?: {
2653
+ url: string;
2654
+ expanded: string;
2655
+ display: string;
2656
+ };
2657
+ reply_count: number;
2658
+ retweet_count: number;
2659
+ retweeted: boolean;
2660
+ user_id_str: string;
2661
+ id_str: string;
2662
+ extended_entities?: {
2663
+ media: {
2664
+ display_url: string;
2665
+ expanded_url: string;
2666
+ id_str: string;
2667
+ indices: number[];
2668
+ media_key: string;
2669
+ media_url_https: string;
2670
+ type: string;
2671
+ url: string;
2672
+ additional_media_info?: {
2673
+ monetizable: boolean;
2674
+ title?: string;
2675
+ description?: string;
2676
+ embeddable?: boolean;
2677
+ };
2678
+ mediaStats?: {
2679
+ viewCount: number;
2680
+ };
2681
+ ext_media_availability: {
2682
+ status: string;
2683
+ };
2684
+ features: {
2685
+ large?: {
2686
+ faces: {
2687
+ x: number;
2688
+ y: number;
2689
+ h: number;
2690
+ w: number;
2691
+ }[];
2692
+ };
2693
+ medium?: {
2694
+ faces: {
2695
+ x: number;
2696
+ y: number;
2697
+ h: number;
2698
+ w: number;
2699
+ }[];
2700
+ };
2701
+ small?: {
2702
+ faces: {
2703
+ x: number;
2704
+ y: number;
2705
+ h: number;
2706
+ w: number;
2707
+ }[];
2708
+ };
2709
+ orig?: {
2710
+ faces: {
2711
+ x: number;
2712
+ y: number;
2713
+ h: number;
2714
+ w: number;
2715
+ }[];
2716
+ };
2717
+ };
2718
+ sizes: {
2719
+ large: {
2720
+ h: number;
2721
+ w: number;
2722
+ resize: string;
2723
+ };
2724
+ medium: {
2725
+ h: number;
2726
+ w: number;
2727
+ resize: string;
2728
+ };
2729
+ small: {
2730
+ h: number;
2731
+ w: number;
2732
+ resize: string;
2733
+ };
2734
+ thumb: {
2735
+ h: number;
2736
+ w: number;
2737
+ resize: string;
2738
+ };
2739
+ };
2740
+ original_info: {
2741
+ height: number;
2742
+ width: number;
2743
+ focus_rects?: {
2744
+ x: number;
2745
+ y: number;
2746
+ w: number;
2747
+ h: number;
2748
+ }[];
2749
+ };
2750
+ video_info?: {
2751
+ aspect_ratio: number[];
2752
+ duration_millis: number;
2753
+ variants: {
2754
+ bitrate?: number;
2755
+ content_type: string;
2756
+ url: string;
2757
+ }[];
2758
+ };
2759
+ }[];
2760
+ };
2761
+ possibly_sensitive?: boolean;
2762
+ possibly_sensitive_editable?: boolean;
2763
+ };
2764
+ note_tweet?: {
2765
+ is_expandable: boolean;
2766
+ note_tweet_results: {
2767
+ result: {
2768
+ id: string;
2769
+ text: string;
2770
+ entity_set: {
2771
+ user_mentions: {
2772
+ id_str: string;
2773
+ name: string;
2774
+ screen_name: string;
2775
+ indices: number[];
2776
+ }[];
2777
+ urls: unknown[];
2778
+ hashtags: unknown[];
2779
+ symbols: unknown[];
2780
+ };
2781
+ richtext: {
2782
+ richtext_tags: unknown[];
2783
+ };
2784
+ media: {
2785
+ inline_media: unknown[];
2786
+ };
2787
+ };
2788
+ };
2789
+ };
2790
+ tombstone?: {
2791
+ __typename: string;
2792
+ text: {
2793
+ rtl: boolean;
2794
+ text: string;
2795
+ entities: {
2796
+ fromIndex: number;
2797
+ toIndex: number;
2798
+ ref: {
2799
+ type: string;
2800
+ url: string;
2801
+ urlType: string;
2802
+ };
2803
+ }[];
2804
+ };
2805
+ };
2806
+ };
2807
+ };
2808
+ };
2809
+ };
2810
+ tweetDisplayType: string;
2811
+ };
2812
+ clientEventInfo?: {
2813
+ component: string;
2814
+ element: string;
2815
+ details: {
2816
+ timelinesDetails: {
2817
+ injectionType: string;
2818
+ controllerData: string;
2819
+ };
2820
+ };
2821
+ };
2822
+ };
2823
+ }
2824
+ //# sourceMappingURL=custom-user-tweet-entry.d.ts.map