@pipedream/twitter 2.0.2 → 2.1.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 (74) hide show
  1. package/dist/actions/add-user-to-list/add-user-to-list.d.ts +6 -0
  2. package/dist/actions/add-user-to-list/add-user-to-list.mjs +2 -2
  3. package/dist/actions/create-tweet/create-tweet.d.ts +2 -0
  4. package/dist/actions/create-tweet/create-tweet.mjs +2 -2
  5. package/dist/actions/delete-tweet/delete-tweet.d.ts +4 -0
  6. package/dist/actions/delete-tweet/delete-tweet.mjs +2 -2
  7. package/dist/actions/follow-user/follow-user.d.ts +4 -0
  8. package/dist/actions/follow-user/follow-user.mjs +2 -2
  9. package/dist/actions/get-tweet/get-tweet.d.ts +4 -0
  10. package/dist/actions/get-tweet/get-tweet.mjs +2 -2
  11. package/dist/actions/get-user/get-user.d.ts +4 -0
  12. package/dist/actions/get-user/get-user.mjs +2 -2
  13. package/dist/actions/like-tweet/like-tweet.d.ts +4 -0
  14. package/dist/actions/like-tweet/like-tweet.mjs +2 -2
  15. package/dist/actions/list-favorites/list-favorites.d.ts +6 -0
  16. package/dist/actions/list-favorites/list-favorites.mjs +2 -2
  17. package/dist/actions/list-followers/list-followers.d.ts +6 -0
  18. package/dist/actions/list-followers/list-followers.mjs +2 -2
  19. package/dist/actions/list-lists/list-lists.d.ts +6 -0
  20. package/dist/actions/list-lists/list-lists.mjs +2 -2
  21. package/dist/actions/list-mentions/list-mentions.d.ts +6 -0
  22. package/dist/actions/list-mentions/list-mentions.mjs +2 -2
  23. package/dist/actions/list-user-tweets/list-user-tweets.d.ts +6 -0
  24. package/dist/actions/list-user-tweets/list-user-tweets.mjs +2 -2
  25. package/dist/actions/retweet/retweet.d.ts +4 -0
  26. package/dist/actions/retweet/retweet.mjs +2 -2
  27. package/dist/actions/send-dm/send-dm.d.ts +144 -0
  28. package/dist/actions/send-dm/send-dm.mjs +50 -0
  29. package/dist/actions/simple-search/simple-search.d.ts +6 -0
  30. package/dist/actions/simple-search/simple-search.mjs +2 -2
  31. package/dist/actions/simple-search-in-list/simple-search-in-list.d.ts +6 -0
  32. package/dist/actions/simple-search-in-list/simple-search-in-list.mjs +2 -2
  33. package/dist/actions/unfollow-user/unfollow-user.d.ts +4 -0
  34. package/dist/actions/unfollow-user/unfollow-user.mjs +2 -2
  35. package/dist/actions/unlike-tweet/unlike-tweet.d.ts +4 -0
  36. package/dist/actions/unlike-tweet/unlike-tweet.mjs +2 -2
  37. package/dist/actions/upload-media/upload-media.d.ts +2 -0
  38. package/dist/actions/upload-media/upload-media.mjs +1 -1
  39. package/dist/app/twitter.app.d.ts +4 -2
  40. package/dist/app/twitter.app.mjs +20 -5
  41. package/dist/common/dataFields.d.ts +2 -0
  42. package/dist/common/dataFields.mjs +17 -0
  43. package/dist/common/expansions.d.ts +1 -0
  44. package/dist/common/expansions.mjs +6 -0
  45. package/dist/common/methods.d.ts +7 -0
  46. package/dist/common/methods.mjs +21 -2
  47. package/dist/common/types/fields.d.ts +7 -0
  48. package/dist/common/types/requestParams.d.ts +11 -1
  49. package/dist/common/types/responseSchemas.d.ts +11 -1
  50. package/dist/sources/common/base.d.ts +2 -0
  51. package/dist/sources/common/getItemSummary.d.ts +2 -2
  52. package/dist/sources/common/getItemSummary.mjs +3 -3
  53. package/dist/sources/new-follower-of-user/new-follower-of-user.d.ts +4 -0
  54. package/dist/sources/new-follower-of-user/new-follower-of-user.mjs +2 -2
  55. package/dist/sources/new-list-followed/new-list-followed.d.ts +4 -0
  56. package/dist/sources/new-list-followed/new-list-followed.mjs +2 -2
  57. package/dist/sources/new-message/new-message.d.ts +87 -0
  58. package/dist/sources/new-message/new-message.mjs +35 -0
  59. package/dist/sources/new-tweet-in-list/new-tweet-in-list.d.ts +4 -0
  60. package/dist/sources/new-tweet-in-list/new-tweet-in-list.mjs +2 -2
  61. package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.d.ts +4 -0
  62. package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.mjs +2 -2
  63. package/dist/sources/new-tweet-metrics/new-tweet-metrics.d.ts +158 -0
  64. package/dist/sources/new-tweet-metrics/new-tweet-metrics.mjs +66 -0
  65. package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.d.ts +4 -0
  66. package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.mjs +2 -2
  67. package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.d.ts +4 -0
  68. package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.mjs +2 -2
  69. package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.d.ts +4 -0
  70. package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.mjs +2 -2
  71. package/dist/sources/new-user-followed/new-user-followed.d.ts +4 -0
  72. package/dist/sources/new-user-followed/new-user-followed.mjs +2 -2
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +1 -1
@@ -16,6 +16,7 @@ declare const _default: import("@pipedream/types").Action<{
16
16
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
17
17
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
18
18
  getAuthenticatedUserId(): Promise<string>;
19
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
19
20
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
20
21
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
21
22
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -28,6 +29,7 @@ declare const _default: import("@pipedream/types").Action<{
28
29
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
29
30
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
30
31
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
32
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
31
33
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
32
34
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
33
35
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -79,6 +81,7 @@ declare const _default: import("@pipedream/types").Action<{
79
81
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
80
82
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
81
83
  getAuthenticatedUserId(): Promise<string>;
84
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
82
85
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
83
86
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
84
87
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -91,6 +94,7 @@ declare const _default: import("@pipedream/types").Action<{
91
94
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
92
95
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
93
96
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
97
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
94
98
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
95
99
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
96
100
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -143,6 +147,7 @@ declare const _default: import("@pipedream/types").Action<{
143
147
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
144
148
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
145
149
  getAuthenticatedUserId(): Promise<string>;
150
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
146
151
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
147
152
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
148
153
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -155,6 +160,7 @@ declare const _default: import("@pipedream/types").Action<{
155
160
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
156
161
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
157
162
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
163
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
158
164
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
159
165
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
160
166
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -6,8 +6,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/lists/list-
6
6
  export default defineAction({
7
7
  key: "twitter-add-user-to-list",
8
8
  name: "Add User To List",
9
- description: `Add a member to a list owned by the user. [See docs here](${DOCS_LINK})`,
10
- version: "2.0.1",
9
+ description: `Add a member to a list owned by the user. [See the documentation](${DOCS_LINK})`,
10
+ version: "2.0.2",
11
11
  type: "action",
12
12
  props: {
13
13
  app,
@@ -13,6 +13,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
13
13
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
14
14
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
15
15
  getAuthenticatedUserId(): Promise<string>;
16
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
16
17
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
17
18
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
18
19
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -25,6 +26,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
25
26
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
26
27
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
27
28
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
29
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
28
30
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
29
31
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
30
32
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -5,8 +5,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/tweets/mana
5
5
  export default defineAction({
6
6
  key: "twitter-create-tweet",
7
7
  name: "Create Tweet",
8
- description: `Create a new tweet. [See docs here](${DOCS_LINK})`,
9
- version: "2.0.1",
8
+ description: `Create a new tweet. [See the documentation](${DOCS_LINK})`,
9
+ version: "2.0.2",
10
10
  type: "action",
11
11
  props: {
12
12
  app,
@@ -13,6 +13,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
13
13
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
14
14
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
15
15
  getAuthenticatedUserId(): Promise<string>;
16
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
16
17
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
17
18
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
18
19
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -25,6 +26,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
25
26
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
26
27
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
27
28
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
29
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
28
30
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
29
31
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
30
32
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -76,6 +78,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
76
78
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
77
79
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
78
80
  getAuthenticatedUserId(): Promise<string>;
81
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
79
82
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
80
83
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
81
84
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -88,6 +91,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
88
91
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
89
92
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
90
93
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
94
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
91
95
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
92
96
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
93
97
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -5,8 +5,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/tweets/mana
5
5
  export default defineAction({
6
6
  key: "twitter-delete-tweet",
7
7
  name: "Delete Tweet",
8
- description: `Remove a posted tweet. [See docs here](${DOCS_LINK})`,
9
- version: "2.0.1",
8
+ description: `Remove a posted tweet. [See the documentation](${DOCS_LINK})`,
9
+ version: "2.0.2",
10
10
  type: "action",
11
11
  props: {
12
12
  app,
@@ -16,6 +16,7 @@ declare const _default: import("@pipedream/types").Action<{
16
16
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
17
17
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
18
18
  getAuthenticatedUserId(): Promise<string>;
19
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
19
20
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
20
21
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
21
22
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -28,6 +29,7 @@ declare const _default: import("@pipedream/types").Action<{
28
29
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
29
30
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
30
31
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
32
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
31
33
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
32
34
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
33
35
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -79,6 +81,7 @@ declare const _default: import("@pipedream/types").Action<{
79
81
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
80
82
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
81
83
  getAuthenticatedUserId(): Promise<string>;
84
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
82
85
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
83
86
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
84
87
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -91,6 +94,7 @@ declare const _default: import("@pipedream/types").Action<{
91
94
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
92
95
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
93
96
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
97
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
94
98
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
95
99
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
96
100
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -6,8 +6,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/users/follo
6
6
  export default defineAction({
7
7
  key: "twitter-follow-user",
8
8
  name: "Follow User",
9
- description: `Follow a user. [See docs here](${DOCS_LINK})`,
10
- version: "2.0.1",
9
+ description: `Follow a user. [See the documentation](${DOCS_LINK})`,
10
+ version: "2.0.2",
11
11
  type: "action",
12
12
  props: {
13
13
  app,
@@ -17,6 +17,7 @@ declare const _default: import("@pipedream/types").Action<{
17
17
  getTweet({ tweetId, ...args }: GetTweetParams): Promise<ResponseObject<Tweet>>;
18
18
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<ResponseObject<import("../../common/types/responseSchemas").User>>;
19
19
  getAuthenticatedUserId(): Promise<string>;
20
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
20
21
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
21
22
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
22
23
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -29,6 +30,7 @@ declare const _default: import("@pipedream/types").Action<{
29
30
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
30
31
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
31
32
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
33
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
32
34
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
33
35
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
34
36
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -80,6 +82,7 @@ declare const _default: import("@pipedream/types").Action<{
80
82
  getTweet({ tweetId, ...args }: GetTweetParams): Promise<ResponseObject<Tweet>>;
81
83
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<ResponseObject<import("../../common/types/responseSchemas").User>>;
82
84
  getAuthenticatedUserId(): Promise<string>;
85
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
83
86
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
84
87
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
85
88
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -92,6 +95,7 @@ declare const _default: import("@pipedream/types").Action<{
92
95
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
93
96
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
94
97
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
98
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
95
99
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
96
100
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
97
101
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -6,8 +6,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/tweets/look
6
6
  export default defineAction({
7
7
  key: "twitter-get-tweet",
8
8
  name: "Get Tweet",
9
- description: `Return a single tweet specified by ID. [See docs here](${DOCS_LINK})`,
10
- version: "2.0.1",
9
+ description: `Return a single tweet specified by ID. [See the documentation](${DOCS_LINK})`,
10
+ version: "2.0.2",
11
11
  type: "action",
12
12
  props: {
13
13
  app,
@@ -18,6 +18,7 @@ declare const _default: import("@pipedream/types").Action<{
18
18
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
19
19
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<ResponseObject<User>>;
20
20
  getAuthenticatedUserId(): Promise<string>;
21
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
21
22
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
22
23
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
23
24
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -30,6 +31,7 @@ declare const _default: import("@pipedream/types").Action<{
30
31
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
31
32
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
32
33
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
34
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
33
35
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
34
36
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
35
37
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -81,6 +83,7 @@ declare const _default: import("@pipedream/types").Action<{
81
83
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
82
84
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<ResponseObject<User>>;
83
85
  getAuthenticatedUserId(): Promise<string>;
86
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
84
87
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
85
88
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
86
89
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -93,6 +96,7 @@ declare const _default: import("@pipedream/types").Action<{
93
96
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
94
97
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
95
98
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
99
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
96
100
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
97
101
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
98
102
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -6,8 +6,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/users/looku
6
6
  export default defineAction({
7
7
  key: "twitter-get-user",
8
8
  name: "Get User",
9
- description: `Get information about a user. [See docs here](${DOCS_LINK})`,
10
- version: "2.0.1",
9
+ description: `Get information about a user. [See the documentation](${DOCS_LINK})`,
10
+ version: "2.0.2",
11
11
  type: "action",
12
12
  props: {
13
13
  app,
@@ -13,6 +13,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
13
13
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
14
14
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
15
15
  getAuthenticatedUserId(): Promise<string>;
16
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
16
17
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
17
18
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
18
19
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -25,6 +26,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
25
26
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
26
27
  retweet(args: LikeTweetParams): Promise<object>;
27
28
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
29
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
28
30
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
29
31
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
30
32
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -76,6 +78,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
76
78
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
77
79
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
78
80
  getAuthenticatedUserId(): Promise<string>;
81
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
79
82
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
80
83
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
81
84
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -88,6 +91,7 @@ declare const _default: import("@pipedream/types").Action<unknown, {
88
91
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
89
92
  retweet(args: LikeTweetParams): Promise<object>;
90
93
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
94
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
91
95
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
92
96
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
93
97
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -5,8 +5,8 @@ const DOCS_LINK = "https://developer.twitter.com/en/docs/twitter-api/tweets/like
5
5
  export default defineAction({
6
6
  key: "twitter-like-tweet",
7
7
  name: "Like Tweet",
8
- description: `Like a tweet specified by its ID. [See docs here](${DOCS_LINK})`,
9
- version: "2.0.1",
8
+ description: `Like a tweet specified by its ID. [See the documentation](${DOCS_LINK})`,
9
+ version: "2.0.2",
10
10
  type: "action",
11
11
  props: {
12
12
  app,
@@ -21,6 +21,7 @@ declare const _default: import("@pipedream/types").Action<{
21
21
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
22
22
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
23
23
  getAuthenticatedUserId(): Promise<string>;
24
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
24
25
  getUserLikedTweets({ userId, ...args }: GetUserLikedTweetParams): Promise<PaginatedResponseObject<Tweet>>;
25
26
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
26
27
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -33,6 +34,7 @@ declare const _default: import("@pipedream/types").Action<{
33
34
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
34
35
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
35
36
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<Tweet>>;
37
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
36
38
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
37
39
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
38
40
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -84,6 +86,7 @@ declare const _default: import("@pipedream/types").Action<{
84
86
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
85
87
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
86
88
  getAuthenticatedUserId(): Promise<string>;
89
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
87
90
  getUserLikedTweets({ userId, ...args }: GetUserLikedTweetParams): Promise<PaginatedResponseObject<Tweet>>;
88
91
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
89
92
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -96,6 +99,7 @@ declare const _default: import("@pipedream/types").Action<{
96
99
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
97
100
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
98
101
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<Tweet>>;
102
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
99
103
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
100
104
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
101
105
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -148,6 +152,7 @@ declare const _default: import("@pipedream/types").Action<{
148
152
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
149
153
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
150
154
  getAuthenticatedUserId(): Promise<string>;
155
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
151
156
  getUserLikedTweets({ userId, ...args }: GetUserLikedTweetParams): Promise<PaginatedResponseObject<Tweet>>;
152
157
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
153
158
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -160,6 +165,7 @@ declare const _default: import("@pipedream/types").Action<{
160
165
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
161
166
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
162
167
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<Tweet>>;
168
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
163
169
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
164
170
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
165
171
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -9,8 +9,8 @@ export const MAX_RESULTS_PER_PAGE = 100;
9
9
  export default defineAction({
10
10
  key: "twitter-list-favorites",
11
11
  name: "List Liked Tweets",
12
- description: `Return the most recent tweets liked by you or the specified user. [See docs here](${DOCS_LINK})`,
13
- version: "2.0.1",
12
+ description: `Return the most recent tweets liked by you or the specified user. [See the documentation](${DOCS_LINK})`,
13
+ version: "2.0.2",
14
14
  type: "action",
15
15
  props: {
16
16
  app,
@@ -21,6 +21,7 @@ declare const _default: import("@pipedream/types").Action<{
21
21
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
22
22
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
23
23
  getAuthenticatedUserId(): Promise<string>;
24
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
24
25
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
25
26
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
26
27
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -33,6 +34,7 @@ declare const _default: import("@pipedream/types").Action<{
33
34
  getUserFollowing({ userId, ...args }: GetUserFollowersParams): Promise<PaginatedResponseObject<User>>;
34
35
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
35
36
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
37
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
36
38
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
37
39
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
38
40
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -84,6 +86,7 @@ declare const _default: import("@pipedream/types").Action<{
84
86
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
85
87
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
86
88
  getAuthenticatedUserId(): Promise<string>;
89
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
87
90
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
88
91
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
89
92
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -96,6 +99,7 @@ declare const _default: import("@pipedream/types").Action<{
96
99
  getUserFollowing({ userId, ...args }: GetUserFollowersParams): Promise<PaginatedResponseObject<User>>;
97
100
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
98
101
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
102
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
99
103
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
100
104
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
101
105
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -148,6 +152,7 @@ declare const _default: import("@pipedream/types").Action<{
148
152
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
149
153
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
150
154
  getAuthenticatedUserId(): Promise<string>;
155
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
151
156
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
152
157
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
153
158
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -160,6 +165,7 @@ declare const _default: import("@pipedream/types").Action<{
160
165
  getUserFollowing({ userId, ...args }: GetUserFollowersParams): Promise<PaginatedResponseObject<User>>;
161
166
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
162
167
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
168
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
163
169
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
164
170
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
165
171
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -9,8 +9,8 @@ export const MAX_RESULTS_PER_PAGE = 1000;
9
9
  export default defineAction({
10
10
  key: "twitter-list-followers",
11
11
  name: "List Followers",
12
- description: `Return a collection of user objects for users following the specified user. [See docs here](${DOCS_LINK})`,
13
- version: "2.0.1",
12
+ description: `Return a collection of user objects for users following the specified user. [See the documentation](${DOCS_LINK})`,
13
+ version: "2.0.2",
14
14
  type: "action",
15
15
  props: {
16
16
  app,
@@ -19,6 +19,7 @@ declare const _default: import("@pipedream/types").Action<{
19
19
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
20
20
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
21
21
  getAuthenticatedUserId(): Promise<string>;
22
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
22
23
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
23
24
  getUserOwnedLists({ userId, ...args }: GetUserOwnedListsParams): Promise<PaginatedResponseObject<List>>;
24
25
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<List>>;
@@ -31,6 +32,7 @@ declare const _default: import("@pipedream/types").Action<{
31
32
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
32
33
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
33
34
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
35
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
34
36
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
35
37
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
36
38
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -82,6 +84,7 @@ declare const _default: import("@pipedream/types").Action<{
82
84
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
83
85
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
84
86
  getAuthenticatedUserId(): Promise<string>;
87
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
85
88
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
86
89
  getUserOwnedLists({ userId, ...args }: GetUserOwnedListsParams): Promise<PaginatedResponseObject<List>>;
87
90
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<List>>;
@@ -94,6 +97,7 @@ declare const _default: import("@pipedream/types").Action<{
94
97
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
95
98
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
96
99
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
100
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
97
101
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
98
102
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
99
103
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -146,6 +150,7 @@ declare const _default: import("@pipedream/types").Action<{
146
150
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
147
151
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
148
152
  getAuthenticatedUserId(): Promise<string>;
153
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
149
154
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
150
155
  getUserOwnedLists({ userId, ...args }: GetUserOwnedListsParams): Promise<PaginatedResponseObject<List>>;
151
156
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<PaginatedResponseObject<List>>;
@@ -158,6 +163,7 @@ declare const _default: import("@pipedream/types").Action<{
158
163
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
159
164
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
160
165
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
166
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
161
167
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
162
168
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
163
169
  uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
@@ -9,8 +9,8 @@ const MAX_RESULTS_PER_PAGE = 100;
9
9
  export default defineAction({
10
10
  key: "twitter-list-lists",
11
11
  name: "List Lists",
12
- description: `Get all lists owned by a user. [See docs here](${DOCS_LINK})`,
13
- version: "2.0.1",
12
+ description: `Get all lists owned by a user. [See the documentation](${DOCS_LINK})`,
13
+ version: "2.0.2",
14
14
  type: "action",
15
15
  props: {
16
16
  app,