@keystrokehq/search_api 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/get-account-info.cjs +4 -4
- package/dist/actions/get-account-info.cjs.map +1 -1
- package/dist/actions/get-account-info.d.cts +4 -4
- package/dist/actions/get-account-info.d.mts +4 -4
- package/dist/actions/get-account-info.mjs +4 -4
- package/dist/actions/get-account-info.mjs.map +1 -1
- package/dist/actions/get-cached-search-by-id.cjs +16 -16
- package/dist/actions/get-cached-search-by-id.cjs.map +1 -1
- package/dist/actions/get-cached-search-by-id.d.cts +16 -16
- package/dist/actions/get-cached-search-by-id.d.mts +16 -16
- package/dist/actions/get-cached-search-by-id.mjs +16 -16
- package/dist/actions/get-cached-search-by-id.mjs.map +1 -1
- package/dist/actions/get-cached-search-html-by-id.cjs +1 -1
- package/dist/actions/get-cached-search-html-by-id.cjs.map +1 -1
- package/dist/actions/get-cached-search-html-by-id.d.cts +1 -1
- package/dist/actions/get-cached-search-html-by-id.d.mts +1 -1
- package/dist/actions/get-cached-search-html-by-id.mjs +1 -1
- package/dist/actions/get-cached-search-html-by-id.mjs.map +1 -1
- package/dist/actions/get-locations.cjs +2 -2
- package/dist/actions/get-locations.cjs.map +1 -1
- package/dist/actions/get-locations.d.cts +2 -2
- package/dist/actions/get-locations.d.mts +2 -2
- package/dist/actions/get-locations.mjs +2 -2
- package/dist/actions/get-locations.mjs.map +1 -1
- package/dist/actions/search.cjs +27 -27
- package/dist/actions/search.cjs.map +1 -1
- package/dist/actions/search.d.cts +27 -27
- package/dist/actions/search.d.mts +27 -27
- package/dist/actions/search.mjs +27 -27
- package/dist/actions/search.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -6,20 +6,20 @@ const SearchApiGetAccountInfo_AccountSchema = zod.z.object({
|
|
|
6
6
|
monthly_allowance: zod.z.number().int().describe("Maximum allowable searches per month.").nullable(),
|
|
7
7
|
remaining_credits: zod.z.number().int().describe("Search credits available for remainder of the month.").nullable(),
|
|
8
8
|
current_month_usage: zod.z.number().int().describe("Total searches performed in the current month.").nullable()
|
|
9
|
-
}).describe("Account usage information.");
|
|
9
|
+
}).passthrough().describe("Account usage information.");
|
|
10
10
|
const SearchApiGetAccountInfo_ApiUsageSchema = zod.z.object({
|
|
11
11
|
hourly_rate_limit: zod.z.number().int().describe("Maximum searches permitted per hour.").nullable(),
|
|
12
12
|
searches_this_hour: zod.z.number().int().describe("Count of searches made within the current hour.").nullable()
|
|
13
|
-
}).describe("API hourly usage information.");
|
|
13
|
+
}).passthrough().describe("API hourly usage information.");
|
|
14
14
|
const SearchApiGetAccountInfo_SubscriptionSchema = zod.z.object({
|
|
15
15
|
period_end: zod.z.string().describe("Subscription expiration date in ISO 8601 format.").nullable(),
|
|
16
16
|
period_start: zod.z.string().describe("Subscription commencement date in ISO 8601 format.").nullable()
|
|
17
|
-
}).describe("Subscription period information.");
|
|
17
|
+
}).passthrough().describe("Subscription period information.");
|
|
18
18
|
const SearchApiGetAccountInfoOutput = zod.z.object({
|
|
19
19
|
account: SearchApiGetAccountInfo_AccountSchema.nullable(),
|
|
20
20
|
api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),
|
|
21
21
|
subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional()
|
|
22
|
-
}).describe("Response model for account usage statistics including monthly usage,\nremaining credits, hourly limits, and subscription period information.");
|
|
22
|
+
}).passthrough().describe("Response model for account usage statistics including monthly usage,\nremaining credits, hourly limits, and subscription period information.");
|
|
23
23
|
const searchApiGetAccountInfo = require_action.action("SEARCH_API_GET_ACCOUNT_INFO", {
|
|
24
24
|
slug: "search_api-get-account-info",
|
|
25
25
|
name: "Get Account Info",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-account-info.cjs","names":["z","action"],"sources":["../../src/actions/get-account-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetAccountInfoInput = z.object({\n zero_retention: z.boolean().describe(\"Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.\").optional(),\n}).describe(\"Request model for retrieving account usage statistics.\");\nconst SearchApiGetAccountInfo_AccountSchema = z.object({\n monthly_allowance: z.number().int().describe(\"Maximum allowable searches per month.\").nullable(),\n remaining_credits: z.number().int().describe(\"Search credits available for remainder of the month.\").nullable(),\n current_month_usage: z.number().int().describe(\"Total searches performed in the current month.\").nullable(),\n}).describe(\"Account usage information.\");\nconst SearchApiGetAccountInfo_ApiUsageSchema = z.object({\n hourly_rate_limit: z.number().int().describe(\"Maximum searches permitted per hour.\").nullable(),\n searches_this_hour: z.number().int().describe(\"Count of searches made within the current hour.\").nullable(),\n}).describe(\"API hourly usage information.\");\nconst SearchApiGetAccountInfo_SubscriptionSchema = z.object({\n period_end: z.string().describe(\"Subscription expiration date in ISO 8601 format.\").nullable(),\n period_start: z.string().describe(\"Subscription commencement date in ISO 8601 format.\").nullable(),\n}).describe(\"Subscription period information.\");\nexport const SearchApiGetAccountInfoOutput = z.object({\n account: SearchApiGetAccountInfo_AccountSchema.nullable(),\n api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),\n subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional(),\n}).describe(\"Response model for account usage statistics including monthly usage,\\nremaining credits, hourly limits, and subscription period information.\");\n\nexport const searchApiGetAccountInfo = action(\"SEARCH_API_GET_ACCOUNT_INFO\", {\n slug: \"search_api-get-account-info\",\n name: \"Get Account Info\",\n description: \"Tool to retrieve account usage statistics including monthly usage, remaining credits, hourly limits, and subscription period information. Use when you need to check current account status or usage limits.\",\n input: SearchApiGetAccountInfoInput,\n output: SearchApiGetAccountInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,gBAAgBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0GAA0G,CAAC,CAAC,SAAS,EAC5J,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,wCAAwCA,IAAAA,EAAE,OAAO;CACrD,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC/F,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC9G,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,4BAA4B;
|
|
1
|
+
{"version":3,"file":"get-account-info.cjs","names":["z","action"],"sources":["../../src/actions/get-account-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetAccountInfoInput = z.object({\n zero_retention: z.boolean().describe(\"Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.\").optional(),\n}).describe(\"Request model for retrieving account usage statistics.\");\nconst SearchApiGetAccountInfo_AccountSchema = z.object({\n monthly_allowance: z.number().int().describe(\"Maximum allowable searches per month.\").nullable(),\n remaining_credits: z.number().int().describe(\"Search credits available for remainder of the month.\").nullable(),\n current_month_usage: z.number().int().describe(\"Total searches performed in the current month.\").nullable(),\n}).passthrough().describe(\"Account usage information.\");\nconst SearchApiGetAccountInfo_ApiUsageSchema = z.object({\n hourly_rate_limit: z.number().int().describe(\"Maximum searches permitted per hour.\").nullable(),\n searches_this_hour: z.number().int().describe(\"Count of searches made within the current hour.\").nullable(),\n}).passthrough().describe(\"API hourly usage information.\");\nconst SearchApiGetAccountInfo_SubscriptionSchema = z.object({\n period_end: z.string().describe(\"Subscription expiration date in ISO 8601 format.\").nullable(),\n period_start: z.string().describe(\"Subscription commencement date in ISO 8601 format.\").nullable(),\n}).passthrough().describe(\"Subscription period information.\");\nexport const SearchApiGetAccountInfoOutput = z.object({\n account: SearchApiGetAccountInfo_AccountSchema.nullable(),\n api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),\n subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional(),\n}).passthrough().describe(\"Response model for account usage statistics including monthly usage,\\nremaining credits, hourly limits, and subscription period information.\");\n\nexport const searchApiGetAccountInfo = action(\"SEARCH_API_GET_ACCOUNT_INFO\", {\n slug: \"search_api-get-account-info\",\n name: \"Get Account Info\",\n description: \"Tool to retrieve account usage statistics including monthly usage, remaining credits, hourly limits, and subscription period information. Use when you need to check current account status or usage limits.\",\n input: SearchApiGetAccountInfoInput,\n output: SearchApiGetAccountInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,gBAAgBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0GAA0G,CAAC,CAAC,SAAS,EAC5J,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,wCAAwCA,IAAAA,EAAE,OAAO;CACrD,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC/F,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC9G,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4BAA4B;AACtD,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC9F,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AACzD,MAAM,6CAA6CA,IAAAA,EAAE,OAAO;CAC1D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC;AAC5D,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,SAAS,sCAAsC,SAAS;CACxD,WAAW,uCAAuC,SAAS;CAC3D,cAAc,2CAA2C,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8IAA8I;AAExK,MAAa,0BAA0BC,eAAAA,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -9,16 +9,16 @@ declare const SearchApiGetAccountInfoOutput: z.ZodObject<{
|
|
|
9
9
|
monthly_allowance: z.ZodNullable<z.ZodNumber>;
|
|
10
10
|
remaining_credits: z.ZodNullable<z.ZodNumber>;
|
|
11
11
|
current_month_usage: z.ZodNullable<z.ZodNumber>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>>;
|
|
13
13
|
api_usage: z.ZodNullable<z.ZodObject<{
|
|
14
14
|
hourly_rate_limit: z.ZodNullable<z.ZodNumber>;
|
|
15
15
|
searches_this_hour: z.ZodNullable<z.ZodNumber>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
17
|
subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18
18
|
period_end: z.ZodNullable<z.ZodString>;
|
|
19
19
|
period_start: z.ZodNullable<z.ZodString>;
|
|
20
|
-
}, z.core.$
|
|
21
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>>>;
|
|
21
|
+
}, z.core.$loose>;
|
|
22
22
|
declare const searchApiGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
zero_retention?: boolean | undefined;
|
|
24
24
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -9,16 +9,16 @@ declare const SearchApiGetAccountInfoOutput: z.ZodObject<{
|
|
|
9
9
|
monthly_allowance: z.ZodNullable<z.ZodNumber>;
|
|
10
10
|
remaining_credits: z.ZodNullable<z.ZodNumber>;
|
|
11
11
|
current_month_usage: z.ZodNullable<z.ZodNumber>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>>;
|
|
13
13
|
api_usage: z.ZodNullable<z.ZodObject<{
|
|
14
14
|
hourly_rate_limit: z.ZodNullable<z.ZodNumber>;
|
|
15
15
|
searches_this_hour: z.ZodNullable<z.ZodNumber>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
17
|
subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18
18
|
period_end: z.ZodNullable<z.ZodString>;
|
|
19
19
|
period_start: z.ZodNullable<z.ZodString>;
|
|
20
|
-
}, z.core.$
|
|
21
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>>>;
|
|
21
|
+
}, z.core.$loose>;
|
|
22
22
|
declare const searchApiGetAccountInfo: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
zero_retention?: boolean | undefined;
|
|
24
24
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -6,15 +6,15 @@ const SearchApiGetAccountInfo_AccountSchema = z.object({
|
|
|
6
6
|
monthly_allowance: z.number().int().describe("Maximum allowable searches per month.").nullable(),
|
|
7
7
|
remaining_credits: z.number().int().describe("Search credits available for remainder of the month.").nullable(),
|
|
8
8
|
current_month_usage: z.number().int().describe("Total searches performed in the current month.").nullable()
|
|
9
|
-
}).describe("Account usage information.");
|
|
9
|
+
}).passthrough().describe("Account usage information.");
|
|
10
10
|
const SearchApiGetAccountInfo_ApiUsageSchema = z.object({
|
|
11
11
|
hourly_rate_limit: z.number().int().describe("Maximum searches permitted per hour.").nullable(),
|
|
12
12
|
searches_this_hour: z.number().int().describe("Count of searches made within the current hour.").nullable()
|
|
13
|
-
}).describe("API hourly usage information.");
|
|
13
|
+
}).passthrough().describe("API hourly usage information.");
|
|
14
14
|
const SearchApiGetAccountInfo_SubscriptionSchema = z.object({
|
|
15
15
|
period_end: z.string().describe("Subscription expiration date in ISO 8601 format.").nullable(),
|
|
16
16
|
period_start: z.string().describe("Subscription commencement date in ISO 8601 format.").nullable()
|
|
17
|
-
}).describe("Subscription period information.");
|
|
17
|
+
}).passthrough().describe("Subscription period information.");
|
|
18
18
|
const searchApiGetAccountInfo = action("SEARCH_API_GET_ACCOUNT_INFO", {
|
|
19
19
|
slug: "search_api-get-account-info",
|
|
20
20
|
name: "Get Account Info",
|
|
@@ -24,7 +24,7 @@ const searchApiGetAccountInfo = action("SEARCH_API_GET_ACCOUNT_INFO", {
|
|
|
24
24
|
account: SearchApiGetAccountInfo_AccountSchema.nullable(),
|
|
25
25
|
api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),
|
|
26
26
|
subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional()
|
|
27
|
-
}).describe("Response model for account usage statistics including monthly usage,\nremaining credits, hourly limits, and subscription period information.")
|
|
27
|
+
}).passthrough().describe("Response model for account usage statistics including monthly usage,\nremaining credits, hourly limits, and subscription period information.")
|
|
28
28
|
});
|
|
29
29
|
//#endregion
|
|
30
30
|
export { searchApiGetAccountInfo };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-account-info.mjs","names":[],"sources":["../../src/actions/get-account-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetAccountInfoInput = z.object({\n zero_retention: z.boolean().describe(\"Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.\").optional(),\n}).describe(\"Request model for retrieving account usage statistics.\");\nconst SearchApiGetAccountInfo_AccountSchema = z.object({\n monthly_allowance: z.number().int().describe(\"Maximum allowable searches per month.\").nullable(),\n remaining_credits: z.number().int().describe(\"Search credits available for remainder of the month.\").nullable(),\n current_month_usage: z.number().int().describe(\"Total searches performed in the current month.\").nullable(),\n}).describe(\"Account usage information.\");\nconst SearchApiGetAccountInfo_ApiUsageSchema = z.object({\n hourly_rate_limit: z.number().int().describe(\"Maximum searches permitted per hour.\").nullable(),\n searches_this_hour: z.number().int().describe(\"Count of searches made within the current hour.\").nullable(),\n}).describe(\"API hourly usage information.\");\nconst SearchApiGetAccountInfo_SubscriptionSchema = z.object({\n period_end: z.string().describe(\"Subscription expiration date in ISO 8601 format.\").nullable(),\n period_start: z.string().describe(\"Subscription commencement date in ISO 8601 format.\").nullable(),\n}).describe(\"Subscription period information.\");\nexport const SearchApiGetAccountInfoOutput = z.object({\n account: SearchApiGetAccountInfo_AccountSchema.nullable(),\n api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),\n subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional(),\n}).describe(\"Response model for account usage statistics including monthly usage,\\nremaining credits, hourly limits, and subscription period information.\");\n\nexport const searchApiGetAccountInfo = action(\"SEARCH_API_GET_ACCOUNT_INFO\", {\n slug: \"search_api-get-account-info\",\n name: \"Get Account Info\",\n description: \"Tool to retrieve account usage statistics including monthly usage, remaining credits, hourly limits, and subscription period information. Use when you need to check current account status or usage limits.\",\n input: SearchApiGetAccountInfoInput,\n output: SearchApiGetAccountInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO,EACnD,gBAAgB,EAAE,QAAQ,CAAC,CAAC,SAAS,0GAA0G,CAAC,CAAC,SAAS,EAC5J,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,wCAAwC,EAAE,OAAO;CACrD,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC/F,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC9G,qBAAqB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,4BAA4B;
|
|
1
|
+
{"version":3,"file":"get-account-info.mjs","names":[],"sources":["../../src/actions/get-account-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetAccountInfoInput = z.object({\n zero_retention: z.boolean().describe(\"Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.\").optional(),\n}).describe(\"Request model for retrieving account usage statistics.\");\nconst SearchApiGetAccountInfo_AccountSchema = z.object({\n monthly_allowance: z.number().int().describe(\"Maximum allowable searches per month.\").nullable(),\n remaining_credits: z.number().int().describe(\"Search credits available for remainder of the month.\").nullable(),\n current_month_usage: z.number().int().describe(\"Total searches performed in the current month.\").nullable(),\n}).passthrough().describe(\"Account usage information.\");\nconst SearchApiGetAccountInfo_ApiUsageSchema = z.object({\n hourly_rate_limit: z.number().int().describe(\"Maximum searches permitted per hour.\").nullable(),\n searches_this_hour: z.number().int().describe(\"Count of searches made within the current hour.\").nullable(),\n}).passthrough().describe(\"API hourly usage information.\");\nconst SearchApiGetAccountInfo_SubscriptionSchema = z.object({\n period_end: z.string().describe(\"Subscription expiration date in ISO 8601 format.\").nullable(),\n period_start: z.string().describe(\"Subscription commencement date in ISO 8601 format.\").nullable(),\n}).passthrough().describe(\"Subscription period information.\");\nexport const SearchApiGetAccountInfoOutput = z.object({\n account: SearchApiGetAccountInfo_AccountSchema.nullable(),\n api_usage: SearchApiGetAccountInfo_ApiUsageSchema.nullable(),\n subscription: SearchApiGetAccountInfo_SubscriptionSchema.nullable().optional(),\n}).passthrough().describe(\"Response model for account usage statistics including monthly usage,\\nremaining credits, hourly limits, and subscription period information.\");\n\nexport const searchApiGetAccountInfo = action(\"SEARCH_API_GET_ACCOUNT_INFO\", {\n slug: \"search_api-get-account-info\",\n name: \"Get Account Info\",\n description: \"Tool to retrieve account usage statistics including monthly usage, remaining credits, hourly limits, and subscription period information. Use when you need to check current account status or usage limits.\",\n input: SearchApiGetAccountInfoInput,\n output: SearchApiGetAccountInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO,EACnD,gBAAgB,EAAE,QAAQ,CAAC,CAAC,SAAS,0GAA0G,CAAC,CAAC,SAAS,EAC5J,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,wCAAwC,EAAE,OAAO;CACrD,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC/F,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC9G,qBAAqB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4BAA4B;AACtD,MAAM,yCAAyC,EAAE,OAAO;CACtD,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CAC9F,oBAAoB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AACzD,MAAM,6CAA6C,EAAE,OAAO;CAC1D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC;AAO5D,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX2C,EAAE,OAAO;EACpD,SAAS,sCAAsC,SAAS;EACxD,WAAW,uCAAuC,SAAS;EAC3D,cAAc,2CAA2C,SAAS,CAAC,CAAC,SAAS;CAC/E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8IAOhB;AACV,CAAC"}
|
|
@@ -8,21 +8,21 @@ const SearchApiGetCachedSearchById_AdSchema = zod.z.object({
|
|
|
8
8
|
title: zod.z.string().describe("Ad title").nullable().optional(),
|
|
9
9
|
position: zod.z.number().int().describe("Ad position").nullable().optional(),
|
|
10
10
|
description: zod.z.string().describe("Ad description").nullable().optional()
|
|
11
|
-
}).describe("Paid search advertisement.");
|
|
11
|
+
}).passthrough().describe("Paid search advertisement.");
|
|
12
12
|
const SearchApiGetCachedSearchById_JobSchema = zod.z.object({
|
|
13
13
|
title: zod.z.string().describe("Job title").nullable().optional(),
|
|
14
14
|
company: zod.z.string().describe("Company name").nullable().optional(),
|
|
15
15
|
location: zod.z.string().describe("Job location").nullable().optional(),
|
|
16
16
|
position: zod.z.number().int().describe("Result position").nullable().optional(),
|
|
17
17
|
description: zod.z.string().describe("Job description").nullable().optional()
|
|
18
|
-
}).describe("Job posting result.");
|
|
18
|
+
}).passthrough().describe("Job posting result.");
|
|
19
19
|
const SearchApiGetCachedSearchById_AnswerBoxSchema = zod.z.object({
|
|
20
20
|
link: zod.z.string().describe("Source link").nullable().optional(),
|
|
21
21
|
type: zod.z.string().describe("Answer box type").nullable().optional(),
|
|
22
22
|
title: zod.z.string().describe("Answer title").nullable().optional(),
|
|
23
23
|
answer: zod.z.string().describe("Answer content").nullable().optional(),
|
|
24
24
|
snippet: zod.z.string().describe("Answer snippet").nullable().optional()
|
|
25
|
-
}).describe("Instant answer data for specific query types.");
|
|
25
|
+
}).passthrough().describe("Instant answer data for specific query types.");
|
|
26
26
|
const SearchApiGetCachedSearchById_ShoppingAdSchema = zod.z.object({
|
|
27
27
|
link: zod.z.string().describe("Product URL").nullable().optional(),
|
|
28
28
|
price: zod.z.string().describe("Product price").nullable().optional(),
|
|
@@ -31,20 +31,20 @@ const SearchApiGetCachedSearchById_ShoppingAdSchema = zod.z.object({
|
|
|
31
31
|
reviews: zod.z.number().int().describe("Number of reviews").nullable().optional(),
|
|
32
32
|
merchant: zod.z.string().describe("Merchant name").nullable().optional(),
|
|
33
33
|
position: zod.z.number().int().describe("Ad position").nullable().optional()
|
|
34
|
-
}).describe("Product listing advertisement.");
|
|
34
|
+
}).passthrough().describe("Product listing advertisement.");
|
|
35
35
|
const SearchApiGetCachedSearchById_InlineImageSchema = zod.z.object({
|
|
36
36
|
link: zod.z.string().describe("Image source URL").nullable().optional(),
|
|
37
37
|
title: zod.z.string().describe("Image title").nullable().optional(),
|
|
38
38
|
position: zod.z.number().int().describe("Image position").nullable().optional(),
|
|
39
39
|
thumbnail: zod.z.string().describe("Image thumbnail URL").nullable().optional()
|
|
40
|
-
}).describe("Inline image result.");
|
|
40
|
+
}).passthrough().describe("Inline image result.");
|
|
41
41
|
const SearchApiGetCachedSearchById_InlineVideoSchema = zod.z.object({
|
|
42
42
|
link: zod.z.string().describe("Video URL").nullable().optional(),
|
|
43
43
|
title: zod.z.string().describe("Video title").nullable().optional(),
|
|
44
44
|
duration: zod.z.string().describe("Video duration").nullable().optional(),
|
|
45
45
|
position: zod.z.number().int().describe("Video position").nullable().optional(),
|
|
46
46
|
thumbnail: zod.z.string().describe("Video thumbnail URL").nullable().optional()
|
|
47
|
-
}).describe("Embedded video result.");
|
|
47
|
+
}).passthrough().describe("Embedded video result.");
|
|
48
48
|
const SearchApiGetCachedSearchById_LocalResultSchema = zod.z.object({
|
|
49
49
|
hours: zod.z.string().describe("Business hours").nullable().optional(),
|
|
50
50
|
phone: zod.z.string().describe("Phone number").nullable().optional(),
|
|
@@ -53,7 +53,7 @@ const SearchApiGetCachedSearchById_LocalResultSchema = zod.z.object({
|
|
|
53
53
|
address: zod.z.string().describe("Business address").nullable().optional(),
|
|
54
54
|
reviews: zod.z.number().int().describe("Number of reviews").nullable().optional(),
|
|
55
55
|
position: zod.z.number().int().describe("Result position").nullable().optional()
|
|
56
|
-
}).describe("Local business listing result.");
|
|
56
|
+
}).passthrough().describe("Local business listing result.");
|
|
57
57
|
const SearchApiGetCachedSearchById_KnowledgeGraphSchema = zod.z.object({
|
|
58
58
|
type: zod.z.string().describe("Entity type").nullable().optional(),
|
|
59
59
|
image: zod.z.string().describe("Entity image URL").nullable().optional(),
|
|
@@ -61,11 +61,11 @@ const SearchApiGetCachedSearchById_KnowledgeGraphSchema = zod.z.object({
|
|
|
61
61
|
rating: zod.z.number().describe("Entity rating").nullable().optional(),
|
|
62
62
|
reviews: zod.z.number().int().describe("Number of reviews").nullable().optional(),
|
|
63
63
|
description: zod.z.string().describe("Entity description").nullable().optional()
|
|
64
|
-
}).describe("Entity data from knowledge graph.");
|
|
64
|
+
}).passthrough().describe("Entity data from knowledge graph.");
|
|
65
65
|
const SearchApiGetCachedSearchById_SitelinkSchema = zod.z.object({
|
|
66
66
|
link: zod.z.string().describe("Sitelink URL").nullable().optional(),
|
|
67
67
|
title: zod.z.string().describe("Sitelink title").nullable().optional()
|
|
68
|
-
}).describe("Additional page links for a search result.");
|
|
68
|
+
}).passthrough().describe("Additional page links for a search result.");
|
|
69
69
|
const SearchApiGetCachedSearchById_OrganicResultSchema = zod.z.object({
|
|
70
70
|
date: zod.z.string().describe("Publication or last updated date").nullable().optional(),
|
|
71
71
|
link: zod.z.string().describe("Result URL").nullable().optional(),
|
|
@@ -73,7 +73,7 @@ const SearchApiGetCachedSearchById_OrganicResultSchema = zod.z.object({
|
|
|
73
73
|
snippet: zod.z.string().describe("Result description").nullable().optional(),
|
|
74
74
|
position: zod.z.number().int().describe("Result ranking").nullable().optional(),
|
|
75
75
|
sitelinks: zod.z.array(SearchApiGetCachedSearchById_SitelinkSchema).describe("Additional page links").nullable().optional()
|
|
76
|
-
}).describe("Individual organic search result.");
|
|
76
|
+
}).passthrough().describe("Individual organic search result.");
|
|
77
77
|
const SearchApiGetCachedSearchById_SearchMetadataSchema = zod.z.object({
|
|
78
78
|
id: zod.z.string().describe("Unique search identifier").nullable().optional(),
|
|
79
79
|
status: zod.z.string().describe("Request completion status (e.g., 'Success')").nullable().optional(),
|
|
@@ -84,11 +84,11 @@ const SearchApiGetCachedSearchById_SearchMetadataSchema = zod.z.object({
|
|
|
84
84
|
total_time_taken: zod.z.number().describe("Combined processing time").nullable().optional(),
|
|
85
85
|
parsing_time_taken: zod.z.number().describe("Duration for response parsing").nullable().optional(),
|
|
86
86
|
request_time_taken: zod.z.number().describe("Duration in seconds for data retrieval").nullable().optional()
|
|
87
|
-
}).describe("Metadata about the cached search request.");
|
|
87
|
+
}).passthrough().describe("Metadata about the cached search request.");
|
|
88
88
|
const SearchApiGetCachedSearchById_RelatedSearchSchema = zod.z.object({
|
|
89
89
|
link: zod.z.string().describe("Search URL for suggestion").nullable().optional(),
|
|
90
90
|
query: zod.z.string().describe("Suggested query").nullable().optional()
|
|
91
|
-
}).describe("Related search suggestion.");
|
|
91
|
+
}).passthrough().describe("Related search suggestion.");
|
|
92
92
|
const SearchApiGetCachedSearchById_SearchParametersSchema = zod.z.object({
|
|
93
93
|
q: zod.z.string().describe("Search query").nullable().optional(),
|
|
94
94
|
gl: zod.z.string().describe("Country setting").nullable().optional(),
|
|
@@ -98,20 +98,20 @@ const SearchApiGetCachedSearchById_SearchParametersSchema = zod.z.object({
|
|
|
98
98
|
location: zod.z.string().describe("Geographic location used").nullable().optional(),
|
|
99
99
|
google_domain: zod.z.string().describe("Google domain used").nullable().optional(),
|
|
100
100
|
location_used: zod.z.string().describe("Resolved location").nullable().optional()
|
|
101
|
-
}).describe("Original query parameters from the search request.");
|
|
101
|
+
}).passthrough().describe("Original query parameters from the search request.");
|
|
102
102
|
const SearchApiGetCachedSearchById_SearchInformationSchema = zod.z.object({
|
|
103
103
|
total_results: zod.z.number().int().describe("Approximate result count").nullable().optional(),
|
|
104
104
|
query_displayed: zod.z.string().describe("User-facing query text").nullable().optional(),
|
|
105
105
|
detected_location: zod.z.string().describe("Inferred user location").nullable().optional(),
|
|
106
106
|
time_taken_displayed: zod.z.number().describe("Google's reported search time").nullable().optional()
|
|
107
|
-
}).describe("Information about the search results.");
|
|
107
|
+
}).passthrough().describe("Information about the search results.");
|
|
108
108
|
const SearchApiGetCachedSearchById_DiscussionForumSchema = zod.z.object({
|
|
109
109
|
link: zod.z.string().describe("Discussion URL").nullable().optional(),
|
|
110
110
|
title: zod.z.string().describe("Discussion title").nullable().optional(),
|
|
111
111
|
source: zod.z.string().describe("Forum source (e.g., Reddit)").nullable().optional(),
|
|
112
112
|
snippet: zod.z.string().describe("Discussion snippet").nullable().optional(),
|
|
113
113
|
position: zod.z.number().int().describe("Result position").nullable().optional()
|
|
114
|
-
}).describe("Community discussion or forum result.");
|
|
114
|
+
}).passthrough().describe("Community discussion or forum result.");
|
|
115
115
|
const SearchApiGetCachedSearchByIdOutput = zod.z.object({
|
|
116
116
|
ads: zod.z.array(SearchApiGetCachedSearchById_AdSchema).describe("Paid search advertisements with pricing and sitelinks").nullable().optional(),
|
|
117
117
|
jobs: zod.z.array(SearchApiGetCachedSearchById_JobSchema).describe("Job postings with company, location, and qualifications").nullable().optional(),
|
|
@@ -127,7 +127,7 @@ const SearchApiGetCachedSearchByIdOutput = zod.z.object({
|
|
|
127
127
|
search_parameters: SearchApiGetCachedSearchById_SearchParametersSchema.nullable().optional(),
|
|
128
128
|
search_information: SearchApiGetCachedSearchById_SearchInformationSchema.nullable().optional(),
|
|
129
129
|
discussions_and_forums: zod.z.array(SearchApiGetCachedSearchById_DiscussionForumSchema).describe("Community content from Reddit and similar platforms").nullable().optional()
|
|
130
|
-
}).describe("Response model containing the complete cached search results in JSON format.");
|
|
130
|
+
}).passthrough().describe("Response model containing the complete cached search results in JSON format.");
|
|
131
131
|
const searchApiGetCachedSearchById = require_action.action("SEARCH_API_GET_CACHED_SEARCH_BY_ID", {
|
|
132
132
|
slug: "search_api-get-cached-search-by-id",
|
|
133
133
|
name: "Get Cached Search by ID",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-cached-search-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-cached-search-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetCachedSearchByIdInput = z.object({\n search_id: z.string().describe(\"The unique identifier for a previously executed search, formatted as 'search_[alphanumeric]'. This ID is found in the 'id' or 'json_url' field of the search_metadata from initial search responses.\"),\n}).describe(\"Request model for retrieving cached search results in JSON format.\");\nconst SearchApiGetCachedSearchById_AdSchema = z.object({\n link: z.string().describe(\"Ad URL\").nullable().optional(),\n price: z.string().describe(\"Advertised price\").nullable().optional(),\n title: z.string().describe(\"Ad title\").nullable().optional(),\n position: z.number().int().describe(\"Ad position\").nullable().optional(),\n description: z.string().describe(\"Ad description\").nullable().optional(),\n}).describe(\"Paid search advertisement.\");\nconst SearchApiGetCachedSearchById_JobSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n company: z.string().describe(\"Company name\").nullable().optional(),\n location: z.string().describe(\"Job location\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n description: z.string().describe(\"Job description\").nullable().optional(),\n}).describe(\"Job posting result.\");\nconst SearchApiGetCachedSearchById_AnswerBoxSchema = z.object({\n link: z.string().describe(\"Source link\").nullable().optional(),\n type: z.string().describe(\"Answer box type\").nullable().optional(),\n title: z.string().describe(\"Answer title\").nullable().optional(),\n answer: z.string().describe(\"Answer content\").nullable().optional(),\n snippet: z.string().describe(\"Answer snippet\").nullable().optional(),\n}).describe(\"Instant answer data for specific query types.\");\nconst SearchApiGetCachedSearchById_ShoppingAdSchema = z.object({\n link: z.string().describe(\"Product URL\").nullable().optional(),\n price: z.string().describe(\"Product price\").nullable().optional(),\n title: z.string().describe(\"Product title\").nullable().optional(),\n rating: z.number().describe(\"Product rating\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n merchant: z.string().describe(\"Merchant name\").nullable().optional(),\n position: z.number().int().describe(\"Ad position\").nullable().optional(),\n}).describe(\"Product listing advertisement.\");\nconst SearchApiGetCachedSearchById_InlineImageSchema = z.object({\n link: z.string().describe(\"Image source URL\").nullable().optional(),\n title: z.string().describe(\"Image title\").nullable().optional(),\n position: z.number().int().describe(\"Image position\").nullable().optional(),\n thumbnail: z.string().describe(\"Image thumbnail URL\").nullable().optional(),\n}).describe(\"Inline image result.\");\nconst SearchApiGetCachedSearchById_InlineVideoSchema = z.object({\n link: z.string().describe(\"Video URL\").nullable().optional(),\n title: z.string().describe(\"Video title\").nullable().optional(),\n duration: z.string().describe(\"Video duration\").nullable().optional(),\n position: z.number().int().describe(\"Video position\").nullable().optional(),\n thumbnail: z.string().describe(\"Video thumbnail URL\").nullable().optional(),\n}).describe(\"Embedded video result.\");\nconst SearchApiGetCachedSearchById_LocalResultSchema = z.object({\n hours: z.string().describe(\"Business hours\").nullable().optional(),\n phone: z.string().describe(\"Phone number\").nullable().optional(),\n title: z.string().describe(\"Business name\").nullable().optional(),\n rating: z.number().describe(\"Business rating\").nullable().optional(),\n address: z.string().describe(\"Business address\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n}).describe(\"Local business listing result.\");\nconst SearchApiGetCachedSearchById_KnowledgeGraphSchema = z.object({\n type: z.string().describe(\"Entity type\").nullable().optional(),\n image: z.string().describe(\"Entity image URL\").nullable().optional(),\n title: z.string().describe(\"Entity title\").nullable().optional(),\n rating: z.number().describe(\"Entity rating\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n description: z.string().describe(\"Entity description\").nullable().optional(),\n}).describe(\"Entity data from knowledge graph.\");\nconst SearchApiGetCachedSearchById_SitelinkSchema = z.object({\n link: z.string().describe(\"Sitelink URL\").nullable().optional(),\n title: z.string().describe(\"Sitelink title\").nullable().optional(),\n}).describe(\"Additional page links for a search result.\");\nconst SearchApiGetCachedSearchById_OrganicResultSchema = z.object({\n date: z.string().describe(\"Publication or last updated date\").nullable().optional(),\n link: z.string().describe(\"Result URL\").nullable().optional(),\n title: z.string().describe(\"Result title\").nullable().optional(),\n snippet: z.string().describe(\"Result description\").nullable().optional(),\n position: z.number().int().describe(\"Result ranking\").nullable().optional(),\n sitelinks: z.array(SearchApiGetCachedSearchById_SitelinkSchema).describe(\"Additional page links\").nullable().optional(),\n}).describe(\"Individual organic search result.\");\nconst SearchApiGetCachedSearchById_SearchMetadataSchema = z.object({\n id: z.string().describe(\"Unique search identifier\").nullable().optional(),\n status: z.string().describe(\"Request completion status (e.g., 'Success')\").nullable().optional(),\n html_url: z.string().describe(\"Link to cached HTML response\").nullable().optional(),\n json_url: z.string().describe(\"Link to JSON response\").nullable().optional(),\n created_at: z.string().describe(\"ISO timestamp of when the search was created\").nullable().optional(),\n request_url: z.string().describe(\"Actual Google URL queried\").nullable().optional(),\n total_time_taken: z.number().describe(\"Combined processing time\").nullable().optional(),\n parsing_time_taken: z.number().describe(\"Duration for response parsing\").nullable().optional(),\n request_time_taken: z.number().describe(\"Duration in seconds for data retrieval\").nullable().optional(),\n}).describe(\"Metadata about the cached search request.\");\nconst SearchApiGetCachedSearchById_RelatedSearchSchema = z.object({\n link: z.string().describe(\"Search URL for suggestion\").nullable().optional(),\n query: z.string().describe(\"Suggested query\").nullable().optional(),\n}).describe(\"Related search suggestion.\");\nconst SearchApiGetCachedSearchById_SearchParametersSchema = z.object({\n q: z.string().describe(\"Search query\").nullable().optional(),\n gl: z.string().describe(\"Country setting\").nullable().optional(),\n hl: z.string().describe(\"Language setting\").nullable().optional(),\n device: z.string().describe(\"Device type (desktop/mobile/tablet)\").nullable().optional(),\n engine: z.string().describe(\"Search engine type used\").nullable().optional(),\n location: z.string().describe(\"Geographic location used\").nullable().optional(),\n google_domain: z.string().describe(\"Google domain used\").nullable().optional(),\n location_used: z.string().describe(\"Resolved location\").nullable().optional(),\n}).describe(\"Original query parameters from the search request.\");\nconst SearchApiGetCachedSearchById_SearchInformationSchema = z.object({\n total_results: z.number().int().describe(\"Approximate result count\").nullable().optional(),\n query_displayed: z.string().describe(\"User-facing query text\").nullable().optional(),\n detected_location: z.string().describe(\"Inferred user location\").nullable().optional(),\n time_taken_displayed: z.number().describe(\"Google's reported search time\").nullable().optional(),\n}).describe(\"Information about the search results.\");\nconst SearchApiGetCachedSearchById_DiscussionForumSchema = z.object({\n link: z.string().describe(\"Discussion URL\").nullable().optional(),\n title: z.string().describe(\"Discussion title\").nullable().optional(),\n source: z.string().describe(\"Forum source (e.g., Reddit)\").nullable().optional(),\n snippet: z.string().describe(\"Discussion snippet\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n}).describe(\"Community discussion or forum result.\");\nexport const SearchApiGetCachedSearchByIdOutput = z.object({\n ads: z.array(SearchApiGetCachedSearchById_AdSchema).describe(\"Paid search advertisements with pricing and sitelinks\").nullable().optional(),\n jobs: z.array(SearchApiGetCachedSearchById_JobSchema).describe(\"Job postings with company, location, and qualifications\").nullable().optional(),\n answer_box: SearchApiGetCachedSearchById_AnswerBoxSchema.nullable().optional(),\n shopping_ads: z.array(SearchApiGetCachedSearchById_ShoppingAdSchema).describe(\"Product listings with prices and merchant ratings\").nullable().optional(),\n inline_images: z.array(SearchApiGetCachedSearchById_InlineImageSchema).describe(\"Image suggestions and galleries\").nullable().optional(),\n inline_videos: z.array(SearchApiGetCachedSearchById_InlineVideoSchema).describe(\"Embedded video results with timestamps\").nullable().optional(),\n local_results: z.array(SearchApiGetCachedSearchById_LocalResultSchema).describe(\"Business listings with ratings, hours, and map data\").nullable().optional(),\n knowledge_graph: SearchApiGetCachedSearchById_KnowledgeGraphSchema.nullable().optional(),\n organic_results: z.array(SearchApiGetCachedSearchById_OrganicResultSchema).describe(\"Array of web results\").nullable().optional(),\n search_metadata: SearchApiGetCachedSearchById_SearchMetadataSchema.nullable().optional(),\n related_searches: z.array(SearchApiGetCachedSearchById_RelatedSearchSchema).describe(\"Suggested query refinements\").nullable().optional(),\n search_parameters: SearchApiGetCachedSearchById_SearchParametersSchema.nullable().optional(),\n search_information: SearchApiGetCachedSearchById_SearchInformationSchema.nullable().optional(),\n discussions_and_forums: z.array(SearchApiGetCachedSearchById_DiscussionForumSchema).describe(\"Community content from Reddit and similar platforms\").nullable().optional(),\n}).describe(\"Response model containing the complete cached search results in JSON format.\");\n\nexport const searchApiGetCachedSearchById = action(\"SEARCH_API_GET_CACHED_SEARCH_BY_ID\", {\n slug: \"search_api-get-cached-search-by-id\",\n name: \"Get Cached Search by ID\",\n description: \"Tool to retrieve cached search results by search ID in JSON format. Use when you need to access previously executed search results without re-running the query. The search ID is found in the search_metadata.id or search_metadata.json_url field from initial search responses. Cached results are available for 90 days.\",\n input: SearchApiGetCachedSearchByIdInput,\n output: SearchApiGetCachedSearchByIdOutput,\n});\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"get-cached-search-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-cached-search-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiGetCachedSearchByIdInput = z.object({\n search_id: z.string().describe(\"The unique identifier for a previously executed search, formatted as 'search_[alphanumeric]'. This ID is found in the 'id' or 'json_url' field of the search_metadata from initial search responses.\"),\n}).describe(\"Request model for retrieving cached search results in JSON format.\");\nconst SearchApiGetCachedSearchById_AdSchema = z.object({\n link: z.string().describe(\"Ad URL\").nullable().optional(),\n price: z.string().describe(\"Advertised price\").nullable().optional(),\n title: z.string().describe(\"Ad title\").nullable().optional(),\n position: z.number().int().describe(\"Ad position\").nullable().optional(),\n description: z.string().describe(\"Ad description\").nullable().optional(),\n}).passthrough().describe(\"Paid search advertisement.\");\nconst SearchApiGetCachedSearchById_JobSchema = z.object({\n title: z.string().describe(\"Job title\").nullable().optional(),\n company: z.string().describe(\"Company name\").nullable().optional(),\n location: z.string().describe(\"Job location\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n description: z.string().describe(\"Job description\").nullable().optional(),\n}).passthrough().describe(\"Job posting result.\");\nconst SearchApiGetCachedSearchById_AnswerBoxSchema = z.object({\n link: z.string().describe(\"Source link\").nullable().optional(),\n type: z.string().describe(\"Answer box type\").nullable().optional(),\n title: z.string().describe(\"Answer title\").nullable().optional(),\n answer: z.string().describe(\"Answer content\").nullable().optional(),\n snippet: z.string().describe(\"Answer snippet\").nullable().optional(),\n}).passthrough().describe(\"Instant answer data for specific query types.\");\nconst SearchApiGetCachedSearchById_ShoppingAdSchema = z.object({\n link: z.string().describe(\"Product URL\").nullable().optional(),\n price: z.string().describe(\"Product price\").nullable().optional(),\n title: z.string().describe(\"Product title\").nullable().optional(),\n rating: z.number().describe(\"Product rating\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n merchant: z.string().describe(\"Merchant name\").nullable().optional(),\n position: z.number().int().describe(\"Ad position\").nullable().optional(),\n}).passthrough().describe(\"Product listing advertisement.\");\nconst SearchApiGetCachedSearchById_InlineImageSchema = z.object({\n link: z.string().describe(\"Image source URL\").nullable().optional(),\n title: z.string().describe(\"Image title\").nullable().optional(),\n position: z.number().int().describe(\"Image position\").nullable().optional(),\n thumbnail: z.string().describe(\"Image thumbnail URL\").nullable().optional(),\n}).passthrough().describe(\"Inline image result.\");\nconst SearchApiGetCachedSearchById_InlineVideoSchema = z.object({\n link: z.string().describe(\"Video URL\").nullable().optional(),\n title: z.string().describe(\"Video title\").nullable().optional(),\n duration: z.string().describe(\"Video duration\").nullable().optional(),\n position: z.number().int().describe(\"Video position\").nullable().optional(),\n thumbnail: z.string().describe(\"Video thumbnail URL\").nullable().optional(),\n}).passthrough().describe(\"Embedded video result.\");\nconst SearchApiGetCachedSearchById_LocalResultSchema = z.object({\n hours: z.string().describe(\"Business hours\").nullable().optional(),\n phone: z.string().describe(\"Phone number\").nullable().optional(),\n title: z.string().describe(\"Business name\").nullable().optional(),\n rating: z.number().describe(\"Business rating\").nullable().optional(),\n address: z.string().describe(\"Business address\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n}).passthrough().describe(\"Local business listing result.\");\nconst SearchApiGetCachedSearchById_KnowledgeGraphSchema = z.object({\n type: z.string().describe(\"Entity type\").nullable().optional(),\n image: z.string().describe(\"Entity image URL\").nullable().optional(),\n title: z.string().describe(\"Entity title\").nullable().optional(),\n rating: z.number().describe(\"Entity rating\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews\").nullable().optional(),\n description: z.string().describe(\"Entity description\").nullable().optional(),\n}).passthrough().describe(\"Entity data from knowledge graph.\");\nconst SearchApiGetCachedSearchById_SitelinkSchema = z.object({\n link: z.string().describe(\"Sitelink URL\").nullable().optional(),\n title: z.string().describe(\"Sitelink title\").nullable().optional(),\n}).passthrough().describe(\"Additional page links for a search result.\");\nconst SearchApiGetCachedSearchById_OrganicResultSchema = z.object({\n date: z.string().describe(\"Publication or last updated date\").nullable().optional(),\n link: z.string().describe(\"Result URL\").nullable().optional(),\n title: z.string().describe(\"Result title\").nullable().optional(),\n snippet: z.string().describe(\"Result description\").nullable().optional(),\n position: z.number().int().describe(\"Result ranking\").nullable().optional(),\n sitelinks: z.array(SearchApiGetCachedSearchById_SitelinkSchema).describe(\"Additional page links\").nullable().optional(),\n}).passthrough().describe(\"Individual organic search result.\");\nconst SearchApiGetCachedSearchById_SearchMetadataSchema = z.object({\n id: z.string().describe(\"Unique search identifier\").nullable().optional(),\n status: z.string().describe(\"Request completion status (e.g., 'Success')\").nullable().optional(),\n html_url: z.string().describe(\"Link to cached HTML response\").nullable().optional(),\n json_url: z.string().describe(\"Link to JSON response\").nullable().optional(),\n created_at: z.string().describe(\"ISO timestamp of when the search was created\").nullable().optional(),\n request_url: z.string().describe(\"Actual Google URL queried\").nullable().optional(),\n total_time_taken: z.number().describe(\"Combined processing time\").nullable().optional(),\n parsing_time_taken: z.number().describe(\"Duration for response parsing\").nullable().optional(),\n request_time_taken: z.number().describe(\"Duration in seconds for data retrieval\").nullable().optional(),\n}).passthrough().describe(\"Metadata about the cached search request.\");\nconst SearchApiGetCachedSearchById_RelatedSearchSchema = z.object({\n link: z.string().describe(\"Search URL for suggestion\").nullable().optional(),\n query: z.string().describe(\"Suggested query\").nullable().optional(),\n}).passthrough().describe(\"Related search suggestion.\");\nconst SearchApiGetCachedSearchById_SearchParametersSchema = z.object({\n q: z.string().describe(\"Search query\").nullable().optional(),\n gl: z.string().describe(\"Country setting\").nullable().optional(),\n hl: z.string().describe(\"Language setting\").nullable().optional(),\n device: z.string().describe(\"Device type (desktop/mobile/tablet)\").nullable().optional(),\n engine: z.string().describe(\"Search engine type used\").nullable().optional(),\n location: z.string().describe(\"Geographic location used\").nullable().optional(),\n google_domain: z.string().describe(\"Google domain used\").nullable().optional(),\n location_used: z.string().describe(\"Resolved location\").nullable().optional(),\n}).passthrough().describe(\"Original query parameters from the search request.\");\nconst SearchApiGetCachedSearchById_SearchInformationSchema = z.object({\n total_results: z.number().int().describe(\"Approximate result count\").nullable().optional(),\n query_displayed: z.string().describe(\"User-facing query text\").nullable().optional(),\n detected_location: z.string().describe(\"Inferred user location\").nullable().optional(),\n time_taken_displayed: z.number().describe(\"Google's reported search time\").nullable().optional(),\n}).passthrough().describe(\"Information about the search results.\");\nconst SearchApiGetCachedSearchById_DiscussionForumSchema = z.object({\n link: z.string().describe(\"Discussion URL\").nullable().optional(),\n title: z.string().describe(\"Discussion title\").nullable().optional(),\n source: z.string().describe(\"Forum source (e.g., Reddit)\").nullable().optional(),\n snippet: z.string().describe(\"Discussion snippet\").nullable().optional(),\n position: z.number().int().describe(\"Result position\").nullable().optional(),\n}).passthrough().describe(\"Community discussion or forum result.\");\nexport const SearchApiGetCachedSearchByIdOutput = z.object({\n ads: z.array(SearchApiGetCachedSearchById_AdSchema).describe(\"Paid search advertisements with pricing and sitelinks\").nullable().optional(),\n jobs: z.array(SearchApiGetCachedSearchById_JobSchema).describe(\"Job postings with company, location, and qualifications\").nullable().optional(),\n answer_box: SearchApiGetCachedSearchById_AnswerBoxSchema.nullable().optional(),\n shopping_ads: z.array(SearchApiGetCachedSearchById_ShoppingAdSchema).describe(\"Product listings with prices and merchant ratings\").nullable().optional(),\n inline_images: z.array(SearchApiGetCachedSearchById_InlineImageSchema).describe(\"Image suggestions and galleries\").nullable().optional(),\n inline_videos: z.array(SearchApiGetCachedSearchById_InlineVideoSchema).describe(\"Embedded video results with timestamps\").nullable().optional(),\n local_results: z.array(SearchApiGetCachedSearchById_LocalResultSchema).describe(\"Business listings with ratings, hours, and map data\").nullable().optional(),\n knowledge_graph: SearchApiGetCachedSearchById_KnowledgeGraphSchema.nullable().optional(),\n organic_results: z.array(SearchApiGetCachedSearchById_OrganicResultSchema).describe(\"Array of web results\").nullable().optional(),\n search_metadata: SearchApiGetCachedSearchById_SearchMetadataSchema.nullable().optional(),\n related_searches: z.array(SearchApiGetCachedSearchById_RelatedSearchSchema).describe(\"Suggested query refinements\").nullable().optional(),\n search_parameters: SearchApiGetCachedSearchById_SearchParametersSchema.nullable().optional(),\n search_information: SearchApiGetCachedSearchById_SearchInformationSchema.nullable().optional(),\n discussions_and_forums: z.array(SearchApiGetCachedSearchById_DiscussionForumSchema).describe(\"Community content from Reddit and similar platforms\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the complete cached search results in JSON format.\");\n\nexport const searchApiGetCachedSearchById = action(\"SEARCH_API_GET_CACHED_SEARCH_BY_ID\", {\n slug: \"search_api-get-cached-search-by-id\",\n name: \"Get Cached Search by ID\",\n description: \"Tool to retrieve cached search results by search ID in JSON format. Use when you need to access previously executed search results without re-running the query. The search ID is found in the search_metadata.id or search_metadata.json_url field from initial search responses. Cached results are available for 90 days.\",\n input: SearchApiGetCachedSearchByIdInput,\n output: SearchApiGetCachedSearchByIdOutput,\n});\n"],"mappings":"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"}
|
|
@@ -11,21 +11,21 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
11
11
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
13
13
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>>>;
|
|
15
15
|
jobs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
16
16
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
20
20
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
22
|
answer_box: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23
23
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
24
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
25
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
answer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
27
|
snippet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
-
}, z.core.$
|
|
28
|
+
}, z.core.$loose>>>;
|
|
29
29
|
shopping_ads: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
30
30
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
31
|
price: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34,20 +34,20 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
34
34
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
35
35
|
merchant: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
37
|
-
}, z.core.$
|
|
37
|
+
}, z.core.$loose>>>>;
|
|
38
38
|
inline_images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
39
39
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40
40
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
41
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
42
42
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
43
|
-
}, z.core.$
|
|
43
|
+
}, z.core.$loose>>>>;
|
|
44
44
|
inline_videos: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
45
45
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46
46
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
47
|
duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
49
49
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50
|
-
}, z.core.$
|
|
50
|
+
}, z.core.$loose>>>>;
|
|
51
51
|
local_results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
52
52
|
hours: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
53
53
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -56,7 +56,7 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
56
56
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
57
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
58
58
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
59
|
-
}, z.core.$
|
|
59
|
+
}, z.core.$loose>>>>;
|
|
60
60
|
knowledge_graph: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
61
61
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62
62
|
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -64,7 +64,7 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
64
64
|
rating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
65
65
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
66
66
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
-
}, z.core.$
|
|
67
|
+
}, z.core.$loose>>>;
|
|
68
68
|
organic_results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
69
69
|
date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
70
70
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -74,8 +74,8 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
74
74
|
sitelinks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
75
75
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76
76
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
77
|
-
}, z.core.$
|
|
78
|
-
}, z.core.$
|
|
77
|
+
}, z.core.$loose>>>>;
|
|
78
|
+
}, z.core.$loose>>>>;
|
|
79
79
|
search_metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
80
80
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81
81
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -86,11 +86,11 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
86
86
|
total_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
87
87
|
parsing_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
88
88
|
request_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
89
|
-
}, z.core.$
|
|
89
|
+
}, z.core.$loose>>>;
|
|
90
90
|
related_searches: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
91
91
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92
92
|
query: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93
|
-
}, z.core.$
|
|
93
|
+
}, z.core.$loose>>>>;
|
|
94
94
|
search_parameters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
95
95
|
q: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
96
96
|
gl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -100,21 +100,21 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
100
100
|
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
101
101
|
google_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
102
102
|
location_used: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
|
-
}, z.core.$
|
|
103
|
+
}, z.core.$loose>>>;
|
|
104
104
|
search_information: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
105
105
|
total_results: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
106
106
|
query_displayed: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
107
107
|
detected_location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
108
|
time_taken_displayed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
109
|
-
}, z.core.$
|
|
109
|
+
}, z.core.$loose>>>;
|
|
110
110
|
discussions_and_forums: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
111
111
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
112
112
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
113
113
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
114
114
|
snippet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115
115
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
116
|
-
}, z.core.$
|
|
117
|
-
}, z.core.$
|
|
116
|
+
}, z.core.$loose>>>>;
|
|
117
|
+
}, z.core.$loose>;
|
|
118
118
|
declare const searchApiGetCachedSearchById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
119
119
|
search_id: string;
|
|
120
120
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -11,21 +11,21 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
11
11
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
13
13
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>>>;
|
|
15
15
|
jobs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
16
16
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
20
20
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
22
|
answer_box: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23
23
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
24
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
25
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
answer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
27
|
snippet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
-
}, z.core.$
|
|
28
|
+
}, z.core.$loose>>>;
|
|
29
29
|
shopping_ads: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
30
30
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
31
|
price: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34,20 +34,20 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
34
34
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
35
35
|
merchant: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
37
|
-
}, z.core.$
|
|
37
|
+
}, z.core.$loose>>>>;
|
|
38
38
|
inline_images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
39
39
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40
40
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
41
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
42
42
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
43
|
-
}, z.core.$
|
|
43
|
+
}, z.core.$loose>>>>;
|
|
44
44
|
inline_videos: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
45
45
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46
46
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
47
|
duration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
49
49
|
thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50
|
-
}, z.core.$
|
|
50
|
+
}, z.core.$loose>>>>;
|
|
51
51
|
local_results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
52
52
|
hours: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
53
53
|
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -56,7 +56,7 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
56
56
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
57
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
58
58
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
59
|
-
}, z.core.$
|
|
59
|
+
}, z.core.$loose>>>>;
|
|
60
60
|
knowledge_graph: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
61
61
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62
62
|
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -64,7 +64,7 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
64
64
|
rating: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
65
65
|
reviews: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
66
66
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
-
}, z.core.$
|
|
67
|
+
}, z.core.$loose>>>;
|
|
68
68
|
organic_results: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
69
69
|
date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
70
70
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -74,8 +74,8 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
74
74
|
sitelinks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
75
75
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76
76
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
77
|
-
}, z.core.$
|
|
78
|
-
}, z.core.$
|
|
77
|
+
}, z.core.$loose>>>>;
|
|
78
|
+
}, z.core.$loose>>>>;
|
|
79
79
|
search_metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
80
80
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81
81
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -86,11 +86,11 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
86
86
|
total_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
87
87
|
parsing_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
88
88
|
request_time_taken: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
89
|
-
}, z.core.$
|
|
89
|
+
}, z.core.$loose>>>;
|
|
90
90
|
related_searches: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
91
91
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92
92
|
query: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93
|
-
}, z.core.$
|
|
93
|
+
}, z.core.$loose>>>>;
|
|
94
94
|
search_parameters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
95
95
|
q: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
96
96
|
gl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -100,21 +100,21 @@ declare const SearchApiGetCachedSearchByIdOutput: z.ZodObject<{
|
|
|
100
100
|
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
101
101
|
google_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
102
102
|
location_used: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
|
-
}, z.core.$
|
|
103
|
+
}, z.core.$loose>>>;
|
|
104
104
|
search_information: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
105
105
|
total_results: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
106
106
|
query_displayed: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
107
107
|
detected_location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
108
|
time_taken_displayed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
109
|
-
}, z.core.$
|
|
109
|
+
}, z.core.$loose>>>;
|
|
110
110
|
discussions_and_forums: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
111
111
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
112
112
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
113
113
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
114
114
|
snippet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115
115
|
position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
116
|
-
}, z.core.$
|
|
117
|
-
}, z.core.$
|
|
116
|
+
}, z.core.$loose>>>>;
|
|
117
|
+
}, z.core.$loose>;
|
|
118
118
|
declare const searchApiGetCachedSearchById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
119
119
|
search_id: string;
|
|
120
120
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|