@pipedream/twitter 0.3.10 → 1.0.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 (119) hide show
  1. package/README.md +20 -71
  2. package/dist/actions/add-user-to-list/add-user-to-list.d.ts +380 -0
  3. package/dist/actions/add-user-to-list/add-user-to-list.mjs +42 -0
  4. package/dist/actions/create-tweet/create-tweet.d.ts +163 -0
  5. package/dist/actions/create-tweet/create-tweet.mjs +78 -0
  6. package/dist/actions/delete-tweet/delete-tweet.d.ts +252 -0
  7. package/dist/actions/delete-tweet/delete-tweet.mjs +28 -0
  8. package/dist/actions/follow-user/follow-user.d.ts +255 -0
  9. package/dist/actions/follow-user/follow-user.mjs +37 -0
  10. package/dist/actions/get-tweet/get-tweet.d.ts +1006 -0
  11. package/dist/actions/get-tweet/get-tweet.mjs +35 -0
  12. package/dist/actions/get-user/get-user.d.ts +634 -0
  13. package/dist/actions/get-user/get-user.mjs +37 -0
  14. package/dist/actions/like-tweet/like-tweet.d.ts +252 -0
  15. package/dist/actions/like-tweet/like-tweet.mjs +30 -0
  16. package/dist/actions/list-favorites/list-favorites.d.ts +1138 -0
  17. package/dist/actions/list-favorites/list-favorites.mjs +52 -0
  18. package/dist/actions/list-followers/list-followers.d.ts +765 -0
  19. package/dist/actions/list-followers/list-followers.mjs +52 -0
  20. package/dist/actions/list-lists/list-lists.d.ts +762 -0
  21. package/dist/actions/list-lists/list-lists.mjs +52 -0
  22. package/dist/actions/list-mentions/list-mentions.d.ts +1136 -0
  23. package/dist/actions/list-mentions/list-mentions.mjs +52 -0
  24. package/dist/actions/list-user-tweets/list-user-tweets.d.ts +1138 -0
  25. package/dist/actions/list-user-tweets/list-user-tweets.mjs +52 -0
  26. package/dist/actions/retweet/retweet.d.ts +252 -0
  27. package/dist/actions/retweet/retweet.mjs +31 -0
  28. package/dist/actions/simple-search/simple-search.d.ts +1137 -0
  29. package/dist/actions/simple-search/simple-search.mjs +51 -0
  30. package/dist/actions/simple-search-in-list/simple-search-in-list.d.ts +1142 -0
  31. package/dist/actions/simple-search-in-list/simple-search-in-list.mjs +60 -0
  32. package/dist/actions/unfollow-user/unfollow-user.d.ts +255 -0
  33. package/dist/actions/unfollow-user/unfollow-user.mjs +33 -0
  34. package/dist/actions/unlike-tweet/unlike-tweet.d.ts +252 -0
  35. package/dist/actions/unlike-tweet/unlike-tweet.mjs +28 -0
  36. package/dist/app/twitter.app.d.ts +127 -0
  37. package/dist/app/twitter.app.mjs +341 -0
  38. package/dist/common/dataFields.d.ts +6 -0
  39. package/dist/common/dataFields.mjs +80 -0
  40. package/dist/common/expansions.d.ts +3 -0
  41. package/dist/common/expansions.mjs +17 -0
  42. package/dist/common/methods.d.ts +20 -0
  43. package/dist/common/methods.mjs +48 -0
  44. package/dist/common/propGroups.d.ts +1509 -0
  45. package/dist/common/propGroups.mjs +82 -0
  46. package/dist/common/types/fields.d.ts +18 -0
  47. package/dist/common/types/fields.mjs +1 -0
  48. package/dist/common/types/requestParams.d.ts +103 -0
  49. package/dist/common/types/requestParams.mjs +1 -0
  50. package/dist/common/types/responseSchemas.d.ts +42 -0
  51. package/dist/common/types/responseSchemas.mjs +1 -0
  52. package/dist/sources/common/base.d.ts +149 -0
  53. package/dist/sources/common/base.mjs +62 -0
  54. package/dist/sources/common/cacheUserId.d.ts +7 -0
  55. package/dist/sources/common/cacheUserId.mjs +18 -0
  56. package/dist/sources/common/getItemSummary.d.ts +4 -0
  57. package/dist/sources/common/getItemSummary.mjs +12 -0
  58. package/dist/sources/new-follower-of-user/new-follower-of-user.d.ts +650 -0
  59. package/dist/sources/new-follower-of-user/new-follower-of-user.mjs +49 -0
  60. package/dist/sources/new-list-followed/new-list-followed.d.ts +649 -0
  61. package/dist/sources/new-list-followed/new-list-followed.mjs +50 -0
  62. package/dist/sources/new-tweet-in-list/new-tweet-in-list.d.ts +1021 -0
  63. package/dist/sources/new-tweet-in-list/new-tweet-in-list.mjs +46 -0
  64. package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.d.ts +1023 -0
  65. package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.mjs +49 -0
  66. package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.d.ts +1023 -0
  67. package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.mjs +49 -0
  68. package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.d.ts +1021 -0
  69. package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.mjs +51 -0
  70. package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.d.ts +273 -0
  71. package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.mjs +75 -0
  72. package/dist/sources/new-user-followed/new-user-followed.d.ts +649 -0
  73. package/dist/sources/new-user-followed/new-user-followed.mjs +50 -0
  74. package/dist/tsconfig.tsbuildinfo +1 -0
  75. package/package.json +10 -13
  76. package/actions/add-user-to-list/add-user-to-list.mjs +0 -62
  77. package/actions/advanced-search/advanced-search.mjs +0 -113
  78. package/actions/common.mjs +0 -29
  79. package/actions/create-tweet/create-tweet.mjs +0 -146
  80. package/actions/delete-tweet/delete-tweet.mjs +0 -42
  81. package/actions/follow-user/follow-user.mjs +0 -48
  82. package/actions/get-tweet/get-tweet.mjs +0 -42
  83. package/actions/get-user/get-user.mjs +0 -50
  84. package/actions/like-tweet/like-tweet.mjs +0 -42
  85. package/actions/list-favorites/list-favorites.mjs +0 -63
  86. package/actions/list-followers/list-followers.mjs +0 -67
  87. package/actions/list-lists/list-lists.mjs +0 -69
  88. package/actions/list-mentions/list-mentions.mjs +0 -55
  89. package/actions/list-pending-followers/list-pending-followers.mjs +0 -32
  90. package/actions/list-retweets/list-retweets.mjs +0 -54
  91. package/actions/list-user-tweets/list-user-tweets.mjs +0 -80
  92. package/actions/retweet/retweet.mjs +0 -27
  93. package/actions/simple-search/simple-search.mjs +0 -62
  94. package/actions/simple-search-in-list/simple-search-in-list.mjs +0 -48
  95. package/actions/unfollow-user/unfollow-user.mjs +0 -48
  96. package/actions/unlike-tweet/unlike-tweet.mjs +0 -40
  97. package/actions/upload-media/upload-media.mjs +0 -114
  98. package/old.md +0 -169
  99. package/sources/common/followed.mjs +0 -38
  100. package/sources/common/followers.mjs +0 -159
  101. package/sources/common/tweets.mjs +0 -155
  102. package/sources/language-codes.mjs +0 -742
  103. package/sources/my-liked-tweets/my-liked-tweets.mjs +0 -30
  104. package/sources/my-tweets/my-tweets.mjs +0 -48
  105. package/sources/new-follower-of-me/new-follower-of-me.mjs +0 -69
  106. package/sources/new-follower-of-user/new-follower-of-user.mjs +0 -25
  107. package/sources/new-list-followed/new-list-followed.mjs +0 -24
  108. package/sources/new-trends-by-geo/new-trends-by-geo.mjs +0 -40
  109. package/sources/new-tweet-in-list/new-tweet-in-list.mjs +0 -49
  110. package/sources/new-unfollower-of-me/new-unfollower-of-me.mjs +0 -16
  111. package/sources/new-unfollower-of-user/new-unfollower-of-user.mjs +0 -25
  112. package/sources/new-user-followed/new-user-followed.mjs +0 -25
  113. package/sources/search-mentions/search-mentions.mjs +0 -144
  114. package/sources/tweets-liked-by-user/tweets-liked-by-user.mjs +0 -38
  115. package/sources/user-tweets/user-tweets.mjs +0 -49
  116. package/sources/watch-retweets-of-me/watch-retweets-of-me.mjs +0 -36
  117. package/sources/watch-retweets-of-my-tweet/watch-retweets-of-my-tweet.mjs +0 -44
  118. package/sources/watch-retweets-of-user-tweet/watch-retweets-of-user-tweet.mjs +0 -34
  119. package/twitter.app.mjs +0 -1161
