@book000/twitterts 0.59.97 → 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.
- package/dist/converter.d.ts.map +1 -1
- package/dist/converter.js +6 -2
- package/dist/converter.js.map +1 -1
- package/dist/generate-types/custom-types-generator.d.ts.map +1 -1
- package/dist/generate-types/custom-types-generator.js +3 -0
- package/dist/generate-types/custom-types-generator.js.map +1 -1
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts +3748 -3232
- package/dist/models/responses/custom/custom-graph-qltimeline-success-response.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-search-timeline-entry.d.ts +1516 -1162
- 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 +7300 -7014
- 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 +3831 -3606
- package/dist/models/responses/custom/custom-tweet-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-tweet-object.d.ts +3247 -2405
- package/dist/models/responses/custom/custom-tweet-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-legacy-object.d.ts +5 -6
- package/dist/models/responses/custom/custom-user-legacy-object.d.ts.map +1 -1
- package/dist/models/responses/custom/custom-user-like-tweet-entry.d.ts +30 -371
- 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 +10029 -9187
- package/dist/models/responses/custom/custom-user-tweet-entry.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts +325 -325
- package/dist/models/responses/graphql/get/audio-space-by-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/home-latest-timeline-success.d.ts +7465 -6603
- 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 +9338 -8399
- package/dist/models/responses/graphql/get/home-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/likes-success.d.ts +24 -365
- package/dist/models/responses/graphql/get/likes-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts +1758 -1250
- package/dist/models/responses/graphql/get/list-latest-tweets-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts +27 -27
- package/dist/models/responses/graphql/get/profile-spotlights-query-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts +2964 -2302
- package/dist/models/responses/graphql/get/search-timeline-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/tweet-detail-success.d.ts +4310 -3200
- package/dist/models/responses/graphql/get/tweet-detail-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts +4 -3
- package/dist/models/responses/graphql/get/user-by-rest-id-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts +5 -4
- package/dist/models/responses/graphql/get/user-by-screen-name-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts +17417 -16218
- package/dist/models/responses/graphql/get/user-tweets-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/users-verified-avatars-success.d.ts +1 -1
- package/dist/models/responses/graphql/get/users-verified-avatars-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/get/viewer-success.d.ts +1 -1
- package/dist/models/responses/graphql/get/viewer-success.d.ts.map +1 -1
- package/dist/models/responses/graphql/post/home-latest-timeline-success.d.ts +6320 -5808
- 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 +7452 -6759
- 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/home-timeline-parser.js +3 -0
- package/dist/parser/home-timeline-parser.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -17,8 +17,8 @@ export interface CustomUserLegacyObject {
|
|
|
17
17
|
};
|
|
18
18
|
url?: {
|
|
19
19
|
urls: {
|
|
20
|
-
display_url
|
|
21
|
-
expanded_url
|
|
20
|
+
display_url?: string;
|
|
21
|
+
expanded_url?: string;
|
|
22
22
|
url: string;
|
|
23
23
|
indices: number[];
|
|
24
24
|
}[];
|
|
@@ -37,22 +37,21 @@ export interface CustomUserLegacyObject {
|
|
|
37
37
|
normal_followers_count: number;
|
|
38
38
|
pinned_tweet_ids_str: string[];
|
|
39
39
|
possibly_sensitive: boolean;
|
|
40
|
+
profile_banner_url?: string;
|
|
40
41
|
profile_image_url_https: string;
|
|
41
42
|
profile_interstitial_type: string;
|
|
42
43
|
screen_name: string;
|
|
43
44
|
statuses_count: number;
|
|
44
45
|
translator_type: string;
|
|
46
|
+
url?: string;
|
|
45
47
|
verified: boolean;
|
|
48
|
+
verified_type?: string;
|
|
46
49
|
want_retweets?: boolean;
|
|
47
50
|
withheld_in_countries: string[];
|
|
48
|
-
profile_banner_url?: string;
|
|
49
|
-
url?: string;
|
|
50
51
|
following?: boolean;
|
|
51
|
-
verified_type?: string;
|
|
52
52
|
followed_by?: boolean;
|
|
53
53
|
blocking?: boolean;
|
|
54
54
|
protected?: boolean;
|
|
55
|
-
muting?: boolean;
|
|
56
55
|
needs_phone_verification?: boolean;
|
|
57
56
|
}
|
|
58
57
|
//# sourceMappingURL=custom-user-legacy-object.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-user-legacy-object.d.ts","sourceRoot":"","sources":["../../../../src/models/responses/custom/custom-user-legacy-object.ts"],"names":[],"mappings":"AAEA,0BAA0B;AAE1B,MAAM,WAAW,sBAAsB;IACrC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,eAAe,EAAE,OAAO,CAAA;IACxB,qBAAqB,EAAE,OAAO,CAAA;IAC9B,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE;QACR,WAAW,EAAE;YACX,IAAI,EAAE;gBACJ,WAAW,EAAE,MAAM,CAAA;gBACnB,YAAY,EAAE,MAAM,CAAA;gBACpB,GAAG,EAAE,MAAM,CAAA;gBACX,OAAO,EAAE,MAAM,EAAE,CAAA;aAClB,EAAE,CAAA;SACJ,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,WAAW,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"custom-user-legacy-object.d.ts","sourceRoot":"","sources":["../../../../src/models/responses/custom/custom-user-legacy-object.ts"],"names":[],"mappings":"AAEA,0BAA0B;AAE1B,MAAM,WAAW,sBAAsB;IACrC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,eAAe,EAAE,OAAO,CAAA;IACxB,qBAAqB,EAAE,OAAO,CAAA;IAC9B,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE;QACR,WAAW,EAAE;YACX,IAAI,EAAE;gBACJ,WAAW,EAAE,MAAM,CAAA;gBACnB,YAAY,EAAE,MAAM,CAAA;gBACpB,GAAG,EAAE,MAAM,CAAA;gBACX,OAAO,EAAE,MAAM,EAAE,CAAA;aAClB,EAAE,CAAA;SACJ,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,WAAW,CAAC,EAAE,MAAM,CAAA;gBACpB,YAAY,CAAC,EAAE,MAAM,CAAA;gBACrB,GAAG,EAAE,MAAM,CAAA;gBACX,OAAO,EAAE,MAAM,EAAE,CAAA;aAClB,EAAE,CAAA;SACJ,CAAA;KACF,CAAA;IACD,oBAAoB,EAAE,MAAM,CAAA;IAC5B,gBAAgB,EAAE,MAAM,CAAA;IACxB,eAAe,EAAE,MAAM,CAAA;IACvB,aAAa,EAAE,MAAM,CAAA;IACrB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,aAAa,EAAE,OAAO,CAAA;IACtB,YAAY,EAAE,MAAM,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,EAAE,MAAM,CAAA;IACZ,sBAAsB,EAAE,MAAM,CAAA;IAC9B,oBAAoB,EAAE,MAAM,EAAE,CAAA;IAC9B,kBAAkB,EAAE,OAAO,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,uBAAuB,EAAE,MAAM,CAAA;IAC/B,yBAAyB,EAAE,MAAM,CAAA;IACjC,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,MAAM,CAAA;IACtB,eAAe,EAAE,MAAM,CAAA;IACvB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,OAAO,CAAA;IACjB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,qBAAqB,EAAE,MAAM,EAAE,CAAA;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,wBAAwB,CAAC,EAAE,OAAO,CAAA;CACnC"}
|