@book000/twitterts 0.59.96 → 0.60.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 (57) hide show
  1. package/dist/converter.d.ts.map +1 -1
  2. package/dist/converter.js +6 -2
  3. package/dist/converter.js.map +1 -1
  4. package/dist/generate-types/custom-types-generator.d.ts.map +1 -1
  5. package/dist/generate-types/custom-types-generator.js +3 -0
  6. package/dist/generate-types/custom-types-generator.js.map +1 -1
  7. package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts +3748 -3232
  8. package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts.map +1 -1
  9. package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +1516 -1162
  10. package/dist/models/responses/custom/custom-search-timeline-entry.d.ts.map +1 -1
  11. package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts +7300 -7014
  12. package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts.map +1 -1
  13. package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts +3831 -3606
  14. package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
  15. package/dist/models/responses/custom/custom-tweet-object.d.ts +3247 -2405
  16. package/dist/models/responses/custom/custom-tweet-object.d.ts.map +1 -1
  17. package/dist/models/responses/custom/custom-user-legacy-object.d.ts +5 -6
  18. package/dist/models/responses/custom/custom-user-legacy-object.d.ts.map +1 -1
  19. package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts +30 -371
  20. package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts.map +1 -1
  21. package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +10029 -9187
  22. package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -1
  23. package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +325 -325
  24. package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -1
  25. package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +7465 -6603
  26. package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts.map +1 -1
  27. package/dist/models/responses/graphql/get/home-timeline-success.d.ts +9338 -8399
  28. package/dist/models/responses/graphql/get/home-timeline-success.d.ts.map +1 -1
  29. package/dist/models/responses/graphql/get/likes-success.d.ts +24 -365
  30. package/dist/models/responses/graphql/get/likes-success.d.ts.map +1 -1
  31. package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts +1758 -1250
  32. package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts.map +1 -1
  33. package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts +27 -27
  34. package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts.map +1 -1
  35. package/dist/models/responses/graphql/get/search-timeline-success.d.ts +2964 -2302
  36. package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
  37. package/dist/models/responses/graphql/get/tweet-detail-success.d.ts +4310 -3200
  38. package/dist/models/responses/graphql/get/tweet-detail-success.d.ts.map +1 -1
  39. package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts +4 -3
  40. package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts.map +1 -1
  41. package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts +5 -4
  42. package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts.map +1 -1
  43. package/dist/models/responses/graphql/get/user-tweets-success.d.ts +17417 -16218
  44. package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
  45. package/dist/models/responses/graphql/get/users-verified-avatars-success.d.ts +1 -1
  46. package/dist/models/responses/graphql/get/users-verified-avatars-success.d.ts.map +1 -1
  47. package/dist/models/responses/graphql/get/viewer-success.d.ts +1 -1
  48. package/dist/models/responses/graphql/get/viewer-success.d.ts.map +1 -1
  49. package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +6320 -5808
  50. package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts.map +1 -1
  51. package/dist/models/responses/graphql/post/home-timeline-success.d.ts +7452 -6759
  52. package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
  53. package/dist/parser/home-timeline-parser.d.ts.map +1 -1
  54. package/dist/parser/home-timeline-parser.js +3 -0
  55. package/dist/parser/home-timeline-parser.js.map +1 -1
  56. package/dist/tsconfig.build.tsbuildinfo +1 -1
  57. package/package.json +2 -2
@@ -99,10 +99,10 @@ export interface CustomSearchTimelineEntry {
99
99
  screen_name: string;
100
100
  statuses_count: number;
101
101
  translator_type: string;
102
+ url?: string;
102
103
  verified: boolean;
103
104
  want_retweets: boolean;
104
105
  withheld_in_countries: string[];
105
- url?: string;
106
106
  verified_type?: string;
107
107
  following?: boolean;
108
108
  };
@@ -115,8 +115,8 @@ export interface CustomSearchTimelineEntry {
115
115
  icon_name: string;
116
116
  }[];
117
117
  };
118
- has_nft_avatar?: boolean;
119
118
  super_follow_eligible?: boolean;
119
+ has_nft_avatar?: boolean;
120
120
  };
121
121
  };
122
122
  };
@@ -157,6 +157,27 @@ export interface CustomSearchTimelineEntry {
157
157
  indices: number[];
158
158
  text: string;
159
159
  }[];
160
+ symbols: {
161
+ indices: number[];
162
+ text: string;
163
+ }[];
164
+ timestamps?: {
165
+ indices: number[];
166
+ seconds: number;
167
+ text: string;
168
+ }[];
169
+ urls: {
170
+ display_url: string;
171
+ expanded_url: string;
172
+ url: string;
173
+ indices: number[];
174
+ }[];
175
+ user_mentions: {
176
+ id_str: string;
177
+ name: string;
178
+ screen_name: string;
179
+ indices: number[];
180
+ }[];
160
181
  media?: {
161
182
  display_url: string;
162
183
  expanded_url: string;
@@ -312,10 +333,10 @@ export interface CustomSearchTimelineEntry {
312
333
  screen_name: string;
313
334
  statuses_count: number;
314
335
  translator_type: string;
315
- url?: string;
316
336
  verified: boolean;
317
337
  want_retweets: boolean;
318
338
  withheld_in_countries: unknown[];
339
+ url?: string;
319
340
  blocking?: boolean;
320
341
  verified_type?: string;
321
342
  };
@@ -345,32 +366,30 @@ export interface CustomSearchTimelineEntry {
345
366
  url: string;
346
367
  }[];
347
368
  };
348
- ext_alt_text?: string;
349
369
  source_status_id_str?: string;
350
370
  source_user_id_str?: string;
351
- }[];
352
- symbols: {
353
- indices: number[];
354
- text: string;
355
- }[];
356
- timestamps?: {
357
- indices: number[];
358
- seconds: number;
359
- text: string;
360
- }[];
361
- urls: {
362
- display_url: string;
363
- expanded_url: string;
364
- url: string;
365
- indices: number[];
366
- }[];
367
- user_mentions: {
368
- id_str: string;
369
- name: string;
370
- screen_name: string;
371
- indices: number[];
371
+ ext_alt_text?: string;
372
+ sensitive_media_warning?: {
373
+ other: boolean;
374
+ };
372
375
  }[];
373
376
  };
377
+ favorite_count: number;
378
+ favorited: boolean;
379
+ full_text: string;
380
+ in_reply_to_screen_name?: string;
381
+ in_reply_to_status_id_str?: string;
382
+ in_reply_to_user_id_str?: string;
383
+ is_quote_status: boolean;
384
+ lang: string;
385
+ quote_count: number;
386
+ reply_count: number;
387
+ retweet_count: number;
388
+ retweeted: boolean;
389
+ user_id_str: string;
390
+ id_str: string;
391
+ possibly_sensitive?: boolean;
392
+ possibly_sensitive_editable?: boolean;
374
393
  extended_entities?: {
375
394
  media: {
376
395
  display_url: string;
@@ -527,10 +546,10 @@ export interface CustomSearchTimelineEntry {
527
546
  screen_name: string;
528
547
  statuses_count: number;
529
548
  translator_type: string;
530
- url?: string;
531
549
  verified: boolean;
532
550
  want_retweets: boolean;
533
551
  withheld_in_countries: unknown[];
552
+ url?: string;
534
553
  blocking?: boolean;
535
554
  verified_type?: string;
536
555
  };
@@ -560,27 +579,14 @@ export interface CustomSearchTimelineEntry {
560
579
  url: string;
561
580
  }[];
562
581
  };
563
- ext_alt_text?: string;
564
582
  source_status_id_str?: string;
565
583
  source_user_id_str?: string;
584
+ ext_alt_text?: string;
585
+ sensitive_media_warning?: {
586
+ other: boolean;
587
+ };
566
588
  }[];
567
589
  };
568
- favorite_count: number;
569
- favorited: boolean;
570
- full_text: string;
571
- is_quote_status: boolean;
572
- lang: string;
573
- possibly_sensitive?: boolean;
574
- possibly_sensitive_editable?: boolean;
575
- quote_count: number;
576
- reply_count: number;
577
- retweet_count: number;
578
- retweeted: boolean;
579
- user_id_str: string;
580
- id_str: string;
581
- in_reply_to_screen_name?: string;
582
- in_reply_to_user_id_str?: string;
583
- in_reply_to_status_id_str?: string;
584
590
  quoted_status_id_str?: string;
585
591
  quoted_status_permalink?: {
586
592
  url: string;
@@ -631,10 +637,6 @@ export interface CustomSearchTimelineEntry {
631
637
  type: string;
632
638
  string_value?: string;
633
639
  scribe_key?: string;
634
- user_value?: {
635
- id_str: string;
636
- path: unknown[];
637
- };
638
640
  image_color_value?: {
639
641
  palette: {
640
642
  rgb: {
@@ -645,6 +647,10 @@ export interface CustomSearchTimelineEntry {
645
647
  percentage: number;
646
648
  }[];
647
649
  };
650
+ user_value?: {
651
+ id_str: string;
652
+ path: unknown[];
653
+ };
648
654
  boolean_value?: boolean;
649
655
  };
650
656
  }[];
@@ -684,6 +690,7 @@ export interface CustomSearchTimelineEntry {
684
690
  is_blue_verified?: boolean;
685
691
  profile_image_shape?: string;
686
692
  legacy?: {
693
+ blocking?: boolean;
687
694
  can_dm: boolean;
688
695
  can_media_tag: boolean;
689
696
  created_at: string;
@@ -729,10 +736,9 @@ export interface CustomSearchTimelineEntry {
729
736
  translator_type: string;
730
737
  url?: string;
731
738
  verified: boolean;
739
+ verified_type?: string;
732
740
  want_retweets: boolean;
733
741
  withheld_in_countries: unknown[];
734
- verified_type?: string;
735
- blocking?: boolean;
736
742
  protected?: boolean;
737
743
  following?: boolean;
738
744
  };
@@ -745,9 +751,9 @@ export interface CustomSearchTimelineEntry {
745
751
  icon_name: string;
746
752
  }[];
747
753
  };
748
- super_follow_eligible?: boolean;
749
754
  message?: string;
750
755
  reason?: string;
756
+ super_follow_eligible?: boolean;
751
757
  };
752
758
  }[];
753
759
  };
@@ -765,7 +771,20 @@ export interface CustomSearchTimelineEntry {
765
771
  __typename: string;
766
772
  id: string;
767
773
  rest_id: string;
768
- affiliates_highlighted_label: {};
774
+ affiliates_highlighted_label: {
775
+ label?: {
776
+ url: {
777
+ url: string;
778
+ urlType: string;
779
+ };
780
+ badge: {
781
+ url: string;
782
+ };
783
+ description: string;
784
+ userLabelType: string;
785
+ userLabelDisplayType: string;
786
+ };
787
+ };
769
788
  has_graduated_access: boolean;
770
789
  is_blue_verified: boolean;
771
790
  profile_image_shape: string;
@@ -817,8 +836,8 @@ export interface CustomSearchTimelineEntry {
817
836
  want_retweets: boolean;
818
837
  withheld_in_countries: unknown[];
819
838
  url?: string;
820
- following?: boolean;
821
839
  verified_type?: string;
840
+ following?: boolean;
822
841
  };
823
842
  professional?: {
824
843
  rest_id: string;
@@ -829,15 +848,23 @@ export interface CustomSearchTimelineEntry {
829
848
  icon_name: string;
830
849
  }[];
831
850
  };
851
+ super_follow_eligible?: boolean;
832
852
  };
833
853
  };
834
854
  };
835
855
  unmention_data?: {};
836
856
  edit_control?: {
837
- edit_tweet_ids: string[];
838
- editable_until_msecs: string;
839
- is_edit_eligible: boolean;
840
- edits_remaining: string;
857
+ edit_tweet_ids?: string[];
858
+ editable_until_msecs?: string;
859
+ is_edit_eligible?: boolean;
860
+ edits_remaining?: string;
861
+ initial_tweet_id?: string;
862
+ edit_control_initial?: {
863
+ edit_tweet_ids: string[];
864
+ editable_until_msecs: string;
865
+ is_edit_eligible: boolean;
866
+ edits_remaining: string;
867
+ };
841
868
  };
842
869
  is_translatable?: boolean;
