@book000/twitterts 0.26.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/converter.d.ts +2 -2
- package/dist/converter.d.ts.map +1 -1
- package/dist/converter.js +4 -4
- package/dist/converter.js.map +1 -1
- package/dist/generate-types.js +1 -1
- package/dist/generate-types.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +2 -2
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts +42 -8
- package/dist/models/responses/custom/custom-timeline-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts +1 -0
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-object.d.ts +60 -17
- package/dist/models/responses/custom/custom-tweet-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts +103 -2
- package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts +1 -0
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/endpoints.d.ts +5 -2
- package/dist/models/responses/endpoints.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +4 -4
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/follow-host-button-query-success.d.ts +19 -0
- package/dist/models/responses/graphql/get/follow-host-button-query-success.d.ts.map +1 -0
- package/dist/models/responses/graphql/get/follow-host-button-query-success.js +4 -0
- package/dist/models/responses/graphql/get/follow-host-button-query-success.js.map +1 -0
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +27 -3
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts +283 -13
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/likes-success.d.ts +103 -2
- package/dist/models/responses/graphql/get/likes-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts +2 -2
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts +1 -0
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +11 -2
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts +508 -32
- package/dist/models/responses/graphql/post/home-timeline-success.d.ts.map +1 -1
- package/dist/parser/home-timeline-parser.d.ts.map +1 -1
- package/dist/parser/search-timeline.d.ts.map +1 -1
- package/dist/parser/user-like-tweets.d.ts.map +1 -1
- package/dist/parser/user-tweets.d.ts.map +1 -1
- package/dist/scraper.d.ts.map +1 -1
- package/dist/scraper.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/twitter.d.ts +13 -9
- package/dist/twitter.d.ts.map +1 -1
- package/dist/twitter.js +2 -1
- package/dist/twitter.js.map +1 -1
- package/package.json +2 -2
|
@@ -254,7 +254,7 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
254
254
|
rest_id: string;
|
|
255
255
|
affiliates_highlighted_label: {
|
|
256
256
|
label?: {
|
|
257
|
-
url
|
|
257
|
+
url?: {
|
|
258
258
|
url: string;
|
|
259
259
|
urlType: string;
|
|
260
260
|
};
|
|
@@ -263,7 +263,24 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
263
263
|
};
|
|
264
264
|
description: string;
|
|
265
265
|
userLabelType: string;
|
|
266
|
-
userLabelDisplayType
|
|
266
|
+
userLabelDisplayType?: string;
|
|
267
|
+
longDescription?: {
|
|
268
|
+
text: string;
|
|
269
|
+
entities: {
|
|
270
|
+
fromIndex: number;
|
|
271
|
+
toIndex: number;
|
|
272
|
+
ref: {
|
|
273
|
+
type: string;
|
|
274
|
+
screen_name: string;
|
|
275
|
+
mention_results: {
|
|
276
|
+
result: {
|
|
277
|
+
__typename: string;
|
|
278
|
+
reason: string;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
}[];
|
|
283
|
+
};
|
|
267
284
|
};
|
|
268
285
|
};
|
|
269
286
|
has_graduated_access: boolean;
|
|
@@ -539,6 +556,11 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
539
556
|
};
|
|
540
557
|
};
|
|
541
558
|
};
|
|
559
|
+
call_to_actions?: {
|
|
560
|
+
watch_now: {
|
|
561
|
+
url: string;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
542
564
|
};
|
|
543
565
|
mediaStats?: {
|
|
544
566
|
viewCount: number;
|
|
@@ -682,7 +704,11 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
682
704
|
symbols: unknown[];
|
|
683
705
|
};
|
|
684
706
|
richtext?: {
|
|
685
|
-
richtext_tags:
|
|
707
|
+
richtext_tags: {
|
|
708
|
+
from_index: number;
|
|
709
|
+
to_index: number;
|
|
710
|
+
richtext_types: string[];
|
|
711
|
+
}[];
|
|
686
712
|
};
|
|
687
713
|
media?: {
|
|
688
714
|
inline_media: unknown[];
|
|
@@ -751,7 +777,12 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
751
777
|
description: string;
|
|
752
778
|
entities: {
|
|
753
779
|
description: {
|
|
754
|
-
urls:
|
|
780
|
+
urls: {
|
|
781
|
+
display_url: string;
|
|
782
|
+
expanded_url: string;
|
|
783
|
+
url: string;
|
|
784
|
+
indices: number[];
|
|
785
|
+
}[];
|
|
755
786
|
};
|
|
756
787
|
url: {
|
|
757
788
|
urls: {
|
|
@@ -773,7 +804,7 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
773
804
|
media_count: number;
|
|
774
805
|
name: string;
|
|
775
806
|
normal_followers_count: number;
|
|
776
|
-
pinned_tweet_ids_str:
|
|
807
|
+
pinned_tweet_ids_str: string[];
|
|
777
808
|
possibly_sensitive: boolean;
|
|
778
809
|
profile_banner_url: string;
|
|
779
810
|
profile_image_url_https: string;
|
|
@@ -1122,7 +1153,10 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1122
1153
|
title?: string;
|
|
1123
1154
|
description?: string;
|
|
1124
1155
|
call_to_actions?: {
|
|
1125
|
-
visit_site
|
|
1156
|
+
visit_site?: {
|
|
1157
|
+
url: string;
|
|
1158
|
+
};
|
|
1159
|
+
watch_now?: {
|
|
1126
1160
|
url: string;
|
|
1127
1161
|
};
|
|
1128
1162
|
};
|
|
@@ -1283,6 +1317,7 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1283
1317
|
};
|
|
1284
1318
|
source_status_id_str?: string;
|
|
1285
1319
|
source_user_id_str?: string;
|
|
1320
|
+
ext_alt_text?: string;
|
|
1286
1321
|
}[];
|
|
1287
1322
|
};
|
|
1288
1323
|
possibly_sensitive?: boolean;
|
|
@@ -1320,7 +1355,20 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1320
1355
|
description: string;
|
|
1321
1356
|
entities: {
|
|
1322
1357
|
description: {
|
|
1323
|
-
urls:
|
|
1358
|
+
urls: {
|
|
1359
|
+
display_url: string;
|
|
1360
|
+
expanded_url: string;
|
|
1361
|
+
url: string;
|
|
1362
|
+
indices: number[];
|
|
1363
|
+
}[];
|
|
1364
|
+
};
|
|
1365
|
+
url?: {
|
|
1366
|
+
urls: {
|
|
1367
|
+
display_url: string;
|
|
1368
|
+
expanded_url: string;
|
|
1369
|
+
url: string;
|
|
1370
|
+
indices: number[];
|
|
1371
|
+
}[];
|
|
1324
1372
|
};
|
|
1325
1373
|
};
|
|
1326
1374
|
fast_followers_count: number;
|
|
@@ -1336,7 +1384,7 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1336
1384
|
normal_followers_count: number;
|
|
1337
1385
|
pinned_tweet_ids_str: string[];
|
|
1338
1386
|
possibly_sensitive: boolean;
|
|
1339
|
-
profile_banner_url
|
|
1387
|
+
profile_banner_url?: string;
|
|
1340
1388
|
profile_image_url_https: string;
|
|
1341
1389
|
profile_interstitial_type: string;
|
|
1342
1390
|
screen_name: string;
|
|
@@ -1345,6 +1393,17 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1345
1393
|
verified: boolean;
|
|
1346
1394
|
want_retweets: boolean;
|
|
1347
1395
|
withheld_in_countries: unknown[];
|
|
1396
|
+
url?: string;
|
|
1397
|
+
verified_type?: string;
|
|
1398
|
+
};
|
|
1399
|
+
professional?: {
|
|
1400
|
+
rest_id: string;
|
|
1401
|
+
professional_type: string;
|
|
1402
|
+
category: {
|
|
1403
|
+
id: number;
|
|
1404
|
+
name: string;
|
|
1405
|
+
icon_name: string;
|
|
1406
|
+
}[];
|
|
1348
1407
|
};
|
|
1349
1408
|
};
|
|
1350
1409
|
};
|
|
@@ -1378,7 +1437,12 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1378
1437
|
screen_name: string;
|
|
1379
1438
|
indices: number[];
|
|
1380
1439
|
}[];
|
|
1381
|
-
urls:
|
|
1440
|
+
urls: {
|
|
1441
|
+
display_url: string;
|
|
1442
|
+
expanded_url: string;
|
|
1443
|
+
url: string;
|
|
1444
|
+
indices: number[];
|
|
1445
|
+
}[];
|
|
1382
1446
|
hashtags: {
|
|
1383
1447
|
indices: number[];
|
|
1384
1448
|
text: string;
|
|
@@ -1438,6 +1502,8 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1438
1502
|
h: number;
|
|
1439
1503
|
}[];
|
|
1440
1504
|
};
|
|
1505
|
+
source_status_id_str?: string;
|
|
1506
|
+
source_user_id_str?: string;
|
|
1441
1507
|
}[];
|
|
1442
1508
|
};
|
|
1443
1509
|
favorite_count: number;
|
|
@@ -1510,10 +1576,24 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1510
1576
|
h: number;
|
|
1511
1577
|
}[];
|
|
1512
1578
|
};
|
|
1579
|
+
source_status_id_str?: string;
|
|
1580
|
+
source_user_id_str?: string;
|
|
1513
1581
|
}[];
|
|
1514
1582
|
};
|
|
1515
1583
|
possibly_sensitive?: boolean;
|
|
1516
1584
|
possibly_sensitive_editable?: boolean;
|
|
1585
|
+
quoted_status_id_str?: string;
|
|
1586
|
+
quoted_status_permalink?: {
|
|
1587
|
+
url: string;
|
|
1588
|
+
expanded: string;
|
|
1589
|
+
display: string;
|
|
1590
|
+
};
|
|
1591
|
+
};
|
|
1592
|
+
quotedRefResult?: {
|
|
1593
|
+
result: {
|
|
1594
|
+
__typename: string;
|
|
1595
|
+
rest_id: string;
|
|
1596
|
+
};
|
|
1517
1597
|
};
|
|
1518
1598
|
};
|
|
1519
1599
|
};
|
|
@@ -1525,7 +1605,20 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1525
1605
|
__typename: string;
|
|
1526
1606
|
id: string;
|
|
1527
1607
|
rest_id: string;
|
|
1528
|
-
affiliates_highlighted_label: {
|
|
1608
|
+
affiliates_highlighted_label: {
|
|
1609
|
+
label?: {
|
|
1610
|
+
url: {
|
|
1611
|
+
url: string;
|
|
1612
|
+
urlType: string;
|
|
1613
|
+
};
|
|
1614
|
+
badge: {
|
|
1615
|
+
url: string;
|
|
1616
|
+
};
|
|
1617
|
+
description: string;
|
|
1618
|
+
userLabelType: string;
|
|
1619
|
+
userLabelDisplayType: string;
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1529
1622
|
has_graduated_access: boolean;
|
|
1530
1623
|
is_blue_verified: boolean;
|
|
1531
1624
|
profile_image_shape: string;
|
|
@@ -1633,12 +1726,53 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1633
1726
|
screen_name: string;
|
|
1634
1727
|
indices: number[];
|
|
1635
1728
|
}[];
|
|
1636
|
-
urls:
|
|
1729
|
+
urls: {
|
|
1730
|
+
display_url: string;
|
|
1731
|
+
expanded_url: string;
|
|
1732
|
+
url: string;
|
|
1733
|
+
indices: number[];
|
|
1734
|
+
}[];
|
|
1637
1735
|
hashtags: {
|
|
1638
1736
|
indices: number[];
|
|
1639
1737
|
text: string;
|
|
1640
1738
|
}[];
|
|
1641
1739
|
symbols: unknown[];
|
|
1740
|
+
media?: {
|
|
1741
|
+
display_url: string;
|
|
1742
|
+
expanded_url: string;
|
|
1743
|
+
id_str: string;
|
|
1744
|
+
indices: number[];
|
|
1745
|
+
media_url_https: string;
|
|
1746
|
+
type: string;
|
|
1747
|
+
url: string;
|
|
1748
|
+
features: {};
|
|
1749
|
+
sizes: {
|
|
1750
|
+
large: {
|
|
1751
|
+
h: number;
|
|
1752
|
+
w: number;
|
|
1753
|
+
resize: string;
|
|
1754
|
+
};
|
|
1755
|
+
medium: {
|
|
1756
|
+
h: number;
|
|
1757
|
+
w: number;
|
|
1758
|
+
resize: string;
|
|
1759
|
+
};
|
|
1760
|
+
small: {
|
|
1761
|
+
h: number;
|
|
1762
|
+
w: number;
|
|
1763
|
+
resize: string;
|
|
1764
|
+
};
|
|
1765
|
+
thumb: {
|
|
1766
|
+
h: number;
|
|
1767
|
+
w: number;
|
|
1768
|
+
resize: string;
|
|
1769
|
+
};
|
|
1770
|
+
};
|
|
1771
|
+
original_info: {
|
|
1772
|
+
height: number;
|
|
1773
|
+
width: number;
|
|
1774
|
+
};
|
|
1775
|
+
}[];
|
|
1642
1776
|
};
|
|
1643
1777
|
favorite_count: number;
|
|
1644
1778
|
favorited: boolean;
|
|
@@ -1961,6 +2095,63 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
1961
2095
|
scopes?: {
|
|
1962
2096
|
followers: boolean;
|
|
1963
2097
|
};
|
|
2098
|
+
extended_entities?: {
|
|
2099
|
+
media: {
|
|
2100
|
+
display_url: string;
|
|
2101
|
+
expanded_url: string;
|
|
2102
|
+
id_str: string;
|
|
2103
|
+
indices: number[];
|
|
2104
|
+
media_key: string;
|
|
2105
|
+
media_url_https: string;
|
|
2106
|
+
type: string;
|
|
2107
|
+
url: string;
|
|
2108
|
+
additional_media_info: {
|
|
2109
|
+
monetizable: boolean;
|
|
2110
|
+
};
|
|
2111
|
+
mediaStats: {
|
|
2112
|
+
viewCount: number;
|
|
2113
|
+
};
|
|
2114
|
+
ext_media_availability: {
|
|
2115
|
+
status: string;
|
|
2116
|
+
};
|
|
2117
|
+
features: {};
|
|
2118
|
+
sizes: {
|
|
2119
|
+
large: {
|
|
2120
|
+
h: number;
|
|
2121
|
+
w: number;
|
|
2122
|
+
resize: string;
|
|
2123
|
+
};
|
|
2124
|
+
medium: {
|
|
2125
|
+
h: number;
|
|
2126
|
+
w: number;
|
|
2127
|
+
resize: string;
|
|
2128
|
+
};
|
|
2129
|
+
small: {
|
|
2130
|
+
h: number;
|
|
2131
|
+
w: number;
|
|
2132
|
+
resize: string;
|
|
2133
|
+
};
|
|
2134
|
+
thumb: {
|
|
2135
|
+
h: number;
|
|
2136
|
+
w: number;
|
|
2137
|
+
resize: string;
|
|
2138
|
+
};
|
|
2139
|
+
};
|
|
2140
|
+
original_info: {
|
|
2141
|
+
height: number;
|
|
2142
|
+
width: number;
|
|
2143
|
+
};
|
|
2144
|
+
video_info: {
|
|
2145
|
+
aspect_ratio: number[];
|
|
2146
|
+
duration_millis: number;
|
|
2147
|
+
variants: {
|
|
2148
|
+
content_type: string;
|
|
2149
|
+
url: string;
|
|
2150
|
+
bitrate?: number;
|
|
2151
|
+
}[];
|
|
2152
|
+
};
|
|
2153
|
+
}[];
|
|
2154
|
+
};
|
|
1964
2155
|
};
|
|
1965
2156
|
card?: {
|
|
1966
2157
|
rest_id: string;
|
|
@@ -2410,8 +2601,8 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
2410
2601
|
};
|
|
2411
2602
|
url?: {
|
|
2412
2603
|
urls: {
|
|
2413
|
-
display_url
|
|
2414
|
-
expanded_url
|
|
2604
|
+
display_url?: string;
|
|
2605
|
+
expanded_url?: string;
|
|
2415
2606
|
url: string;
|
|
2416
2607
|
indices: number[];
|
|
2417
2608
|
}[];
|
|
@@ -2549,6 +2740,8 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
2549
2740
|
h: number;
|
|
2550
2741
|
}[];
|
|
2551
2742
|
};
|
|
2743
|
+
source_status_id_str?: string;
|
|
2744
|
+
source_user_id_str?: string;
|
|
2552
2745
|
}[];
|
|
2553
2746
|
user_mentions: {
|
|
2554
2747
|
id_str: string;
|
|
@@ -2649,6 +2842,66 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
2649
2842
|
};
|
|
2650
2843
|
additional_media_info?: {
|
|
2651
2844
|
monetizable: boolean;
|
|
2845
|
+
title?: string;
|
|
2846
|
+
description?: string;
|
|
2847
|
+
embeddable?: boolean;
|
|
2848
|
+
source_user?: {
|
|
2849
|
+
user_results: {
|
|
2850
|
+
result: {
|
|
2851
|
+
__typename: string;
|
|
2852
|
+
id: string;
|
|
2853
|
+
rest_id: string;
|
|
2854
|
+
affiliates_highlighted_label: {};
|
|
2855
|
+
has_graduated_access: boolean;
|
|
2856
|
+
is_blue_verified: boolean;
|
|
2857
|
+
profile_image_shape: string;
|
|
2858
|
+
legacy: {
|
|
2859
|
+
can_dm: boolean;
|
|
2860
|
+
can_media_tag: boolean;
|
|
2861
|
+
created_at: string;
|
|
2862
|
+
default_profile: boolean;
|
|
2863
|
+
default_profile_image: boolean;
|
|
2864
|
+
description: string;
|
|
2865
|
+
entities: {
|
|
2866
|
+
description: {
|
|
2867
|
+
urls: unknown[];
|
|
2868
|
+
};
|
|
2869
|
+
url: {
|
|
2870
|
+
urls: {
|
|
2871
|
+
display_url: string;
|
|
2872
|
+
expanded_url: string;
|
|
2873
|
+
url: string;
|
|
2874
|
+
indices: number[];
|
|
2875
|
+
}[];
|
|
2876
|
+
};
|
|
2877
|
+
};
|
|
2878
|
+
fast_followers_count: number;
|
|
2879
|
+
favourites_count: number;
|
|
2880
|
+
followers_count: number;
|
|
2881
|
+
friends_count: number;
|
|
2882
|
+
has_custom_timelines: boolean;
|
|
2883
|
+
is_translator: boolean;
|
|
2884
|
+
listed_count: number;
|
|
2885
|
+
location: string;
|
|
2886
|
+
media_count: number;
|
|
2887
|
+
name: string;
|
|
2888
|
+
normal_followers_count: number;
|
|
2889
|
+
pinned_tweet_ids_str: unknown[];
|
|
2890
|
+
possibly_sensitive: boolean;
|
|
2891
|
+
profile_banner_url: string;
|
|
2892
|
+
profile_image_url_https: string;
|
|
2893
|
+
profile_interstitial_type: string;
|
|
2894
|
+
screen_name: string;
|
|
2895
|
+
statuses_count: number;
|
|
2896
|
+
translator_type: string;
|
|
2897
|
+
url: string;
|
|
2898
|
+
verified: boolean;
|
|
2899
|
+
want_retweets: boolean;
|
|
2900
|
+
withheld_in_countries: unknown[];
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2903
|
+
};
|
|
2904
|
+
};
|
|
2652
2905
|
};
|
|
2653
2906
|
mediaStats?: {
|
|
2654
2907
|
viewCount: number;
|
|
@@ -2662,6 +2915,8 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
2662
2915
|
url: string;
|
|
2663
2916
|
}[];
|
|
2664
2917
|
};
|
|
2918
|
+
source_status_id_str?: string;
|
|
2919
|
+
source_user_id_str?: string;
|
|
2665
2920
|
}[];
|
|
2666
2921
|
};
|
|
2667
2922
|
favorite_count: number;
|
|
@@ -2680,6 +2935,21 @@ export interface GraphQLGetHomeTimelineSuccessResponse {
|
|
|
2680
2935
|
in_reply_to_screen_name?: string;
|
|
2681
2936
|
in_reply_to_status_id_str?: string;
|
|
2682
2937
|
in_reply_to_user_id_str?: string;
|
|
2938
|
+
place?: {
|
|
2939
|
+
attributes: {};
|
|
2940
|
+
bounding_box: {
|
|
2941
|
+
coordinates: number[][][];
|
|
2942
|
+
type: string;
|
|
2943
|
+
};
|
|
2944
|
+
contained_within: unknown[];
|
|
2945
|
+
country: string;
|
|
2946
|
+
country_code: string;
|
|
2947
|
+
full_name: string;
|
|
2948
|
+
name: string;
|
|
2949
|
+
id: string;
|
|
2950
|
+
place_type: string;
|
|
2951
|
+
url: string;
|
|
2952
|
+
};
|
|
2683
2953
|
};
|
|
2684
2954
|
card?: {
|
|
2685
2955
|
rest_id: string;
|