@@ -0,0 +1,1509 @@
1
+ export declare const listFieldProps: {
2
+ expansions: {
3
+ propDefinition: (string | import("@pipedream/types").App<{
4
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
5
+ _getBaseUrl(): "https://api.twitter.com/2";
6
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
7
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
8
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
9
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
10
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
11
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
12
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
13
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
14
+ getAuthenticatedUserId(): Promise<string>;
15
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
16
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
17
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
18
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
19
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
20
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
21
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
22
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
23
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
24
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
25
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
26
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
27
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
28
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
29
+ }, {
30
+ maxResults: {
31
+ type: string;
32
+ label: string;
33
+ description: string;
34
+ optional: boolean;
35
+ };
36
+ listId: {
37
+ type: string;
38
+ label: string;
39
+ description: string;
40
+ options(): Promise<{
41
+ label: string;
42
+ value: string;
43
+ }[]>;
44
+ };
45
+ userNameOrId: {
46
+ type: string;
47
+ label: string;
48
+ description: string;
49
+ optional: boolean;
50
+ default: string;
51
+ };
52
+ tweetId: {
53
+ type: string;
54
+ label: string;
55
+ description: string;
56
+ };
57
+ query: {
58
+ type: string;
59
+ label: string;
60
+ description: string;
61
+ };
62
+ listExpansions: {
63
+ type: string;
64
+ label: string;
65
+ optional: boolean;
66
+ description: string;
67
+ options: string[];
68
+ };
69
+ tweetExpansions: {
70
+ type: string;
71
+ label: string;
72
+ optional: boolean;
73
+ description: string;
74
+ options: string[];
75
+ };
76
+ userExpansions: {
77
+ type: string;
78
+ label: string;
79
+ optional: boolean;
80
+ description: string;
81
+ options: string[];
82
+ };
83
+ listFields: {
84
+ type: string;
85
+ label: string;
86
+ description: string;
87
+ optional: boolean;
88
+ options: string[];
89
+ };
90
+ mediaFields: {
91
+ type: string;
92
+ label: string;
93
+ description: string;
94
+ optional: boolean;
95
+ options: string[];
96
+ };
97
+ placeFields: {
98
+ type: string;
99
+ label: string;
100
+ description: string;
101
+ optional: boolean;
102
+ options: string[];
103
+ };
104
+ pollFields: {
105
+ type: string;
106
+ label: string;
107
+ description: string;
108
+ optional: boolean;
109
+ options: string[];
110
+ };
111
+ tweetFields: {
112
+ type: string;
113
+ label: string;
114
+ description: string;
115
+ optional: boolean;
116
+ options: string[];
117
+ };
118
+ userFields: {
119
+ type: string;
120
+ label: string;
121
+ description: string;
122
+ optional: boolean;
123
+ options: string[];
124
+ };
125
+ }>)[];
126
+ };
127
+ listFields: {
128
+ propDefinition: (string | import("@pipedream/types").App<{
129
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
130
+ _getBaseUrl(): "https://api.twitter.com/2";
131
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
132
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
133
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
134
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
135
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
136
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
137
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
138
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
139
+ getAuthenticatedUserId(): Promise<string>;
140
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
141
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
142
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
143
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
144
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
145
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
146
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
147
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
148
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
149
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
150
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
151
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
152
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
153
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
154
+ }, {
155
+ maxResults: {
156
+ type: string;
157
+ label: string;
158
+ description: string;
159
+ optional: boolean;
160
+ };
161
+ listId: {
162
+ type: string;
163
+ label: string;
164
+ description: string;
165
+ options(): Promise<{
166
+ label: string;
167
+ value: string;
168
+ }[]>;
169
+ };
170
+ userNameOrId: {
171
+ type: string;
172
+ label: string;
173
+ description: string;
174
+ optional: boolean;
175
+ default: string;
176
+ };
177
+ tweetId: {
178
+ type: string;
179
+ label: string;
180
+ description: string;
181
+ };
182
+ query: {
183
+ type: string;
184
+ label: string;
185
+ description: string;
186
+ };
187
+ listExpansions: {
188
+ type: string;
189
+ label: string;
190
+ optional: boolean;
191
+ description: string;
192
+ options: string[];
193
+ };
194
+ tweetExpansions: {
195
+ type: string;
196
+ label: string;
197
+ optional: boolean;
198
+ description: string;
199
+ options: string[];
200
+ };
201
+ userExpansions: {
202
+ type: string;
203
+ label: string;
204
+ optional: boolean;
205
+ description: string;
206
+ options: string[];
207
+ };
208
+ listFields: {
209
+ type: string;
210
+ label: string;
211
+ description: string;
212
+ optional: boolean;
213
+ options: string[];
214
+ };
215
+ mediaFields: {
216
+ type: string;
217
+ label: string;
218
+ description: string;
219
+ optional: boolean;
220
+ options: string[];
221
+ };
222
+ placeFields: {
223
+ type: string;
224
+ label: string;
225
+ description: string;
226
+ optional: boolean;
227
+ options: string[];
228
+ };
229
+ pollFields: {
230
+ type: string;
231
+ label: string;
232
+ description: string;
233
+ optional: boolean;
234
+ options: string[];
235
+ };
236
+ tweetFields: {
237
+ type: string;
238
+ label: string;
239
+ description: string;
240
+ optional: boolean;
241
+ options: string[];
242
+ };
243
+ userFields: {
244
+ type: string;
245
+ label: string;
246
+ description: string;
247
+ optional: boolean;
248
+ options: string[];
249
+ };
250
+ }>)[];
251
+ };
252
+ userFields: {
253
+ propDefinition: (string | import("@pipedream/types").App<{
254
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
255
+ _getBaseUrl(): "https://api.twitter.com/2";
256
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
257
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
258
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
259
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
260
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
261
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
262
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
263
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
264
+ getAuthenticatedUserId(): Promise<string>;
265
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
266
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
267
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
268
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
269
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
270
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
271
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
272
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
273
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
274
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
275
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
276
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
277
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
278
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
279
+ }, {
280
+ maxResults: {
281
+ type: string;
282
+ label: string;
283
+ description: string;
284
+ optional: boolean;
285
+ };
286
+ listId: {
287
+ type: string;
288
+ label: string;
289
+ description: string;
290
+ options(): Promise<{
291
+ label: string;
292
+ value: string;
293
+ }[]>;
294
+ };
295
+ userNameOrId: {
296
+ type: string;
297
+ label: string;
298
+ description: string;
299
+ optional: boolean;
300
+ default: string;
301
+ };
302
+ tweetId: {
303
+ type: string;
304
+ label: string;
305
+ description: string;
306
+ };
307
+ query: {
308
+ type: string;
309
+ label: string;
310
+ description: string;
311
+ };
312
+ listExpansions: {
313
+ type: string;
314
+ label: string;
315
+ optional: boolean;
316
+ description: string;
317
+ options: string[];
318
+ };
319
+ tweetExpansions: {
320
+ type: string;
321
+ label: string;
322
+ optional: boolean;
323
+ description: string;
324
+ options: string[];
325
+ };
326
+ userExpansions: {
327
+ type: string;
328
+ label: string;
329
+ optional: boolean;
330
+ description: string;
331
+ options: string[];
332
+ };
333
+ listFields: {
334
+ type: string;
335
+ label: string;
336
+ description: string;
337
+ optional: boolean;
338
+ options: string[];
339
+ };
340
+ mediaFields: {
341
+ type: string;
342
+ label: string;
343
+ description: string;
344
+ optional: boolean;
345
+ options: string[];
346
+ };
347
+ placeFields: {
348
+ type: string;
349
+ label: string;
350
+ description: string;
351
+ optional: boolean;
352
+ options: string[];
353
+ };
354
+ pollFields: {
355
+ type: string;
356
+ label: string;
357
+ description: string;
358
+ optional: boolean;
359
+ options: string[];
360
+ };
361
+ tweetFields: {
362
+ type: string;
363
+ label: string;
364
+ description: string;
365
+ optional: boolean;
366
+ options: string[];
367
+ };
368
+ userFields: {
369
+ type: string;
370
+ label: string;
371
+ description: string;
372
+ optional: boolean;
373
+ options: string[];
374
+ };
375
+ }>)[];
376
+ description: string;
377
+ };
378
+ };
379
+ export declare const tweetFieldProps: {
380
+ expansions: {
381
+ propDefinition: (string | import("@pipedream/types").App<{
382
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
383
+ _getBaseUrl(): "https://api.twitter.com/2";
384
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
385
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
386
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
387
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
388
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
389
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
390
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
391
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
392
+ getAuthenticatedUserId(): Promise<string>;
393
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
394
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
395
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
396
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
397
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
398
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
399
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
400
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
401
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
402
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
403
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
404
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
405
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
406
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
407
+ }, {
408
+ maxResults: {
409
+ type: string;
410
+ label: string;
411
+ description: string;
412
+ optional: boolean;
413
+ };
414
+ listId: {
415
+ type: string;
416
+ label: string;
417
+ description: string;
418
+ options(): Promise<{
419
+ label: string;
420
+ value: string;
421
+ }[]>;
422
+ };
423
+ userNameOrId: {
424
+ type: string;
425
+ label: string;
426
+ description: string;
427
+ optional: boolean;
428
+ default: string;
429
+ };
430
+ tweetId: {
431
+ type: string;
432
+ label: string;
433
+ description: string;
434
+ };
435
+ query: {
436
+ type: string;
437
+ label: string;
438
+ description: string;
439
+ };
440
+ listExpansions: {
441
+ type: string;
442
+ label: string;
443
+ optional: boolean;
444
+ description: string;
445
+ options: string[];
446
+ };
447
+ tweetExpansions: {
448
+ type: string;
449
+ label: string;
450
+ optional: boolean;
451
+ description: string;
452
+ options: string[];
453
+ };
454
+ userExpansions: {
455
+ type: string;
456
+ label: string;
457
+ optional: boolean;
458
+ description: string;
459
+ options: string[];
460
+ };
461
+ listFields: {
462
+ type: string;
463
+ label: string;
464
+ description: string;
465
+ optional: boolean;
466
+ options: string[];
467
+ };
468
+ mediaFields: {
469
+ type: string;
470
+ label: string;
471
+ description: string;
472
+ optional: boolean;
473
+ options: string[];
474
+ };
475
+ placeFields: {
476
+ type: string;
477
+ label: string;
478
+ description: string;
479
+ optional: boolean;
480
+ options: string[];
481
+ };
482
+ pollFields: {
483
+ type: string;
484
+ label: string;
485
+ description: string;
486
+ optional: boolean;
487
+ options: string[];
488
+ };
489
+ tweetFields: {
490
+ type: string;
491
+ label: string;
492
+ description: string;
493
+ optional: boolean;
494
+ options: string[];
495
+ };
496
+ userFields: {
497
+ type: string;
498
+ label: string;
499
+ description: string;
500
+ optional: boolean;
501
+ options: string[];
502
+ };
503
+ }>)[];
504
+ };
505
+ mediaFields: {
506
+ propDefinition: (string | import("@pipedream/types").App<{
507
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
508
+ _getBaseUrl(): "https://api.twitter.com/2";
509
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
510
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
511
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
512
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
513
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
514
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
515
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
516
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
517
+ getAuthenticatedUserId(): Promise<string>;
518
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
519
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
520
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
521
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
522
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
523
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
524
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
525
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
526
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
527
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
528
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
529
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
530
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
531
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
532
+ }, {
533
+ maxResults: {
534
+ type: string;
535
+ label: string;
536
+ description: string;
537
+ optional: boolean;
538
+ };
539
+ listId: {
540
+ type: string;
541
+ label: string;
542
+ description: string;
543
+ options(): Promise<{
544
+ label: string;
545
+ value: string;
546
+ }[]>;
547
+ };
548
+ userNameOrId: {
549
+ type: string;
550
+ label: string;
551
+ description: string;
552
+ optional: boolean;
553
+ default: string;
554
+ };
555
+ tweetId: {
556
+ type: string;
557
+ label: string;
558
+ description: string;
559
+ };
560
+ query: {
561
+ type: string;
562
+ label: string;
563
+ description: string;
564
+ };
565
+ listExpansions: {
566
+ type: string;
567
+ label: string;
568
+ optional: boolean;
569
+ description: string;
570
+ options: string[];
571
+ };
572
+ tweetExpansions: {
573
+ type: string;
574
+ label: string;
575
+ optional: boolean;
576
+ description: string;
577
+ options: string[];
578
+ };
579
+ userExpansions: {
580
+ type: string;
581
+ label: string;
582
+ optional: boolean;
583
+ description: string;
584
+ options: string[];
585
+ };
586
+ listFields: {
587
+ type: string;
588
+ label: string;
589
+ description: string;
590
+ optional: boolean;
591
+ options: string[];
592
+ };
593
+ mediaFields: {
594
+ type: string;
595
+ label: string;
596
+ description: string;
597
+ optional: boolean;
598
+ options: string[];
599
+ };
600
+ placeFields: {
601
+ type: string;
602
+ label: string;
603
+ description: string;
604
+ optional: boolean;
605
+ options: string[];
606
+ };
607
+ pollFields: {
608
+ type: string;
609
+ label: string;
610
+ description: string;
611
+ optional: boolean;
612
+ options: string[];
613
+ };
614
+ tweetFields: {
615
+ type: string;
616
+ label: string;
617
+ description: string;
618
+ optional: boolean;
619
+ options: string[];
620
+ };
621
+ userFields: {
622
+ type: string;
623
+ label: string;
624
+ description: string;
625
+ optional: boolean;
626
+ options: string[];
627
+ };
628
+ }>)[];
629
+ };
630
+ placeFields: {
631
+ propDefinition: (string | import("@pipedream/types").App<{
632
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
633
+ _getBaseUrl(): "https://api.twitter.com/2";
634
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
635
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
636
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
637
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
638
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
639
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
640
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
641
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
642
+ getAuthenticatedUserId(): Promise<string>;
643
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
644
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
645
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
646
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
647
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
648
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
649
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
650
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
651
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
652
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
653
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
654
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
655
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
656
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
657
+ }, {
658
+ maxResults: {
659
+ type: string;
660
+ label: string;
661
+ description: string;
662
+ optional: boolean;
663
+ };
664
+ listId: {
665
+ type: string;
666
+ label: string;
667
+ description: string;
668
+ options(): Promise<{
669
+ label: string;
670
+ value: string;
671
+ }[]>;
672
+ };
673
+ userNameOrId: {
674
+ type: string;
675
+ label: string;
676
+ description: string;
677
+ optional: boolean;
678
+ default: string;
679
+ };
680
+ tweetId: {
681
+ type: string;
682
+ label: string;
683
+ description: string;
684
+ };
685
+ query: {
686
+ type: string;
687
+ label: string;
688
+ description: string;
689
+ };
690
+ listExpansions: {
691
+ type: string;
692
+ label: string;
693
+ optional: boolean;
694
+ description: string;
695
+ options: string[];
696
+ };
697
+ tweetExpansions: {
698
+ type: string;
699
+ label: string;
700
+ optional: boolean;
701
+ description: string;
702
+ options: string[];
703
+ };
704
+ userExpansions: {
705
+ type: string;
706
+ label: string;
707
+ optional: boolean;
708
+ description: string;
709
+ options: string[];
710
+ };
711
+ listFields: {
712
+ type: string;
713
+ label: string;
714
+ description: string;
715
+ optional: boolean;
716
+ options: string[];
717
+ };
718
+ mediaFields: {
719
+ type: string;
720
+ label: string;
721
+ description: string;
722
+ optional: boolean;
723
+ options: string[];
724
+ };
725
+ placeFields: {
726
+ type: string;
727
+ label: string;
728
+ description: string;
729
+ optional: boolean;
730
+ options: string[];
731
+ };
732
+ pollFields: {
733
+ type: string;
734
+ label: string;
735
+ description: string;
736
+ optional: boolean;
737
+ options: string[];
738
+ };
739
+ tweetFields: {
740
+ type: string;
741
+ label: string;
742
+ description: string;
743
+ optional: boolean;
744
+ options: string[];
745
+ };
746
+ userFields: {
747
+ type: string;
748
+ label: string;
749
+ description: string;
750
+ optional: boolean;
751
+ options: string[];
752
+ };
753
+ }>)[];
754
+ };
755
+ pollFields: {
756
+ propDefinition: (string | import("@pipedream/types").App<{
757
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
758
+ _getBaseUrl(): "https://api.twitter.com/2";
759
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
760
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
761
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
762
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
763
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
764
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
765
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
766
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
767
+ getAuthenticatedUserId(): Promise<string>;
768
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
769
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
770
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
771
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
772
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
773
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
774
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
775
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
776
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
777
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
778
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
779
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
780
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
781
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
782
+ }, {
783
+ maxResults: {
784
+ type: string;
785
+ label: string;
786
+ description: string;
787
+ optional: boolean;
788
+ };
789
+ listId: {
790
+ type: string;
791
+ label: string;
792
+ description: string;
793
+ options(): Promise<{
794
+ label: string;
795
+ value: string;
796
+ }[]>;
797
+ };
798
+ userNameOrId: {
799
+ type: string;
800
+ label: string;
801
+ description: string;
802
+ optional: boolean;
803
+ default: string;
804
+ };
805
+ tweetId: {
806
+ type: string;
807
+ label: string;
808
+ description: string;
809
+ };
810
+ query: {
811
+ type: string;
812
+ label: string;
813
+ description: string;
814
+ };
815
+ listExpansions: {
816
+ type: string;
817
+ label: string;
818
+ optional: boolean;
819
+ description: string;
820
+ options: string[];
821
+ };
822
+ tweetExpansions: {
823
+ type: string;
824
+ label: string;
825
+ optional: boolean;
826
+ description: string;
827
+ options: string[];
828
+ };
829
+ userExpansions: {
830
+ type: string;
831
+ label: string;
832
+ optional: boolean;
833
+ description: string;
834
+ options: string[];
835
+ };
836
+ listFields: {
837
+ type: string;
838
+ label: string;
839
+ description: string;
840
+ optional: boolean;
841
+ options: string[];
842
+ };
843
+ mediaFields: {
844
+ type: string;
845
+ label: string;
846
+ description: string;
847
+ optional: boolean;
848
+ options: string[];
849
+ };
850
+ placeFields: {
851
+ type: string;
852
+ label: string;
853
+ description: string;
854
+ optional: boolean;
855
+ options: string[];
856
+ };
857
+ pollFields: {
858
+ type: string;
859
+ label: string;
860
+ description: string;
861
+ optional: boolean;
862
+ options: string[];
863
+ };
864
+ tweetFields: {
865
+ type: string;
866
+ label: string;
867
+ description: string;
868
+ optional: boolean;
869
+ options: string[];
870
+ };
871
+ userFields: {
872
+ type: string;
873
+ label: string;
874
+ description: string;
875
+ optional: boolean;
876
+ options: string[];
877
+ };
878
+ }>)[];
879
+ };
880
+ tweetFields: {
881
+ propDefinition: (string | import("@pipedream/types").App<{
882
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
883
+ _getBaseUrl(): "https://api.twitter.com/2";
884
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
885
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
886
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
887
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
888
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
889
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
890
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
891
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
892
+ getAuthenticatedUserId(): Promise<string>;
893
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
894
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
895
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
896
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
897
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
898
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
899
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
900
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
901
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
902
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
903
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
904
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
905
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
906
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
907
+ }, {
908
+ maxResults: {
909
+ type: string;
910
+ label: string;
911
+ description: string;
912
+ optional: boolean;
913
+ };
914
+ listId: {
915
+ type: string;
916
+ label: string;
917
+ description: string;
918
+ options(): Promise<{
919
+ label: string;
920
+ value: string;
921
+ }[]>;
922
+ };
923
+ userNameOrId: {
924
+ type: string;
925
+ label: string;
926
+ description: string;
927
+ optional: boolean;
928
+ default: string;
929
+ };
930
+ tweetId: {
931
+ type: string;
932
+ label: string;
933
+ description: string;
934
+ };
935
+ query: {
936
+ type: string;
937
+ label: string;
938
+ description: string;
939
+ };
940
+ listExpansions: {
941
+ type: string;
942
+ label: string;
943
+ optional: boolean;
944
+ description: string;
945
+ options: string[];
946
+ };
947
+ tweetExpansions: {
948
+ type: string;
949
+ label: string;
950
+ optional: boolean;
951
+ description: string;
952
+ options: string[];
953
+ };
954
+ userExpansions: {
955
+ type: string;
956
+ label: string;
957
+ optional: boolean;
958
+ description: string;
959
+ options: string[];
960
+ };
961
+ listFields: {
962
+ type: string;
963
+ label: string;
964
+ description: string;
965
+ optional: boolean;
966
+ options: string[];
967
+ };
968
+ mediaFields: {
969
+ type: string;
970
+ label: string;
971
+ description: string;
972
+ optional: boolean;
973
+ options: string[];
974
+ };
975
+ placeFields: {
976
+ type: string;
977
+ label: string;
978
+ description: string;
979
+ optional: boolean;
980
+ options: string[];
981
+ };
982
+ pollFields: {
983
+ type: string;
984
+ label: string;
985
+ description: string;
986
+ optional: boolean;
987
+ options: string[];
988
+ };
989
+ tweetFields: {
990
+ type: string;
991
+ label: string;
992
+ description: string;
993
+ optional: boolean;
994
+ options: string[];
995
+ };
996
+ userFields: {
997
+ type: string;
998
+ label: string;
999
+ description: string;
1000
+ optional: boolean;
1001
+ options: string[];
1002
+ };
1003
+ }>)[];
1004
+ };
1005
+ userFields: {
1006
+ propDefinition: (string | import("@pipedream/types").App<{
1007
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
1008
+ _getBaseUrl(): "https://api.twitter.com/2";
1009
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1010
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1011
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
1012
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
1013
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
1014
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
1015
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1016
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
1017
+ getAuthenticatedUserId(): Promise<string>;
1018
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1019
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1020
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1021
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1022
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1023
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1024
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1025
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1026
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1027
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1028
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1029
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1030
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
1031
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
1032
+ }, {
1033
+ maxResults: {
1034
+ type: string;
1035
+ label: string;
1036
+ description: string;
1037
+ optional: boolean;
1038
+ };
1039
+ listId: {
1040
+ type: string;
1041
+ label: string;
1042
+ description: string;
1043
+ options(): Promise<{
1044
+ label: string;
1045
+ value: string;
1046
+ }[]>;
1047
+ };
1048
+ userNameOrId: {
1049
+ type: string;
1050
+ label: string;
1051
+ description: string;
1052
+ optional: boolean;
1053
+ default: string;
1054
+ };
1055
+ tweetId: {
1056
+ type: string;
1057
+ label: string;
1058
+ description: string;
1059
+ };
1060
+ query: {
1061
+ type: string;
1062
+ label: string;
1063
+ description: string;
1064
+ };
1065
+ listExpansions: {
1066
+ type: string;
1067
+ label: string;
1068
+ optional: boolean;
1069
+ description: string;
1070
+ options: string[];
1071
+ };
1072
+ tweetExpansions: {
1073
+ type: string;
1074
+ label: string;
1075
+ optional: boolean;
1076
+ description: string;
1077
+ options: string[];
1078
+ };
1079
+ userExpansions: {
1080
+ type: string;
1081
+ label: string;
1082
+ optional: boolean;
1083
+ description: string;
1084
+ options: string[];
1085
+ };
1086
+ listFields: {
1087
+ type: string;
1088
+ label: string;
1089
+ description: string;
1090
+ optional: boolean;
1091
+ options: string[];
1092
+ };
1093
+ mediaFields: {
1094
+ type: string;
1095
+ label: string;
1096
+ description: string;
1097
+ optional: boolean;
1098
+ options: string[];
1099
+ };
1100
+ placeFields: {
1101
+ type: string;
1102
+ label: string;
1103
+ description: string;
1104
+ optional: boolean;
1105
+ options: string[];
1106
+ };
1107
+ pollFields: {
1108
+ type: string;
1109
+ label: string;
1110
+ description: string;
1111
+ optional: boolean;
1112
+ options: string[];
1113
+ };
1114
+ tweetFields: {
1115
+ type: string;
1116
+ label: string;
1117
+ description: string;
1118
+ optional: boolean;
1119
+ options: string[];
1120
+ };
1121
+ userFields: {
1122
+ type: string;
1123
+ label: string;
1124
+ description: string;
1125
+ optional: boolean;
1126
+ options: string[];
1127
+ };
1128
+ }>)[];
1129
+ };
1130
+ };
1131
+ export declare const userFieldProps: {
1132
+ expansions: {
1133
+ propDefinition: (string | import("@pipedream/types").App<{
1134
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
1135
+ _getBaseUrl(): "https://api.twitter.com/2";
1136
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1137
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1138
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
1139
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
1140
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
1141
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
1142
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1143
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
1144
+ getAuthenticatedUserId(): Promise<string>;
1145
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1146
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1147
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1148
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1149
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1150
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1151
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1152
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1153
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1154
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1155
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1156
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1157
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
1158
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
1159
+ }, {
1160
+ maxResults: {
1161
+ type: string;
1162
+ label: string;
1163
+ description: string;
1164
+ optional: boolean;
1165
+ };
1166
+ listId: {
1167
+ type: string;
1168
+ label: string;
1169
+ description: string;
1170
+ options(): Promise<{
1171
+ label: string;
1172
+ value: string;
1173
+ }[]>;
1174
+ };
1175
+ userNameOrId: {
1176
+ type: string;
1177
+ label: string;
1178
+ description: string;
1179
+ optional: boolean;
1180
+ default: string;
1181
+ };
1182
+ tweetId: {
1183
+ type: string;
1184
+ label: string;
1185
+ description: string;
1186
+ };
1187
+ query: {
1188
+ type: string;
1189
+ label: string;
1190
+ description: string;
1191
+ };
1192
+ listExpansions: {
1193
+ type: string;
1194
+ label: string;
1195
+ optional: boolean;
1196
+ description: string;
1197
+ options: string[];
1198
+ };
1199
+ tweetExpansions: {
1200
+ type: string;
1201
+ label: string;
1202
+ optional: boolean;
1203
+ description: string;
1204
+ options: string[];
1205
+ };
1206
+ userExpansions: {
1207
+ type: string;
1208
+ label: string;
1209
+ optional: boolean;
1210
+ description: string;
1211
+ options: string[];
1212
+ };
1213
+ listFields: {
1214
+ type: string;
1215
+ label: string;
1216
+ description: string;
1217
+ optional: boolean;
1218
+ options: string[];
1219
+ };
1220
+ mediaFields: {
1221
+ type: string;
1222
+ label: string;
1223
+ description: string;
1224
+ optional: boolean;
1225
+ options: string[];
1226
+ };
1227
+ placeFields: {
1228
+ type: string;
1229
+ label: string;
1230
+ description: string;
1231
+ optional: boolean;
1232
+ options: string[];
1233
+ };
1234
+ pollFields: {
1235
+ type: string;
1236
+ label: string;
1237
+ description: string;
1238
+ optional: boolean;
1239
+ options: string[];
1240
+ };
1241
+ tweetFields: {
1242
+ type: string;
1243
+ label: string;
1244
+ description: string;
1245
+ optional: boolean;
1246
+ options: string[];
1247
+ };
1248
+ userFields: {
1249
+ type: string;
1250
+ label: string;
1251
+ description: string;
1252
+ optional: boolean;
1253
+ options: string[];
1254
+ };
1255
+ }>)[];
1256
+ };
1257
+ tweetFields: {
1258
+ propDefinition: (string | import("@pipedream/types").App<{
1259
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
1260
+ _getBaseUrl(): "https://api.twitter.com/2";
1261
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1262
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1263
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
1264
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
1265
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
1266
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
1267
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1268
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
1269
+ getAuthenticatedUserId(): Promise<string>;
1270
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1271
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1272
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1273
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1274
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1275
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1276
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1277
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1278
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1279
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1280
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1281
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1282
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
1283
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
1284
+ }, {
1285
+ maxResults: {
1286
+ type: string;
1287
+ label: string;
1288
+ description: string;
1289
+ optional: boolean;
1290
+ };
1291
+ listId: {
1292
+ type: string;
1293
+ label: string;
1294
+ description: string;
1295
+ options(): Promise<{
1296
+ label: string;
1297
+ value: string;
1298
+ }[]>;
1299
+ };
1300
+ userNameOrId: {
1301
+ type: string;
1302
+ label: string;
1303
+ description: string;
1304
+ optional: boolean;
1305
+ default: string;
1306
+ };
1307
+ tweetId: {
1308
+ type: string;
1309
+ label: string;
1310
+ description: string;
1311
+ };
1312
+ query: {
1313
+ type: string;
1314
+ label: string;
1315
+ description: string;
1316
+ };
1317
+ listExpansions: {
1318
+ type: string;
1319
+ label: string;
1320
+ optional: boolean;
1321
+ description: string;
1322
+ options: string[];
1323
+ };
1324
+ tweetExpansions: {
1325
+ type: string;
1326
+ label: string;
1327
+ optional: boolean;
1328
+ description: string;
1329
+ options: string[];
1330
+ };
1331
+ userExpansions: {
1332
+ type: string;
1333
+ label: string;
1334
+ optional: boolean;
1335
+ description: string;
1336
+ options: string[];
1337
+ };
1338
+ listFields: {
1339
+ type: string;
1340
+ label: string;
1341
+ description: string;
1342
+ optional: boolean;
1343
+ options: string[];
1344
+ };
1345
+ mediaFields: {
1346
+ type: string;
1347
+ label: string;
1348
+ description: string;
1349
+ optional: boolean;
1350
+ options: string[];
1351
+ };
1352
+ placeFields: {
1353
+ type: string;
1354
+ label: string;
1355
+ description: string;
1356
+ optional: boolean;
1357
+ options: string[];
1358
+ };
1359
+ pollFields: {
1360
+ type: string;
1361
+ label: string;
1362
+ description: string;
1363
+ optional: boolean;
1364
+ options: string[];
1365
+ };
1366
+ tweetFields: {
1367
+ type: string;
1368
+ label: string;
1369
+ description: string;
1370
+ optional: boolean;
1371
+ options: string[];
1372
+ };
1373
+ userFields: {
1374
+ type: string;
1375
+ label: string;
1376
+ description: string;
1377
+ optional: boolean;
1378
+ options: string[];
1379
+ };
1380
+ }>)[];
1381
+ description: string;
1382
+ };
1383
+ userFields: {
1384
+ propDefinition: (string | import("@pipedream/types").App<{
1385
+ _getAuthHeader(config: import("./types/requestParams.js").HttpRequestParams): Promise<import("oauth-1.0a").Header>;
1386
+ _getBaseUrl(): "https://api.twitter.com/2";
1387
+ _httpRequest({ $, ...args }: import("./types/requestParams.js").HttpRequestParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1388
+ _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("./types/requestParams.js").PaginatedRequestParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").TwitterEntity>>;
1389
+ addUserToList({ listId, ...args }: import("./types/requestParams.js").AddUserToListParams): Promise<object>;
1390
+ createTweet(args: import("./types/requestParams.js").CreateTweetParams): Promise<object>;
1391
+ deleteTweet({ tweetId, ...args }: import("./types/requestParams.js").DeleteTweetParams): Promise<object>;
1392
+ followUser(args: import("./types/requestParams.js").FollowUserParams): Promise<object>;
1393
+ getListTweets({ listId, ...args }: import("./types/requestParams.js").GetListTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1394
+ getTweet({ tweetId, ...args }: import("./types/requestParams.js").GetTweetParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").Tweet>>;
1395
+ getAuthenticatedUserId(): Promise<string>;
1396
+ getUserLikedTweets({ userId, ...args }: import("./types/requestParams.js").GetUserLikedTweetParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1397
+ getUserOwnedLists({ userId, ...args }: import("./types/requestParams.js").GetUserOwnedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1398
+ getUserFollowedLists({ userId, ...args }: import("./types/requestParams.js").GetUserFollowedListsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").List>>;
1399
+ getUserMentions({ userId, ...args }: import("./types/requestParams.js").GetUserMentionsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1400
+ getUserTweets({ userId, ...args }: import("./types/requestParams.js").GetUserTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1401
+ getUserByUsername(username: string): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1402
+ getUser({ userId, ...args }: import("./types/requestParams.js").GetUserParams): Promise<import("./types/responseSchemas").ResponseObject<import("./types/responseSchemas").User>>;
1403
+ likeTweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1404
+ getUserFollowers({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1405
+ getUserFollowing({ userId, ...args }: import("./types/requestParams.js").GetUserFollowersParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").User>>;
1406
+ retweet(args: import("./types/requestParams.js").LikeTweetParams): Promise<object>;
1407
+ searchTweets(args: import("./types/requestParams.js").SearchTweetsParams): Promise<import("./types/responseSchemas").PaginatedResponseObject<import("./types/responseSchemas").Tweet>>;
1408
+ unfollowUser({ userId, ...args }: import("./types/requestParams.js").UnfollowUserParams): Promise<object>;
1409
+ unlikeTweet({ tweetId, ...args }: import("./types/requestParams.js").UnlikeTweetParams): Promise<object>;
1410
+ }, {
1411
+ maxResults: {
1412
+ type: string;
1413
+ label: string;
1414
+ description: string;
1415
+ optional: boolean;
1416
+ };
1417
+ listId: {
1418
+ type: string;
1419
+ label: string;
1420
+ description: string;
1421
+ options(): Promise<{
1422
+ label: string;
1423
+ value: string;
1424
+ }[]>;
1425
+ };
1426
+ userNameOrId: {
1427
+ type: string;
1428
+ label: string;
1429
+ description: string;
1430
+ optional: boolean;
1431
+ default: string;
1432
+ };
1433
+ tweetId: {
1434
+ type: string;
1435
+ label: string;
1436
+ description: string;
1437
+ };
1438
+ query: {
1439
+ type: string;
1440
+ label: string;
1441
+ description: string;
1442
+ };
1443
+ listExpansions: {
1444
+ type: string;
1445
+ label: string;
1446
+ optional: boolean;
1447
+ description: string;
1448
+ options: string[];
1449
+ };
1450
+ tweetExpansions: {
1451
+ type: string;
1452
+ label: string;
1453
+ optional: boolean;
1454
+ description: string;
1455
+ options: string[];
1456
+ };
1457
+ userExpansions: {
1458
+ type: string;
1459
+ label: string;
1460
+ optional: boolean;
1461
+ description: string;
1462
+ options: string[];
1463
+ };
1464
+ listFields: {
1465
+ type: string;
1466
+ label: string;
1467
+ description: string;
1468
+ optional: boolean;
1469
+ options: string[];
1470
+ };
1471
+ mediaFields: {
1472
+ type: string;
1473
+ label: string;
1474
+ description: string;
1475
+ optional: boolean;
1476
+ options: string[];
1477
+ };
1478
+ placeFields: {
1479
+ type: string;
1480
+ label: string;
1481
+ description: string;
1482
+ optional: boolean;
1483
+ options: string[];
1484
+ };
1485
+ pollFields: {
1486
+ type: string;
1487
+ label: string;
1488
+ description: string;
1489
+ optional: boolean;
1490
+ options: string[];
1491
+ };
1492
+ tweetFields: {
1493
+ type: string;
1494
+ label: string;
1495
+ description: string;
1496
+ optional: boolean;
1497
+ options: string[];
1498
+ };
1499
+ userFields: {
1500
+ type: string;
1501
+ label: string;
1502
+ description: string;
1503
+ optional: boolean;
1504
+ options: string[];
1505
+ };
1506
+ }>)[];
1507
+ description: string;
1508
+ };
1509
+ };