843
870
  views?: {
@@ -845,6 +872,49 @@ export interface CustomSearchTimelineEntry {
845
872
  state: string;
846
873
  };
847
874
  source?: string;
875
+ note_tweet?: {
876
+ is_expandable: boolean;
877
+ note_tweet_results: {
878
+ result: {
879
+ id: string;
880
+ text: string;
881
+ entity_set: {
882
+ hashtags: {
883
+ indices: number[];
884
+ text: string;
885
+ }[];
886
+ symbols: unknown[];
887
+ timestamps?: {
888
+ indices: number[];
889
+ seconds: number;
890
+ text: string;
891
+ }[];
892
+ urls: {
893
+ display_url: string;
894
+ expanded_url: string;
895
+ url: string;
896
+ indices: number[];
897
+ }[];
898
+ user_mentions: {
899
+ id_str: string;
900
+ name: string;
901
+ screen_name: string;
902
+ indices: number[];
903
+ }[];
904
+ };
905
+ richtext?: {
906
+ richtext_tags: {
907
+ from_index: number;
908
+ to_index: number;
909
+ richtext_types: string[];
910
+ }[];
911
+ };
912
+ media?: {
913
+ inline_media: unknown[];
914
+ };
915
+ };
916
+ };
917
+ };
848
918
  legacy?: {
849
919
  bookmark_count: number;
850
920
  bookmarked: boolean;
@@ -865,83 +935,6 @@ export interface CustomSearchTimelineEntry {
865
935
  media_url_https: string;
866
936
  type: string;
867
937
  url: string;
868
- ext_media_availability: {
869
- status: string;
870
- };
871
- features?: {
872
- large: {
873
- faces: {
874
- x: number;
875
- y: number;
876
- h: number;
877
- w: number;
878
- }[];
879
- };
880
- medium: {
881
- faces: {
882
- x: number;
883
- y: number;
884
- h: number;
885
- w: number;
886
- }[];
887
- };
888
- small: {
889
- faces: {
890
- x: number;
891
- y: number;
892
- h: number;
893
- w: number;
894
- }[];
895
- };
896
- orig: {
897
- faces: {
898
- x: number;
899
- y: number;
900
- h: number;
901
- w: number;
902
- }[];
903
- };
904
- all?: {
905
- tags: {
906
- user_id: string;
907
- name: string;
908
- screen_name: string;
909
- type: string;
910
- }[];
911
- };
912
- };
913
- sizes: {
914
- large: {
915
- h: number;
916
- w: number;
917
- resize: string;
918
- };
919
- medium: {
920
- h: number;
921
- w: number;
922
- resize: string;
923
- };
924
- small: {
925
- h: number;
926
- w: number;
927
- resize: string;
928
- };
929
- thumb: {
930
- h: number;
931
- w: number;
932
- resize: string;
933
- };
934
- };
935
- original_info: {
936
- height: number;
937
- width: number;
938
- focus_rects: {
939
- x: number;
940
- y: number;
941
- w: number;
942
- h: number;
943
- }[];
944
- };
945
938
  additional_media_info?: {
946
939
  monetizable: boolean;
947
940
  source_user?: {
@@ -955,6 +948,7 @@ export interface CustomSearchTimelineEntry {
955
948
  is_blue_verified: boolean;
956
949
  profile_image_shape: string;
957
950
  legacy: {
951
+ blocking?: boolean;
958
952
  can_dm: boolean;
959
953
  can_media_tag: boolean;
960
954
  created_at: string;
@@ -963,7 +957,20 @@ export interface CustomSearchTimelineEntry {
963
957
  description: string;
964
958
  entities: {
965
959
  description: {
966
- urls: unknown[];
960
+ urls: {
961
+ display_url: string;
962
+ expanded_url: string;
963
+ url: string;
964
+ indices: number[];
965
+ }[];
966
+ };
967
+ url?: {
968
+ urls: {
969
+ display_url: string;
970
+ expanded_url: string;
971
+ url: string;
972
+ indices: number[];
973
+ }[];
967
974
  };
968
975
  };
969
976
  fast_followers_count: number;
@@ -985,10 +992,20 @@ export interface CustomSearchTimelineEntry {
985
992
  screen_name: string;
986
993
  statuses_count: number;
987
994
  translator_type: string;
995
+ url?: string;
988
996
  verified: boolean;
989
997
  want_retweets: boolean;
990
998
  withheld_in_countries: unknown[];
991
- blocking?: boolean;
999
+ verified_type?: string;
1000
+ };
1001
+ professional?: {
1002
+ rest_id: string;
1003
+ professional_type: string;
1004
+ category: {
1005
+ id: number;
1006
+ name: string;
1007
+ icon_name: string;
1008
+ }[];
992
1009
  };
993
1010
  };
994
1011
  };
@@ -997,47 +1014,50 @@ export interface CustomSearchTimelineEntry {
997
1014
  description?: string;
998
1015
  embeddable?: boolean;
999
1016
  };
1000
- video_info?: {
1001
- aspect_ratio: number[];
1002
- duration_millis?: number;
1003
- variants: {
1004
- content_type: string;
1005
- url: string;
1006
- bitrate?: number;
1007
- }[];
1008
- };
1009
- source_status_id_str?: string;
1010
- source_user_id_str?: string;
1011
- ext_alt_text?: string;
1012
- }[];
1013
- symbols: unknown[];
1014
- timestamps?: unknown[];
1015
- urls: {
1016
- display_url: string;
1017
- expanded_url: string;
1018
- url: string;
1019
- indices: number[];
1020
- }[];
1021
- user_mentions: {
1022
- id_str: string;
1023
- name: string;
1024
- screen_name: string;
1025
- indices: number[];
1026
- }[];
1027
- };
1028
- extended_entities?: {
1029
- media: {
1030
- display_url: string;
1031
- expanded_url: string;
1032
- id_str: string;
1033
- indices: number[];
1034
- media_key: string;
1035
- media_url_https: string;
1036
- type: string;
1037
- url: string;
1038
1017
  ext_media_availability: {
1039
1018
  status: string;
1040
1019
  };
1020
+ sizes: {
1021
+ large: {
1022
+ h: number;
1023
+ w: number;
1024
+ resize: string;
1025
+ };
1026
+ medium: {
1027
+ h: number;
1028
+ w: number;
1029
+ resize: string;
1030
+ };
1031
+ small: {
1032
+ h: number;
1033
+ w: number;
1034
+ resize: string;
1035
+ };
1036
+ thumb: {
1037
+ h: number;
1038
+ w: number;
1039
+ resize: string;
1040
+ };
1041
+ };
1042
+ original_info: {
1043
+ height: number;
1044
+ width: number;
1045
+ focus_rects: {
1046
+ x: number;
1047
+ y: number;
1048
+ w: number;
1049
+ h: number;
1050
+ }[];
1051
+ };
1052
+ video_info?: {
1053
+ aspect_ratio: number[];
1054
+ duration_millis?: number;
1055
+ variants: {
1056
+ bitrate?: number;
1057
+ content_type: string;
1058
+ url: string;
1059
+ }[];
1060
+ };
1041
1061
  features?: {
1042
1062
  large: {
1043
1063
  faces: {
@@ -1080,38 +1100,35 @@ export interface CustomSearchTimelineEntry {
1080
1100
  }[];
1081
1101
  };
1082
1102
  };
1083
- sizes: {
1084
- large: {
1085
- h: number;
1086
- w: number;
1087
- resize: string;
1088
- };
1089
- medium: {
1090
- h: number;
1091
- w: number;
1092
- resize: string;
1093
- };
1094
- small: {
1095
- h: number;
1096
- w: number;
1097
- resize: string;
1098
- };
1099
- thumb: {
1100
- h: number;
1101
- w: number;
1102
- resize: string;
1103
- };
1104
- };
1105
- original_info: {
1106
- height: number;
1107
- width: number;
1108
- focus_rects: {
1109
- x: number;
1110
- y: number;
1111
- w: number;
1112
- h: number;
1113
- }[];
1114
- };
1103
+ source_status_id_str?: string;
1104
+ source_user_id_str?: string;
1105
+ ext_alt_text?: string;
1106
+ }[];
1107
+ symbols: unknown[];
1108
+ timestamps?: unknown[];
1109
+ urls: {
1110
+ display_url: string;
1111
+ expanded_url: string;
1112
+ url: string;
1113
+ indices: number[];
1114
+ }[];
1115
+ user_mentions: {
1116
+ id_str: string;
1117
+ name: string;
1118
+ screen_name: string;
1119
+ indices: number[];
1120
+ }[];
1121
+ };
1122
+ extended_entities?: {
1123
+ media: {
1124
+ display_url: string;
1125
+ expanded_url: string;
1126
+ id_str: string;
1127
+ indices: number[];
1128
+ media_key: string;
1129
+ media_url_https: string;
1130
+ type: string;
1131
+ url: string;
1115
1132
  additional_media_info?: {
1116
1133
  monetizable: boolean;
1117
1134
  source_user?: {
@@ -1125,6 +1142,7 @@ export interface CustomSearchTimelineEntry {
1125
1142
  is_blue_verified: boolean;
1126
1143
  profile_image_shape: string;
1127
1144
  legacy: {
1145
+ blocking?: boolean;
1128
1146
  can_dm: boolean;
1129
1147
  can_media_tag: boolean;
1130
1148
  created_at: string;
@@ -1133,7 +1151,20 @@ export interface CustomSearchTimelineEntry {
1133
1151
  description: string;
1134
1152
  entities: {
1135
1153
  description: {
1136
- urls: unknown[];
1154
+ urls: {
1155
+ display_url: string;
1156
+ expanded_url: string;
1157
+ url: string;
1158
+ indices: number[];
1159
+ }[];
1160
+ };
1161
+ url?: {
1162
+ urls: {
1163
+ display_url: string;
1164
+ expanded_url: string;
1165
+ url: string;
1166
+ indices: number[];
1167
+ }[];
1137
1168
  };
1138
1169
  };
1139
1170
  fast_followers_count: number;
@@ -1155,10 +1186,20 @@ export interface CustomSearchTimelineEntry {
1155
1186
  screen_name: string;
1156
1187
  statuses_count: number;
1157
1188
  translator_type: string;
1189
+ url?: string;
1158
1190
  verified: boolean;
1159
1191
  want_retweets: boolean;
1160
1192
  withheld_in_countries: unknown[];
1161
- blocking?: boolean;
1193
+ verified_type?: string;
1194
+ };
1195
+ professional?: {
1196
+ rest_id: string;
1197
+ professional_type: string;
1198
+ category: {
1199
+ id: number;
1200
+ name: string;
1201
+ icon_name: string;
1202
+ }[];
1162
1203
  };
1163
1204
  };
1164
1205
  };
@@ -1167,15 +1208,92 @@ export interface CustomSearchTimelineEntry {
1167
1208
  description?: string;
1168
1209
  embeddable?: boolean;
1169
1210
  };
1211
+ ext_media_availability: {
1212
+ status: string;
1213
+ };
1214
+ sizes: {
1215
+ large: {
1216
+ h: number;
1217
+ w: number;
1218
+ resize: string;
1219
+ };
1220
+ medium: {
1221
+ h: number;
1222
+ w: number;
1223
+ resize: string;
1224
+ };
1225
+ small: {
1226
+ h: number;
1227
+ w: number;
1228
+ resize: string;
1229
+ };
1230
+ thumb: {
1231
+ h: number;
1232
+ w: number;
1233
+ resize: string;
1234
+ };
1235
+ };
1236
+ original_info: {
1237
+ height: number;
1238
+ width: number;
1239
+ focus_rects: {
1240
+ x: number;
1241
+ y: number;
1242
+ w: number;
1243
+ h: number;
1244
+ }[];
1245
+ };
1170
1246
  video_info?: {
1171
1247
  aspect_ratio: number[];
1172
1248
  duration_millis?: number;
1173
1249
  variants: {
1250
+ bitrate?: number;
1174
1251
  content_type: string;
1175
1252
  url: string;
1176
- bitrate?: number;
1177
1253
  }[];
1178
1254
  };
1255
+ features?: {
1256
+ large: {
1257
+ faces: {
1258
+ x: number;
1259
+ y: number;
1260
+ h: number;
1261
+ w: number;
1262
+ }[];
1263
+ };
1264
+ medium: {
1265
+ faces: {
1266
+ x: number;
1267
+ y: number;
1268
+ h: number;
1269
+ w: number;
1270
+ }[];
1271
+ };
1272
+ small: {
1273
+ faces: {
1274
+ x: number;
1275
+ y: number;
1276
+ h: number;
1277
+ w: number;
1278
+ }[];
1279
+ };
1280
+ orig: {
1281
+ faces: {
1282
+ x: number;
1283
+ y: number;
1284
+ h: number;
1285
+ w: number;
1286
+ }[];
1287
+ };
1288
+ all?: {
1289
+ tags: {
1290
+ user_id: string;
1291
+ name: string;
1292
+ screen_name: string;
1293
+ type: string;
1294
+ }[];
1295
+ };
1296
+ };
1179
1297
  source_status_id_str?: string;
1180
1298
  source_user_id_str?: string;
1181
1299
  ext_alt_text?: string;
@@ -1216,6 +1334,9 @@ export interface CustomSearchTimelineEntry {
1216
1334
  place_type: string;
1217
1335
  url: string;
1218
1336
  };
1337
+ scopes?: {
1338
+ followers: boolean;
1339
+ };
1219
1340
  };
1220
1341
  card?: {
1221
1342
  rest_id: string;
@@ -1227,6 +1348,7 @@ export interface CustomSearchTimelineEntry {
1227
1348
  height: number;
1228
1349
  width: number;
1229
1350
  url: string;
1351
+ alt?: string;
1230
1352
  };
1231
1353
  type: string;
1232
1354
  string_value?: string;
@@ -1241,11 +1363,11 @@ export interface CustomSearchTimelineEntry {
1241
1363
  percentage: number;
1242
1364
  }[];
1243
1365
  };
1244
- boolean_value?: boolean;
1245
1366
  user_value?: {
1246
1367
  id_str: string;
1247
1368
  path: unknown[];
1248
1369
  };
1370
+ boolean_value?: boolean;
1249
1371
  };
1250
1372
  }[];
1251
1373
  card_platform: {
@@ -1267,7 +1389,7 @@ export interface CustomSearchTimelineEntry {
1267
1389
  id: string;
1268
1390
  rest_id: string;
1269
1391
  affiliates_highlighted_label: {
1270
- label: {
1392
+ label?: {
1271
1393
  url: {
1272
1394
  url: string;
1273
1395
  urlType: string;
@@ -1284,7 +1406,7 @@ export interface CustomSearchTimelineEntry {
1284
1406
  is_blue_verified: boolean;
1285
1407
  profile_image_shape: string;
1286
1408
  legacy: {
1287
- blocking: boolean;
1409
+ blocking?: boolean;
1288
1410
  can_dm: boolean;
1289
1411
  can_media_tag: boolean;
1290
1412
  created_at: string;
@@ -1320,7 +1442,7 @@ export interface CustomSearchTimelineEntry {
1320
1442
  media_count: number;
1321
1443
  name: string;
1322
1444
  normal_followers_count: number;
1323
- pinned_tweet_ids_str: unknown[];
1445
+ pinned_tweet_ids_str: string[];
1324
1446
  possibly_sensitive: boolean;
1325
1447
  profile_banner_url: string;
1326
1448
  profile_image_url_https: string;
@@ -1330,10 +1452,19 @@ export interface CustomSearchTimelineEntry {
1330
1452
  translator_type: string;
1331
1453
  url: string;
1332
1454
  verified: boolean;
1333
- verified_type: string;
1455
+ verified_type?: string;
1334
1456
  want_retweets: boolean;
1335
1457
  withheld_in_countries: unknown[];
1336
1458
  };
1459
+ professional?: {
1460
+ rest_id: string;
1461
+ professional_type: string;
1462
+ category: {
1463
+ id: number;
1464
+ name: string;
1465
+ icon_name: string;
1466
+ }[];
1467
+ };
1337
1468
  };
1338
1469
  }[];
1339
1470
  };
@@ -1344,51 +1475,15 @@ export interface CustomSearchTimelineEntry {
1344
1475
  quotedRefResult?: {
1345
1476
  result?: {
1346
1477
  __typename: string;
1347
- rest_id: string;
1478
+ rest_id?: string;
1479
+ tweet?: {
1480
+ rest_id: string;
1481
+ };
1348
1482
  };
1349
1483
  };
1350
- note_tweet?: {
1351
- is_expandable: boolean;
1352
- note_tweet_results: {
1353
- result: {
1354
- id: string;
1355
- text: string;
1356
- entity_set: {
1357
- hashtags: {
1358
- indices: number[];
1359
- text: string;
1360
- }[];
1361
- symbols: unknown[];
1362
- timestamps?: {
1363
- indices: number[];
1364
- seconds: number;
1365
- text: string;
1366
- }[];
1367
- urls: {
1368
- display_url: string;
1369
- expanded_url: string;
1370
- url: string;
1371
- indices: number[];
1372
- }[];
1373
- user_mentions: {
1374
- id_str: string;
1375
- name: string;
1376
- screen_name: string;
1377
- indices: number[];
1378
- }[];
1379
- };
1380
- richtext?: {
1381
- richtext_tags: {
1382
- from_index: number;
1383
- to_index: number;
1384
- richtext_types: string[];
1385
- }[];
1386
- };
1387
- media?: {
1388
- inline_media: unknown[];
1389
- };
1390
- };
1391
- };
1484
+ edit_perspective?: {
1485
+ favorited: boolean;
1486
+ retweeted: boolean;
1392
1487
  };
1393
1488
  tweet?: {
1394
1489
  rest_id: string;
@@ -1411,7 +1506,20 @@ export interface CustomSearchTimelineEntry {
1411
1506
  description: string;
1412
1507
  entities: {
1413
1508
  description: {
1414
- urls: unknown[];
1509
+ urls: {
1510
+ display_url: string;
1511
+ expanded_url: string;
1512
+ url: string;
1513
+ indices: number[];
1514
+ }[];
1515
+ };
1516
+ url?: {
1517
+ urls: {
1518
+ display_url: string;
1519
+ expanded_url: string;
1520
+ url: string;
1521
+ indices: number[];
1522
+ }[];
1415
1523
  };
1416
1524
  };
1417
1525
  fast_followers_count: number;
@@ -1427,7 +1535,7 @@ export interface CustomSearchTimelineEntry {
1427
1535
  normal_followers_count: number;
1428
1536
  pinned_tweet_ids_str: string[];
1429
1537
  possibly_sensitive: boolean;
1430
- profile_banner_url: string;
1538
+ profile_banner_url?: string;
1431
1539
  profile_image_url_https: string;
1432
1540
  profile_interstitial_type: string;
1433
1541
  screen_name: string;
@@ -1436,6 +1544,8 @@ export interface CustomSearchTimelineEntry {
1436
1544
  verified: boolean;
1437
1545
  want_retweets: boolean;
1438
1546
  withheld_in_countries: unknown[];
1547
+ following?: boolean;
1548
+ url?: string;
1439
1549
  };
1440
1550
  professional?: {
1441
1551
  rest_id: string;
@@ -1456,6 +1566,10 @@ export interface CustomSearchTimelineEntry {
1456
1566
  is_edit_eligible: boolean;
1457
1567
  edits_remaining: string;
1458
1568
  };
1569
+ edit_perspective?: {
1570
+ favorited: boolean;
1571
+ retweeted: boolean;
1572
+ };
1459
1573
  is_translatable: boolean;
1460
1574
  views: {
1461
1575
  count: string;
@@ -1466,6 +1580,17 @@ export interface CustomSearchTimelineEntry {
1466
1580
  bookmark_count: number;
1467
1581
  bookmarked: boolean;
1468
1582
  created_at: string;
1583
+ conversation_control?: {
1584
+ policy: string;
1585
+ conversation_owner_results: {
1586
+ result: {
1587
+ __typename: string;
1588
+ legacy: {
1589
+ screen_name: string;
1590
+ };
1591
+ };
1592
+ };
1593
+ };
1469
1594
  conversation_id_str: string;
1470
1595
  display_text_range: number[];
1471
1596
  entities: {
@@ -1473,7 +1598,7 @@ export interface CustomSearchTimelineEntry {
1473
1598
  indices: number[];
1474
1599
  text: string;
1475
1600
  }[];
1476
- media: {
1601
+ media?: {
1477
1602
  display_url: string;
1478
1603
  expanded_url: string;
1479
1604
  id_str: string;
@@ -1482,12 +1607,43 @@ export interface CustomSearchTimelineEntry {
1482
1607
  media_url_https: string;
1483
1608
  type: string;
1484
1609
  url: string;
1485
- additional_media_info?: {
1486
- monetizable: boolean;
1487
- };
1488
1610
  ext_media_availability: {
1489
1611
  status: string;
1490
1612
  };
1613
+ features?: {
1614
+ large: {
1615
+ faces: {
1616
+ x: number;
1617
+ y: number;
1618
+ h: number;
1619
+ w: number;
1620
+ }[];
1621
+ };
1622
+ medium: {
1623
+ faces: {
1624
+ x: number;
1625
+ y: number;
1626
+ h: number;
1627
+ w: number;
1628
+ }[];
1629
+ };
1630
+ small: {
1631
+ faces: {
1632
+ x: number;
1633
+ y: number;
1634
+ h: number;
1635
+ w: number;
1636
+ }[];
1637
+ };
1638
+ orig: {
1639
+ faces: {
1640
+ x: number;
1641
+ y: number;
1642
+ h: number;
1643
+ w: number;
1644
+ }[];
1645
+ };
1646
+ };
1491
1647
  sizes: {
1492
1648
  large: {
1493
1649
  h: number;
@@ -1520,6 +1676,9 @@ export interface CustomSearchTimelineEntry {
1520
1676
  h: number;
1521
1677
  }[];
1522
1678
  };
1679
+ additional_media_info?: {
1680
+ monetizable: boolean;
1681
+ };
1523
1682
  video_info?: {
1524
1683
  aspect_ratio: number[];
1525
1684
  duration_millis: number;
@@ -1529,6 +1688,35 @@ export interface CustomSearchTimelineEntry {
1529
1688
  url: string;
1530
1689
  }[];
1531
1690
  };
1691
+ }[];
1692
+ symbols: unknown[];
1693
+ timestamps?: unknown[];
1694
+ urls: {
1695
+ display_url: string;
1696
+ expanded_url: string;
1697
+ url: string;
1698
+ indices: number[];
1699
+ }[];
1700
+ user_mentions: {
1701
+ id_str: string;
1702
+ name: string;
1703
+ screen_name: string;
1704
+ indices: number[];
1705
+ }[];
1706
+ };
1707
+ extended_entities?: {
1708
+ media: {
1709
+ display_url: string;
1710
+ expanded_url: string;
1711
+ id_str: string;
1712
+ indices: number[];
1713
+ media_key: string;
1714
+ media_url_https: string;
1715
+ type: string;
1716
+ url: string;
1717
+ ext_media_availability: {
1718
+ status: string;
1719
+ };
1532
1720
  features?: {
1533
1721
  large: {
1534
1722
  faces: {
@@ -1563,33 +1751,6 @@ export interface CustomSearchTimelineEntry {
1563
1751
  }[];
1564
1752
  };
1565
1753
  };
1566
- }[];
1567
- symbols: unknown[];
1568
- timestamps?: unknown[];
1569
- urls: unknown[];
1570
- user_mentions: {
1571
- id_str: string;
1572
- name: string;
1573
- screen_name: string;
1574
- indices: number[];
1575
- }[];
1576
- };
1577
- extended_entities: {
1578
- media: {
1579
- display_url: string;
1580
- expanded_url: string;
1581
- id_str: string;
1582
- indices: number[];
1583
- media_key: string;
1584
- media_url_https: string;
1585
- type: string;
1586
- url: string;
1587
- additional_media_info?: {
1588
- monetizable: boolean;
1589
- };
1590
- ext_media_availability: {
1591
- status: string;
1592
- };
1593
1754
  sizes: {
1594
1755
  large: {
1595
1756
  h: number;
@@ -1622,6 +1783,9 @@ export interface CustomSearchTimelineEntry {
1622
1783
  h: number;
1623
1784
  }[];
1624
1785
  };
1786
+ additional_media_info?: {
1787
+ monetizable: boolean;
1788
+ };
1625
1789
  video_info?: {
1626
1790
  aspect_ratio: number[];
1627
1791
  duration_millis: number;
@@ -1631,40 +1795,6 @@ export interface CustomSearchTimelineEntry {
1631
1795
  url: string;
1632
1796
  }[];
1633
1797
  };
1634
- features?: {
1635
- large: {
1636
- faces: {
1637
- x: number;
1638
- y: number;
1639
- h: number;
1640
- w: number;
1641
- }[];
1642
- };
1643
- medium: {
1644
- faces: {
1645
- x: number;
1646
- y: number;
1647
- h: number;
1648
- w: number;
1649
- }[];
1650
- };
1651
- small: {
1652
- faces: {
1653
- x: number;
1654
- y: number;
1655
- h: number;
1656
- w: number;
1657
- }[];
1658
- };
1659
- orig: {
1660
- faces: {
1661
- x: number;
1662
- y: number;
1663
- h: number;
1664
- w: number;
1665
- }[];
1666
- };
1667
- };
1668
1798
  }[];
1669
1799
  };
1670
1800
  favorite_count: number;
@@ -1673,22 +1803,42 @@ export interface CustomSearchTimelineEntry {
1673
1803
  is_quote_status: boolean;
1674
1804
  lang: string;
1675
1805
  limited_actions: string;
1676
- possibly_sensitive: boolean;
1677
- possibly_sensitive_editable: boolean;
1806
+ possibly_sensitive?: boolean;
1807
+ possibly_sensitive_editable?: boolean;
1678
1808
  quote_count: number;
1679
1809
  reply_count: number;
1680
1810
  retweet_count: number;
1681
1811
  retweeted: boolean;
1682
1812
  user_id_str: string;
1683
1813
  id_str: string;
1684
- conversation_control?: {
1685
- policy: string;
1686
- conversation_owner_results: {
1687
- result: {
1688
- __typename: string;
1689
- legacy: {
1690
- screen_name: string;
1691
- };
1814
+ quoted_status_id_str?: string;
1815
+ quoted_status_permalink?: {
1816
+ url: string;
1817
+ expanded: string;
1818
+ display: string;
1819
+ };
1820
+ };
1821
+ unified_card?: {
1822
+ card_fetch_state: string;
1823
+ };
1824
+ quotedRefResult?: {
1825
+ result?: {
1826
+ __typename: string;
1827
+ rest_id: string;
1828
+ };
1829
+ };
1830
+ note_tweet?: {
1831
+ is_expandable: boolean;
1832
+ note_tweet_results: {
1833
+ result: {
1834
+ id: string;
1835
+ text: string;
1836
+ entity_set: {
1837
+ hashtags: unknown[];
1838
+ symbols: unknown[];
1839
+ timestamps: unknown[];
1840
+ urls: unknown[];
1841
+ user_mentions: unknown[];
1692
1842
  };
1693
1843
  };
1694
1844
  };
@@ -1711,15 +1861,15 @@ export interface CustomSearchTimelineEntry {
1711
1861
  };
1712
1862
  }[];
1713
1863
  };
1864
+ previous_counts?: {
1865
+ bookmark_count: number;
1866
+ favorite_count: number;
1867
+ quote_count: number;
1868
+ reply_count: number;
1869
+ retweet_count: number;
1870
+ };
1714
1871
  };
1715
1872
  };
1716
- previous_counts?: {
1717
- bookmark_count: number;
1718
- favorite_count: number;
1719
- quote_count: number;
1720
- reply_count: number;
1721
- retweet_count: number;
1722
- };
1723
1873
  tweet?: {
1724
1874
  rest_id: string;
1725
1875
  core: {
@@ -1776,10 +1926,10 @@ export interface CustomSearchTimelineEntry {
1776
1926
  screen_name: string;
1777
1927
  statuses_count: number;
1778
1928
  translator_type: string;
1929
+ url?: string;
1779
1930
  verified: boolean;
1780
1931
  want_retweets: boolean;
1781
1932
  withheld_in_countries: unknown[];
1782
- url?: string;
1783
1933
  verified_type?: string;
1784
1934
  };
1785
1935
  professional?: {
@@ -1794,341 +1944,167 @@ export interface CustomSearchTimelineEntry {
1794
1944
  };
1795
1945
  };
1796
1946
  };
1797
- unmention_data: {};
1798
- unified_card?: {
1799
- card_fetch_state: string;
1800
- };
1801
- edit_control: {
1802
- edit_tweet_ids: string[];
1803
- editable_until_msecs: string;
1804
- is_edit_eligible: boolean;
1805
- edits_remaining: string;
1806
- };
1807
- is_translatable: boolean;
1808
- views: {
1809
- count?: string;
1810
- state: string;
1811
- };
1812
- source: string;
1813
- author_community_relationship?: {
1814
- community_results: {
1815
- result: {
1816
- __typename: string;
1817
- id_str: string;
1818
- name: string;
1819
- description: string;
1820
- created_at: number;
1821
- default_theme: string;
1822
- custom_theme: string;
1823
- question?: string;
1824
- actions: {
1825
- delete_action_result: {
1826
- __typename: string;
1827
- reason: string;
1828
- };
1829
- join_action_result: {
1830
- __typename: string;
1831
- reason?: string;
1832
- message?: string;
1947
+ card?: {
1948
+ rest_id: string;
1949
+ legacy: {
1950
+ binding_values: {
1951
+ key: string;
1952
+ value: {
1953
+ image_value?: {
1954
+ height: number;
1955
+ width: number;
1956
+ url: string;
1957
+ alt?: string;
1833
1958
  };
1834
- leave_action_result: {
1835
- __typename: string;
1836
- reason: string;
1837
- message: string;
1959
+ type: string;
1960
+ string_value?: string;
1961
+ scribe_key?: string;
1962
+ user_value?: {
1963
+ id_str: string;
1964
+ path: unknown[];
1838
1965
  };
1839
- pin_action_result: {
1840
- __typename: string;
1966
+ image_color_value?: {
1967
+ palette: {
1968
+ rgb: {
1969
+ blue: number;
1970
+ green: number;
1971
+ red: number;
1972
+ };
1973
+ percentage: number;
1974
+ }[];
1841
1975
  };
1842
1976
  };
1843
- admin_results: {
1844
- result: {
1845
- __typename: string;
1846
- id: string;
1847
- rest_id: string;
1848
- affiliates_highlighted_label: {};
1849
- has_graduated_access: boolean;
1850
- is_blue_verified: boolean;
1851
- profile_image_shape: string;
1852
- legacy: {
1853
- can_dm: boolean;
1854
- can_media_tag: boolean;
1855
- created_at: string;
1856
- default_profile: boolean;
1857
- default_profile_image: boolean;
1977
+ }[];
1978
+ card_platform: {
1979
+ platform: {
1980
+ audience: {
1981
+ name: string;
1982
+ };
1983
+ device: {
1984
+ name: string;
1985
+ version: string;
1986
+ };
1987
+ };
1988
+ };
1989
+ name: string;
1990
+ url: string;
1991
+ user_refs_results: {
1992
+ result: {
1993
+ __typename: string;
1994
+ id: string;
1995
+ rest_id: string;
1996
+ affiliates_highlighted_label: {
1997
+ label?: {
1998
+ url: {
1999
+ url: string;
2000
+ urlType: string;
2001
+ };
2002
+ badge: {
2003
+ url: string;
2004
+ };
1858
2005
  description: string;
1859
- entities: {
1860
- description: {
1861
- urls: {
1862
- display_url: string;
1863
- expanded_url: string;
1864
- url: string;
1865
- indices: number[];
1866
- }[];
1867
- };
2006
+ userLabelType: string;
2007
+ userLabelDisplayType: string;
2008
+ };
2009
+ };
2010
+ has_graduated_access: boolean;
2011
+ is_blue_verified: boolean;
2012
+ profile_image_shape: string;
2013
+ legacy: {
2014
+ blocking?: boolean;
2015
+ can_dm: boolean;
2016
+ can_media_tag: boolean;
2017
+ created_at: string;
2018
+ default_profile: boolean;
2019
+ default_profile_image: boolean;
2020
+ description: string;
2021
+ entities: {
2022
+ description: {
2023
+ urls: {
2024
+ display_url: string;
2025
+ expanded_url: string;
2026
+ url: string;
2027
+ indices: number[];
2028
+ }[];
2029
+ };
2030
+ url?: {
2031
+ urls: {
2032
+ display_url: string;
2033
+ expanded_url: string;
2034
+ url: string;
2035
+ indices: number[];
2036
+ }[];
1868
2037
  };
1869
- fast_followers_count: number;
1870
- favourites_count: number;
1871
- followers_count: number;
1872
- friends_count: number;
1873
- has_custom_timelines: boolean;
1874
- is_translator: boolean;
1875
- listed_count: number;
1876
- location: string;
1877
- media_count: number;
1878
- name: string;
1879
- normal_followers_count: number;
1880
- pinned_tweet_ids_str: string[];
1881
- possibly_sensitive: boolean;
1882
- profile_banner_url: string;
1883
- profile_image_url_https: string;
1884
- profile_interstitial_type: string;
1885
- screen_name: string;
1886
- statuses_count: number;
1887
- translator_type: string;
1888
- verified: boolean;
1889
- want_retweets: boolean;
1890
- withheld_in_countries: unknown[];
1891
2038
  };
2039
+ fast_followers_count: number;
2040
+ favourites_count: number;
2041
+ followers_count: number;
2042
+ friends_count: number;
2043
+ has_custom_timelines: boolean;
2044
+ is_translator: boolean;
2045
+ listed_count: number;
2046
+ location: string;
2047
+ media_count: number;
2048
+ name: string;
2049
+ normal_followers_count: number;
2050
+ pinned_tweet_ids_str: string[];
2051
+ possibly_sensitive: boolean;
2052
+ profile_banner_url: string;
2053
+ profile_image_url_https: string;
2054
+ profile_interstitial_type: string;
2055
+ screen_name: string;
2056
+ statuses_count: number;
2057
+ translator_type: string;
2058
+ url?: string;
2059
+ verified: boolean;
2060
+ verified_type?: string;
2061
+ want_retweets: boolean;
2062
+ withheld_in_countries: unknown[];
1892
2063
  };
1893
- };
1894
- creator_results: {
1895
- result: {
1896
- __typename: string;
1897
- id: string;
2064
+ professional?: {
1898
2065
  rest_id: string;
1899
- affiliates_highlighted_label: {};
1900
- has_graduated_access: boolean;
1901
- is_blue_verified: boolean;
1902
- profile_image_shape: string;
1903
- legacy: {
1904
- can_dm: boolean;
1905
- can_media_tag: boolean;
1906
- created_at: string;
1907
- default_profile: boolean;
1908
- default_profile_image: boolean;
1909
- description: string;
1910
- entities: {
1911
- description: {
1912
- urls: {
1913
- display_url: string;
1914
- expanded_url: string;
1915
- url: string;
1916
- indices: number[];
1917
- }[];
1918
- };
1919
- };
1920
- fast_followers_count: number;
1921
- favourites_count: number;
1922
- followers_count: number;
1923
- friends_count: number;
1924
- has_custom_timelines: boolean;
1925
- is_translator: boolean;
1926
- listed_count: number;
1927
- location: string;
1928
- media_count: number;
2066
+ professional_type: string;
2067
+ category: {
2068
+ id: number;
1929
2069
  name: string;
1930
- normal_followers_count: number;
1931
- pinned_tweet_ids_str: string[];
1932
- possibly_sensitive: boolean;
1933
- profile_banner_url: string;
1934
- profile_image_url_https: string;
1935
- profile_interstitial_type: string;
1936
- screen_name: string;
1937
- statuses_count: number;
1938
- translator_type: string;
1939
- verified: boolean;
1940
- want_retweets: boolean;
1941
- withheld_in_countries: unknown[];
1942
- };
2070
+ icon_name: string;
2071
+ }[];
1943
2072
  };
1944
2073
  };
1945
- invites_result: {
2074
+ }[];
2075
+ };
2076
+ };
2077
+ unmention_data: {};
2078
+ unified_card?: {
2079
+ card_fetch_state: string;
2080
+ };
2081
+ edit_control: {
2082
+ edit_tweet_ids: string[];
2083
+ editable_until_msecs: string;
2084
+ is_edit_eligible: boolean;
2085
+ edits_remaining: string;
2086
+ };
2087
+ is_translatable: boolean;
2088
+ views: {
2089
+ count?: string;
2090
+ state: string;
2091
+ };
2092
+ source: string;
2093
+ legacy: {
2094
+ bookmark_count: number;
2095
+ bookmarked: boolean;
2096
+ created_at: string;
2097
+ conversation_control?: {
2098
+ policy: string;
2099
+ conversation_owner_results: {
2100
+ result: {
1946
2101
  __typename: string;
1947
- reason: string;
1948
- message: string;
1949
- };
1950
- join_policy: string;
1951
- invites_policy: string;
1952
- is_pinned: boolean;
1953
- members_facepile_results: {
1954
- result: {
1955
- __typename: string;
1956
- id: string;
1957
- rest_id: string;
1958
- affiliates_highlighted_label: {};
1959
- has_graduated_access: boolean;
1960
- is_blue_verified: boolean;
1961
- profile_image_shape: string;
1962
- legacy: {
1963
- can_dm: boolean;
1964
- can_media_tag: boolean;
1965
- created_at: string;
1966
- default_profile: boolean;
1967
- default_profile_image: boolean;
1968
- description: string;
1969
- entities: {
1970
- description: {
1971
- urls: {
1972
- display_url: string;
1973
- expanded_url: string;
1974
- url: string;
1975
- indices: number[];
1976
- }[];
1977
- };
1978
- url?: {
1979
- urls: {
1980
- display_url: string;
1981
- expanded_url: string;
1982
- url: string;
1983
- indices: number[];
1984
- }[];
1985
- };
1986
- };
1987
- fast_followers_count: number;
1988
- favourites_count: number;
1989
- followers_count: number;
1990
- friends_count: number;
1991
- has_custom_timelines: boolean;
1992
- is_translator: boolean;
1993
- listed_count: number;
1994
- location: string;
1995
- media_count: number;
1996
- name: string;
1997
- normal_followers_count: number;
1998
- pinned_tweet_ids_str: string[];
1999
- possibly_sensitive: boolean;
2000
- profile_banner_url?: string;
2001
- profile_image_url_https: string;
2002
- profile_interstitial_type: string;
2003
- screen_name: string;
2004
- statuses_count: number;
2005
- translator_type: string;
2006
- verified: boolean;
2007
- want_retweets: boolean;
2008
- withheld_in_countries: unknown[];
2009
- url?: string;
2010
- };
2011
- professional?: {
2012
- rest_id: string;
2013
- professional_type: string;
2014
- category: {
2015
- id: number;
2016
- name: string;
2017
- icon_name: string;
2018
- }[];
2019
- };
2020
- };
2021
- }[];
2022
- moderator_count: number;
2023
- member_count: number;
2024
- role: string;
2025
- rules: {
2026
- rest_id: string;
2027
- name: string;
2028
- description?: string;
2029
- }[];
2030
- custom_banner_media: {
2031
- media_info: {
2032
- color_info: {
2033
- palette: {
2034
- rgb: {
2035
- red: number;
2036
- green: number;
2037
- blue: number;
2038
- };
2039
- percentage: number;
2040
- }[];
2041
- };
2042
- original_img_url: string;
2043
- original_img_width: number;
2044
- original_img_height: number;
2045
- salient_rect: {
2046
- left: number;
2047
- top: number;
2048
- width: number;
2049
- height: number;
2050
- };
2051
- };
2052
- };
2053
- default_banner_media: {
2054
- media_info: {
2055
- color_info: {
2056
- palette: {
2057
- rgb: {
2058
- red: number;
2059
- green: number;
2060
- blue: number;
2061
- };
2062
- percentage: number;
2063
- }[];
2064
- };
2065
- original_img_url: string;
2066
- original_img_width: number;
2067
- original_img_height: number;
2068
- };
2069
- };
2070
- viewer_relationship: {
2071
- moderation_state: {
2072
- __typename: string;
2073
- };
2074
- };
2075
- join_requests_result: {
2076
- __typename: string;
2077
- };
2078
- };
2079
- };
2080
- role: string;
2081
- user_results: {
2082
- result: {
2083
- __typename: string;
2084
- id: string;
2085
- rest_id: string;
2086
- affiliates_highlighted_label: {};
2087
- has_graduated_access: boolean;
2088
- is_blue_verified: boolean;
2089
- profile_image_shape: string;
2090
- legacy: {
2091
- can_dm: boolean;
2092
- can_media_tag: boolean;
2093
- created_at: string;
2094
- default_profile: boolean;
2095
- default_profile_image: boolean;
2096
- description: string;
2097
- entities: {
2098
- description: {
2099
- urls: unknown[];
2100
- };
2101
- };
2102
- fast_followers_count: number;
2103
- favourites_count: number;
2104
- followers_count: number;
2105
- friends_count: number;
2106
- has_custom_timelines: boolean;
2107
- is_translator: boolean;
2108
- listed_count: number;
2109
- location: string;
2110
- media_count: number;
2111
- name: string;
2112
- normal_followers_count: number;
2113
- pinned_tweet_ids_str: string[];
2114
- possibly_sensitive: boolean;
2115
- profile_banner_url: string;
2116
- profile_image_url_https: string;
2117
- profile_interstitial_type: string;
2118
- screen_name: string;
2119
- statuses_count: number;
2120
- translator_type: string;
2121
- verified: boolean;
2122
- want_retweets: boolean;
2123
- withheld_in_countries: unknown[];
2102
+ legacy: {
2103
+ screen_name: string;
2104
+ };
2124
2105
  };
2125
2106
  };
2126
2107
  };
2127
- };
2128
- legacy: {
2129
- bookmark_count: number;
2130
- bookmarked: boolean;
2131
- created_at: string;
2132
2108
  conversation_id_str: string;
2133
2109
  display_text_range: number[];
2134
2110
  entities: {
@@ -2136,6 +2112,23 @@ export interface CustomSearchTimelineEntry {
2136
2112
  indices: number[];
2137
2113
  text: string;
2138
2114
  }[];
2115
+ symbols: {
2116
+ indices: number[];
2117
+ text: string;
2118
+ }[];
2119
+ timestamps?: unknown[];
2120
+ urls: {
2121
+ display_url: string;
2122
+ expanded_url: string;
2123
+ url: string;
2124
+ indices: number[];
2125
+ }[];
2126
+ user_mentions: {
2127
+ id_str: string;
2128
+ name: string;
2129
+ screen_name: string;
2130
+ indices: number[];
2131
+ }[];
2139
2132
  media?: {
2140
2133
  display_url: string;
2141
2134
  expanded_url: string;
@@ -2277,24 +2270,21 @@ export interface CustomSearchTimelineEntry {
2277
2270
  source_status_id_str?: string;
2278
2271
  source_user_id_str?: string;
2279
2272
  }[];
2280
- symbols: {
2281
- indices: number[];
2282
- text: string;
2283
- }[];
2284
- timestamps?: unknown[];
2285
- urls: {
2286
- display_url: string;
2287
- expanded_url: string;
2288
- url: string;
2289
- indices: number[];
2290
- }[];
2291
- user_mentions: {
2292
- id_str: string;
2293
- name: string;
2294
- screen_name: string;
2295
- indices: number[];
2296
- }[];
2297
2273
  };
2274
+ favorite_count: number;
2275
+ favorited: boolean;
2276
+ full_text: string;
2277
+ is_quote_status: boolean;
2278
+ lang: string;
2279
+ limited_actions?: string;
2280
+ possibly_sensitive?: boolean;
2281
+ possibly_sensitive_editable?: boolean;
2282
+ quote_count: number;
2283
+ reply_count: number;
2284
+ retweet_count: number;
2285
+ retweeted: boolean;
2286
+ user_id_str: string;
2287
+ id_str: string;
2298
2288
  extended_entities?: {
2299
2289
  media: {
2300
2290
  display_url: string;
@@ -2438,438 +2428,205 @@ export interface CustomSearchTimelineEntry {
2438
2428
  source_user_id_str?: string;
2439
2429
  }[];
2440
2430
  };
2441
- favorite_count: number;
2442
- favorited: boolean;
2443
- full_text: string;
2444
- in_reply_to_screen_name?: string;
2445
- in_reply_to_status_id_str?: string;
2446
- in_reply_to_user_id_str?: string;
2447
- is_quote_status: boolean;
2448
- lang: string;
2449
- limited_actions?: string;
2450
- possibly_sensitive?: boolean;
2451
- possibly_sensitive_editable?: boolean;
2452
- quote_count: number;
2453
- reply_count: number;
2454
- retweet_count: number;
2455
- retweeted: boolean;
2456
- user_id_str: string;
2457
- id_str: string;
2458
- conversation_control?: {
2459
- policy: string;
2460
- conversation_owner_results: {
2461
- result: {
2462
- __typename: string;
2463
- legacy: {
2464
- screen_name: string;
2465
- };
2466
- };
2467
- };
2468
- };
2469
2431
  quoted_status_id_str?: string;
2470
2432
  quoted_status_permalink?: {
2471
2433
  url: string;
2472
2434
  expanded: string;
2473
2435
  display: string;
2474
2436
  };
2437
+ in_reply_to_screen_name?: string;
2438
+ in_reply_to_status_id_str?: string;
2439
+ in_reply_to_user_id_str?: string;
2475
2440
  scopes?: {
2476
2441
  followers: boolean;
2477
2442
  };
2478
2443
  };
2479
- card?: {
2480
- rest_id: string;
2481
- legacy: {
2482
- binding_values: {
2483
- key: string;
2484
- value: {
2485
- image_value?: {
2486
- height: number;
2487
- width: number;
2488
- url: string;
2489
- alt?: string;
2490
- };
2491
- type: string;
2492
- string_value?: string;
2493
- scribe_key?: string;
2494
- user_value?: {
2495
- id_str: string;
2496
- path: unknown[];
2497
- };
2498
- image_color_value?: {
2499
- palette: {
2500
- rgb: {
2501
- blue: number;
2502
- green: number;
2503
- red: number;
2504
- };
2505
- percentage: number;
2506
- }[];
2507
- };
2508
- };
2509
- }[];
2510
- card_platform: {
2511
- platform: {
2512
- audience: {
2513
- name: string;
2514
- };
2515
- device: {
2516
- name: string;
2517
- version: string;
2518
- };
2519
- };
2520
- };
2521
- name: string;
2522
- url: string;
2523
- user_refs_results: {
2524
- result: {
2525
- __typename: string;
2526
- id: string;
2527
- rest_id: string;
2528
- affiliates_highlighted_label: {
2529
- label?: {
2530
- url: {
2531
- url: string;
2532
- urlType: string;
2444
+ quoted_status_result?: {
2445
+ result: {
2446
+ __typename: string;
2447
+ tweet?: {
2448
+ rest_id: string;
2449
+ core: {
2450
+ user_results: {
2451
+ result: {
2452
+ __typename: string;
2453
+ id: string;
2454
+ rest_id: string;
2455
+ affiliates_highlighted_label: {};
2456
+ has_graduated_access: boolean;
2457
+ is_blue_verified: boolean;
2458
+ profile_image_shape: string;
2459
+ legacy: {
2460
+ can_dm: boolean;
2461
+ can_media_tag: boolean;
2462
+ created_at: string;
2463
+ default_profile: boolean;
2464
+ default_profile_image: boolean;
2465
+ description: string;
2466
+ entities: {
2467
+ description: {
2468
+ urls: unknown[];
2469
+ };
2470
+ url?: {
2471
+ urls: {
2472
+ display_url: string;
2473
+ expanded_url: string;
2474
+ url: string;
2475
+ indices: number[];
2476
+ }[];
2477
+ };
2478
+ };
2479
+ fast_followers_count: number;
2480
+ favourites_count: number;
2481
+ followers_count: number;
2482
+ friends_count: number;
2483
+ has_custom_timelines: boolean;
2484
+ is_translator: boolean;
2485
+ listed_count: number;
2486
+ location: string;
2487
+ media_count: number;
2488
+ name: string;
2489
+ normal_followers_count: number;
2490
+ pinned_tweet_ids_str: string[];
2491
+ possibly_sensitive: boolean;
2492
+ profile_banner_url: string;
2493
+ profile_image_url_https: string;
2494
+ profile_interstitial_type: string;
2495
+ screen_name: string;
2496
+ statuses_count: number;
2497
+ translator_type: string;
2498
+ url?: string;
2499
+ verified: boolean;
2500
+ want_retweets: boolean;
2501
+ withheld_in_countries: unknown[];
2533
2502
  };
2534
- badge: {
2535
- url: string;
2503
+ professional?: {
2504
+ rest_id: string;
2505
+ professional_type: string;
2506
+ category: {
2507
+ id: number;
2508
+ name: string;
2509
+ icon_name: string;
2510
+ }[];
2536
2511
  };
2537
- description: string;
2538
- userLabelType: string;
2539
- userLabelDisplayType: string;
2540
2512
  };
2541
2513
  };
2542
- has_graduated_access: boolean;
2543
- is_blue_verified: boolean;
2544
- profile_image_shape: string;
2514
+ };
2515
+ card?: {
2516
+ rest_id: string;
2545
2517
  legacy: {
2546
- blocking?: boolean;
2547
- can_dm: boolean;
2548
- can_media_tag: boolean;
2549
- created_at: string;
2550
- default_profile: boolean;
2551
- default_profile_image: boolean;
2552
- description: string;
2553
- entities: {
2554
- description: {
2555
- urls: {
2556
- display_url: string;
2557
- expanded_url: string;
2518
+ binding_values: {
2519
+ key: string;
2520
+ value: {
2521
+ image_value?: {
2522
+ height: number;
2523
+ width: number;
2558
2524
  url: string;
2559
- indices: number[];
2560
- }[];
2525
+ };
2526
+ type: string;
2527
+ string_value?: string;
2528
+ scribe_key?: string;
2529
+ user_value?: {
2530
+ id_str: string;
2531
+ path: unknown[];
2532
+ };
2533
+ image_color_value?: {
2534
+ palette: {
2535
+ rgb: {
2536
+ blue: number;
2537
+ green: number;
2538
+ red: number;
2539
+ };
2540
+ percentage: number;
2541
+ }[];
2542
+ };
2543
+ boolean_value?: boolean;
2561
2544
  };
2562
- url?: {
2563
- urls: {
2564
- display_url: string;
2565
- expanded_url: string;
2566
- url: string;
2567
- indices: number[];
2568
- }[];
2545
+ }[];
2546
+ card_platform: {
2547
+ platform: {
2548
+ audience: {
2549
+ name: string;
2550
+ };
2551
+ device: {
2552
+ name: string;
2553
+ version: string;
2554
+ };
2569
2555
  };
2570
2556
  };
2571
- fast_followers_count: number;
2572
- favourites_count: number;
2573
- followers_count: number;
2574
- friends_count: number;
2575
- has_custom_timelines: boolean;
2576
- is_translator: boolean;
2577
- listed_count: number;
2578
- location: string;
2579
- media_count: number;
2580
2557
  name: string;
2581
- normal_followers_count: number;
2582
- pinned_tweet_ids_str: unknown[];
2583
- possibly_sensitive: boolean;
2584
- profile_banner_url: string;
2585
- profile_image_url_https: string;
2586
- profile_interstitial_type: string;
2587
- screen_name: string;
2588
- statuses_count: number;
2589
- translator_type: string;
2590
- url?: string;
2591
- verified: boolean;
2592
- verified_type?: string;
2593
- want_retweets: boolean;
2594
- withheld_in_countries: unknown[];
2595
- };
2596
- professional?: {
2597
- rest_id: string;
2598
- professional_type: string;
2599
- category: {
2600
- id: number;
2601
- name: string;
2602
- icon_name: string;
2558
+ url: string;
2559
+ user_refs_results: {
2560
+ result: {
2561
+ __typename: string;
2562
+ id: string;
2563
+ rest_id: string;
2564
+ affiliates_highlighted_label: {};
2565
+ has_graduated_access: boolean;
2566
+ is_blue_verified: boolean;
2567
+ profile_image_shape: string;
2568
+ legacy: {
2569
+ can_dm: boolean;
2570
+ can_media_tag: boolean;
2571
+ created_at: string;
2572
+ default_profile: boolean;
2573
+ default_profile_image: boolean;
2574
+ description: string;
2575
+ entities: {
2576
+ description: {
2577
+ urls: unknown[];
2578
+ };
2579
+ url: {
2580
+ urls: {
2581
+ display_url: string;
2582
+ expanded_url: string;
2583
+ url: string;
2584
+ indices: number[];
2585
+ }[];
2586
+ };
2587
+ };
2588
+ fast_followers_count: number;
2589
+ favourites_count: number;
2590
+ followers_count: number;
2591
+ friends_count: number;
2592
+ has_custom_timelines: boolean;
2593
+ is_translator: boolean;
2594
+ listed_count: number;
2595
+ location: string;
2596
+ media_count: number;
2597
+ name: string;
2598
+ normal_followers_count: number;
2599
+ pinned_tweet_ids_str: unknown[];
2600
+ possibly_sensitive: boolean;
2601
+ profile_banner_url: string;
2602
+ profile_image_url_https: string;
2603
+ profile_interstitial_type: string;
2604
+ screen_name: string;
2605
+ statuses_count: number;
2606
+ translator_type: string;
2607
+ url: string;
2608
+ verified: boolean;
2609
+ verified_type: string;
2610
+ want_retweets: boolean;
2611
+ withheld_in_countries: unknown[];
2612
+ };
2613
+ professional: {
2614
+ rest_id: string;
2615
+ professional_type: string;
2616
+ category: {
2617
+ id: number;
2618
+ name: string;
2619
+ icon_name: string;
2620
+ }[];
2621
+ };
2622
+ };
2603
2623
  }[];
2604
2624
  };
2605
2625
  };
2606
- }[];
2607
- };
2608
- };
2609
- quoted_status_result?: {
2610
- result: {
2611
- __typename: string;
2612
- rest_id?: string;
2613
- core?: {
2614
- user_results: {
2615
- result: {
2616
- __typename: string;
2617
- id: string;
2618
- rest_id: string;
2619
- affiliates_highlighted_label: {};
2620
- has_graduated_access: boolean;
2621
- is_blue_verified: boolean;
2622
- profile_image_shape: string;
2623
- legacy: {
2624
- can_dm: boolean;
2625
- can_media_tag: boolean;
2626
- created_at: string;
2627
- default_profile: boolean;
2628
- default_profile_image: boolean;
2629
- description: string;
2630
- entities: {
2631
- description: {
2632
- urls: unknown[];
2633
- };
2634
- };
2635
- fast_followers_count: number;
2636
- favourites_count: number;
2637
- followers_count: number;
2638
- friends_count: number;
2639
- has_custom_timelines: boolean;
2640
- is_translator: boolean;
2641
- listed_count: number;
2642
- location: string;
2643
- media_count: number;
2644
- name: string;
2645
- normal_followers_count: number;
2646
- pinned_tweet_ids_str: unknown[];
2647
- possibly_sensitive: boolean;
2648
- profile_banner_url: string;
2649
- profile_image_url_https: string;
2650
- profile_interstitial_type: string;
2651
- screen_name: string;
2652
- statuses_count: number;
2653
- translator_type: string;
2654
- verified: boolean;
2655
- want_retweets: boolean;
2656
- withheld_in_countries: unknown[];
2657
- };
2658
- };
2659
- };
2660
- };
2661
- unmention_data?: {};
2662
- edit_control?: {
2663
- edit_tweet_ids: string[];
2664
- editable_until_msecs: string;
2665
- is_edit_eligible: boolean;
2666
- edits_remaining: string;
2667
- };
2668
- is_translatable?: boolean;
2669
- views?: {
2670
- count: string;
2671
- state: string;
2672
- };
2673
- source?: string;
2674
- legacy?: {
2675
- bookmark_count: number;
2676
- bookmarked: boolean;
2677
- created_at: string;
2678
- conversation_id_str: string;
2679
- display_text_range: number[];
2680
- entities: {
2681
- hashtags: {
2682
- indices: number[];
2683
- text: string;
2684
- }[];
2685
- media: {
2686
- display_url: string;
2687
- expanded_url: string;
2688
- id_str: string;
2689
- indices: number[];
2690
- media_key: string;
2691
- media_url_https: string;
2692
- type: string;
2693
- url: string;
2694
- additional_media_info: {
2695
- monetizable: boolean;
2696
- };
2697
- ext_media_availability: {
2698
- status: string;
2699
- };
2700
- sizes: {
2701
- large: {
2702
- h: number;
2703
- w: number;
2704
- resize: string;
2705
- };
2706
- medium: {
2707
- h: number;
2708
- w: number;
2709
- resize: string;
2710
- };
2711
- small: {
2712
- h: number;
2713
- w: number;
2714
- resize: string;
2715
- };
2716
- thumb: {
2717
- h: number;
2718
- w: number;
2719
- resize: string;
2720
- };
2721
- };
2722
- original_info: {
2723
- height: number;
2724
- width: number;
2725
- focus_rects: unknown[];
2726
- };
2727
- video_info: {
2728
- aspect_ratio: number[];
2729
- duration_millis: number;
2730
- variants: {
2731
- bitrate?: number;
2732
- content_type: string;
2733
- url: string;
2734
- }[];
2735
- };
2736
- }[];
2737
- symbols: unknown[];
2738
- timestamps: unknown[];
2739
- urls: unknown[];
2740
- user_mentions: unknown[];
2741
- };
2742
- extended_entities: {
2743
- media: {
2744
- display_url: string;
2745
- expanded_url: string;
2746
- id_str: string;
2747
- indices: number[];
2748
- media_key: string;
2749
- media_url_https: string;
2750
- type: string;
2751
- url: string;
2752
- additional_media_info: {
2753
- monetizable: boolean;
2754
- };
2755
- ext_media_availability: {
2756
- status: string;
2757
- };
2758
- sizes: {
2759
- large: {
2760
- h: number;
2761
- w: number;
2762
- resize: string;
2763
- };
2764
- medium: {
2765
- h: number;
2766
- w: number;
2767
- resize: string;
2768
- };
2769
- small: {
2770
- h: number;
2771
- w: number;
2772
- resize: string;
2773
- };
2774
- thumb: {
2775
- h: number;
2776
- w: number;
2777
- resize: string;
2778
- };
2779
- };
2780
- original_info: {
2781
- height: number;
2782
- width: number;
2783
- focus_rects: unknown[];
2784
- };
2785
- video_info: {
2786
- aspect_ratio: number[];
2787
- duration_millis: number;
2788
- variants: {
2789
- bitrate?: number;
2790
- content_type: string;
2791
- url: string;
2792
- }[];
2793
- };
2794
- }[];
2795
- };
2796
- favorite_count: number;
2797
- favorited: boolean;
2798
- full_text: string;
2799
- in_reply_to_screen_name: string;
2800
- in_reply_to_status_id_str: string;
2801
- in_reply_to_user_id_str: string;
2802
- is_quote_status: boolean;
2803
- lang: string;
2804
- possibly_sensitive: boolean;
2805
- possibly_sensitive_editable: boolean;
2806
- quote_count: number;
2807
- reply_count: number;
2808
- retweet_count: number;
2809
- retweeted: boolean;
2810
- user_id_str: string;
2811
- id_str: string;
2812
- };
2813
- tweet?: {
2814
- rest_id: string;
2815
- core: {
2816
- user_results: {
2817
- result: {
2818
- __typename: string;
2819
- id: string;
2820
- rest_id: string;
2821
- affiliates_highlighted_label: {};
2822
- has_graduated_access: boolean;
2823
- is_blue_verified: boolean;
2824
- profile_image_shape: string;
2825
- legacy: {
2826
- can_dm: boolean;
2827
- can_media_tag: boolean;
2828
- created_at: string;
2829
- default_profile: boolean;
2830
- default_profile_image: boolean;
2831
- description: string;
2832
- entities: {
2833
- description: {
2834
- urls: unknown[];
2835
- };
2836
- url?: {
2837
- urls: {
2838
- display_url: string;
2839
- expanded_url: string;
2840
- url: string;
2841
- indices: number[];
2842
- }[];
2843
- };
2844
- };
2845
- fast_followers_count: number;
2846
- favourites_count: number;
2847
- followers_count: number;
2848
- friends_count: number;
2849
- has_custom_timelines: boolean;
2850
- is_translator: boolean;
2851
- listed_count: number;
2852
- location: string;
2853
- media_count: number;
2854
- name: string;
2855
- normal_followers_count: number;
2856
- pinned_tweet_ids_str: string[];
2857
- possibly_sensitive: boolean;
2858
- profile_banner_url: string;
2859
- profile_image_url_https: string;
2860
- profile_interstitial_type: string;
2861
- screen_name: string;
2862
- statuses_count: number;
2863
- translator_type: string;
2864
- url?: string;
2865
- verified: boolean;
2866
- want_retweets: boolean;
2867
- withheld_in_countries: unknown[];
2868
- };
2869
- };
2870
- };
2871
- };
2872
2626
  unmention_data: {};
2627
+ unified_card?: {
2628
+ card_fetch_state: string;
2629
+ };
2873
2630
  edit_control: {
2874
2631
  edit_tweet_ids: string[];
2875
2632
  editable_until_msecs: string;
@@ -2886,7 +2643,7 @@ export interface CustomSearchTimelineEntry {
2886
2643
  bookmark_count: number;
2887
2644
  bookmarked: boolean;
2888
2645
  created_at: string;
2889
- conversation_control: {
2646
+ conversation_control?: {
2890
2647
  policy: string;
2891
2648
  conversation_owner_results: {
2892
2649
  result: {
@@ -2904,13 +2661,27 @@ export interface CustomSearchTimelineEntry {
2904
2661
  indices: number[];
2905
2662
  text: string;
2906
2663
  }[];
2907
- media: {
2664
+ symbols: unknown[];
2665
+ timestamps?: unknown[];
2666
+ urls: {
2908
2667
  display_url: string;
2909
2668
  expanded_url: string;
2910
- id_str: string;
2669
+ url: string;
2911
2670
  indices: number[];
2912
- media_key: string;
2913
- media_url_https: string;
2671
+ }[];
2672
+ user_mentions: {
2673
+ id_str: string;
2674
+ name: string;
2675
+ screen_name: string;
2676
+ indices: number[];
2677
+ }[];
2678
+ media?: {
2679
+ display_url: string;
2680
+ expanded_url: string;
2681
+ id_str: string;
2682
+ indices: number[];
2683
+ media_key: string;
2684
+ media_url_https: string;
2914
2685
  type: string;
2915
2686
  url: string;
2916
2687
  ext_media_availability: {
@@ -2983,12 +2754,22 @@ export interface CustomSearchTimelineEntry {
2983
2754
  }[];
2984
2755
  };
2985
2756
  }[];
2986
- symbols: unknown[];
2987
- timestamps?: unknown[];
2988
- urls: unknown[];
2989
- user_mentions: unknown[];
2990
2757
  };
2991
- extended_entities: {
2758
+ favorite_count: number;
2759
+ favorited: boolean;
2760
+ full_text: string;
2761
+ is_quote_status: boolean;
2762
+ lang: string;
2763
+ limited_actions: string;
2764
+ possibly_sensitive: boolean;
2765
+ possibly_sensitive_editable: boolean;
2766
+ quote_count: number;
2767
+ reply_count: number;
2768
+ retweet_count: number;
2769
+ retweeted: boolean;
2770
+ user_id_str: string;
2771
+ id_str: string;
2772
+ extended_entities?: {
2992
2773
  media: {
2993
2774
  display_url: string;
2994
2775
  expanded_url: string;
@@ -3026,81 +2807,640 @@ export interface CustomSearchTimelineEntry {
3026
2807
  w: number;
3027
2808
  }[];
3028
2809
  };
3029
- orig: {
3030
- faces: {
3031
- x: number;
3032
- y: number;
3033
- h: number;
3034
- w: number;
2810
+ orig: {
2811
+ faces: {
2812
+ x: number;
2813
+ y: number;
2814
+ h: number;
2815
+ w: number;
2816
+ }[];
2817
+ };
2818
+ };
2819
+ sizes: {
2820
+ large: {
2821
+ h: number;
2822
+ w: number;
2823
+ resize: string;
2824
+ };
2825
+ medium: {
2826
+ h: number;
2827
+ w: number;
2828
+ resize: string;
2829
+ };
2830
+ small: {
2831
+ h: number;
2832
+ w: number;
2833
+ resize: string;
2834
+ };
2835
+ thumb: {
2836
+ h: number;
2837
+ w: number;
2838
+ resize: string;
2839
+ };
2840
+ };
2841
+ original_info: {
2842
+ height: number;
2843
+ width: number;
2844
+ focus_rects: {
2845
+ x: number;
2846
+ y: number;
2847
+ w: number;
2848
+ h: number;
2849
+ }[];
2850
+ };
2851
+ }[];
2852
+ };
2853
+ scopes?: {
2854
+ followers: boolean;
2855
+ };
2856
+ };
2857
+ edit_perspective?: {
2858
+ favorited: boolean;
2859
+ retweeted: boolean;
2860
+ };
2861
+ };
2862
+ limitedActionResults?: {
2863
+ limited_actions: {
2864
+ action: string;
2865
+ prompt?: {
2866
+ __typename: string;
2867
+ cta_type: string;
2868
+ headline: {
2869
+ text: string;
2870
+ entities: unknown[];
2871
+ };
2872
+ subtext: {
2873
+ text: string;
2874
+ entities: unknown[];
2875
+ };
2876
+ };
2877
+ }[];
2878
+ };
2879
+ rest_id?: string;
2880
+ core?: {
2881
+ user_results: {
2882
+ result: {
2883
+ __typename: string;
2884
+ id: string;
2885
+ rest_id: string;
2886
+ affiliates_highlighted_label: {};
2887
+ has_graduated_access: boolean;
2888
+ is_blue_verified: boolean;
2889
+ profile_image_shape: string;
2890
+ legacy: {
2891
+ can_dm: boolean;
2892
+ can_media_tag: boolean;
2893
+ created_at: string;
2894
+ default_profile: boolean;
2895
+ default_profile_image: boolean;
2896
+ description: string;
2897
+ entities: {
2898
+ description: {
2899
+ urls: unknown[];
2900
+ };
2901
+ url?: {
2902
+ urls: {
2903
+ display_url: string;
2904
+ expanded_url: string;
2905
+ url: string;
2906
+ indices: number[];
2907
+ }[];
2908
+ };
2909
+ };
2910
+ fast_followers_count: number;
2911
+ favourites_count: number;
2912
+ followers_count: number;
2913
+ friends_count: number;
2914
+ has_custom_timelines: boolean;
2915
+ is_translator: boolean;
2916
+ listed_count: number;
2917
+ location: string;
2918
+ media_count: number;
2919
+ name: string;
2920
+ normal_followers_count: number;
2921
+ pinned_tweet_ids_str: string[];
2922
+ possibly_sensitive: boolean;
2923
+ profile_banner_url: string;
2924
+ profile_image_url_https: string;
2925
+ profile_interstitial_type: string;
2926
+ screen_name: string;
2927
+ statuses_count: number;
2928
+ translator_type: string;
2929
+ url?: string;
2930
+ verified: boolean;
2931
+ want_retweets: boolean;
2932
+ withheld_in_countries: unknown[];
2933
+ };
2934
+ };
2935
+ };
2936
+ };
2937
+ unmention_data?: {};
2938
+ edit_control?: {
2939
+ edit_tweet_ids: string[];
2940
+ editable_until_msecs: string;
2941
+ is_edit_eligible: boolean;
2942
+ edits_remaining: string;
2943
+ };
2944
+ is_translatable?: boolean;
2945
+ views?: {
2946
+ count: string;
2947
+ state: string;
2948
+ };
2949
+ source?: string;
2950
+ legacy?: {
2951
+ bookmark_count: number;
2952
+ bookmarked: boolean;
2953
+ created_at: string;
2954
+ conversation_id_str: string;
2955
+ display_text_range: number[];
2956
+ entities: {
2957
+ hashtags: {
2958
+ indices: number[];
2959
+ text: string;
2960
+ }[];
2961
+ media: {
2962
+ display_url: string;
2963
+ expanded_url: string;
2964
+ id_str: string;
2965
+ indices: number[];
2966
+ media_key: string;
2967
+ media_url_https: string;
2968
+ type: string;
2969
+ url: string;
2970
+ additional_media_info: {
2971
+ monetizable: boolean;
2972
+ };
2973
+ ext_media_availability: {
2974
+ status: string;
2975
+ };
2976
+ sizes: {
2977
+ large: {
2978
+ h: number;
2979
+ w: number;
2980
+ resize: string;
2981
+ };
2982
+ medium: {
2983
+ h: number;
2984
+ w: number;
2985
+ resize: string;
2986
+ };
2987
+ small: {
2988
+ h: number;
2989
+ w: number;
2990
+ resize: string;
2991
+ };
2992
+ thumb: {
2993
+ h: number;
2994
+ w: number;
2995
+ resize: string;
2996
+ };
2997
+ };
2998
+ original_info: {
2999
+ height: number;
3000
+ width: number;
3001
+ focus_rects: unknown[];
3002
+ };
3003
+ video_info: {
3004
+ aspect_ratio: number[];
3005
+ duration_millis: number;
3006
+ variants: {
3007
+ bitrate?: number;
3008
+ content_type: string;
3009
+ url: string;
3010
+ }[];
3011
+ };
3012
+ }[];
3013
+ symbols: unknown[];
3014
+ timestamps: unknown[];
3015
+ urls: unknown[];
3016
+ user_mentions: unknown[];
3017
+ };
3018
+ extended_entities: {
3019
+ media: {
3020
+ display_url: string;
3021
+ expanded_url: string;
3022
+ id_str: string;
3023
+ indices: number[];
3024
+ media_key: string;
3025
+ media_url_https: string;
3026
+ type: string;
3027
+ url: string;
3028
+ additional_media_info: {
3029
+ monetizable: boolean;
3030
+ };
3031
+ ext_media_availability: {
3032
+ status: string;
3033
+ };
3034
+ sizes: {
3035
+ large: {
3036
+ h: number;
3037
+ w: number;
3038
+ resize: string;
3039
+ };
3040
+ medium: {
3041
+ h: number;
3042
+ w: number;
3043
+ resize: string;
3044
+ };
3045
+ small: {
3046
+ h: number;
3047
+ w: number;
3048
+ resize: string;
3049
+ };
3050
+ thumb: {
3051
+ h: number;
3052
+ w: number;
3053
+ resize: string;
3054
+ };
3055
+ };
3056
+ original_info: {
3057
+ height: number;
3058
+ width: number;
3059
+ focus_rects: unknown[];
3060
+ };
3061
+ video_info: {
3062
+ aspect_ratio: number[];
3063
+ duration_millis: number;
3064
+ variants: {
3065
+ bitrate?: number;
3066
+ content_type: string;
3067
+ url: string;
3068
+ }[];
3069
+ };
3070
+ }[];
3071
+ };
3072
+ favorite_count: number;
3073
+ favorited: boolean;
3074
+ full_text: string;
3075
+ is_quote_status: boolean;
3076
+ lang: string;
3077
+ possibly_sensitive: boolean;
3078
+ possibly_sensitive_editable: boolean;
3079
+ quote_count: number;
3080
+ reply_count: number;
3081
+ retweet_count: number;
3082
+ retweeted: boolean;
3083
+ user_id_str: string;
3084
+ id_str: string;
3085
+ in_reply_to_screen_name?: string;
3086
+ in_reply_to_status_id_str?: string;
3087
+ in_reply_to_user_id_str?: string;
3088
+ };
3089
+ };
3090
+ };
3091
+ edit_perspective?: {
3092
+ favorited: boolean;
3093
+ retweeted: boolean;
3094
+ };
3095
+ author_community_relationship?: {
3096
+ community_results: {
3097
+ result: {
3098
+ __typename: string;
3099
+ id_str: string;
3100
+ name: string;
3101
+ description: string;
3102
+ created_at: number;
3103
+ actions: {
3104
+ delete_action_result: {
3105
+ __typename: string;
3106
+ reason: string;
3107
+ };
3108
+ join_action_result: {
3109
+ __typename: string;
3110
+ reason?: string;
3111
+ message?: string;
3112
+ };
3113
+ leave_action_result: {
3114
+ __typename: string;
3115
+ reason: string;
3116
+ message: string;
3117
+ };
3118
+ pin_action_result: {
3119
+ __typename: string;
3120
+ };
3121
+ };
3122
+ admin_results: {
3123
+ result: {
3124
+ __typename: string;
3125
+ id: string;
3126
+ rest_id: string;
3127
+ affiliates_highlighted_label: {};
3128
+ has_graduated_access: boolean;
3129
+ is_blue_verified: boolean;
3130
+ profile_image_shape: string;
3131
+ legacy: {
3132
+ can_dm: boolean;
3133
+ can_media_tag: boolean;
3134
+ created_at: string;
3135
+ default_profile: boolean;
3136
+ default_profile_image: boolean;
3137
+ description: string;
3138
+ entities: {
3139
+ description: {
3140
+ urls: {
3141
+ display_url: string;
3142
+ expanded_url: string;
3143
+ url: string;
3144
+ indices: number[];
3145
+ }[];
3146
+ };
3147
+ url?: {
3148
+ urls: {
3149
+ display_url: string;
3150
+ expanded_url: string;
3151
+ url: string;
3152
+ indices: number[];
3153
+ }[];
3154
+ };
3155
+ };
3156
+ fast_followers_count: number;
3157
+ favourites_count: number;
3158
+ followers_count: number;
3159
+ friends_count: number;
3160
+ has_custom_timelines: boolean;
3161
+ is_translator: boolean;
3162
+ listed_count: number;
3163
+ location: string;
3164
+ media_count: number;
3165
+ name: string;
3166
+ normal_followers_count: number;
3167
+ pinned_tweet_ids_str: string[];
3168
+ possibly_sensitive: boolean;
3169
+ profile_banner_url: string;
3170
+ profile_image_url_https: string;
3171
+ profile_interstitial_type: string;
3172
+ screen_name: string;
3173
+ statuses_count: number;
3174
+ translator_type: string;
3175
+ url?: string;
3176
+ verified: boolean;
3177
+ want_retweets: boolean;
3178
+ withheld_in_countries: unknown[];
3179
+ };
3180
+ professional?: {
3181
+ rest_id: string;
3182
+ professional_type: string;
3183
+ category: unknown[];
3184
+ };
3185
+ };
3186
+ };
3187
+ creator_results: {
3188
+ result: {
3189
+ __typename: string;
3190
+ id: string;
3191
+ rest_id: string;
3192
+ affiliates_highlighted_label: {};
3193
+ has_graduated_access: boolean;
3194
+ is_blue_verified: boolean;
3195
+ profile_image_shape: string;
3196
+ legacy: {
3197
+ can_dm: boolean;
3198
+ can_media_tag: boolean;
3199
+ created_at: string;
3200
+ default_profile: boolean;
3201
+ default_profile_image: boolean;
3202
+ description: string;
3203
+ entities: {
3204
+ description: {
3205
+ urls: {
3206
+ display_url: string;
3207
+ expanded_url: string;
3208
+ url: string;
3209
+ indices: number[];
3210
+ }[];
3211
+ };
3212
+ url?: {
3213
+ urls: {
3214
+ display_url: string;
3215
+ expanded_url: string;
3216
+ url: string;
3217
+ indices: number[];
3218
+ }[];
3219
+ };
3220
+ };
3221
+ fast_followers_count: number;
3222
+ favourites_count: number;
3223
+ followers_count: number;
3224
+ friends_count: number;
3225
+ has_custom_timelines: boolean;
3226
+ is_translator: boolean;
3227
+ listed_count: number;
3228
+ location: string;
3229
+ media_count: number;
3230
+ name: string;
3231
+ normal_followers_count: number;
3232
+ pinned_tweet_ids_str: string[];
3233
+ possibly_sensitive: boolean;
3234
+ profile_banner_url: string;
3235
+ profile_image_url_https: string;
3236
+ profile_interstitial_type: string;
3237
+ screen_name: string;
3238
+ statuses_count: number;
3239
+ translator_type: string;
3240
+ url?: string;
3241
+ verified: boolean;
3242
+ want_retweets: boolean;
3243
+ withheld_in_countries: unknown[];
3244
+ };
3245
+ professional?: {
3246
+ rest_id: string;
3247
+ professional_type: string;
3248
+ category: unknown[];
3249
+ };
3250
+ };
3251
+ };
3252
+ invites_result: {
3253
+ __typename: string;
3254
+ reason: string;
3255
+ message: string;
3256
+ };
3257
+ join_policy: string;
3258
+ invites_policy: string;
3259
+ is_pinned: boolean;
3260
+ members_facepile_results: {
3261
+ result: {
3262
+ __typename: string;
3263
+ id: string;
3264
+ rest_id: string;
3265
+ affiliates_highlighted_label: {};
3266
+ has_graduated_access: boolean;
3267
+ is_blue_verified: boolean;
3268
+ profile_image_shape: string;
3269
+ legacy: {
3270
+ can_dm: boolean;
3271
+ can_media_tag: boolean;
3272
+ created_at: string;
3273
+ default_profile: boolean;
3274
+ default_profile_image: boolean;
3275
+ description: string;
3276
+ entities: {
3277
+ description: {
3278
+ urls: {
3279
+ display_url: string;
3280
+ expanded_url: string;
3281
+ url: string;
3282
+ indices: number[];
3283
+ }[];
3284
+ };
3285
+ url?: {
3286
+ urls: {
3287
+ display_url: string;
3288
+ expanded_url: string;
3289
+ url: string;
3290
+ indices: number[];
3035
3291
  }[];
3036
3292
  };
3037
3293
  };
3038
- sizes: {
3039
- large: {
3040
- h: number;
3041
- w: number;
3042
- resize: string;
3043
- };
3044
- medium: {
3045
- h: number;
3046
- w: number;
3047
- resize: string;
3048
- };
3049
- small: {
3050
- h: number;
3051
- w: number;
3052
- resize: string;
3294
+ fast_followers_count: number;
3295
+ favourites_count: number;
3296
+ followers_count: number;
3297
+ friends_count: number;
3298
+ has_custom_timelines: boolean;
3299
+ is_translator: boolean;
3300
+ listed_count: number;
3301
+ location: string;
3302
+ media_count: number;
3303
+ name: string;
3304
+ normal_followers_count: number;
3305
+ pinned_tweet_ids_str: string[];
3306
+ possibly_sensitive: boolean;
3307
+ profile_banner_url?: string;
3308
+ profile_image_url_https: string;
3309
+ profile_interstitial_type: string;
3310
+ screen_name: string;
3311
+ statuses_count: number;
3312
+ translator_type: string;
3313
+ url?: string;
3314
+ verified: boolean;
3315
+ want_retweets: boolean;
3316
+ withheld_in_countries: unknown[];
3317
+ };
3318
+ professional?: {
3319
+ rest_id: string;
3320
+ professional_type: string;
3321
+ category: {
3322
+ id: number;
3323
+ name: string;
3324
+ icon_name: string;
3325
+ }[];
3326
+ };
3327
+ };
3328
+ }[];
3329
+ moderator_count: number;
3330
+ member_count: number;
3331
+ role: string;
3332
+ rules: {
3333
+ rest_id: string;
3334
+ name: string;
3335
+ description?: string;
3336
+ }[];
3337
+ custom_banner_media: {
3338
+ media_info: {
3339
+ color_info: {
3340
+ palette: {
3341
+ rgb: {
3342
+ red: number;
3343
+ green: number;
3344
+ blue: number;
3053
3345
  };
3054
- thumb: {
3055
- h: number;
3056
- w: number;
3057
- resize: string;
3346
+ percentage: number;
3347
+ }[];
3348
+ };
3349
+ original_img_url: string;
3350
+ original_img_width: number;
3351
+ original_img_height: number;
3352
+ salient_rect: {
3353
+ left: number;
3354
+ top: number;
3355
+ width: number;
3356
+ height: number;
3357
+ };
3358
+ };
3359
+ };
3360
+ default_banner_media: {
3361
+ media_info: {
3362
+ color_info: {
3363
+ palette: {
3364
+ rgb: {
3365
+ red: number;
3366
+ green: number;
3367
+ blue: number;
3058
3368
  };
3059
- };
3060
- original_info: {
3061
- height: number;
3062
- width: number;
3063
- focus_rects: {
3064
- x: number;
3065
- y: number;
3066
- w: number;
3067
- h: number;
3068
- }[];
3069
- };
3070
- }[];
3369
+ percentage: number;
3370
+ }[];
3371
+ };
3372
+ original_img_url: string;
3373
+ original_img_width: number;
3374
+ original_img_height: number;
3071
3375
  };
3072
- favorite_count: number;
3073
- favorited: boolean;
3074
- full_text: string;
3075
- is_quote_status: boolean;
3076
- lang: string;
3077
- limited_actions: string;
3078
- possibly_sensitive: boolean;
3079
- possibly_sensitive_editable: boolean;
3080
- quote_count: number;
3081
- reply_count: number;
3082
- retweet_count: number;
3083
- retweeted: boolean;
3084
- user_id_str: string;
3085
- id_str: string;
3086
3376
  };
3087
- };
3088
- limitedActionResults?: {
3089
- limited_actions: {
3090
- action: string;
3091
- prompt: {
3377
+ viewer_relationship: {
3378
+ moderation_state: {
3092
3379
  __typename: string;
3093
- cta_type: string;
3094
- headline: {
3095
- text: string;
3096
- entities: unknown[];
3097
- };
3098
- subtext: {
3099
- text: string;
3100
- entities: unknown[];
3380
+ };
3381
+ };
3382
+ join_requests_result: {
3383
+ __typename: string;
3384
+ };
3385
+ default_theme?: string;
3386
+ custom_theme?: string;
3387
+ question?: string;
3388
+ };
3389
+ };
3390
+ role: string;
3391
+ user_results: {
3392
+ result: {
3393
+ __typename: string;
3394
+ id: string;
3395
+ rest_id: string;
3396
+ affiliates_highlighted_label: {};
3397
+ has_graduated_access: boolean;
3398
+ is_blue_verified: boolean;
3399
+ profile_image_shape: string;
3400
+ legacy: {
3401
+ can_dm: boolean;
3402
+ can_media_tag: boolean;
3403
+ created_at: string;
3404
+ default_profile: boolean;
3405
+ default_profile_image: boolean;
3406
+ description: string;
3407
+ entities: {
3408
+ description: {
3409
+ urls: unknown[];
3101
3410
  };
3102
3411
  };
3103
- }[];
3412
+ fast_followers_count: number;
3413
+ favourites_count: number;
3414
+ followers_count: number;
3415
+ friends_count: number;
3416
+ has_custom_timelines: boolean;
3417
+ is_translator: boolean;
3418
+ listed_count: number;
3419
+ location: string;
3420
+ media_count: number;
3421
+ name: string;
3422
+ normal_followers_count: number;
3423
+ pinned_tweet_ids_str: string[];
3424
+ possibly_sensitive: boolean;
3425
+ profile_banner_url: string;
3426
+ profile_image_url_https: string;
3427
+ profile_interstitial_type: string;
3428
+ screen_name: string;
3429
+ statuses_count: number;
3430
+ translator_type: string;
3431
+ verified: boolean;
3432
+ want_retweets: boolean;
3433
+ withheld_in_countries: unknown[];
3434
+ };
3435
+ professional?: {
3436
+ rest_id: string;
3437
+ professional_type: string;
3438
+ category: {
3439
+ id: number;
3440
+ name: string;
3441
+ icon_name: string;
3442
+ }[];
3443
+ };
3104
3444
  };
3105
3445
  };
3106
3446
  };
@@ -3133,7 +3473,11 @@ export interface CustomSearchTimelineEntry {
3133
3473
  indices: number[];
3134
3474
  text: string;
3135
3475
  }[];
3136
- symbols: unknown[];
3476
+ symbols: {
3477
+ indices: number[];
3478
+ text: string;
3479
+ }[];
3480
+ timestamps?: unknown[];
3137
3481
  urls: {
3138
3482
  display_url: string;
3139
3483
  expanded_url: string;
@@ -3146,7 +3490,6 @@ export interface CustomSearchTimelineEntry {
3146
3490
  screen_name: string;
3147
3491
  indices: number[];
3148
3492
  }[];
3149
- timestamps?: unknown[];
3150
3493
  };
3151
3494
  richtext?: {
3152
3495
  richtext_tags: {
@@ -3161,6 +3504,17 @@ export interface CustomSearchTimelineEntry {
3161
3504
  };
3162
3505
  };
3163
3506
  };
3507
+ previous_counts?: {
3508
+ bookmark_count: number;
3509
+ favorite_count: number;
3510
+ quote_count: number;
3511
+ reply_count: number;
3512
+ retweet_count: number;
3513
+ };
3514
+ edit_perspective?: {
3515
+ favorited: boolean;
3516
+ retweeted: boolean;
3517
+ };
3164
3518
  superFollowsReplyUserResult?: {
3165
3519
  result: {
3166
3520
  __typename: string;