@pipedream/twitter 2.0.2 → 2.1.1

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 +12 -6
  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 +4 -2
  4. package/dist/actions/create-tweet/create-tweet.mjs +2 -2
  5. package/dist/actions/delete-tweet/delete-tweet.d.ts +8 -4
  6. package/dist/actions/delete-tweet/delete-tweet.mjs +2 -2
  7. package/dist/actions/follow-user/follow-user.d.ts +8 -4
  8. package/dist/actions/follow-user/follow-user.mjs +2 -2
  9. package/dist/actions/get-tweet/get-tweet.d.ts +8 -4
  10. package/dist/actions/get-tweet/get-tweet.mjs +2 -2
  11. package/dist/actions/get-user/get-user.d.ts +8 -4
  12. package/dist/actions/get-user/get-user.mjs +2 -2
  13. package/dist/actions/like-tweet/like-tweet.d.ts +8 -4
  14. package/dist/actions/like-tweet/like-tweet.mjs +2 -2
  15. package/dist/actions/list-favorites/list-favorites.d.ts +12 -6
  16. package/dist/actions/list-favorites/list-favorites.mjs +2 -2
  17. package/dist/actions/list-followers/list-followers.d.ts +12 -6
  18. package/dist/actions/list-followers/list-followers.mjs +2 -2
  19. package/dist/actions/list-lists/list-lists.d.ts +12 -6
  20. package/dist/actions/list-lists/list-lists.mjs +2 -2
  21. package/dist/actions/list-mentions/list-mentions.d.ts +12 -6
  22. package/dist/actions/list-mentions/list-mentions.mjs +2 -2
  23. package/dist/actions/list-user-tweets/list-user-tweets.d.ts +12 -6
  24. package/dist/actions/list-user-tweets/list-user-tweets.mjs +2 -2
  25. package/dist/actions/retweet/retweet.d.ts +8 -4
  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 +12 -6
  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 +12 -6
  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 +8 -4
  34. package/dist/actions/unfollow-user/unfollow-user.mjs +2 -2
  35. package/dist/actions/unlike-tweet/unlike-tweet.d.ts +8 -4
  36. package/dist/actions/unlike-tweet/unlike-tweet.mjs +2 -2
  37. package/dist/actions/upload-media/upload-media.d.ts +4 -2
  38. package/dist/actions/upload-media/upload-media.mjs +13 -10
  39. package/dist/app/twitter.app.d.ts +6 -4
  40. package/dist/app/twitter.app.mjs +38 -8
  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 +16 -3
  49. package/dist/common/types/responseSchemas.d.ts +11 -1
  50. package/dist/sources/common/base.d.ts +4 -2
  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 +8 -4
  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 +8 -4
  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 +8 -4
  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 +8 -4
  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 +8 -4
  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 +8 -4
  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 +8 -4
  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 +8 -4
  72. package/dist/sources/new-user-followed/new-user-followed.mjs +2 -2
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +2 -1
@@ -18,7 +18,7 @@ declare const _default: import("@pipedream/types").Source<{
18
18
  propDefinition: (string | import("@pipedream/types").App<{
19
19
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
20
20
  _getBaseUrl(): "https://api.twitter.com/2";
21
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
21
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
22
22
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
23
23
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
24
24
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -28,6 +28,7 @@ declare const _default: import("@pipedream/types").Source<{
28
28
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
29
29
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
30
30
  getAuthenticatedUserId(): Promise<string>;
31
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
31
32
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
32
33
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
33
34
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -40,9 +41,10 @@ declare const _default: import("@pipedream/types").Source<{
40
41
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
41
42
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
42
43
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
44
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
43
45
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
44
46
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
45
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
47
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
46
48
  }, {
47
49
  maxResults: {
48
50
  type: string;
@@ -81,7 +83,7 @@ declare const _default: import("@pipedream/types").Source<{
81
83
  app: import("@pipedream/types").App<{
82
84
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
83
85
  _getBaseUrl(): "https://api.twitter.com/2";
84
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
86
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
85
87
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
86
88
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
87
89
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -91,6 +93,7 @@ declare const _default: import("@pipedream/types").Source<{
91
93
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
92
94
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
93
95
  getAuthenticatedUserId(): Promise<string>;
96
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
94
97
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
95
98
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
96
99
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -103,9 +106,10 @@ declare const _default: import("@pipedream/types").Source<{
103
106
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
104
107
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
105
108
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
109
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
106
110
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
107
111
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
108
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
112
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
109
113
  }, {
110
114
  maxResults: {
111
115
  type: string;
@@ -9,8 +9,8 @@ export default defineSource({
9
9
  ...common,
10
10
  key: "twitter-new-tweet-posted-by-user",
11
11
  name: "New Tweet Posted by User",
12
- description: `Emit new event when the specified User posts a Tweet [See docs here](${DOCS_LINK})`,
13
- version: "2.0.1",
12
+ description: `Emit new event when the specified User posts a Tweet [See the documentation](${DOCS_LINK})`,
13
+ version: "2.0.3",
14
14
  type: "source",
15
15
  props: {
16
16
  ...common.props,
@@ -16,7 +16,7 @@ declare const _default: import("@pipedream/types").Source<{
16
16
  propDefinition: (string | import("@pipedream/types").App<{
17
17
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
18
18
  _getBaseUrl(): "https://api.twitter.com/2";
19
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
19
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
20
20
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
21
21
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
22
22
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -26,6 +26,7 @@ declare const _default: import("@pipedream/types").Source<{
26
26
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
27
27
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
28
28
  getAuthenticatedUserId(): Promise<string>;
29
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
29
30
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
30
31
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
31
32
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -38,9 +39,10 @@ declare const _default: import("@pipedream/types").Source<{
38
39
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
39
40
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
40
41
  searchTweets(args: SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
42
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
41
43
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
42
44
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
43
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
45
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
44
46
  }, {
45
47
  maxResults: {
46
48
  type: string;
@@ -79,7 +81,7 @@ declare const _default: import("@pipedream/types").Source<{
79
81
  app: import("@pipedream/types").App<{
80
82
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
81
83
  _getBaseUrl(): "https://api.twitter.com/2";
82
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
84
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
83
85
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
84
86
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
85
87
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -89,6 +91,7 @@ declare const _default: import("@pipedream/types").Source<{
89
91
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<Tweet>>;
90
92
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").User>>;
91
93
  getAuthenticatedUserId(): Promise<string>;
94
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
92
95
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
93
96
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
94
97
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -101,9 +104,10 @@ declare const _default: import("@pipedream/types").Source<{
101
104
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").User>>;
102
105
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
103
106
  searchTweets(args: SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<Tweet>>;
107
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
104
108
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
105
109
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
106
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
110
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
107
111
  }, {
108
112
  maxResults: {
109
113
  type: string;
@@ -8,8 +8,8 @@ export default defineSource({
8
8
  ...common,
9
9
  key: "twitter-new-tweet-posted-matching-query",
10
10
  name: "New Tweet Posted Matching Query",
11
- description: `Emit new event when a new tweet matching the specified query is posted [See docs here](${DOCS_LINK})`,
12
- version: "2.0.1",
11
+ description: `Emit new event when a new tweet matching the specified query is posted [See the documentation](${DOCS_LINK})`,
12
+ version: "2.0.3",
13
13
  type: "source",
14
14
  props: {
15
15
  ...common.props,
@@ -18,7 +18,7 @@ declare const _default: import("@pipedream/types").Source<{
18
18
  propDefinition: (string | import("@pipedream/types").App<{
19
19
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
20
20
  _getBaseUrl(): "https://api.twitter.com/2";
21
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
21
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
22
22
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
23
23
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
24
24
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -28,6 +28,7 @@ declare const _default: import("@pipedream/types").Source<{
28
28
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
29
29
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
30
30
  getAuthenticatedUserId(): Promise<string>;
31
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
31
32
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
32
33
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
33
34
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -40,9 +41,10 @@ declare const _default: import("@pipedream/types").Source<{
40
41
  getUserFollowing({ userId, ...args }: GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
41
42
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
42
43
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
44
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
43
45
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
44
46
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
45
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
47
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
46
48
  }, {
47
49
  maxResults: {
48
50
  type: string;
@@ -81,7 +83,7 @@ declare const _default: import("@pipedream/types").Source<{
81
83
  app: import("@pipedream/types").App<{
82
84
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
83
85
  _getBaseUrl(): "https://api.twitter.com/2";
84
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
86
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
85
87
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
86
88
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
87
89
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -91,6 +93,7 @@ declare const _default: import("@pipedream/types").Source<{
91
93
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
92
94
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
93
95
  getAuthenticatedUserId(): Promise<string>;
96
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
94
97
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
95
98
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
96
99
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -103,9 +106,10 @@ declare const _default: import("@pipedream/types").Source<{
103
106
  getUserFollowing({ userId, ...args }: GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
104
107
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
105
108
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
109
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
106
110
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
107
111
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
108
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
112
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
109
113
  }, {
110
114
  maxResults: {
111
115
  type: string;
@@ -8,8 +8,8 @@ export default defineSource({
8
8
  ...common,
9
9
  key: "twitter-new-unfollower-of-user",
10
10
  name: "New Unfollower of User",
11
- description: `Emit new event when the specified User loses a Follower [See docs here](${DOCS_LINK})`,
12
- version: "2.0.1",
11
+ description: `Emit new event when the specified User loses a Follower [See the documentation](${DOCS_LINK})`,
12
+ version: "2.0.3",
13
13
  type: "source",
14
14
  props: {
15
15
  ...common.props,
@@ -17,7 +17,7 @@ declare const _default: import("@pipedream/types").Source<{
17
17
  propDefinition: (string | import("@pipedream/types").App<{
18
18
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
19
19
  _getBaseUrl(): "https://api.twitter.com/2";
20
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
20
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
21
21
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
22
22
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
23
23
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -27,6 +27,7 @@ declare const _default: import("@pipedream/types").Source<{
27
27
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
28
28
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
29
29
  getAuthenticatedUserId(): Promise<string>;
30
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
30
31
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
31
32
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
32
33
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -39,9 +40,10 @@ declare const _default: import("@pipedream/types").Source<{
39
40
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
40
41
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
41
42
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
43
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
42
44
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
43
45
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
44
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
46
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
45
47
  }, {
46
48
  maxResults: {
47
49
  type: string;
@@ -80,7 +82,7 @@ declare const _default: import("@pipedream/types").Source<{
80
82
  app: import("@pipedream/types").App<{
81
83
  _getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
82
84
  _getBaseUrl(): "https://api.twitter.com/2";
83
- _httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
85
+ _httpRequest({ $, specialAuth, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
84
86
  _paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
85
87
  addUserToList({ listId, ...args }: import("../../common/types/requestParams.js").AddUserToListParams): Promise<object>;
86
88
  createTweet(args: import("../../common/types/requestParams.js").CreateTweetParams): Promise<object>;
@@ -90,6 +92,7 @@ declare const _default: import("@pipedream/types").Source<{
90
92
  getTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").GetTweetParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").Tweet>>;
91
93
  getAuthenticatedUser(args: import("../../common/types/requestParams.js").GetAuthenticatedUserParams): Promise<import("../../common/types/responseSchemas").ResponseObject<User>>;
92
94
  getAuthenticatedUserId(): Promise<string>;
95
+ getDirectMessages(args: import("../../common/types/requestParams.js").GetDirectMessagesParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").DirectMessage>>;
93
96
  getUserLikedTweets({ userId, ...args }: import("../../common/types/requestParams.js").GetUserLikedTweetParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
94
97
  getUserOwnedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserOwnedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
95
98
  getUserFollowedLists({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowedListsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").List>>;
@@ -102,9 +105,10 @@ declare const _default: import("@pipedream/types").Source<{
102
105
  getUserFollowing({ userId, ...args }: import("../../common/types/requestParams.js").GetUserFollowersParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<User>>;
103
106
  retweet(args: import("../../common/types/requestParams.js").LikeTweetParams): Promise<object>;
104
107
  searchTweets(args: import("../../common/types/requestParams.js").SearchTweetsParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").Tweet>>;
108
+ sendMessage({ userId, ...args }: import("../../common/types/requestParams.js").SendMessageParams): Promise<object>;
105
109
  unfollowUser({ userId, ...args }: import("../../common/types/requestParams.js").UnfollowUserParams): Promise<object>;
106
110
  unlikeTweet({ tweetId, ...args }: import("../../common/types/requestParams.js").UnlikeTweetParams): Promise<object>;
107
- uploadMedia({ ...args }: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
111
+ uploadMedia(args: import("../../common/types/requestParams.js").UploadMediaParams): Promise<object>;
108
112
  }, {
109
113
  maxResults: {
110
114
  type: string;
@@ -10,8 +10,8 @@ export default defineSource({
10
10
  ...common,
11
11
  key: "twitter-new-user-followed",
12
12
  name: "New User Followed by User",
13
- description: `Emit new event when the specified User follows another User [See docs here](${DOCS_LINK})`,
14
- version: "2.0.1",
13
+ description: `Emit new event when the specified User follows another User [See the documentation](${DOCS_LINK})`,
14
+ version: "2.0.3",
15
15
  type: "source",
16
16
  props: {
17
17
  ...common.props,
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/oauth-1.0a@2.2.6/node_modules/oauth-1.0a/oauth-1.0a.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@pipedream+types@0.1.6/node_modules/@pipedream/types/dist/index.d.ts","../common/types/fields.ts","../common/types/requestParams.ts","../common/types/responseSchemas.ts","../common/errorMessage.ts","../app/twitter.app.ts","../common/dataFields.ts","../common/expansions.ts","../common/methods.ts","../actions/add-user-to-list/add-user-to-list.ts","../actions/create-tweet/create-tweet.ts","../actions/delete-tweet/delete-tweet.ts","../actions/follow-user/follow-user.ts","../actions/get-tweet/get-tweet.ts","../actions/get-user/get-user.ts","../actions/like-tweet/like-tweet.ts","../actions/list-favorites/list-favorites.ts","../actions/list-followers/list-followers.ts","../actions/list-lists/list-lists.ts","../actions/list-mentions/list-mentions.ts","../actions/list-user-tweets/list-user-tweets.ts","../actions/retweet/retweet.ts","../actions/simple-search/simple-search.ts","../actions/simple-search-in-list/simple-search-in-list.ts","../actions/unfollow-user/unfollow-user.ts","../actions/unlike-tweet/unlike-tweet.ts","../common/constants.ts","../actions/upload-media/upload-media.ts","../sources/common/base.ts","../sources/common/cacheUserId.ts","../sources/common/getItemSummary.ts","../sources/new-follower-of-user/new-follower-of-user.ts","../sources/new-list-followed/new-list-followed.ts","../sources/new-tweet-in-list/new-tweet-in-list.ts","../sources/new-tweet-liked-by-user/new-tweet-liked-by-user.ts","../sources/new-tweet-posted-by-user/new-tweet-posted-by-user.ts","../sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.ts","../sources/new-unfollower-of-user/new-unfollower-of-user.ts","../sources/new-user-followed/new-user-followed.ts","../common/additionalProps.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/types.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@27.5.1/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@27.5.2/node_modules/@types/jest/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.2/node_modules/@types/prettier/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"a7755c2d99539fb62de0630fb339af59614846f4551daccf6cb26586a114e8ba","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"af9771b066ec35ffa1c7db391b018d2469d55e51b98ae95e62b6cbef1b0169ca","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","ff0dc1f7ea4776290ddcf324657682079f68404494aa58422fce7d4b02deac25",{"version":"1074a045d133f703776ae7b124023dde110d45c0a9591f067754ea433c9dc62c","signature":"3292249ae53ef0ddead9ae8331fd045b7f58bcdca3dbe97dbc1c978416678f50"},{"version":"faeb6eba02a5bc41bd6732f9cc3ca332becc174a6124c86a94149e3c86c7fadd","signature":"15a8fe757d5a698e60aa5e0f7f56142cc56efe0ce42c1d61e446ce065d0c48c8"},{"version":"9c9283588dcc2fe8456abd793c89de1a6ce407fbe7f472b6186840f1575ed055","signature":"48b75066cc39ea90b613fcfd86003a224a813e4c829fcfac87da3433e0b49607"},{"version":"7d8bec161fccd124a57b2e981a2d65de8c91d62c5f29096a37394750d2eea8f0","signature":"eef53ae058121d41778c5cbb3f62fa54f56cb71f7cd4b14bf905089f3704e84d"},{"version":"84efdfb11789c818d97282e09cef8bc66d53d32bcaa495daf977c70898fa786f","signature":"8c253b0981be8407c46d4f2bcc97cb194152042b4df4c2eddaa634b71c9a5bdc"},{"version":"ece75c0366bb9fd7b627e7b2058c8058cd2f7e7bba846a706db385beb9e7fc86","signature":"e8851b5d6f3c67a4cb3fff08370f281df75a8d33e1749859cc789aa9325e465b"},{"version":"608e5e2046c837f4df75b8c633602d33c28e8ddbbf4a24ba751beb26b1cbc2aa","signature":"64e9837b92bf7ccf87916125b5a492c271b07831e89704d1fa94b0572b264ae1"},{"version":"08b38c7d9c83b6de00cb535a660af65937ec7d4cf5d3484ad3e4554f37ddbb57","signature":"e447ffd0879d38e9637ac96db7962ca09f1f739fec540610251a042aa1276937"},{"version":"1ef0f6bee917f8654c5e723fc7fa899090b09af57fc0eab36cf7bee9eedb8052","signature":"b6ea9928bed0c65a0a28e558f9528add887bf4b31f4ab329f8cae259da4fe689"},{"version":"98d00089095c2c14a0fcf6bd9d54f357c7be65301c5502d53093d94c614eb72b","signature":"90c653567291bb87310cb3dee2e596554b9444d261bc2ce96bb9f335fd278804"},{"version":"85ec8ef540467490344a8b2ef84073796b5be83d84a576a758e81fa2927e0192","signature":"9159693bd79374514f68d03a1a59e3e5710afe636e2e484ade6f87aeb8e6fd4f"},{"version":"f402461754184145aa72420567660c7e1a602a871dc7ae778ef13c15aadb31f7","signature":"c64c54b7a0f01551df401c0993aa27e04a32fac364ae3ed5f0851393789a4b2d"},{"version":"e053c27ba97e9ddd6bf7c17765a7cd98c0354ebe33ba308f21d4b913783cb719","signature":"cf12f3a400e6c0a973bd5af4f518a8922d1f0134ab72431846115cf98cfdd5b0"},{"version":"f8bbf800d424e61dd1151e95f19255ecf64449fc9a8de63d8f0fab01f5a84d0f","signature":"6e677b5780a7a2b5a6017f2ba82272bfe1cf75b7f4195b002be8a16d7c3d415f"},{"version":"f83dd1ffae738b67759b999cd7bdddbdcfcedb441c89aef467e32dc0e5edeb22","signature":"7573dae8afca2dfb31b2a742b5629e27a418bc450ec0a017d058a6c7c65909de"},{"version":"5adc7d11b279d8fbf85357c260593c3f40ba14a37e1145cf70161482c495235b","signature":"6b76a55cada5512ac7873792a4baecdb82471fa4be8c0251274dbda3d6e0257a"},{"version":"f65e28b96ebbe3d4625403ac9d69a15205c2d05e0e7133302625dac7b9c1a651","signature":"2fa5b043b28784295b10b134dd2db90a42019388d059fd6b510b581c86a74adb"},{"version":"e664249177762e82defe42bf2c484c4770165a4ef3eaa0537c2234420181984f","signature":"e9d65cec20c54941a36d36f007faa9e4b20fc924d99d6f04bb45b439dfbaca37"},{"version":"19b9ced43f62bec1c07da193d0dfb62b021b3d2d83d8b784f19db032cb896da4","signature":"03c4be04b356efbfb4a3eb62bbe2101daaa22bd2b519d2b2f20c76ff13ca7603"},{"version":"e7438f4ff36ccd85ea5ad7d2502e77fa21c45b5db6696247b2d0991df54efc4e","signature":"f81a86f68e9455455cf1b855a2045457b5ef7b32bb9f7095ee7a3188a6109989"},{"version":"da0c3533140b8876bcdea2387c88a319ff1044675ddc29316c45b12d4e483e9a","signature":"c6f6513c8d697440da27471c95e7ab082659b0736c3bac715967745cbbf0708c"},{"version":"0708c7197bcca08c3c632b29f1aba8baf3bdd1c78d4b895a832b7573567aa08a","signature":"0f9f7aa4ea6e676e36665281a700126621be982f5b762096a0a2cc7a761f913c"},{"version":"716dcf860dcf936d549f8ec8486b378042ed38b398bc770eb3c44a6c41d4ceaa","signature":"bb6a4fdfb13945ccb5452f6004372d8d4c5e8c5e8bb08cfb0aa3aaa6a577f2d9"},{"version":"1be1c2259c627da6b8f78d1f0a80f894800f3f5b5544fedab2b05908c8743658","signature":"89addd0326dc59cde8016b091d2f3605eca53871cb1d9d7ab5d5b8748e2f6179"},{"version":"a4b5ed138243031de148b7400fa7edf7a9413cb4837f00a0748e5e1204ebbb58","signature":"72d5cf1209565b85abc8f78e151e90149fe170031c398f96834e9f17b5c17ff2"},{"version":"b981f61278f34d8992584c0f0fa7b0ebc9f32acb27af933dcdf580976104552b","signature":"f8afbea086b0fb0aa6b51a9755ffdab08123ecc38b2d2e1ab624c5f3b30e0174"},{"version":"d6d08b8bcc4e7d547f34ce7bb648c53deb05158e8dd34b1bd5688e25eb38fd31","signature":"61e57767068072b2d225293660dede80a9095fd3d3c26933e610271ea77f0ddc"},{"version":"60650873494f8f1c2aed4f1302fd793c65332c738350cec7c2cd81608d5177ac","signature":"3d02acb80761fc5c378fab69f30f507c53a37653ebb35ff62a340c2981974f4f"},{"version":"f3844b110d223ab46af440f5159178a14989584dbdabc6d6f96afb2fc27c4b83","signature":"b00e8f99be211dbbe5ce89816a1591252a89c1e73a72ff9b0d1e9998503df91a"},{"version":"eb6f0b2844fe8cff603b43948c09ca54c9dd2a75900b070c2b34493b61ffe433","signature":"267597318dba1946b4fa33797161d9a3d59248e599980bbc4e7e0c78b3012cbe"},{"version":"54635ac6362d7163f1b7db3d52bb7d3ad9e4889e8418e4728b611fe947a48abb","signature":"47960106cf21b5a6f45d523536022578d9c7f0d2ed82949e93fa7bb669a7272a"},{"version":"a8b04c82b87418898ff738504b2925480d0f308171c5cb6712e501e289af51e9","signature":"2743cba4889d3c3dfc92b70e00cb33b13492b839b15fa88ddbc76fc69fa4a61e"},{"version":"d2203b3a4e71db47bb9712dce6978090d5bb6601a4eea2f162a36038e9910104","signature":"0fa541f37d4dad77324f822c0ec8f523503a28bed170821633d9d375942c579f"},{"version":"8d11272cb99ed6eb5db9229f1630b5831a9d5ea01d2ab38e103b408c3087af68","signature":"26586d206569e7fc14009662de495c0c3ec7bec87a7380a95584e166d72f0ee3"},{"version":"086e58b628df2b43c70d914c7d1983128b9bb534cd141557b974c3e5197d34d1","signature":"487d12a10e5d30b563a9320d7c8342d26e456213fd16c1c76bc8af6a3b857d8a"},{"version":"4981312fd8826e82b2d5e75a9d1d6e823b5dfe9d18b5e6be13709116e778a572","signature":"46b200cf3aa481deca85ea6d1fc530d51969d556d9095590fa0d0ec0eed48397"},{"version":"10d8d30c27443e1f7e0afad900d27849a4b73a9b3c850aedbd54f4a26cbf85d2","signature":"d492018611d6eda5fa17a83210d4bc020edb275335daf67bb31bfa86e96b5945"},{"version":"9acbf56ec911406904d770766bee91e812e751c60058bad21f152020ee4ef728","signature":"c8326e96be159c16cd45d93492066440fe46da2b1e1bdca2e434495f46e3faa9"},{"version":"22fb97118c00178818b7755d00da0f01cc5c1c57235d6e294f6d903cee1a0379","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"module":6,"outDir":"./","target":7},"fileIdsList":[[86,94,96,98,99,102],[86,94,96,98,99],[86,94,96,97,98,99,102],[59,86,94,98,99,120],[42,52,86,94,96,97,98],[86],[86,100,101],[86,94,95],[86,97,98,99],[86,102],[86,97],[86,94,96,97,99,102,111,122,123,124],[86,94,96,97,99,102,122,123,124],[86,94,96,97,99,102,117,122,124],[86,94,96,97,99,102,110,122,123,124],[86,94,96,97,99,102,114,122,123,124],[86,94,96,97,99,102,116,122,124],[86,94,96,97,99,111,122,123,124],[86,93],[86,137,142],[43,86],[46,86],[47,52,86],[48,58,59,66,75,85,86],[48,49,58,66,86],[50,86],[51,52,59,67,86],[52,75,82,86],[53,55,58,66,86],[54,86],[55,56,86],[57,58,86],[58,86],[58,59,60,75,85,86],[58,59,60,75,86],[86,90],[61,66,75,85,86],[58,59,61,62,66,75,82,85,86],[61,63,75,82,85,86],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92],[58,64,86],[65,85,86],[55,58,66,75,86],[67,86],[68,86],[46,69,86],[70,84,86,90],[71,86],[72,86],[58,73,86],[73,74,86,88],[58,75,76,77,86],[75,77,86],[75,76,86],[78,86],[79,86],[58,80,81,86],[80,81,86],[52,66,75,82,86],[83,86],[66,84,86],[47,61,72,85,86],[52,86],[75,86,87],[86,88],[86,89],[47,52,58,60,69,75,85,86,88,90],[75,86,91],[86,135,138],[86,135,138,139,140],[86,137],[86,134,141],[86,136],[42,94,96,97,102],[42,94,96,97],[94,95],[102],[97],[42,94,96,97,102,124]],"referencedMap":[[103,1],[104,2],[105,2],[106,1],[107,3],[108,3],[109,2],[110,3],[111,3],[112,3],[113,3],[114,3],[115,2],[117,3],[116,3],[118,1],[119,2],[121,4],[99,5],[133,6],[120,6],[100,6],[98,6],[101,6],[102,7],[95,6],[96,8],[97,6],[122,9],[123,10],[124,11],[125,12],[126,13],[127,14],[128,15],[129,16],[130,17],[131,18],[132,13],[94,19],[143,20],[43,21],[44,21],[46,22],[47,23],[48,24],[49,25],[50,26],[51,27],[52,28],[53,29],[54,30],[55,31],[56,31],[57,32],[58,33],[59,34],[60,35],[45,36],[92,6],[61,37],[62,38],[63,39],[93,40],[64,41],[65,42],[66,43],[67,44],[68,45],[69,46],[70,47],[71,48],[72,49],[73,50],[74,51],[75,52],[77,53],[76,54],[78,55],[79,56],[80,57],[81,58],[82,59],[83,60],[84,61],[85,62],[86,63],[87,64],[88,65],[89,66],[90,67],[91,68],[144,6],[134,6],[135,6],[139,69],[141,70],[140,69],[138,71],[142,72],[42,6],[137,73],[136,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[32,6],[29,6],[30,6],[31,6],[33,6],[7,6],[34,6],[39,6],[40,6],[35,6],[36,6],[37,6],[38,6],[1,6],[41,6]],"exportedModulesMap":[[103,74],[104,75],[105,75],[106,74],[107,74],[108,74],[109,75],[110,74],[111,74],[112,74],[113,74],[114,74],[115,75],[117,74],[116,74],[118,74],[119,75],[121,75],[99,75],[96,76],[122,75],[123,77],[124,78],[125,79],[126,79],[127,79],[128,79],[129,79],[130,79],[131,79],[132,79],[94,19],[143,20],[43,21],[44,21],[46,22],[47,23],[48,24],[49,25],[50,26],[51,27],[52,28],[53,29],[54,30],[55,31],[56,31],[57,32],[58,33],[59,34],[60,35],[45,36],[92,6],[61,37],[62,38],[63,39],[93,40],[64,41],[65,42],[66,43],[67,44],[68,45],[69,46],[70,47],[71,48],[72,49],[73,50],[74,51],[75,52],[77,53],[76,54],[78,55],[79,56],[80,57],[81,58],[82,59],[83,60],[84,61],[85,62],[86,63],[87,64],[88,65],[89,66],[90,67],[91,68],[144,6],[134,6],[135,6],[139,69],[141,70],[140,69],[138,71],[142,72],[42,6],[137,73],[136,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[32,6],[29,6],[30,6],[31,6],[33,6],[7,6],[34,6],[39,6],[40,6],[35,6],[36,6],[37,6],[38,6],[1,6],[41,6]],"semanticDiagnosticsPerFile":[103,104,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,121,99,133,120,100,98,101,102,95,96,97,122,123,124,125,126,127,128,129,130,131,132,94,143,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,92,61,62,63,93,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,144,134,135,139,141,140,138,142,42,137,136,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41],"latestChangedDtsFile":"./common/additionalProps.d.ts"},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/oauth-1.0a@2.2.6/node_modules/oauth-1.0a/oauth-1.0a.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@17.0.45/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@pipedream+types@0.1.6/node_modules/@pipedream/types/dist/index.d.ts","../common/types/fields.ts","../../../node_modules/.pnpm/form-data@4.0.0/node_modules/form-data/index.d.ts","../common/types/requestParams.ts","../common/types/responseSchemas.ts","../common/errorMessage.ts","../app/twitter.app.ts","../common/dataFields.ts","../common/expansions.ts","../common/methods.ts","../actions/add-user-to-list/add-user-to-list.ts","../actions/create-tweet/create-tweet.ts","../actions/delete-tweet/delete-tweet.ts","../actions/follow-user/follow-user.ts","../actions/get-tweet/get-tweet.ts","../actions/get-user/get-user.ts","../actions/like-tweet/like-tweet.ts","../actions/list-favorites/list-favorites.ts","../actions/list-followers/list-followers.ts","../actions/list-lists/list-lists.ts","../actions/list-mentions/list-mentions.ts","../actions/list-user-tweets/list-user-tweets.ts","../actions/retweet/retweet.ts","../actions/send-dm/send-dm.ts","../actions/simple-search/simple-search.ts","../actions/simple-search-in-list/simple-search-in-list.ts","../actions/unfollow-user/unfollow-user.ts","../actions/unlike-tweet/unlike-tweet.ts","../common/constants.ts","../actions/upload-media/upload-media.ts","../sources/common/base.ts","../sources/common/cacheUserId.ts","../sources/common/getItemSummary.ts","../sources/new-follower-of-user/new-follower-of-user.ts","../sources/new-list-followed/new-list-followed.ts","../sources/new-message/new-message.ts","../sources/new-tweet-in-list/new-tweet-in-list.ts","../sources/new-tweet-liked-by-user/new-tweet-liked-by-user.ts","../sources/new-tweet-metrics/new-tweet-metrics.ts","../sources/new-tweet-posted-by-user/new-tweet-posted-by-user.ts","../sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.ts","../sources/new-unfollower-of-user/new-unfollower-of-user.ts","../sources/new-user-followed/new-user-followed.ts","../common/additionalProps.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/types.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@27.5.1/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@27.5.2/node_modules/@types/jest/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.2/node_modules/@types/prettier/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"a7755c2d99539fb62de0630fb339af59614846f4551daccf6cb26586a114e8ba","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"af9771b066ec35ffa1c7db391b018d2469d55e51b98ae95e62b6cbef1b0169ca","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","ff0dc1f7ea4776290ddcf324657682079f68404494aa58422fce7d4b02deac25",{"version":"9daee7d7b97ad590bc98d429bcd4b79606d1fb5d2e6b1f827b417bca913123a0","signature":"8fe12e76593c6af25af776a49ef5e1ed6b4647167b67a4eaafc6ae8f22c88e4f"},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",{"version":"45255b23af48e986e6105e800fdeaa5bca813c30495bb88aa9463d915001d68a","signature":"0dbf782c7b2945dec065e05314de4abd8f4aa4f539dead75c285ec47f6b05d63"},{"version":"af378f44e601187232932f3bc2b07ea0fb489392d193cfb9a010e87466b92faa","signature":"64306881c0b72cf4ff3a6688302574eafc837c9741e6ba2340647d042058b442"},{"version":"7d8bec161fccd124a57b2e981a2d65de8c91d62c5f29096a37394750d2eea8f0","signature":"eef53ae058121d41778c5cbb3f62fa54f56cb71f7cd4b14bf905089f3704e84d"},{"version":"bb74239827938f39ed2d0f4f5d03648ae6ba29ac70f601b7d8484658a9c84fa9","signature":"d4e182e6ab0700e8cdbde16f941111789b512a01c48bc3ecaaa2618fbe37c9bd"},{"version":"923f2205f6238684268345d48878e9fa17a73e5683cbc68322acf95e4a215c7f","signature":"0ac8ed8b6168a977a769eb300968038e8fc4ec8e50561a4d938bc715a8641452"},{"version":"e4a50e39b40fa812723a6d8458f269290dc0c14edba2ff5abf700ceff43b23de","signature":"7b5766252ac39aeafbff605983f69f6d6b36130a12e421455759be33493d8562"},{"version":"e59e015ebb15dc85b97a9e5435f2661c318313a2c5e3b806d38f379178a6fac5","signature":"73d99765b8ce5ea51fb78134d5e9118cb2ebe4b33e5ff34af3fec84e89c67400"},{"version":"8157f7d8192a87ef17cacf8968e666bf1bfd4d8d02ed08cb6ffff3c00e199d17","signature":"4c749862e4ea1ac47f7efb5d094efed82b8517ad80ce3b008286cceb37ab635b"},{"version":"542e34f430397ec9c11fbd2f7847cf042ad3ad27faea000b3d2ab6013164160c","signature":"feca85a63a6e3f084bf6aee4763969c677f11357922b96f75225314d9f903c26"},{"version":"2a4dbedb11e6f5f6621237389d2bd2da32fc197a50a558a8cf4fa3ad51b53c73","signature":"2164dc8898b8d4b306e1db1f8558d05b0f65f0975785fa5deb0f6cb9917dcba0"},{"version":"17ac5a34fc69bbd901e50835c9cf6554e146fce78600ac87a64deb7729196263","signature":"a7c36029c633467e006048211604db762b3b1de9c57bab03beedf1945af0a1a4"},{"version":"d5eb647f14c99f0ea6fc1ed1f7aae10fb16a98d195c2af5de559d4c84751fae2","signature":"65c80d7350e90024983ca678d10f6d1e8ca8b94ccbebdabd3b5bb64d261a5ca5"},{"version":"0adfa3ab9f3edbe88274115997e71786901a982489e548dc4768342a44634860","signature":"361eee32528f30a7a097563964337c2eca9cdd3437226a1dde251b58ecf94582"},{"version":"6272ec8c25cb96e9226f2c1842758ea681ad60d4ea2252bd730ce34e046e2c5f","signature":"c586247e669e40828080053ddade829cc0298309ed718e1d2b7d42dc2771ea12"},{"version":"890e397a00f73add07d068be74002c3611815e0349fd1dc2a250cf8278b5c460","signature":"736e4979879ac8ecd59bbfea72f8569f8a25c2234b8bc2c02c9eb1a79502adb0"},{"version":"470924238c7acd82fa75f4d4b86b77b69c31919a57cc9332246e80e82650c513","signature":"26d6aa1eee6b591af246665db79d947b05c4c80efe99484b8a06d29627aee4f3"},{"version":"0d5b9d0fc61cb46686158244919be20283f1c9f83a053122dab1a9172f14dcc6","signature":"c451db586bbf5e9383514f522cbc327f4d409501313b4b16f2d2f35e0ec603d3"},{"version":"c2adaee8973e144522805de6ed6dfbd0b9acff5cd70624a4232de266df16429e","signature":"a5f2a03b5c22d71ac85d615908c61ee9f32cc3f3875aa471e9f2364c08ce2a26"},{"version":"21405e05abc49a8a17476b468b1090398e1cf9bc13b940f7c14a063daefbbab6","signature":"e8a12a3ef0fcb64648553c2ad0ef83ab2b1b950be45e8b455e69b6925d5ba0a3"},{"version":"4247bdf45df4896088b8255703155e54c889a1d96031883aca835ed826c4f61c","signature":"4d86efabc1da4754ec7cf0e48ba7d090d8ac99a55f71bccd924a6a8012dcce7c"},{"version":"9fa1562fa9c35b49c928b5e42c2cfc5b87409bc58b05b5429973e3a52068f01b","signature":"5ec284a8f327f118df7ad0de3a653109d170b3fb7a5e35631e533880d21548fd"},{"version":"d9ab6a785daf7bf3a9e60faa047f383edea0c5a8635e91532fa202bad1aa7739","signature":"bfba631ef53812ee391a9a8f7b1e13850f5483554bf38f1035da27f6b727fd5f"},{"version":"2b226c136fe15088c1fa98aa9814d3b3ad36eedfd17b27732f8bdd6ca43d8b0d","signature":"439598a1430262d1b53d1f02c36d48c20408ccd3ef2cda6a01b3d81f55122e73"},{"version":"d37686d81e42899fc59d603518ede5401dc3e137d4da5c0a8fc8e5b91ecad077","signature":"2d39c2e2c6ec5b41f7e21f457552cabb1d254daa3d4cf3dff4fe1e784d5cc386"},{"version":"c5b235dbaaa6e7b5ad397a535c440c767f42bc03ff25c3dbd2bdbb91046d34f6","signature":"2407168279be3b805504fb00a40c1d39462c4ca8eb8fc164dd10bca48fb39f38"},{"version":"b981f61278f34d8992584c0f0fa7b0ebc9f32acb27af933dcdf580976104552b","signature":"f8afbea086b0fb0aa6b51a9755ffdab08123ecc38b2d2e1ab624c5f3b30e0174"},{"version":"4f709378e66c7cfde0f6d5de93c27849e841c346a4758e6317ed2cff70b9a94c","signature":"32b589f6e3274c54ac5b1c9e3fb8c5d2d9572d1a0858bf240c772072f5187c45"},{"version":"60650873494f8f1c2aed4f1302fd793c65332c738350cec7c2cd81608d5177ac","signature":"0746ba47c74a7825099da9571bed23757e2875327e378d14aafc1469f9acf713"},{"version":"f3844b110d223ab46af440f5159178a14989584dbdabc6d6f96afb2fc27c4b83","signature":"b00e8f99be211dbbe5ce89816a1591252a89c1e73a72ff9b0d1e9998503df91a"},{"version":"ad97b6fe244871b9efd2f63db8038c1f9807b53f8567aff6a554b4982dec0ce4","signature":"d0495d58e4915db41b9b323dbfbaa5d3327fc32e20df681cd7c05002604e4c9d"},{"version":"36c9e32d2f8d149f2d2d7ec166c49643120998de6b846b21776cbe858e6a916c","signature":"254ab638c445d153b77f4280fb1ad38cc401e8d48dd87a01c7d153698e1dd2d4"},{"version":"396643807d2d567e37f1c732a8c0445c2cdd23061acbaa4d575d1055a0c0f83b","signature":"8d4280476fce9dac79f7c451e6ad3dfce24a304ed67e0fa01ec93ede9b62d02a"},{"version":"0a308fbf817c5db61cba146c5c9bbc6187e27d3593f8d4fd2b454254daa81c24","signature":"acbd8ec5ea67b0db156a4b30856a27b31ac0aa8c6798e6b1868e544e00915eac"},{"version":"bb5d702b30d2818ba3bbe9feca8ee7d30251a934c8662ae87fc7f196ca7557f9","signature":"15f3af8e3ac8a66e0915ef2410498db96f93b778377ed7f43e06b9ec43a48429"},{"version":"2a0c74badf758b90ea4cbad37c69e0263a67ab4f1f4ff5d2e4c7f1bd0c7bbe18","signature":"d45a9b2e92b6528b6ffd5c34b2975baefa4c83243c8c1ae09d843635e76f4f2e"},{"version":"d26bc241df8632b2667bc8c26756d14aeffb69133522b98b35f4c698069b94fa","signature":"8f35d5aec459ea7a19fb4399473a40e67d9169bfcbcaede02d6794bdad57a2c1"},{"version":"cd72d3116e781c2ee4867f6fdddf662624112a665a2234abefc6081f0ca0cc58","signature":"5ce828eb5620720b15d9cc4b128fab496e554728666d65c9ff881247d944be18"},{"version":"b9099297b2a9623c33c7054d21d1aa51ae19d053b9e450654c31efdb5c517b45","signature":"e0aefe0a3330ec4d423bc041c317bb6934229a0134baef60ce0a0ca7ea38cd1b"},{"version":"84d17d6abe860190772b61fd229a647ce861b3e638c5982ed2e2587f42096d12","signature":"f9c69e33818f19bcaf7a532b2e79ce8bc85899f32bd27341515ff6f1b00186c6"},{"version":"1f47d9de6f7715f2b8a3dc15e04bf39f2830ff9a5b2d3d13876d07f37fe2cd6d","signature":"53f48d500b78e0057c2ec039d68953c40c6dcd5e32e852c0f32956b6accf02e8"},{"version":"22fb97118c00178818b7755d00da0f01cc5c1c57235d6e294f6d903cee1a0379","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"module":6,"outDir":"./","target":7},"fileIdsList":[[86,94,97,99,100,103],[86,94,97,99,100],[86,94,97,98,99,100,103],[59,86,94,96,99,100,122],[42,52,86,94,97,98,99],[86],[86,101,102],[86,94,95,96],[86,98,99,100],[86,103],[86,98],[86,94,97,98,100,103,112,124,125,126],[86,94,97,98,100,103,124,125,126],[86,94,97,98,103,124,126],[86,94,97,98,100,103,119,124,126],[86,94,97,98,100,103,111,124,125,126],[86,94,97,98,100,101,124],[86,94,97,98,100,103,115,124,125,126],[86,94,97,98,100,103,118,124,126],[86,94,97,98,100,112,124,125,126],[86,93],[86,141,146],[43,86],[46,86],[47,52,86],[48,58,59,66,75,85,86],[48,49,58,66,86],[50,86],[51,52,59,67,86],[52,75,82,86],[53,55,58,66,86],[54,86],[55,56,86],[57,58,86],[58,86],[58,59,60,75,85,86],[58,59,60,75,86],[86,90],[61,66,75,85,86],[58,59,61,62,66,75,82,85,86],[61,63,75,82,85,86],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92],[58,64,86],[65,85,86],[55,58,66,75,86],[67,86],[68,86],[46,69,86],[70,84,86,90],[71,86],[72,86],[58,73,86],[73,74,86,88],[58,75,76,77,86],[75,77,86],[75,76,86],[78,86],[79,86],[58,80,81,86],[80,81,86],[52,66,75,82,86],[83,86],[66,84,86],[47,61,72,85,86],[52,86],[75,86,87],[86,88],[86,89],[47,52,58,60,69,75,85,86,88,90],[75,86,91],[61,75,86,93],[86,139,142],[86,139,142,143,144],[86,141],[86,138,145],[86,140],[42,94,97,98,103],[42,94,97,98],[94,95,96],[103],[98],[42,94,97,98,103,126]],"referencedMap":[[104,1],[105,2],[106,2],[107,1],[108,3],[109,3],[110,2],[111,3],[112,3],[113,3],[114,3],[115,3],[116,2],[117,1],[119,3],[118,3],[120,1],[121,2],[123,4],[100,5],[137,6],[122,6],[101,6],[99,6],[102,6],[103,7],[95,6],[97,8],[98,6],[124,9],[125,10],[126,11],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,13],[94,21],[147,22],[43,23],[44,23],[46,24],[47,25],[48,26],[49,27],[50,28],[51,29],[52,30],[53,31],[54,32],[55,33],[56,33],[57,34],[58,35],[59,36],[60,37],[45,38],[92,6],[61,39],[62,40],[63,41],[93,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,53],[75,54],[77,55],[76,56],[78,57],[79,58],[80,59],[81,60],[82,61],[83,62],[84,63],[85,64],[86,65],[87,66],[88,67],[89,68],[90,69],[91,70],[148,6],[138,6],[96,71],[139,6],[143,72],[145,73],[144,72],[142,74],[146,75],[42,6],[141,76],[140,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[32,6],[29,6],[30,6],[31,6],[33,6],[7,6],[34,6],[39,6],[40,6],[35,6],[36,6],[37,6],[38,6],[1,6],[41,6]],"exportedModulesMap":[[104,77],[105,78],[106,78],[107,77],[108,77],[109,77],[110,78],[111,77],[112,77],[113,77],[114,77],[115,77],[116,78],[117,77],[119,77],[118,77],[120,77],[121,78],[123,78],[100,78],[97,79],[124,78],[125,80],[126,81],[127,82],[128,82],[129,82],[130,82],[131,82],[132,78],[133,82],[134,82],[135,82],[136,82],[94,21],[147,22],[43,23],[44,23],[46,24],[47,25],[48,26],[49,27],[50,28],[51,29],[52,30],[53,31],[54,32],[55,33],[56,33],[57,34],[58,35],[59,36],[60,37],[45,38],[92,6],[61,39],[62,40],[63,41],[93,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,53],[75,54],[77,55],[76,56],[78,57],[79,58],[80,59],[81,60],[82,61],[83,62],[84,63],[85,64],[86,65],[87,66],[88,67],[89,68],[90,69],[91,70],[148,6],[138,6],[96,71],[139,6],[143,72],[145,73],[144,72],[142,74],[146,75],[42,6],[141,76],[140,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[32,6],[29,6],[30,6],[31,6],[33,6],[7,6],[34,6],[39,6],[40,6],[35,6],[36,6],[37,6],[38,6],[1,6],[41,6]],"semanticDiagnosticsPerFile":[104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,118,120,121,123,100,137,122,101,99,102,103,95,97,98,124,125,126,127,128,129,130,131,132,133,134,135,136,94,147,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,92,61,62,63,93,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,148,138,96,139,143,145,144,142,146,42,141,140,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41],"latestChangedDtsFile":"./common/additionalProps.d.ts"},"version":"4.9.5"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/twitter",
3
- "version": "2.0.2",
3
+ "version": "2.1.1",
4
4
  "description": "Pipedream Twitter Components",
5
5
  "main": "dist/app/twitter.app.mjs",
6
6
  "keywords": [
@@ -18,6 +18,7 @@
18
18
  "dependencies": {
19
19
  "@pipedream/platform": "^1.5.1",
20
20
  "@pipedream/types": "^0.1.4",
21
+ "form-data": "^4.0.0",
21
22
  "oauth-1.0a": "^2.2.6"
22
23
  }
23
24
  }