rettiwt-api 1.1.5 → 1.1.7
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/graphql/enums/Errors.d.ts +1 -0
- package/dist/graphql/enums/Errors.js +1 -0
- package/dist/graphql/enums/Errors.js.map +1 -1
- package/dist/graphql/resolvers/UserResolver.d.ts +9 -0
- package/dist/graphql/resolvers/UserResolver.js +61 -0
- package/dist/graphql/resolvers/UserResolver.js.map +1 -1
- package/dist/graphql/types/UserTypes.js +1 -1
- package/dist/graphql/types/UserTypes.js.map +1 -1
- package/dist/requests/payloads/Variables.d.ts +23 -0
- package/dist/requests/payloads/Variables.js +24 -0
- package/dist/requests/payloads/Variables.js.map +1 -0
- package/dist/services/data/TweetService.d.ts +1 -1
- package/dist/services/data/TweetService.js +1 -1
- package/dist/services/data/TweetService.js.map +1 -1
- package/dist/services/data/UserService.d.ts +15 -0
- package/dist/services/data/UserService.js +33 -0
- package/dist/services/data/UserService.js.map +1 -1
- package/dist/services/helper/extractors/Users.d.ts +6 -0
- package/dist/services/helper/extractors/Users.js +53 -1
- package/dist/services/helper/extractors/Users.js.map +1 -1
- package/dist/services/helper/urls/Users.d.ts +8 -1
- package/dist/services/helper/urls/Users.js +12 -2
- package/dist/services/helper/urls/Users.js.map +1 -1
- package/dist/types/Query.d.ts +80 -0
- package/dist/types/Query.js +3 -0
- package/dist/types/Query.js.map +1 -0
- package/dist/types/raw/data/tweet/Favouriters.d.ts +164 -0
- package/dist/types/raw/data/tweet/Favouriters.js +3 -0
- package/dist/types/raw/data/tweet/Favouriters.js.map +1 -0
- package/dist/types/raw/data/tweet/Retweeters.d.ts +171 -0
- package/dist/types/raw/data/tweet/Retweeters.js +3 -0
- package/dist/types/raw/data/tweet/Retweeters.js.map +1 -0
- package/dist/types/raw/data/tweet/Tweet.d.ts +746 -0
- package/dist/types/raw/data/tweet/Tweet.js +3 -0
- package/dist/types/raw/data/tweet/Tweet.js.map +1 -0
- package/dist/types/raw/data/tweet/Tweets.d.ts +386 -0
- package/dist/types/raw/data/tweet/Tweets.js +3 -0
- package/dist/types/raw/data/tweet/Tweets.js.map +1 -0
- package/dist/types/raw/data/user/Followers.d.ts +176 -0
- package/dist/types/raw/data/user/Followers.js +3 -0
- package/dist/types/raw/data/user/Followers.js.map +1 -0
- package/dist/types/raw/data/user/Following.d.ts +176 -0
- package/dist/types/raw/data/user/Following.js +3 -0
- package/dist/types/raw/data/user/Following.js.map +1 -0
- package/dist/types/raw/data/user/Likes.d.ts +1059 -0
- package/dist/types/raw/data/user/Likes.js +3 -0
- package/dist/types/raw/data/user/Likes.js.map +1 -0
- package/dist/types/raw/data/user/User.d.ts +117 -0
- package/dist/types/raw/data/user/User.js +3 -0
- package/dist/types/raw/data/user/User.js.map +1 -0
- package/dist/types/raw/query/tweet/Details.d.ts +80 -0
- package/dist/types/raw/query/tweet/Details.js +5 -0
- package/dist/types/raw/query/tweet/Details.js.map +1 -0
- package/dist/types/raw/query/tweet/Engagements.d.ts +29 -0
- package/dist/types/raw/query/tweet/Engagements.js +3 -0
- package/dist/types/raw/query/tweet/Engagements.js.map +1 -0
- package/dist/types/raw/query/tweet/Likes.d.ts +29 -0
- package/dist/types/raw/query/tweet/Likes.js +3 -0
- package/dist/types/raw/query/tweet/Likes.js.map +1 -0
- package/dist/types/raw/query/tweet/Retweets.d.ts +29 -0
- package/dist/types/raw/query/tweet/Retweets.js +3 -0
- package/dist/types/raw/query/tweet/Retweets.js.map +1 -0
- package/dist/types/raw/query/tweet/Search.d.ts +40 -0
- package/dist/types/raw/query/tweet/Search.js +3 -0
- package/dist/types/raw/query/tweet/Search.js.map +1 -0
- package/dist/types/raw/query/tweet/TweetLike.d.ts +29 -0
- package/dist/types/raw/query/tweet/TweetLike.js +3 -0
- package/dist/types/raw/query/tweet/TweetLike.js.map +1 -0
- package/dist/types/raw/query/tweet/TweetLikes.d.ts +29 -0
- package/dist/types/raw/query/tweet/TweetLikes.js +3 -0
- package/dist/types/raw/query/tweet/TweetLikes.js.map +1 -0
- package/dist/types/raw/query/tweet/TweetRetweets.d.ts +0 -0
- package/dist/types/raw/query/tweet/TweetRetweets.js +2 -0
- package/dist/types/raw/query/tweet/TweetRetweets.js.map +1 -0
- package/dist/types/raw/query/user/Details.d.ts +34 -0
- package/dist/types/raw/query/user/Details.js +3 -0
- package/dist/types/raw/query/user/Details.js.map +1 -0
- package/dist/types/raw/user/Tweets.d.ts +668 -1584
- package/dist/types/raw/user/User.js.map +1 -1
- package/package.json +2 -2
- package/src/graphql/enums/Errors.ts +1 -0
- package/src/graphql/resolvers/UserResolver.ts +58 -1
- package/src/graphql/types/UserTypes.ts +3 -3
- package/src/services/data/TweetService.ts +5 -5
- package/src/services/data/UserService.ts +34 -0
- package/src/services/helper/extractors/Users.ts +55 -0
- package/src/services/helper/urls/Users.ts +39 -23
- package/src/types/raw/user/Tweets.ts +1747 -0
- package/docs/.nojekyll +0 -1
- package/docs/assets/highlight.css +0 -64
- package/docs/assets/main.js +0 -58
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1280
- package/docs/classes/AccountService.html +0 -303
- package/docs/classes/AuthCookie.html +0 -146
- package/docs/classes/AuthService.html +0 -147
- package/docs/classes/CacheService.html +0 -157
- package/docs/classes/Cursor.html +0 -102
- package/docs/classes/CursoredData.html +0 -126
- package/docs/classes/DataValidationError.html +0 -119
- package/docs/classes/FetcherService.html +0 -225
- package/docs/classes/Tweet.html +0 -210
- package/docs/classes/TweetEntities.html +0 -128
- package/docs/classes/TweetFilter.html +0 -204
- package/docs/classes/TweetListArgs.html +0 -118
- package/docs/classes/TweetService.html +0 -313
- package/docs/classes/User.html +0 -230
- package/docs/classes/UserListArgs.html +0 -118
- package/docs/classes/UserService.html +0 -315
- package/docs/enums/HttpMethods.html +0 -74
- package/docs/functions/Rettiwt.html +0 -99
- package/docs/index.html +0 -161
- package/docs/interfaces/IAuthCookie.html +0 -104
- package/docs/interfaces/ICursor.html +0 -77
- package/docs/interfaces/ICursoredData.html +0 -93
- package/docs/interfaces/IDataContext.html +0 -91
- package/docs/interfaces/IListArgs.html +0 -87
- package/docs/interfaces/ITweet.html +0 -176
- package/docs/interfaces/ITweetEntities.html +0 -104
- package/docs/interfaces/ITweetFilter.html +0 -158
- package/docs/interfaces/IUser.html +0 -194
- package/docs/modules.html +0 -109
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Likes.js","sourceRoot":"","sources":["../../../../../src/types/raw/data/user/Likes.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
export default interface Root {
|
|
2
|
+
data: Data;
|
|
3
|
+
}
|
|
4
|
+
export interface Data {
|
|
5
|
+
user: User;
|
|
6
|
+
}
|
|
7
|
+
export interface User {
|
|
8
|
+
result: Result;
|
|
9
|
+
}
|
|
10
|
+
export interface Result {
|
|
11
|
+
__typename: string;
|
|
12
|
+
id: string;
|
|
13
|
+
rest_id: string;
|
|
14
|
+
affiliates_highlighted_label: AffiliatesHighlightedLabel;
|
|
15
|
+
has_nft_avatar: boolean;
|
|
16
|
+
legacy: Legacy;
|
|
17
|
+
smart_blocked_by: boolean;
|
|
18
|
+
smart_blocking: boolean;
|
|
19
|
+
super_follow_eligible: boolean;
|
|
20
|
+
super_followed_by: boolean;
|
|
21
|
+
super_following: boolean;
|
|
22
|
+
legacy_extended_profile: LegacyExtendedProfile;
|
|
23
|
+
is_profile_translatable: boolean;
|
|
24
|
+
}
|
|
25
|
+
export interface AffiliatesHighlightedLabel {
|
|
26
|
+
}
|
|
27
|
+
export interface Legacy {
|
|
28
|
+
blocked_by: boolean;
|
|
29
|
+
blocking: boolean;
|
|
30
|
+
can_dm: boolean;
|
|
31
|
+
can_media_tag: boolean;
|
|
32
|
+
created_at: string;
|
|
33
|
+
default_profile: boolean;
|
|
34
|
+
default_profile_image: boolean;
|
|
35
|
+
description: string;
|
|
36
|
+
entities: Entities;
|
|
37
|
+
fast_followers_count: number;
|
|
38
|
+
favourites_count: number;
|
|
39
|
+
follow_request_sent: boolean;
|
|
40
|
+
followed_by: boolean;
|
|
41
|
+
followers_count: number;
|
|
42
|
+
following: boolean;
|
|
43
|
+
friends_count: number;
|
|
44
|
+
has_custom_timelines: boolean;
|
|
45
|
+
is_translator: boolean;
|
|
46
|
+
listed_count: number;
|
|
47
|
+
location: string;
|
|
48
|
+
media_count: number;
|
|
49
|
+
muting: boolean;
|
|
50
|
+
name: string;
|
|
51
|
+
normal_followers_count: number;
|
|
52
|
+
notifications: boolean;
|
|
53
|
+
pinned_tweet_ids_str: any[];
|
|
54
|
+
possibly_sensitive: boolean;
|
|
55
|
+
profile_banner_extensions: ProfileBannerExtensions;
|
|
56
|
+
profile_banner_url: string;
|
|
57
|
+
profile_image_extensions: ProfileImageExtensions;
|
|
58
|
+
profile_image_url_https: string;
|
|
59
|
+
profile_interstitial_type: string;
|
|
60
|
+
protected: boolean;
|
|
61
|
+
screen_name: string;
|
|
62
|
+
statuses_count: number;
|
|
63
|
+
translator_type: string;
|
|
64
|
+
verified: boolean;
|
|
65
|
+
want_retweets: boolean;
|
|
66
|
+
withheld_in_countries: any[];
|
|
67
|
+
}
|
|
68
|
+
export interface Entities {
|
|
69
|
+
description: Description;
|
|
70
|
+
}
|
|
71
|
+
export interface Description {
|
|
72
|
+
urls: any[];
|
|
73
|
+
}
|
|
74
|
+
export interface ProfileBannerExtensions {
|
|
75
|
+
mediaColor: MediaColor;
|
|
76
|
+
}
|
|
77
|
+
export interface MediaColor {
|
|
78
|
+
r: R;
|
|
79
|
+
}
|
|
80
|
+
export interface R {
|
|
81
|
+
ok: Ok;
|
|
82
|
+
}
|
|
83
|
+
export interface Ok {
|
|
84
|
+
palette: Palette[];
|
|
85
|
+
}
|
|
86
|
+
export interface Palette {
|
|
87
|
+
percentage: number;
|
|
88
|
+
rgb: Rgb;
|
|
89
|
+
}
|
|
90
|
+
export interface Rgb {
|
|
91
|
+
blue: number;
|
|
92
|
+
green: number;
|
|
93
|
+
red: number;
|
|
94
|
+
}
|
|
95
|
+
export interface ProfileImageExtensions {
|
|
96
|
+
mediaColor: MediaColor2;
|
|
97
|
+
}
|
|
98
|
+
export interface MediaColor2 {
|
|
99
|
+
r: R2;
|
|
100
|
+
}
|
|
101
|
+
export interface R2 {
|
|
102
|
+
ok: Ok2;
|
|
103
|
+
}
|
|
104
|
+
export interface Ok2 {
|
|
105
|
+
palette: Palette2[];
|
|
106
|
+
}
|
|
107
|
+
export interface Palette2 {
|
|
108
|
+
percentage: number;
|
|
109
|
+
rgb: Rgb2;
|
|
110
|
+
}
|
|
111
|
+
export interface Rgb2 {
|
|
112
|
+
blue: number;
|
|
113
|
+
green: number;
|
|
114
|
+
red: number;
|
|
115
|
+
}
|
|
116
|
+
export interface LegacyExtendedProfile {
|
|
117
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"User.js","sourceRoot":"","sources":["../../../../../src/types/raw/data/user/User.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
focalTweetId: string;
|
|
4
|
+
userId: string;
|
|
5
|
+
screen_name: string;
|
|
6
|
+
count: number;
|
|
7
|
+
cursor: string;
|
|
8
|
+
referrer: string;
|
|
9
|
+
with_rux_injections: boolean;
|
|
10
|
+
includePromotedContent: boolean;
|
|
11
|
+
withCommunity: boolean;
|
|
12
|
+
withQuickPromoteEligibilityTweetFields: boolean;
|
|
13
|
+
withBirdwatchNotes: boolean;
|
|
14
|
+
withSuperFollowsUserFields: boolean;
|
|
15
|
+
withDownvotePerspective: boolean;
|
|
16
|
+
withReactionsMetadata: boolean;
|
|
17
|
+
withReactionsPerspective: boolean;
|
|
18
|
+
withSuperFollowsTweetFields: boolean;
|
|
19
|
+
withClientEventToken: boolean;
|
|
20
|
+
withVoice: boolean;
|
|
21
|
+
withV2Timeline: boolean;
|
|
22
|
+
}
|
|
23
|
+
export interface Features {
|
|
24
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
25
|
+
verified_phone_label_enabled: boolean;
|
|
26
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
27
|
+
view_counts_public_visibility_enabled: boolean;
|
|
28
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
29
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
30
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
31
|
+
vibe_api_enabled: boolean;
|
|
32
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
33
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
34
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
35
|
+
standardized_nudges_misinfo: boolean;
|
|
36
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
37
|
+
interactive_text_enabled: boolean;
|
|
38
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
39
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
40
|
+
}
|
|
41
|
+
export interface Params {
|
|
42
|
+
cards_platform: string;
|
|
43
|
+
count: number;
|
|
44
|
+
cursor: string;
|
|
45
|
+
ext: string;
|
|
46
|
+
include_blocked_by: number;
|
|
47
|
+
include_blocking: number;
|
|
48
|
+
include_can_dm: number;
|
|
49
|
+
include_can_media_tag: number;
|
|
50
|
+
include_cards: number;
|
|
51
|
+
include_entities: boolean;
|
|
52
|
+
include_ext_alt_text: boolean;
|
|
53
|
+
include_ext_collab_control: boolean;
|
|
54
|
+
include_ext_edit_control: boolean;
|
|
55
|
+
include_ext_has_nft_avatar: number;
|
|
56
|
+
include_ext_is_blue_verified: number;
|
|
57
|
+
include_ext_limited_action_results: boolean;
|
|
58
|
+
include_ext_media_availability: boolean;
|
|
59
|
+
include_ext_media_color: boolean;
|
|
60
|
+
include_ext_sensitive_media_warning: boolean;
|
|
61
|
+
include_ext_trusted_friends_metadata: boolean;
|
|
62
|
+
include_ext_verified_type: number;
|
|
63
|
+
include_ext_views: boolean;
|
|
64
|
+
include_followed_by: number;
|
|
65
|
+
include_mute_edge: number;
|
|
66
|
+
include_profile_interstitial_type: number;
|
|
67
|
+
include_quote_count: boolean;
|
|
68
|
+
include_reply_count: number;
|
|
69
|
+
include_user_entities: boolean;
|
|
70
|
+
include_want_retweets: number;
|
|
71
|
+
pc: number;
|
|
72
|
+
q: string;
|
|
73
|
+
query_source: string;
|
|
74
|
+
send_error_codes: boolean;
|
|
75
|
+
simple_quoted_tweet: boolean;
|
|
76
|
+
skip_status: number;
|
|
77
|
+
spelling_corrections: number;
|
|
78
|
+
tweet_mode: string;
|
|
79
|
+
tweet_search_mode: string;
|
|
80
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Details.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/Details.ts"],"names":[],"mappings":";;AAqBC,CAAC;AAmBD,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
includePromotedContent: boolean;
|
|
6
|
+
withSuperFollowsUserFields: boolean;
|
|
7
|
+
withDownvotePerspective: boolean;
|
|
8
|
+
withReactionsMetadata: boolean;
|
|
9
|
+
withReactionsPerspective: boolean;
|
|
10
|
+
withSuperFollowsTweetFields: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface Features {
|
|
13
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
14
|
+
verified_phone_label_enabled: boolean;
|
|
15
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
16
|
+
view_counts_public_visibility_enabled: boolean;
|
|
17
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
18
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
19
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
20
|
+
vibe_api_enabled: boolean;
|
|
21
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
22
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
23
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
24
|
+
standardized_nudges_misinfo: boolean;
|
|
25
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
26
|
+
interactive_text_enabled: boolean;
|
|
27
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
28
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Engagements.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/Engagements.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
includePromotedContent: boolean;
|
|
6
|
+
withSuperFollowsUserFields: boolean;
|
|
7
|
+
withDownvotePerspective: boolean;
|
|
8
|
+
withReactionsMetadata: boolean;
|
|
9
|
+
withReactionsPerspective: boolean;
|
|
10
|
+
withSuperFollowsTweetFields: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface Features {
|
|
13
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
14
|
+
verified_phone_label_enabled: boolean;
|
|
15
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
16
|
+
view_counts_public_visibility_enabled: boolean;
|
|
17
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
18
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
19
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
20
|
+
vibe_api_enabled: boolean;
|
|
21
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
22
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
23
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
24
|
+
standardized_nudges_misinfo: boolean;
|
|
25
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
26
|
+
interactive_text_enabled: boolean;
|
|
27
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
28
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Likes.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/Likes.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
includePromotedContent: boolean;
|
|
6
|
+
withSuperFollowsUserFields: boolean;
|
|
7
|
+
withDownvotePerspective: boolean;
|
|
8
|
+
withReactionsMetadata: boolean;
|
|
9
|
+
withReactionsPerspective: boolean;
|
|
10
|
+
withSuperFollowsTweetFields: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface Features {
|
|
13
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
14
|
+
verified_phone_label_enabled: boolean;
|
|
15
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
16
|
+
view_counts_public_visibility_enabled: boolean;
|
|
17
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
18
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
19
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
20
|
+
vibe_api_enabled: boolean;
|
|
21
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
22
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
23
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
24
|
+
standardized_nudges_misinfo: boolean;
|
|
25
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
26
|
+
interactive_text_enabled: boolean;
|
|
27
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
28
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Retweets.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/Retweets.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export interface Params {
|
|
2
|
+
cards_platform: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
ext: string;
|
|
6
|
+
include_blocked_by: number;
|
|
7
|
+
include_blocking: number;
|
|
8
|
+
include_can_dm: number;
|
|
9
|
+
include_can_media_tag: number;
|
|
10
|
+
include_cards: number;
|
|
11
|
+
include_entities: boolean;
|
|
12
|
+
include_ext_alt_text: boolean;
|
|
13
|
+
include_ext_collab_control: boolean;
|
|
14
|
+
include_ext_edit_control: boolean;
|
|
15
|
+
include_ext_has_nft_avatar: number;
|
|
16
|
+
include_ext_is_blue_verified: number;
|
|
17
|
+
include_ext_limited_action_results: boolean;
|
|
18
|
+
include_ext_media_availability: boolean;
|
|
19
|
+
include_ext_media_color: boolean;
|
|
20
|
+
include_ext_sensitive_media_warning: boolean;
|
|
21
|
+
include_ext_trusted_friends_metadata: boolean;
|
|
22
|
+
include_ext_verified_type: number;
|
|
23
|
+
include_ext_views: boolean;
|
|
24
|
+
include_followed_by: number;
|
|
25
|
+
include_mute_edge: number;
|
|
26
|
+
include_profile_interstitial_type: number;
|
|
27
|
+
include_quote_count: boolean;
|
|
28
|
+
include_reply_count: number;
|
|
29
|
+
include_user_entities: boolean;
|
|
30
|
+
include_want_retweets: number;
|
|
31
|
+
pc: number;
|
|
32
|
+
q: string;
|
|
33
|
+
query_source: string;
|
|
34
|
+
send_error_codes: boolean;
|
|
35
|
+
simple_quoted_tweet: boolean;
|
|
36
|
+
skip_status: number;
|
|
37
|
+
spelling_corrections: number;
|
|
38
|
+
tweet_mode: string;
|
|
39
|
+
tweet_search_mode: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Search.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/Search.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
includePromotedContent: boolean;
|
|
6
|
+
withSuperFollowsUserFields: boolean;
|
|
7
|
+
withDownvotePerspective: boolean;
|
|
8
|
+
withReactionsMetadata: boolean;
|
|
9
|
+
withReactionsPerspective: boolean;
|
|
10
|
+
withSuperFollowsTweetFields: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface Features {
|
|
13
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
14
|
+
verified_phone_label_enabled: boolean;
|
|
15
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
16
|
+
view_counts_public_visibility_enabled: boolean;
|
|
17
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
18
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
19
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
20
|
+
vibe_api_enabled: boolean;
|
|
21
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
22
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
23
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
24
|
+
standardized_nudges_misinfo: boolean;
|
|
25
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
26
|
+
interactive_text_enabled: boolean;
|
|
27
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
28
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TweetLike.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/TweetLike.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
tweetId: string;
|
|
3
|
+
count: number;
|
|
4
|
+
cursor: string;
|
|
5
|
+
includePromotedContent: boolean;
|
|
6
|
+
withSuperFollowsUserFields: boolean;
|
|
7
|
+
withDownvotePerspective: boolean;
|
|
8
|
+
withReactionsMetadata: boolean;
|
|
9
|
+
withReactionsPerspective: boolean;
|
|
10
|
+
withSuperFollowsTweetFields: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface Features {
|
|
13
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
14
|
+
verified_phone_label_enabled: boolean;
|
|
15
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
16
|
+
view_counts_public_visibility_enabled: boolean;
|
|
17
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
18
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
19
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
20
|
+
vibe_api_enabled: boolean;
|
|
21
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
22
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
23
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
24
|
+
standardized_nudges_misinfo: boolean;
|
|
25
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
26
|
+
interactive_text_enabled: boolean;
|
|
27
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
28
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TweetLikes.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/TweetLikes.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TweetRetweets.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/tweet/TweetRetweets.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface Variables {
|
|
2
|
+
userId: string;
|
|
3
|
+
screen_name: string;
|
|
4
|
+
count: number;
|
|
5
|
+
cursor: string;
|
|
6
|
+
includePromotedContent: boolean;
|
|
7
|
+
withSuperFollowsUserFields: boolean;
|
|
8
|
+
withDownvotePerspective: boolean;
|
|
9
|
+
withReactionsMetadata: boolean;
|
|
10
|
+
withReactionsPerspective: boolean;
|
|
11
|
+
withSuperFollowsTweetFields: boolean;
|
|
12
|
+
withClientEventToken: boolean;
|
|
13
|
+
withBirdwatchNotes: boolean;
|
|
14
|
+
withVoice: boolean;
|
|
15
|
+
withV2Timeline: boolean;
|
|
16
|
+
}
|
|
17
|
+
export interface Features {
|
|
18
|
+
responsive_web_twitter_blue_verified_badge_is_enabled: boolean;
|
|
19
|
+
verified_phone_label_enabled: boolean;
|
|
20
|
+
responsive_web_graphql_timeline_navigation_enabled: boolean;
|
|
21
|
+
view_counts_public_visibility_enabled: boolean;
|
|
22
|
+
longform_notetweets_consumption_enabled: boolean;
|
|
23
|
+
tweetypie_unmention_optimization_enabled: boolean;
|
|
24
|
+
responsive_web_uc_gql_enabled: boolean;
|
|
25
|
+
vibe_api_enabled: boolean;
|
|
26
|
+
responsive_web_edit_tweet_api_enabled: boolean;
|
|
27
|
+
graphql_is_translatable_rweb_tweet_is_translatable_enabled: boolean;
|
|
28
|
+
view_counts_everywhere_api_enabled: boolean;
|
|
29
|
+
standardized_nudges_misinfo: boolean;
|
|
30
|
+
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: boolean;
|
|
31
|
+
interactive_text_enabled: boolean;
|
|
32
|
+
responsive_web_text_conversations_enabled: boolean;
|
|
33
|
+
responsive_web_enhance_cards_enabled: boolean;
|
|
34
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Details.js","sourceRoot":"","sources":["../../../../../src/types/raw/query/user/Details.ts"],"names":[],"mappings":""}
|