@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
@@ -9,12 +9,12 @@ export interface CustomUserLikeTweetEntry {
9
9
  itemType: string;
10
10
  __typename: string;
11
11
  tweet_results: {
12
- result?: {
12
+ result: {
13
13
  __typename: string;
14
14
  rest_id?: string;
15
15
  core?: {
16
16
  user_results: {
17
- result?: {
17
+ result: {
18
18
  __typename: string;
19
19
  id: string;
20
20
  rest_id: string;
@@ -208,7 +208,7 @@ export interface CustomUserLikeTweetEntry {
208
208
  };
209
209
  video_info?: {
210
210
  aspect_ratio: number[];
211
- duration_millis?: number;
211
+ duration_millis: number;
212
212
  variants: {
213
213
  bitrate?: number;
214
214
  content_type: string;
@@ -217,7 +217,7 @@ export interface CustomUserLikeTweetEntry {
217
217
  };
218
218
  ext_alt_text?: string;
219
219
  sensitive_media_warning?: {
220
- adult_content?: boolean;
220
+ adult_content: boolean;
221
221
  other: boolean;
222
222
  };
223
223
  source_status_id_str?: string;
@@ -330,7 +330,7 @@ export interface CustomUserLikeTweetEntry {
330
330
  };
331
331
  video_info?: {
332
332
  aspect_ratio: number[];
333
- duration_millis?: number;
333
+ duration_millis: number;
334
334
  variants: {
335
335
  bitrate?: number;
336
336
  content_type: string;
@@ -339,7 +339,7 @@ export interface CustomUserLikeTweetEntry {
339
339
  };
340
340
  ext_alt_text?: string;
341
341
  sensitive_media_warning?: {
342
- adult_content?: boolean;
342
+ adult_content: boolean;
343
343
  other: boolean;
344
344
  };
345
345
  source_status_id_str?: string;
@@ -421,7 +421,7 @@ export interface CustomUserLikeTweetEntry {
421
421
  normal_followers_count: number;
422
422
  pinned_tweet_ids_str: string[];
423
423
  possibly_sensitive: boolean;
424
- profile_banner_url?: string;
424
+ profile_banner_url: string;
425
425
  profile_image_url_https: string;
426
426
  profile_interstitial_type: string;
427
427
  screen_name: string;
@@ -432,7 +432,6 @@ export interface CustomUserLikeTweetEntry {
432
432
  want_retweets: boolean;
433
433
  withheld_in_countries: unknown[];
434
434
  following?: boolean;
435
- verified_type?: string;
436
435
  };
437
436
  professional?: {
438
437
  rest_id: string;
@@ -482,7 +481,7 @@ export interface CustomUserLikeTweetEntry {
482
481
  ext_media_availability: {
483
482
  status: string;
484
483
  };
485
- features?: {
484
+ features: {
486
485
  large: {
487
486
  faces: {
488
487
  x: number;
@@ -515,14 +514,6 @@ export interface CustomUserLikeTweetEntry {
515
514
  w: number;
516
515
  }[];
517
516
  };
518
- all?: {
519
- tags: {
520
- user_id: string;
521
- name: string;
522
- screen_name: string;
523
- type: string;
524
- }[];
525
- };
526
517
  };
527
518
  sizes: {
528
519
  large: {
@@ -556,18 +547,6 @@ export interface CustomUserLikeTweetEntry {
556
547
  h: number;
557
548
  }[];
558
549
  };
559
- additional_media_info?: {
560
- monetizable: boolean;
561
- };
562
- video_info?: {
563
- aspect_ratio: number[];
564
- duration_millis: number;
565
- variants: {
566
- bitrate?: number;
567
- content_type: string;
568
- url: string;
569
- }[];
570
- };
571
550
  }[];
572
551
  symbols: unknown[];
573
552
  timestamps?: unknown[];
@@ -577,12 +556,7 @@ export interface CustomUserLikeTweetEntry {
577
556
  url: string;
578
557
  indices: number[];
579
558
  }[];
580
- user_mentions: {
581
- id_str: string;
582
- name: string;
583
- screen_name: string;
584
- indices: number[];
585
- }[];
559
+ user_mentions: unknown[];
586
560
  };
587
561
  extended_entities?: {
588
562
  media: {
@@ -597,7 +571,7 @@ export interface CustomUserLikeTweetEntry {
597
571
  ext_media_availability: {
598
572
  status: string;
599
573
  };
600
- features?: {
574
+ features: {
601
575
  large: {
602
576
  faces: {
603
577
  x: number;
@@ -630,14 +604,6 @@ export interface CustomUserLikeTweetEntry {
630
604
  w: number;
631
605
  }[];
632
606
  };
633
- all?: {
634
- tags: {
635
- user_id: string;
636
- name: string;
637
- screen_name: string;
638
- type: string;
639
- }[];
640
- };
641
607
  };
642
608
  sizes: {
643
609
  large: {
@@ -671,18 +637,6 @@ export interface CustomUserLikeTweetEntry {
671
637
  h: number;
672
638
  }[];
673
639
  };
674
- additional_media_info?: {
675
- monetizable: boolean;
676
- };
677
- video_info?: {
678
- aspect_ratio: number[];
679
- duration_millis: number;
680
- variants: {
681
- bitrate?: number;
682
- content_type: string;
683
- url: string;
684
- }[];
685
- };
686
640
  }[];
687
641
  };
688
642
  favorite_count: number;
@@ -701,12 +655,6 @@ export interface CustomUserLikeTweetEntry {
701
655
  retweeted: boolean;
702
656
  user_id_str: string;
703
657
  id_str: string;
704
- quoted_status_id_str?: string;
705
- quoted_status_permalink?: {
706
- url: string;
707
- expanded: string;
708
- display: string;
709
- };
710
658
  };
711
659
  tweet?: {
712
660
  rest_id: string;
@@ -721,7 +669,7 @@ export interface CustomUserLikeTweetEntry {
721
669
  is_blue_verified: boolean;
722
670
  profile_image_shape: string;
723
671
  legacy: {
724
- blocking?: boolean;
672
+ blocking: boolean;
725
673
  can_dm: boolean;
726
674
  can_media_tag: boolean;
727
675
  created_at: string;
@@ -784,7 +732,7 @@ export interface CustomUserLikeTweetEntry {
784
732
  };
785
733
  };
786
734
  unmention_data: {};
787
- unified_card?: {
735
+ unified_card: {
788
736
  card_fetch_state: string;
789
737
  };
790
738
  edit_control: {
@@ -794,8 +742,8 @@ export interface CustomUserLikeTweetEntry {
794
742
  edits_remaining: string;
795
743
  };
796
744
  is_translatable: boolean;
797
- views?: {
798
- count?: string;
745
+ views: {
746
+ count: string;
799
747
  state: string;
800
748
  };
801
749
  source: string;
@@ -806,7 +754,7 @@ export interface CustomUserLikeTweetEntry {
806
754
  conversation_id_str: string;
807
755
  display_text_range: number[];
808
756
  entities: {
809
- media?: {
757
+ media: {
810
758
  display_url: string;
811
759
  expanded_url: string;
812
760
  ext_alt_text?: string;
@@ -899,7 +847,7 @@ export interface CustomUserLikeTweetEntry {
899
847
  }[];
900
848
  symbols: unknown[];
901
849
  };
902
- extended_entities?: {
850
+ extended_entities: {
903
851
  media: {
904
852
  display_url: string;
905
853
  expanded_url: string;
@@ -994,124 +942,6 @@ export interface CustomUserLikeTweetEntry {
994
942
  retweeted: boolean;
995
943
  user_id_str: string;
996
944
  id_str: string;
997
- conversation_control?: {
998
- policy: string;
999
- conversation_owner_results: {
1000
- result: {
1001
- __typename: string;
1002
- legacy: {
1003
- screen_name: string;
1004
- };
1005
- };
1006
- };
1007
- };
1008
- limited_actions?: string;
1009
- };
1010
- card?: {
1011
- rest_id: string;
1012
- legacy: {
1013
- binding_values: {
1014
- key: string;
1015
- value: {
1016
- image_value?: {
1017
- height: number;
1018
- width: number;
1019
- url: string;
1020
- };
1021
- type: string;
1022
- string_value?: string;
1023
- scribe_key?: string;
1024
- user_value?: {
1025
- id_str: string;
1026
- path: unknown[];
1027
- };
1028
- image_color_value?: {
1029
- palette: {
1030
- rgb: {
1031
- blue: number;
1032
- green: number;
1033
- red: number;
1034
- };
1035
- percentage: number;
1036
- }[];
1037
- };
1038
- };
1039
- }[];
1040
- card_platform: {
1041
- platform: {
1042
- audience: {
1043
- name: string;
1044
- };
1045
- device: {
1046
- name: string;
1047
- version: string;
1048
- };
1049
- };
1050
- };
1051
- name: string;
1052
- url: string;
1053
- user_refs_results: {
1054
- result: {
1055
- __typename: string;
1056
- id: string;
1057
- rest_id: string;
1058
- affiliates_highlighted_label: {};
1059
- has_graduated_access: boolean;
1060
- is_blue_verified: boolean;
1061
- profile_image_shape: string;
1062
- legacy: {
1063
- blocking: boolean;
1064
- can_dm: boolean;
1065
- can_media_tag: boolean;
1066
- created_at: string;
1067
- default_profile: boolean;
1068
- default_profile_image: boolean;
1069
- description: string;
1070
- entities: {
1071
- description: {
1072
- urls: {
1073
- display_url: string;
1074
- expanded_url: string;
1075
- url: string;
1076
- indices: number[];
1077
- }[];
1078
- };
1079
- url: {
1080
- urls: {
1081
- display_url: string;
1082
- expanded_url: string;
1083
- url: string;
1084
- indices: number[];
1085
- }[];
1086
- };
1087
- };
1088
- fast_followers_count: number;
1089
- favourites_count: number;
1090
- followers_count: number;
1091
- friends_count: number;
1092
- has_custom_timelines: boolean;
1093
- is_translator: boolean;
1094
- listed_count: number;
1095
- location: string;
1096
- media_count: number;
1097
- name: string;
1098
- normal_followers_count: number;
1099
- pinned_tweet_ids_str: string[];
1100
- possibly_sensitive: boolean;
1101
- profile_banner_url: string;
1102
- profile_image_url_https: string;
1103
- profile_interstitial_type: string;
1104
- screen_name: string;
1105
- statuses_count: number;
1106
- translator_type: string;
1107
- url: string;
1108
- verified: boolean;
1109
- want_retweets: boolean;
1110
- withheld_in_countries: unknown[];
1111
- };
1112
- };
1113
- }[];
1114
- };
1115
945
  };
1116
946
  };
1117
947
  tweetInterstitial?: {
@@ -1184,7 +1014,7 @@ export interface CustomUserLikeTweetEntry {
1184
1014
  is_blue_verified: boolean;
1185
1015
  profile_image_shape: string;
1186
1016
  legacy: {
1187
- blocking?: boolean;
1017
+ blocking: boolean;
1188
1018
  can_dm: boolean;
1189
1019
  can_media_tag: boolean;
1190
1020
  created_at: string;
@@ -1193,12 +1023,7 @@ export interface CustomUserLikeTweetEntry {
1193
1023
  description: string;
1194
1024
  entities: {
1195
1025
  description: {
1196
- urls: {
1197
- display_url: string;
1198
- expanded_url: string;
1199
- url: string;
1200
- indices: number[];
1201
- }[];
1026
+ urls: unknown[];
1202
1027
  };
1203
1028
  url: {
1204
1029
  urls: {
@@ -1220,7 +1045,7 @@ export interface CustomUserLikeTweetEntry {
1220
1045
  media_count: number;
1221
1046
  name: string;
1222
1047
  normal_followers_count: number;
1223
- pinned_tweet_ids_str: string[];
1048
+ pinned_tweet_ids_str: unknown[];
1224
1049
  possibly_sensitive: boolean;
1225
1050
  profile_banner_url: string;
1226
1051
  profile_image_url_https: string;
@@ -1230,11 +1055,11 @@ export interface CustomUserLikeTweetEntry {
1230
1055
  translator_type: string;
1231
1056
  url: string;
1232
1057
  verified: boolean;
1233
- verified_type?: string;
1058
+ verified_type: string;
1234
1059
  want_retweets: boolean;
1235
1060
  withheld_in_countries: unknown[];
1236
1061
  };
1237
- professional?: {
1062
+ professional: {
1238
1063
  rest_id: string;
1239
1064
  professional_type: string;
1240
1065
  category: {
@@ -1247,34 +1072,11 @@ export interface CustomUserLikeTweetEntry {
1247
1072
  }[];
1248
1073
  };
1249
1074
  };
1250
- quotedRefResult?: {
1251
- result: {
1252
- __typename: string;
1253
- rest_id: string;
1254
- };
1255
- };
1256
- limitedActionResults?: {
1257
- limited_actions: {
1258
- action: string;
1259
- prompt: {
1260
- __typename: string;
1261
- cta_type: string;
1262
- headline: {
1263
- text: string;
1264
- entities: unknown[];
1265
- };
1266
- subtext: {
1267
- text: string;
1268
- entities: unknown[];
1269
- };
1270
- };
1271
- }[];
1272
- };
1273
1075
  };
1274
1076
  };
1275
1077
  card?: {
1276
1078
  rest_id: string;
1277
- legacy?: {
1079
+ legacy: {
1278
1080
  binding_values: {
1279
1081
  key: string;
1280
1082
  value: {
@@ -1397,7 +1199,7 @@ export interface CustomUserLikeTweetEntry {
1397
1199
  rest_id: string;
1398
1200
  core: {
1399
1201
  user_results: {
1400
- result?: {
1202
+ result: {
1401
1203
  __typename: string;
1402
1204
  id: string;
1403
1205
  rest_id: string;
@@ -1456,37 +1258,31 @@ export interface CustomUserLikeTweetEntry {
1456
1258
  followed_by?: boolean;
1457
1259
  following?: boolean;
1458
1260
  muting?: boolean;
1459
- protected?: boolean;
1460
- };
1461
- professional?: {
1462
- rest_id: string;
1463
- professional_type: string;
1464
- category: unknown[];
1465
1261
  };
1466
1262
  };
1467
1263
  };
1468
1264
  };
1469
- unmention_data?: {};
1265
+ unmention_data: {};
1470
1266
  edit_control: {
1471
1267
  edit_tweet_ids: string[];
1472
1268
  editable_until_msecs: string;
1473
1269
  is_edit_eligible: boolean;
1474
1270
  edits_remaining: string;
1475
1271
  };
1476
- is_translatable?: boolean;
1272
+ is_translatable: boolean;
1477
1273
  views: {
1478
1274
  count: string;
1479
1275
  state: string;
1480
1276
  };
1481
1277
  source: string;
1482
- legacy?: {
1278
+ legacy: {
1483
1279
  bookmark_count: number;
1484
1280
  bookmarked: boolean;
1485
1281
  created_at: string;
1486
1282
  conversation_control?: {
1487
1283
  policy: string;
1488
1284
  conversation_owner_results: {
1489
- result?: {
1285
+ result: {
1490
1286
  __typename: string;
1491
1287
  legacy: {
1492
1288
  screen_name: string;
@@ -1576,18 +1372,8 @@ export interface CustomUserLikeTweetEntry {
1576
1372
  }[];
1577
1373
  };
1578
1374
  }[];
1579
- user_mentions: {
1580
- id_str: string;
1581
- name: string;
1582
- screen_name: string;
1583
- indices: number[];
1584
- }[];
1585
- urls: {
1586
- display_url: string;
1587
- expanded_url: string;
1588
- url: string;
1589
- indices: number[];
1590
- }[];
1375
+ user_mentions: unknown[];
1376
+ urls: unknown[];
1591
1377
  hashtags: {
1592
1378
  indices: number[];
1593
1379
  text: string;
@@ -1689,130 +1475,6 @@ export interface CustomUserLikeTweetEntry {
1689
1475
  retweeted: boolean;
1690
1476
  user_id_str: string;
1691
1477
  id_str: string;
1692
- place?: {
1693
- bounding_box: {
1694
- coordinates: number[][][];
1695
- type: string;
1696
- };
1697
- country: string;
1698
- country_code: string;
1699
- full_name: string;
1700
- name: string;
1701
- id: string;
1702
- place_type: string;
1703
- url: string;
1704
- };
1705
- in_reply_to_screen_name?: string;
1706
- in_reply_to_user_id_str?: string;
1707
- };
1708
- card?: {
1709
- rest_id: string;
1710
- legacy: {
1711
- binding_values: {
1712
- key: string;
1713
- value: {
1714
- image_value?: {
1715
- height: number;
1716
- width: number;
1717
- url: string;
1718
- };
1719
- type: string;
1720
- string_value?: string;
1721
- scribe_key?: string;
1722
- user_value?: {
1723
- id_str: string;
1724
- path: unknown[];
1725
- };
1726
- image_color_value?: {
1727
- palette: {
1728
- rgb: {
1729
- blue: number;
1730
- green: number;
1731
- red: number;
1732
- };
1733
- percentage: number;
1734
- }[];
1735
- };
1736
- };
1737
- }[];
1738
- card_platform: {
1739
- platform: {
1740
- audience: {
1741
- name: string;
1742
- };
1743
- device: {
1744
- name: string;
1745
- version: string;
1746
- };
1747
- };
1748
- };
1749
- name: string;
1750
- url: string;
1751
- user_refs_results: {
1752
- result: {
1753
- __typename: string;
1754
- id: string;
1755
- rest_id: string;
1756
- affiliates_highlighted_label: {};
1757
- has_graduated_access: boolean;
1758
- is_blue_verified: boolean;
1759
- profile_image_shape: string;
1760
- legacy: {
1761
- following: boolean;
1762
- can_dm: boolean;
1763
- can_media_tag: boolean;
1764
- created_at: string;
1765
- default_profile: boolean;
1766
- default_profile_image: boolean;
1767
- description: string;
1768
- entities: {
1769
- description: {
1770
- urls: {
1771
- display_url: string;
1772
- expanded_url: string;
1773
- url: string;
1774
- indices: number[];
1775
- }[];
1776
- };
1777
- url: {
1778
- urls: {
1779
- display_url: string;
1780
- expanded_url: string;
1781
- url: string;
1782
- indices: number[];
1783
- }[];
1784
- };
1785
- };
1786
- fast_followers_count: number;
1787
- favourites_count: number;
1788
- followers_count: number;
1789
- friends_count: number;
1790
- has_custom_timelines: boolean;
1791
- is_translator: boolean;
1792
- listed_count: number;
1793
- location: string;
1794
- media_count: number;
1795
- name: string;
1796
- normal_followers_count: number;
1797
- pinned_tweet_ids_str: string[];
1798
- possibly_sensitive: boolean;
1799
- profile_banner_url: string;
1800
- profile_image_url_https: string;
1801
- profile_interstitial_type: string;
1802
- screen_name: string;
1803
- statuses_count: number;
1804
- translator_type: string;
1805
- url: string;
1806
- verified: boolean;
1807
- want_retweets: boolean;
1808
- withheld_in_countries: unknown[];
1809
- };
1810
- };
1811
- }[];
1812
- };
1813
- };
1814
- unified_card?: {
1815
- card_fetch_state: string;
1816
1478
  };
1817
1479
  };
1818
1480
  limitedActionResults?: {
@@ -1862,10 +1524,7 @@ export interface CustomUserLikeTweetEntry {
1862
1524
  entity_set: {
1863
1525
  user_mentions: unknown[];
1864
1526
  urls: unknown[];
1865
- hashtags: {
1866
- indices: number[];
1867
- text: string;
1868
- }[];
1527
+ hashtags: unknown[];
1869
1528
  symbols: unknown[];
1870
1529
  };
1871
1530
  richtext?: {