@pipedream/twitter 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -1
- package/dist/actions/add-user-to-list/add-user-to-list.d.ts +3 -3
- package/dist/actions/add-user-to-list/add-user-to-list.mjs +21 -14
- package/dist/actions/create-tweet/create-tweet.d.ts +1 -1
- package/dist/actions/create-tweet/create-tweet.mjs +35 -28
- package/dist/actions/delete-tweet/delete-tweet.d.ts +2 -2
- package/dist/actions/delete-tweet/delete-tweet.mjs +16 -9
- package/dist/actions/follow-user/follow-user.d.ts +2 -2
- package/dist/actions/follow-user/follow-user.mjs +20 -13
- package/dist/actions/get-tweet/get-tweet.d.ts +2 -2
- package/dist/actions/get-tweet/get-tweet.mjs +17 -10
- package/dist/actions/get-user/get-user.d.ts +2 -2
- package/dist/actions/get-user/get-user.mjs +20 -13
- package/dist/actions/like-tweet/like-tweet.d.ts +2 -2
- package/dist/actions/like-tweet/like-tweet.mjs +18 -11
- package/dist/actions/list-favorites/list-favorites.d.ts +4 -4
- package/dist/actions/list-favorites/list-favorites.mjs +20 -13
- package/dist/actions/list-followers/list-followers.d.ts +4 -4
- package/dist/actions/list-followers/list-followers.mjs +20 -13
- package/dist/actions/list-lists/list-lists.d.ts +4 -4
- package/dist/actions/list-lists/list-lists.mjs +20 -13
- package/dist/actions/list-mentions/list-mentions.d.ts +4 -4
- package/dist/actions/list-mentions/list-mentions.mjs +20 -13
- package/dist/actions/list-user-tweets/list-user-tweets.d.ts +4 -4
- package/dist/actions/list-user-tweets/list-user-tweets.mjs +20 -13
- package/dist/actions/retweet/retweet.d.ts +2 -2
- package/dist/actions/retweet/retweet.mjs +20 -13
- package/dist/actions/simple-search/simple-search.d.ts +4 -4
- package/dist/actions/simple-search/simple-search.mjs +21 -14
- package/dist/actions/simple-search-in-list/simple-search-in-list.d.ts +4 -4
- package/dist/actions/simple-search-in-list/simple-search-in-list.mjs +24 -17
- package/dist/actions/unfollow-user/unfollow-user.d.ts +2 -2
- package/dist/actions/unfollow-user/unfollow-user.mjs +16 -9
- package/dist/actions/unlike-tweet/unlike-tweet.d.ts +2 -2
- package/dist/actions/unlike-tweet/unlike-tweet.mjs +16 -9
- package/dist/app/twitter.app.d.ts +1 -1
- package/dist/app/twitter.app.mjs +45 -34
- package/dist/common/dataFields.mjs +6 -6
- package/dist/common/errorMessage.d.ts +2 -0
- package/dist/common/errorMessage.mjs +2 -0
- package/dist/sources/common/base.d.ts +1 -1
- package/dist/sources/common/base.mjs +10 -2
- package/dist/sources/new-follower-of-user/new-follower-of-user.d.ts +2 -2
- package/dist/sources/new-follower-of-user/new-follower-of-user.mjs +1 -1
- package/dist/sources/new-list-followed/new-list-followed.d.ts +2 -2
- package/dist/sources/new-list-followed/new-list-followed.mjs +1 -1
- package/dist/sources/new-tweet-in-list/new-tweet-in-list.d.ts +2 -2
- package/dist/sources/new-tweet-in-list/new-tweet-in-list.mjs +1 -1
- package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.d.ts +2 -2
- package/dist/sources/new-tweet-liked-by-user/new-tweet-liked-by-user.mjs +1 -1
- package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.d.ts +2 -2
- package/dist/sources/new-tweet-posted-by-user/new-tweet-posted-by-user.mjs +1 -1
- package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.d.ts +2 -2
- package/dist/sources/new-tweet-posted-matching-query/new-tweet-posted-matching-query.mjs +1 -1
- package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.d.ts +2 -2
- package/dist/sources/new-unfollower-of-user/new-unfollower-of-user.mjs +1 -1
- package/dist/sources/new-user-followed/new-user-followed.d.ts +2 -2
- package/dist/sources/new-user-followed/new-user-followed.mjs +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -14,7 +14,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
14
14
|
}, {
|
|
15
15
|
query: {
|
|
16
16
|
propDefinition: (string | import("@pipedream/types").App<{
|
|
17
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
17
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
18
18
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
19
19
|
_httpRequest({ $, ...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>>;
|
|
@@ -76,7 +76,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
76
76
|
}>)[];
|
|
77
77
|
};
|
|
78
78
|
app: import("@pipedream/types").App<{
|
|
79
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
79
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
80
80
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
81
81
|
_httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
82
82
|
_paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
@@ -9,7 +9,7 @@ export default defineSource({
|
|
|
9
9
|
key: "twitter-new-tweet-posted-matching-query",
|
|
10
10
|
name: "New Tweet Posted Matching Query",
|
|
11
11
|
description: `Emit new event when a new tweet matching the specified query is posted [See docs here](${DOCS_LINK})`,
|
|
12
|
-
version: "0.1.
|
|
12
|
+
version: "0.1.3",
|
|
13
13
|
type: "source",
|
|
14
14
|
props: {
|
|
15
15
|
...common.props,
|
|
@@ -16,7 +16,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
16
16
|
}, {
|
|
17
17
|
userNameOrId: {
|
|
18
18
|
propDefinition: (string | import("@pipedream/types").App<{
|
|
19
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
19
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
20
20
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
21
21
|
_httpRequest({ $, ...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>>;
|
|
@@ -78,7 +78,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
78
78
|
}>)[];
|
|
79
79
|
};
|
|
80
80
|
app: import("@pipedream/types").App<{
|
|
81
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
81
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
82
82
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
83
83
|
_httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
84
84
|
_paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
@@ -9,7 +9,7 @@ export default defineSource({
|
|
|
9
9
|
key: "twitter-new-unfollower-of-user",
|
|
10
10
|
name: "New Unfollower of User",
|
|
11
11
|
description: `Emit new event when the specified User loses a Follower [See docs here](${DOCS_LINK})`,
|
|
12
|
-
version: "1.0.
|
|
12
|
+
version: "1.0.4",
|
|
13
13
|
type: "source",
|
|
14
14
|
props: {
|
|
15
15
|
...common.props,
|
|
@@ -15,7 +15,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
15
15
|
}, {
|
|
16
16
|
userNameOrId: {
|
|
17
17
|
propDefinition: (string | import("@pipedream/types").App<{
|
|
18
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
18
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
19
19
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
20
20
|
_httpRequest({ $, ...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>>;
|
|
@@ -77,7 +77,7 @@ declare const _default: import("@pipedream/types").Source<{
|
|
|
77
77
|
}>)[];
|
|
78
78
|
};
|
|
79
79
|
app: import("@pipedream/types").App<{
|
|
80
|
-
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams):
|
|
80
|
+
_getAuthHeader(config: import("../../common/types/requestParams.js").HttpRequestParams): import("oauth-1.0a").Header;
|
|
81
81
|
_getBaseUrl(): "https://api.twitter.com/2";
|
|
82
82
|
_httpRequest({ $, ...args }: import("../../common/types/requestParams.js").HttpRequestParams): Promise<import("../../common/types/responseSchemas").ResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
83
83
|
_paginatedRequest({ maxResults, maxPerPage, params, ...args }: import("../../common/types/requestParams.js").PaginatedRequestParams): Promise<import("../../common/types/responseSchemas").PaginatedResponseObject<import("../../common/types/responseSchemas").TwitterEntity>>;
|
|
@@ -11,7 +11,7 @@ export default defineSource({
|
|
|
11
11
|
key: "twitter-new-user-followed",
|
|
12
12
|
name: "New User Followed by User",
|
|
13
13
|
description: `Emit new event when the specified User follows another User [See docs here](${DOCS_LINK})`,
|
|
14
|
-
version: "1.1.
|
|
14
|
+
version: "1.1.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.5/node_modules/@pipedream/types/dist/index.d.ts","../common/types/fields.ts","../common/types/requestParams.ts","../common/types/responseSchemas.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","../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","2c20f4c2ceba56d3b255b1ba1c1e4c893d2042817150cbd8e4e04fb22e29b93e",{"version":"1074a045d133f703776ae7b124023dde110d45c0a9591f067754ea433c9dc62c","signature":"3292249ae53ef0ddead9ae8331fd045b7f58bcdca3dbe97dbc1c978416678f50"},{"version":"aa939652ff99453e42569ec165a7ed53b1d89619654ce5f226eb462992b8bdcd","signature":"134f1219d550620832608b7240b0199b3303c4aa9866476a20999d5028f94587"},{"version":"9c9283588dcc2fe8456abd793c89de1a6ce407fbe7f472b6186840f1575ed055","signature":"48b75066cc39ea90b613fcfd86003a224a813e4c829fcfac87da3433e0b49607"},{"version":"ced26136115383665ac6ddca2f7cfa0e75c153b8aead8a25d708bdf21b35d927","signature":"d19e22b2289a6fc797dc1a40f36a83ff4cf13486e7ad5c5fc56f2a791f5678ba"},{"version":"ec54a3355441789ea0a174bdb82f58905b3b6c73be9a13e7d83e84303b34902d","signature":"e8851b5d6f3c67a4cb3fff08370f281df75a8d33e1749859cc789aa9325e465b"},{"version":"608e5e2046c837f4df75b8c633602d33c28e8ddbbf4a24ba751beb26b1cbc2aa","signature":"64e9837b92bf7ccf87916125b5a492c271b07831e89704d1fa94b0572b264ae1"},{"version":"08b38c7d9c83b6de00cb535a660af65937ec7d4cf5d3484ad3e4554f37ddbb57","signature":"e447ffd0879d38e9637ac96db7962ca09f1f739fec540610251a042aa1276937"},{"version":"bfbd039d962c09ee953c292d7d622f7ee78edc752c8bd9a8d91a508555ff385c","signature":"abf50d17868eab8bebabf1d4d5d6e4c7ab0c68309b24ac59df2c8d3c873b996b"},{"version":"ea76772845bba531e5202063aab2d91446d7aa43e032138f5910a7b0f57aa795","signature":"6681458faf972000393d48a9d12ffdd8d23972d767d58a6f29f32f2851cb9d46"},{"version":"c52c0976ca1cbdedc943204405c3de41f7f9ed5241dc6029f038a5745b1db564","signature":"206aa02eb8faaa8d8b13734df97d1d7dd088f55608be0d089c22e09357b1cead"},{"version":"87ff7d6f82796041ea83f98bd2ee649c1809c241922de177691f58009694a13c","signature":"98e355455f999a1d27cab3eda33049ec02900d7755e8ffd81c28b7c0875dba16"},{"version":"35fb62944048d672221b0581fc6038ecf7585f2ea5cfaa17145b8f21dd43047e","signature":"98c6d05e17a9e3f9d0cee40aee39c3f7dd389aa6ff296916480d04c288860ae2"},{"version":"faed88aa06c61abe143a8c8b20f3139916199b67068cc6e68e7bd2a1ec941260","signature":"dfecddef8a7bf68d232436abc6c16d0f6c255ed35047913823ffca8c4c99349e"},{"version":"22a82782e149da477d56a5db7e2e0daa793322b976b48b0c01ba783bd0737aa6","signature":"e7ffc20522dcab25f50135f2183e740bc0f54892d867a35bece7bce9b06969d4"},{"version":"8614bae6f88bf348448b385e5287d64eda6ff72668f26dae04a53a69e4d408a5","signature":"f75993d3f8be6a54a8e04db78a6ee0e42ea3320a2445755ed03f4acb163a1915"},{"version":"bd252b4297595e94078c68f43ee5407b288cc2dbdd3cd2918f35916a0783cb1e","signature":"5313b279513cd89bd59ba146dc0b9ae69317e318f8a3f25b3297c5d2be7ac6d6"},{"version":"3ea222a3c6622c05586915be4ac1e810cf37b84ab83e511967f1ca03309940c2","signature":"6db8a0d051a466584a74a93e6733ffe9b9c176e7c9c2b14d2364b6a3346e3180"},{"version":"c83ceab2a86c47b5c412f768faa46609ad984efdf0be8890a4af340ba271c6d4","signature":"d624269c362e0483586988d1c2d945beb6bc988cf1c84a914f71709231667ada"},{"version":"6e63f7e5455bb752291415fe112d48c62049dc90ee5009ad358897639a50ac4e","signature":"effaaf87f4b2a49a6a980079fb519679d1f3799cd012c94e376bcffee6736774"},{"version":"12092d47f9a79f81edd1feac0802fd8e5c985c3ba7f1e4331c4bcef90f9c2c5f","signature":"cbc2e35d23be75f0bde9226e54103fd9eba7d2307cde3d7ea14f04ef20937ae1"},{"version":"b57ac1748de40955425b79d410c6e0c56f7415ff62069e8f5e7784fc16d7d18b","signature":"01f946ced9b87bdd632787bd938b444912ff49bac398020f1aec685c18ac7759"},{"version":"031912274f2bdbd56329f0c845d7dce96a0bf297f49d6ec27c9533a5b07c8b2f","signature":"3186774570403beb7d7f32ecc5d61a0a4b28d461c1f183dcd449fcd95d72f4ea"},{"version":"14c4ad23f0786a7609bed1544daef0475c39c66499d5ad1aa34cf0efc1504583","signature":"7889e5807ea267239f046e66693fd3774c85a6cedfc5c0041d45f3313552dd75"},{"version":"c1714040432f3d1a8fa7aac3e8cfc20ddc47b8d996fec8698b6671ede7eed581","signature":"11c4ec9adf4cbf8c7ffdfc041aa287793399c74f9db92cfcbe2a1018f2ebb2c9"},{"version":"244d8ce92d74d0a529b2e66d965effc4fd4bc992be13a4abeed7df8e3e0453ef","signature":"57be7cdbd5e9996cd6aa635bda23e0637aee8136dac1c630e5b2f8b959f121c8"},{"version":"f3844b110d223ab46af440f5159178a14989584dbdabc6d6f96afb2fc27c4b83","signature":"b00e8f99be211dbbe5ce89816a1591252a89c1e73a72ff9b0d1e9998503df91a"},{"version":"eb6f0b2844fe8cff603b43948c09ca54c9dd2a75900b070c2b34493b61ffe433","signature":"267597318dba1946b4fa33797161d9a3d59248e599980bbc4e7e0c78b3012cbe"},{"version":"fbd9a5cbcbd72717a625cca750057f53aa34f7b332336e95496d1129633016b3","signature":"c4bff9d754e3bce064f7a71b2cac21afa94096b59b4a613d1c59de012a736cb7"},{"version":"9e6dc11449c6452581dd66060299923fbf8167753f8c0e54d3f76bbe9f2f51f1","signature":"188a32712e8b3885b2f70386113d54514a5f89fd621ab5a98441cc77fe3cb87c"},{"version":"ef33e9b1a2466e90a743aff80a5924d6cbcabce409453068d2996c6d49633fa6","signature":"701c346e57d4ee5441ab4f320e082dec830334e1158e10ceae199ed9e34694d5"},{"version":"a9a4da0e9c30e611797f774ce6dfac548fa3dbef43613d2e33bfc04fd08842fa","signature":"90feda00830a35feb328bae37d5b2c40718d6e864652b23f97db7649c1cfc324"},{"version":"9e42c52b3f58a2fba10fadc031d856fd3a369379da2dafeb2136aa7e14a1fdad","signature":"a8ee13608346ae13d016f9101ee471e0079a54cf283302e004f2045d27b6d75f"},{"version":"8a0326c40cb2e2e0f6389040f14c126e0ab83340ad90917d6b28d4abf69b5cad","signature":"8e3d542fba0f21a1dba7f13b7e28396232467ea8b4906875e15397f3474c0743"},{"version":"04e6e67b9c444af536e2424087042912a414be3e2a9c7f129d43292ccb295d23","signature":"27e013e314c95352c52b304205bb6d7215c42697e9760c8ed230c8d654c367ad"},{"version":"f45143e2d17575965002fbcfdb4f948ab35d22fcf86ed294780e5aec034c0358","signature":"94be6aae3f327f921b5e9944666dc46f44f546212cc94a0269fa76d67fc8c220"},{"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,101],[86,94,96,98],[86,94,96,97,98,101],[42,52,86,94,96,97],[86],[86,99,100],[86,94,95],[86,97,98],[86,101],[86,97],[86,94,96,97,98,101,110,119,120,121],[86,94,96,97,98,101,119,120,121],[86,94,96,97,98,101,116,119,121],[86,94,96,97,98,101,109,119,120,121],[86,94,96,97,98,101,113,119,120,121],[86,94,96,97,98,101,115,119,121],[86,94,96,97,98,110,119,120,121],[86,93],[86,134,139],[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,132,135],[86,132,135,136,137],[86,134],[86,131,138],[86,133],[42,94,96,97,101],[42,94,96,97],[94,95],[101],[97],[42,94,96,97,101,121]],"referencedMap":[[102,1],[103,2],[104,2],[105,1],[106,3],[107,3],[108,2],[109,3],[110,3],[111,3],[112,3],[113,3],[114,2],[116,3],[115,3],[117,1],[118,2],[98,4],[130,5],[99,5],[100,5],[101,6],[95,5],[96,7],[97,5],[119,8],[120,9],[121,10],[122,11],[123,12],[124,13],[125,14],[126,15],[127,16],[128,17],[129,12],[94,18],[140,19],[43,20],[44,20],[46,21],[47,22],[48,23],[49,24],[50,25],[51,26],[52,27],[53,28],[54,29],[55,30],[56,30],[57,31],[58,32],[59,33],[60,34],[45,35],[92,5],[61,36],[62,37],[63,38],[93,39],[64,40],[65,41],[66,42],[67,43],[68,44],[69,45],[70,46],[71,47],[72,48],[73,49],[74,50],[75,51],[77,52],[76,53],[78,54],[79,55],[80,56],[81,57],[82,58],[83,59],[84,60],[85,61],[86,62],[87,63],[88,64],[89,65],[90,66],[91,67],[141,5],[131,5],[132,5],[136,68],[138,69],[137,68],[135,70],[139,71],[42,5],[134,72],[133,5],[9,5],[8,5],[2,5],[10,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[3,5],[4,5],[21,5],[18,5],[19,5],[20,5],[22,5],[23,5],[24,5],[5,5],[25,5],[26,5],[27,5],[28,5],[6,5],[32,5],[29,5],[30,5],[31,5],[33,5],[7,5],[34,5],[39,5],[40,5],[35,5],[36,5],[37,5],[38,5],[1,5],[41,5]],"exportedModulesMap":[[102,73],[103,74],[104,74],[105,73],[106,73],[107,73],[108,74],[109,73],[110,73],[111,73],[112,73],[113,73],[114,74],[116,73],[115,73],[117,73],[118,74],[98,74],[96,75],[119,74],[120,76],[121,77],[122,78],[123,78],[124,78],[125,78],[126,78],[127,78],[128,78],[129,78],[94,18],[140,19],[43,20],[44,20],[46,21],[47,22],[48,23],[49,24],[50,25],[51,26],[52,27],[53,28],[54,29],[55,30],[56,30],[57,31],[58,32],[59,33],[60,34],[45,35],[92,5],[61,36],[62,37],[63,38],[93,39],[64,40],[65,41],[66,42],[67,43],[68,44],[69,45],[70,46],[71,47],[72,48],[73,49],[74,50],[75,51],[77,52],[76,53],[78,54],[79,55],[80,56],[81,57],[82,58],[83,59],[84,60],[85,61],[86,62],[87,63],[88,64],[89,65],[90,66],[91,67],[141,5],[131,5],[132,5],[136,68],[138,69],[137,68],[135,70],[139,71],[42,5],[134,72],[133,5],[9,5],[8,5],[2,5],[10,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[3,5],[4,5],[21,5],[18,5],[19,5],[20,5],[22,5],[23,5],[24,5],[5,5],[25,5],[26,5],[27,5],[28,5],[6,5],[32,5],[29,5],[30,5],[31,5],[33,5],[7,5],[34,5],[39,5],[40,5],[35,5],[36,5],[37,5],[38,5],[1,5],[41,5]],"semanticDiagnosticsPerFile":[102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,98,130,99,100,101,95,96,97,119,120,121,122,123,124,125,126,127,128,129,94,140,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,141,131,132,136,138,137,135,139,42,134,133,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","../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","../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":"aa939652ff99453e42569ec165a7ed53b1d89619654ce5f226eb462992b8bdcd","signature":"134f1219d550620832608b7240b0199b3303c4aa9866476a20999d5028f94587"},{"version":"9c9283588dcc2fe8456abd793c89de1a6ce407fbe7f472b6186840f1575ed055","signature":"48b75066cc39ea90b613fcfd86003a224a813e4c829fcfac87da3433e0b49607"},{"version":"448dafc75397c83a6a3662f11f4be3cf84e62718c1c2ede93fb2035d0d811ae3","signature":"6541750c2aa0463563651ce8c513a1daa80de48d4422ce38557f635ffe535a9e"},{"version":"00747e0b6fd1f4b2209a16c9913b4198f1730df200bea986da310fa64d8a0185","signature":"eda4a1c45c9e89fbe5d481eb65c108ed8b383658d7c5890569d98319ae115125"},{"version":"ece75c0366bb9fd7b627e7b2058c8058cd2f7e7bba846a706db385beb9e7fc86","signature":"e8851b5d6f3c67a4cb3fff08370f281df75a8d33e1749859cc789aa9325e465b"},{"version":"608e5e2046c837f4df75b8c633602d33c28e8ddbbf4a24ba751beb26b1cbc2aa","signature":"64e9837b92bf7ccf87916125b5a492c271b07831e89704d1fa94b0572b264ae1"},{"version":"08b38c7d9c83b6de00cb535a660af65937ec7d4cf5d3484ad3e4554f37ddbb57","signature":"e447ffd0879d38e9637ac96db7962ca09f1f739fec540610251a042aa1276937"},{"version":"75f669b144267bbd1f42c6b5ea4d7e17637455df5133d8434d9e28798bba1466","signature":"bb2f91b85d8a1ac850d31970af1a475f479e89a35344cb6a3bea32ab2f2d226e"},{"version":"eb5f7f547bd2f3fd4d2ec79f691b8b8fed80178e81aff5b503c96fdbea01b731","signature":"dae9b51e0a25057972694a928b68624ff65f631e0b4c77ec672477e2eb2cd0f8"},{"version":"b3c3e826623bae12a17ad1ecbeb50fff7db328abc86b5901856e33ef73b27c24","signature":"d0459f79d06e89bc8c181cf44da1c8e11dc5cc75fd5452836df8c473737e1e1e"},{"version":"dfc1cb02fd25498fc73f7d1e24be5435327b6bfc8165ca1bebd0bafd250160e7","signature":"fff9049499be2a67839cb347b640124e4d193c3dc093cb0c8232c52a7d7e312f"},{"version":"4fe0829d7b409a2c4b2f3905747a32d7c3d5fb7aa830df0fb4c9a24cb2231e35","signature":"802d76c08798d98db85e03937603f51fc916254a4a81e4e22d2f605460d3f1af"},{"version":"8bbe302b4346c219a87d82458843eca81fbceb796d85c7ae02dc12ca04b993e0","signature":"62c8a3fd169c365edad7b411ae906ab8fbf8226b77cf1fa852023cbce32c3b71"},{"version":"052c78fd48d59f8e8250728486112567b2777b8efa31f52dee0cf12b3fc3e01d","signature":"57dda50fcffb29db902387e06636e6b9ae61fde06ece23dda6ec84427ee1c24c"},{"version":"99553bb4be5537ec90b402f8fd67cc5f6a798eefefcc7e79436e85514b4b50ab","signature":"a4e61c277cb333786ef531e6aadd8b20c7b673dbe035c7674ebdc4378e4c6874"},{"version":"63aa17f4a694b7986129412c458f8a3bdcf2aed07b613cabf431b83d118cd947","signature":"04c9c7a21283820a81e8bff9d89456a1ce744b5b91dde6f456fd64fe152efb1e"},{"version":"3d04d5356fdb90452e1797c7e57830090e5e2253b2e122ee61b9d64fc88cf898","signature":"2fb155140bedd3557806ffa92a34c197afbab4606b404b6a7089f0f9286c071a"},{"version":"0246abf4560c738e81b31d70200a10ca95d36b89b2e3e6bb200c3728ba44140f","signature":"e9a5e9f7813bf8743a3911ef8380db584f0dc02b1175835d93e0106c77518888"},{"version":"cd65879dec12a03b204272882f8fd3089c24a690e298d5ac77f457a07026ff6f","signature":"20630e33ed3387e5519123db3a70a9449e869e46e472ef364aa107f4bd57362b"},{"version":"5b82107e4140d558d5fb09a88bd16ce51891923bfce2655524640904ad4f85c1","signature":"e3db118923721738346d04efd63ee74555b945be2d9c65e740740bf33e50e9dd"},{"version":"ab5ec9bdd258c1c9b679a356e86352185709ed08c1f716cfc26bedd2ca4e4047","signature":"b3a01fe08edd4deadd36687db5a6758387298fc5cbf8bd1250517ba1e7911db4"},{"version":"ea8f48a57d677489b4f50af04e27078c5234d1700f7b13b66303027aa2c121ad","signature":"6363376102bc312c8e36931beb98816378dc8576e6a385b98a57579758200a87"},{"version":"1021c5b1497a46a6f65319f8cb293991e2181933780d35fc38c183a33444b594","signature":"55506073cae83ddb94bb8509971f9a923fef07642a383c1877fb0d8afb045add"},{"version":"0c6565042aad0be34a341621583e2eb9bbc0e2574cbd866178952c367798e5e8","signature":"5b087c448b7bda66ea3e859759145cddd9df1438d85999d015f57025d2cc9d46"},{"version":"60650873494f8f1c2aed4f1302fd793c65332c738350cec7c2cd81608d5177ac","signature":"1d934e324e34a814938b08edf8eb4e9069bcf9d417a26b028991941cce4c522e"},{"version":"f3844b110d223ab46af440f5159178a14989584dbdabc6d6f96afb2fc27c4b83","signature":"b00e8f99be211dbbe5ce89816a1591252a89c1e73a72ff9b0d1e9998503df91a"},{"version":"eb6f0b2844fe8cff603b43948c09ca54c9dd2a75900b070c2b34493b61ffe433","signature":"267597318dba1946b4fa33797161d9a3d59248e599980bbc4e7e0c78b3012cbe"},{"version":"1997859f42dcd714ecd591e0bd87832c7c3fee93fdb61d3aa47dc8aaa7f4a2e6","signature":"ff061e04effb5090676655bc3076b0a1e2e5af14d6a3e445c0a42f41ac000714"},{"version":"73620799b9107d94697008c8a7c20784f69118c39dee30855d1079a9fe92c3c8","signature":"475a5d62f72e7513bd358dbd3b768c88f8855ef4cc5e6b3019f86a1139cac23c"},{"version":"867d2efdb8bd425640ffdbd395fd2b85c3f1e748542bb058a2959b4ada8d6ced","signature":"a82acdaa0acd13dbe40834e24828da0ecb0bbadba9184d4e23cca28a81d58421"},{"version":"6e0533be9a588cc109333c0a49699eee92f0fbe5cb9758bc6550cc0f4edd56bf","signature":"b2b18469f3beef40c449bdccbe5ae6f8f4ddd998e6d5d1a0a49c24c72231f98b"},{"version":"56e28a8a578f3b5c878e248ffb735fc4f9d420ceb8d5e25d8cced5f9a4a47668","signature":"37091edc9c89b33097e2333e21d07f519c27499ade14376a2380c42c35320815"},{"version":"239b4a934a8cf52e6c2b0ff20a28e9e90ddbabe2920b51dfc4b98b6878379955","signature":"c7cb8ecb6efb0f52962f89ec3c03aadbd34709e8851a0b27a69998edcca4a4a2"},{"version":"5035f7ea49012c2790ef9ad73bfd7452393e2c2c0981460db945482716c6f11d","signature":"65a7eac750f3bb0b371c42aa8c06d90343c49355a2ae2c0291bb36b6bb602a3c"},{"version":"3805bb7304d4cde3af012b9b1bb619f3dc6254c87d999dd3d3bfd8dc4a48ec19","signature":"03b99e79c8e9557d69aa08ed2f7a219f78081a3c6101d657bde3e03473bec758"},{"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],[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,120,121,122],[86,94,96,97,99,102,120,121,122],[86,94,96,97,99,102,117,120,122],[86,94,96,97,99,102,110,120,121,122],[86,94,96,97,99,102,114,120,121,122],[86,94,96,97,99,102,116,120,122],[86,94,96,97,99,111,120,121,122],[86,93],[86,135,140],[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,133,136],[86,133,136,137,138],[86,135],[86,132,139],[86,134],[42,94,96,97,102],[42,94,96,97],[94,95],[102],[97],[42,94,96,97,102,122]],"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],[99,4],[131,5],[100,5],[98,5],[101,5],[102,6],[95,5],[96,7],[97,5],[120,8],[121,9],[122,10],[123,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,12],[94,18],[141,19],[43,20],[44,20],[46,21],[47,22],[48,23],[49,24],[50,25],[51,26],[52,27],[53,28],[54,29],[55,30],[56,30],[57,31],[58,32],[59,33],[60,34],[45,35],[92,5],[61,36],[62,37],[63,38],[93,39],[64,40],[65,41],[66,42],[67,43],[68,44],[69,45],[70,46],[71,47],[72,48],[73,49],[74,50],[75,51],[77,52],[76,53],[78,54],[79,55],[80,56],[81,57],[82,58],[83,59],[84,60],[85,61],[86,62],[87,63],[88,64],[89,65],[90,66],[91,67],[142,5],[132,5],[133,5],[137,68],[139,69],[138,68],[136,70],[140,71],[42,5],[135,72],[134,5],[9,5],[8,5],[2,5],[10,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[3,5],[4,5],[21,5],[18,5],[19,5],[20,5],[22,5],[23,5],[24,5],[5,5],[25,5],[26,5],[27,5],[28,5],[6,5],[32,5],[29,5],[30,5],[31,5],[33,5],[7,5],[34,5],[39,5],[40,5],[35,5],[36,5],[37,5],[38,5],[1,5],[41,5]],"exportedModulesMap":[[103,73],[104,74],[105,74],[106,73],[107,73],[108,73],[109,74],[110,73],[111,73],[112,73],[113,73],[114,73],[115,74],[117,73],[116,73],[118,73],[119,74],[99,74],[96,75],[120,74],[121,76],[122,77],[123,78],[124,78],[125,78],[126,78],[127,78],[128,78],[129,78],[130,78],[94,18],[141,19],[43,20],[44,20],[46,21],[47,22],[48,23],[49,24],[50,25],[51,26],[52,27],[53,28],[54,29],[55,30],[56,30],[57,31],[58,32],[59,33],[60,34],[45,35],[92,5],[61,36],[62,37],[63,38],[93,39],[64,40],[65,41],[66,42],[67,43],[68,44],[69,45],[70,46],[71,47],[72,48],[73,49],[74,50],[75,51],[77,52],[76,53],[78,54],[79,55],[80,56],[81,57],[82,58],[83,59],[84,60],[85,61],[86,62],[87,63],[88,64],[89,65],[90,66],[91,67],[142,5],[132,5],[133,5],[137,68],[139,69],[138,68],[136,70],[140,71],[42,5],[135,72],[134,5],[9,5],[8,5],[2,5],[10,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[3,5],[4,5],[21,5],[18,5],[19,5],[20,5],[22,5],[23,5],[24,5],[5,5],[25,5],[26,5],[27,5],[28,5],[6,5],[32,5],[29,5],[30,5],[31,5],[33,5],[7,5],[34,5],[39,5],[40,5],[35,5],[36,5],[37,5],[38,5],[1,5],[41,5]],"semanticDiagnosticsPerFile":[103,104,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,99,131,100,98,101,102,95,96,97,120,121,122,123,124,125,126,127,128,129,130,94,141,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,142,132,133,137,139,138,136,140,42,135,134,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": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Pipedream Twitter Components",
|
|
5
5
|
"main": "dist/app/twitter.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@pipedream/platform": "^1.
|
|
19
|
+
"@pipedream/platform": "^1.5.1",
|
|
20
20
|
"@pipedream/types": "^0.1.4",
|
|
21
21
|
"oauth-1.0a": "^2.2.6"
|
|
22
22
|
}
|