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