@keystrokehq/prerender 0.1.2 → 0.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/dist/actions/change-recache-speed.cjs +2 -2
- package/dist/actions/change-recache-speed.cjs.map +1 -1
- package/dist/actions/change-recache-speed.d.cts +2 -2
- package/dist/actions/change-recache-speed.d.mts +2 -2
- package/dist/actions/change-recache-speed.mjs +2 -2
- package/dist/actions/change-recache-speed.mjs.map +1 -1
- package/dist/actions/check-health.cjs +4 -4
- package/dist/actions/check-health.cjs.map +1 -1
- package/dist/actions/check-health.d.cts +4 -4
- package/dist/actions/check-health.d.mts +4 -4
- package/dist/actions/check-health.mjs +4 -4
- package/dist/actions/check-health.mjs.map +1 -1
- package/dist/actions/clear-cache.cjs +1 -1
- package/dist/actions/clear-cache.cjs.map +1 -1
- package/dist/actions/clear-cache.d.cts +1 -1
- package/dist/actions/clear-cache.d.mts +1 -1
- package/dist/actions/clear-cache.mjs +1 -1
- package/dist/actions/clear-cache.mjs.map +1 -1
- package/dist/actions/create-seo-audit-report.cjs +1 -1
- package/dist/actions/create-seo-audit-report.cjs.map +1 -1
- package/dist/actions/create-seo-audit-report.d.cts +1 -1
- package/dist/actions/create-seo-audit-report.d.mts +1 -1
- package/dist/actions/create-seo-audit-report.mjs +1 -1
- package/dist/actions/create-seo-audit-report.mjs.map +1 -1
- package/dist/actions/get-cache-clear-status.cjs +1 -1
- package/dist/actions/get-cache-clear-status.cjs.map +1 -1
- package/dist/actions/get-cache-clear-status.d.cts +1 -1
- package/dist/actions/get-cache-clear-status.d.mts +1 -1
- package/dist/actions/get-cache-clear-status.mjs +1 -1
- package/dist/actions/get-cache-clear-status.mjs.map +1 -1
- package/dist/actions/get-prerendered-page.cjs +1 -1
- package/dist/actions/get-prerendered-page.cjs.map +1 -1
- package/dist/actions/get-prerendered-page.d.cts +1 -1
- package/dist/actions/get-prerendered-page.d.mts +1 -1
- package/dist/actions/get-prerendered-page.mjs +1 -1
- package/dist/actions/get-prerendered-page.mjs.map +1 -1
- package/dist/actions/list-healthz.cjs +1 -1
- package/dist/actions/list-healthz.cjs.map +1 -1
- package/dist/actions/list-healthz.d.cts +1 -1
- package/dist/actions/list-healthz.d.mts +1 -1
- package/dist/actions/list-healthz.mjs +1 -1
- package/dist/actions/list-healthz.mjs.map +1 -1
- package/dist/actions/list-v3.cjs +1 -1
- package/dist/actions/list-v3.cjs.map +1 -1
- package/dist/actions/list-v3.d.cts +1 -1
- package/dist/actions/list-v3.d.mts +1 -1
- package/dist/actions/list-v3.mjs +1 -1
- package/dist/actions/list-v3.mjs.map +1 -1
- package/dist/actions/recache-url.cjs +1 -1
- package/dist/actions/recache-url.cjs.map +1 -1
- package/dist/actions/recache-url.d.cts +1 -1
- package/dist/actions/recache-url.d.mts +1 -1
- package/dist/actions/recache-url.mjs +1 -1
- package/dist/actions/recache-url.mjs.map +1 -1
- package/dist/actions/search-cached-urls.cjs +2 -2
- package/dist/actions/search-cached-urls.cjs.map +1 -1
- package/dist/actions/search-cached-urls.d.cts +2 -2
- package/dist/actions/search-cached-urls.d.mts +2 -2
- package/dist/actions/search-cached-urls.mjs +2 -2
- package/dist/actions/search-cached-urls.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10,12 +10,12 @@ const PrerenderChangeRecacheSpeed_RecacheMetricsSchema = zod.z.object({
|
|
|
10
10
|
num_1_hour: zod.z.number().int().describe("Number of URLs recached in last 1 hour").nullable().optional(),
|
|
11
11
|
num_30_sec: zod.z.number().int().describe("Number of URLs recached in last 30 seconds").nullable().optional(),
|
|
12
12
|
delay_between_urls: zod.z.number().int().describe("Delay between processing URLs in milliseconds").nullable().optional()
|
|
13
|
-
}).describe("Metrics about recache operations.");
|
|
13
|
+
}).passthrough().describe("Metrics about recache operations.");
|
|
14
14
|
const PrerenderChangeRecacheSpeedOutput = zod.z.object({
|
|
15
15
|
success: zod.z.boolean().describe("Whether the operation was successful").nullable().optional(),
|
|
16
16
|
recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),
|
|
17
17
|
is_automatic_delay: zod.z.boolean().describe("Whether automatic delay mode is enabled").nullable().optional()
|
|
18
|
-
}).describe("Response model for recache speed adjustment.");
|
|
18
|
+
}).passthrough().describe("Response model for recache speed adjustment.");
|
|
19
19
|
const prerenderChangeRecacheSpeed = require_action.action("PRERENDER_CHANGE_RECACHE_SPEED", {
|
|
20
20
|
slug: "prerender-change-recache-speed",
|
|
21
21
|
name: "Change Recache Speed",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"change-recache-speed.cjs","names":["z","action"],"sources":["../../src/actions/change-recache-speed.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderChangeRecacheSpeedInput = z.object({\n urls_per_hour: z.number().int().describe(\"Number of URLs to recache per hour. Use 0 for automatic delay, or a value between 3600 and 36000 (where 36000 is fastest).\"),\n}).describe(\"Request model for adjusting the rendering speed of recache queues.\");\nconst PrerenderChangeRecacheSpeed_RecacheMetricsSchema = z.object({\n num_1_day: z.number().int().describe(\"Number of URLs recached in last 1 day\").nullable().optional(),\n num_1_min: z.number().int().describe(\"Number of URLs recached in last 1 minute\").nullable().optional(),\n num_10_min: z.number().int().describe(\"Number of URLs recached in last 10 minutes\").nullable().optional(),\n num_10_sec: z.number().int().describe(\"Number of URLs recached in last 10 seconds\").nullable().optional(),\n num_1_hour: z.number().int().describe(\"Number of URLs recached in last 1 hour\").nullable().optional(),\n num_30_sec: z.number().int().describe(\"Number of URLs recached in last 30 seconds\").nullable().optional(),\n delay_between_urls: z.number().int().describe(\"Delay between processing URLs in milliseconds\").nullable().optional(),\n}).describe(\"Metrics about recache operations.\");\nexport const PrerenderChangeRecacheSpeedOutput = z.object({\n success: z.boolean().describe(\"Whether the operation was successful\").nullable().optional(),\n recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),\n is_automatic_delay: z.boolean().describe(\"Whether automatic delay mode is enabled\").nullable().optional(),\n}).describe(\"Response model for recache speed adjustment.\");\n\nexport const prerenderChangeRecacheSpeed = action(\"PRERENDER_CHANGE_RECACHE_SPEED\", {\n slug: \"prerender-change-recache-speed\",\n name: \"Change Recache Speed\",\n description: \"Tool to adjust the rendering speed of Manual/API and Automatic rendering queues. Use when you need to control how fast Prerender processes URLs in the recache queue.\",\n input: PrerenderChangeRecacheSpeedInput,\n output: PrerenderChangeRecacheSpeedOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4HAA4H,EACvK,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,SAAS,mCAAmC;
|
|
1
|
+
{"version":3,"file":"change-recache-speed.cjs","names":["z","action"],"sources":["../../src/actions/change-recache-speed.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderChangeRecacheSpeedInput = z.object({\n urls_per_hour: z.number().int().describe(\"Number of URLs to recache per hour. Use 0 for automatic delay, or a value between 3600 and 36000 (where 36000 is fastest).\"),\n}).describe(\"Request model for adjusting the rendering speed of recache queues.\");\nconst PrerenderChangeRecacheSpeed_RecacheMetricsSchema = z.object({\n num_1_day: z.number().int().describe(\"Number of URLs recached in last 1 day\").nullable().optional(),\n num_1_min: z.number().int().describe(\"Number of URLs recached in last 1 minute\").nullable().optional(),\n num_10_min: z.number().int().describe(\"Number of URLs recached in last 10 minutes\").nullable().optional(),\n num_10_sec: z.number().int().describe(\"Number of URLs recached in last 10 seconds\").nullable().optional(),\n num_1_hour: z.number().int().describe(\"Number of URLs recached in last 1 hour\").nullable().optional(),\n num_30_sec: z.number().int().describe(\"Number of URLs recached in last 30 seconds\").nullable().optional(),\n delay_between_urls: z.number().int().describe(\"Delay between processing URLs in milliseconds\").nullable().optional(),\n}).passthrough().describe(\"Metrics about recache operations.\");\nexport const PrerenderChangeRecacheSpeedOutput = z.object({\n success: z.boolean().describe(\"Whether the operation was successful\").nullable().optional(),\n recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),\n is_automatic_delay: z.boolean().describe(\"Whether automatic delay mode is enabled\").nullable().optional(),\n}).passthrough().describe(\"Response model for recache speed adjustment.\");\n\nexport const prerenderChangeRecacheSpeed = action(\"PRERENDER_CHANGE_RECACHE_SPEED\", {\n slug: \"prerender-change-recache-speed\",\n name: \"Change Recache Speed\",\n description: \"Tool to adjust the rendering speed of Manual/API and Automatic rendering queues. Use when you need to control how fast Prerender processes URLs in the recache queue.\",\n input: PrerenderChangeRecacheSpeedInput,\n output: PrerenderChangeRecacheSpeedOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4HAA4H,EACvK,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC;AAC7D,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,iBAAiB,iDAAiD,SAAS,CAAC,CAAC,SAAS;CACtF,oBAAoBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AAExE,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -14,9 +14,9 @@ declare const PrerenderChangeRecacheSpeedOutput: z.ZodObject<{
|
|
|
14
14
|
num_1_hour: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
15
|
num_30_sec: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16
16
|
delay_between_urls: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
|
-
}, z.core.$
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
18
|
is_automatic_delay: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19
|
-
}, z.core.$
|
|
19
|
+
}, z.core.$loose>;
|
|
20
20
|
declare const prerenderChangeRecacheSpeed: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
urls_per_hour: number;
|
|
22
22
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -14,9 +14,9 @@ declare const PrerenderChangeRecacheSpeedOutput: z.ZodObject<{
|
|
|
14
14
|
num_1_hour: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
15
|
num_30_sec: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16
16
|
delay_between_urls: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
|
-
}, z.core.$
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
18
|
is_automatic_delay: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19
|
-
}, z.core.$
|
|
19
|
+
}, z.core.$loose>;
|
|
20
20
|
declare const prerenderChangeRecacheSpeed: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
urls_per_hour: number;
|
|
22
22
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -10,7 +10,7 @@ const PrerenderChangeRecacheSpeed_RecacheMetricsSchema = z.object({
|
|
|
10
10
|
num_1_hour: z.number().int().describe("Number of URLs recached in last 1 hour").nullable().optional(),
|
|
11
11
|
num_30_sec: z.number().int().describe("Number of URLs recached in last 30 seconds").nullable().optional(),
|
|
12
12
|
delay_between_urls: z.number().int().describe("Delay between processing URLs in milliseconds").nullable().optional()
|
|
13
|
-
}).describe("Metrics about recache operations.");
|
|
13
|
+
}).passthrough().describe("Metrics about recache operations.");
|
|
14
14
|
const prerenderChangeRecacheSpeed = action("PRERENDER_CHANGE_RECACHE_SPEED", {
|
|
15
15
|
slug: "prerender-change-recache-speed",
|
|
16
16
|
name: "Change Recache Speed",
|
|
@@ -20,7 +20,7 @@ const prerenderChangeRecacheSpeed = action("PRERENDER_CHANGE_RECACHE_SPEED", {
|
|
|
20
20
|
success: z.boolean().describe("Whether the operation was successful").nullable().optional(),
|
|
21
21
|
recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),
|
|
22
22
|
is_automatic_delay: z.boolean().describe("Whether automatic delay mode is enabled").nullable().optional()
|
|
23
|
-
}).describe("Response model for recache speed adjustment.")
|
|
23
|
+
}).passthrough().describe("Response model for recache speed adjustment.")
|
|
24
24
|
});
|
|
25
25
|
//#endregion
|
|
26
26
|
export { prerenderChangeRecacheSpeed };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"change-recache-speed.mjs","names":[],"sources":["../../src/actions/change-recache-speed.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderChangeRecacheSpeedInput = z.object({\n urls_per_hour: z.number().int().describe(\"Number of URLs to recache per hour. Use 0 for automatic delay, or a value between 3600 and 36000 (where 36000 is fastest).\"),\n}).describe(\"Request model for adjusting the rendering speed of recache queues.\");\nconst PrerenderChangeRecacheSpeed_RecacheMetricsSchema = z.object({\n num_1_day: z.number().int().describe(\"Number of URLs recached in last 1 day\").nullable().optional(),\n num_1_min: z.number().int().describe(\"Number of URLs recached in last 1 minute\").nullable().optional(),\n num_10_min: z.number().int().describe(\"Number of URLs recached in last 10 minutes\").nullable().optional(),\n num_10_sec: z.number().int().describe(\"Number of URLs recached in last 10 seconds\").nullable().optional(),\n num_1_hour: z.number().int().describe(\"Number of URLs recached in last 1 hour\").nullable().optional(),\n num_30_sec: z.number().int().describe(\"Number of URLs recached in last 30 seconds\").nullable().optional(),\n delay_between_urls: z.number().int().describe(\"Delay between processing URLs in milliseconds\").nullable().optional(),\n}).describe(\"Metrics about recache operations.\");\nexport const PrerenderChangeRecacheSpeedOutput = z.object({\n success: z.boolean().describe(\"Whether the operation was successful\").nullable().optional(),\n recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),\n is_automatic_delay: z.boolean().describe(\"Whether automatic delay mode is enabled\").nullable().optional(),\n}).describe(\"Response model for recache speed adjustment.\");\n\nexport const prerenderChangeRecacheSpeed = action(\"PRERENDER_CHANGE_RECACHE_SPEED\", {\n slug: \"prerender-change-recache-speed\",\n name: \"Change Recache Speed\",\n description: \"Tool to adjust the rendering speed of Manual/API and Automatic rendering queues. Use when you need to control how fast Prerender processes URLs in the recache queue.\",\n input: PrerenderChangeRecacheSpeedInput,\n output: PrerenderChangeRecacheSpeedOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO,EACvD,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4HAA4H,EACvK,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,mDAAmD,EAAE,OAAO;CAChE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,oBAAoB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,SAAS,mCAAmC;
|
|
1
|
+
{"version":3,"file":"change-recache-speed.mjs","names":[],"sources":["../../src/actions/change-recache-speed.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderChangeRecacheSpeedInput = z.object({\n urls_per_hour: z.number().int().describe(\"Number of URLs to recache per hour. Use 0 for automatic delay, or a value between 3600 and 36000 (where 36000 is fastest).\"),\n}).describe(\"Request model for adjusting the rendering speed of recache queues.\");\nconst PrerenderChangeRecacheSpeed_RecacheMetricsSchema = z.object({\n num_1_day: z.number().int().describe(\"Number of URLs recached in last 1 day\").nullable().optional(),\n num_1_min: z.number().int().describe(\"Number of URLs recached in last 1 minute\").nullable().optional(),\n num_10_min: z.number().int().describe(\"Number of URLs recached in last 10 minutes\").nullable().optional(),\n num_10_sec: z.number().int().describe(\"Number of URLs recached in last 10 seconds\").nullable().optional(),\n num_1_hour: z.number().int().describe(\"Number of URLs recached in last 1 hour\").nullable().optional(),\n num_30_sec: z.number().int().describe(\"Number of URLs recached in last 30 seconds\").nullable().optional(),\n delay_between_urls: z.number().int().describe(\"Delay between processing URLs in milliseconds\").nullable().optional(),\n}).passthrough().describe(\"Metrics about recache operations.\");\nexport const PrerenderChangeRecacheSpeedOutput = z.object({\n success: z.boolean().describe(\"Whether the operation was successful\").nullable().optional(),\n recache_metrics: PrerenderChangeRecacheSpeed_RecacheMetricsSchema.nullable().optional(),\n is_automatic_delay: z.boolean().describe(\"Whether automatic delay mode is enabled\").nullable().optional(),\n}).passthrough().describe(\"Response model for recache speed adjustment.\");\n\nexport const prerenderChangeRecacheSpeed = action(\"PRERENDER_CHANGE_RECACHE_SPEED\", {\n slug: \"prerender-change-recache-speed\",\n name: \"Change Recache Speed\",\n description: \"Tool to adjust the rendering speed of Manual/API and Automatic rendering queues. Use when you need to control how fast Prerender processes URLs in the recache queue.\",\n input: PrerenderChangeRecacheSpeedInput,\n output: PrerenderChangeRecacheSpeedOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO,EACvD,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4HAA4H,EACvK,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,mDAAmD,EAAE,OAAO;CAChE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,oBAAoB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC;AAO7D,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX+C,EAAE,OAAO;EACxD,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1F,iBAAiB,iDAAiD,SAAS,CAAC,CAAC,SAAS;EACtF,oBAAoB,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAOhB;AACV,CAAC"}
|
|
@@ -3,11 +3,11 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/check-health.ts
|
|
4
4
|
const PrerenderCheckHealthInput = zod.z.object({}).describe("Request model for health check - no parameters required.");
|
|
5
5
|
const PrerenderCheckHealthOutput = zod.z.object({
|
|
6
|
-
info: zod.z.
|
|
7
|
-
error: zod.z.
|
|
6
|
+
info: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Additional health information for service components.").nullable().optional(),
|
|
7
|
+
error: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Error details for any failing service components.").nullable().optional(),
|
|
8
8
|
status: zod.z.string().describe("Overall health status of the service (e.g., 'ok', 'error').").nullable(),
|
|
9
|
-
details: zod.z.
|
|
10
|
-
}).describe("Response model containing health check status and service details.");
|
|
9
|
+
details: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Detailed health status of individual service components (e.g., database).").nullable().optional()
|
|
10
|
+
}).passthrough().describe("Response model containing health check status and service details.");
|
|
11
11
|
const prerenderCheckHealth = require_action.action("PRERENDER_CHECK_HEALTH", {
|
|
12
12
|
slug: "prerender-check-health",
|
|
13
13
|
name: "Check Health",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check-health.cjs","names":["z","action"],"sources":["../../src/actions/check-health.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCheckHealthInput = z.object({}).describe(\"Request model for health check - no parameters required.\");\nexport const PrerenderCheckHealthOutput = z.object({\n info: z.
|
|
1
|
+
{"version":3,"file":"check-health.cjs","names":["z","action"],"sources":["../../src/actions/check-health.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCheckHealthInput = z.object({}).describe(\"Request model for health check - no parameters required.\");\nexport const PrerenderCheckHealthOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"Additional health information for service components.\").nullable().optional(),\n error: z.record(z.string(), z.unknown()).describe(\"Error details for any failing service components.\").nullable().optional(),\n status: z.string().describe(\"Overall health status of the service (e.g., 'ok', 'error').\").nullable(),\n details: z.record(z.string(), z.unknown()).describe(\"Detailed health status of individual service components (e.g., database).\").nullable().optional(),\n}).passthrough().describe(\"Response model containing health check status and service details.\");\n\nexport const prerenderCheckHealth = action(\"PRERENDER_CHECK_HEALTH\", {\n slug: \"prerender-check-health\",\n name: \"Check Health\",\n description: \"Tool to check the health status of the Prerender API service. Use when you need to verify service availability or monitor system health.\",\n input: PrerenderCheckHealthInput,\n output: PrerenderCheckHealthOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACzH,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,OAAOA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;CACpG,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAAoE;AAE9F,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -3,11 +3,11 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/check-health.d.ts
|
|
4
4
|
declare const PrerenderCheckHealthInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderCheckHealthOutput: z.ZodObject<{
|
|
6
|
-
info: z.ZodOptional<z.ZodNullable<z.
|
|
7
|
-
error: z.ZodOptional<z.ZodNullable<z.
|
|
6
|
+
info: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8
8
|
status: z.ZodNullable<z.ZodString>;
|
|
9
|
-
details: z.ZodOptional<z.ZodNullable<z.
|
|
10
|
-
}, z.core.$
|
|
9
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
11
|
declare const prerenderCheckHealth: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { prerenderCheckHealth };
|
|
@@ -3,11 +3,11 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/check-health.d.ts
|
|
4
4
|
declare const PrerenderCheckHealthInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderCheckHealthOutput: z.ZodObject<{
|
|
6
|
-
info: z.ZodOptional<z.ZodNullable<z.
|
|
7
|
-
error: z.ZodOptional<z.ZodNullable<z.
|
|
6
|
+
info: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8
8
|
status: z.ZodNullable<z.ZodString>;
|
|
9
|
-
details: z.ZodOptional<z.ZodNullable<z.
|
|
10
|
-
}, z.core.$
|
|
9
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
11
|
declare const prerenderCheckHealth: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { prerenderCheckHealth };
|
|
@@ -6,11 +6,11 @@ const prerenderCheckHealth = action("PRERENDER_CHECK_HEALTH", {
|
|
|
6
6
|
description: "Tool to check the health status of the Prerender API service. Use when you need to verify service availability or monitor system health.",
|
|
7
7
|
input: z.object({}).describe("Request model for health check - no parameters required."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
info: z.
|
|
10
|
-
error: z.
|
|
9
|
+
info: z.record(z.string(), z.unknown()).describe("Additional health information for service components.").nullable().optional(),
|
|
10
|
+
error: z.record(z.string(), z.unknown()).describe("Error details for any failing service components.").nullable().optional(),
|
|
11
11
|
status: z.string().describe("Overall health status of the service (e.g., 'ok', 'error').").nullable(),
|
|
12
|
-
details: z.
|
|
13
|
-
}).describe("Response model containing health check status and service details.")
|
|
12
|
+
details: z.record(z.string(), z.unknown()).describe("Detailed health status of individual service components (e.g., database).").nullable().optional()
|
|
13
|
+
}).passthrough().describe("Response model containing health check status and service details.")
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
16
16
|
export { prerenderCheckHealth };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check-health.mjs","names":[],"sources":["../../src/actions/check-health.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCheckHealthInput = z.object({}).describe(\"Request model for health check - no parameters required.\");\nexport const PrerenderCheckHealthOutput = z.object({\n info: z.
|
|
1
|
+
{"version":3,"file":"check-health.mjs","names":[],"sources":["../../src/actions/check-health.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCheckHealthInput = z.object({}).describe(\"Request model for health check - no parameters required.\");\nexport const PrerenderCheckHealthOutput = z.object({\n info: z.record(z.string(), z.unknown()).describe(\"Additional health information for service components.\").nullable().optional(),\n error: z.record(z.string(), z.unknown()).describe(\"Error details for any failing service components.\").nullable().optional(),\n status: z.string().describe(\"Overall health status of the service (e.g., 'ok', 'error').\").nullable(),\n details: z.record(z.string(), z.unknown()).describe(\"Detailed health status of individual service components (e.g., database).\").nullable().optional(),\n}).passthrough().describe(\"Response model containing health check status and service details.\");\n\nexport const prerenderCheckHealth = action(\"PRERENDER_CHECK_HEALTH\", {\n slug: \"prerender-check-health\",\n name: \"Check Health\",\n description: \"Tool to check the health status of the Prerender API service. Use when you need to verify service availability or monitor system health.\",\n input: PrerenderCheckHealthInput,\n output: PrerenderCheckHealthOutput,\n});\n"],"mappings":";;AAYA,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZuC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAYtD;CACP,QAZwC,EAAE,OAAO;EACjD,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9H,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3H,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;EACpG,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAOhB;AACV,CAAC"}
|
|
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/clear-cache.ts
|
|
4
4
|
const PrerenderClearCacheInput = zod.z.object({ query: zod.z.string().describe("SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.") }).describe("Request model for clearing Prerender cache using SQL-like wildcard patterns.");
|
|
5
|
-
const PrerenderClearCacheOutput = zod.z.object({ status: zod.z.number().int().describe("HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).").nullable() }).describe("Response model for cache clear operation.");
|
|
5
|
+
const PrerenderClearCacheOutput = zod.z.object({ status: zod.z.number().int().describe("HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).").nullable() }).passthrough().describe("Response model for cache clear operation.");
|
|
6
6
|
const prerenderClearCache = require_action.action("PRERENDER_CLEAR_CACHE", {
|
|
7
7
|
slug: "prerender-clear-cache",
|
|
8
8
|
name: "Clear Cache",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clear-cache.cjs","names":["z","action"],"sources":["../../src/actions/clear-cache.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderClearCacheInput = z.object({\n query: z.string().describe(\"SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.\"),\n}).describe(\"Request model for clearing Prerender cache using SQL-like wildcard patterns.\");\nexport const PrerenderClearCacheOutput = z.object({\n status: z.number().int().describe(\"HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).\").nullable(),\n}).describe(\"Response model for cache clear operation.\");\n\nexport const prerenderClearCache = action(\"PRERENDER_CLEAR_CACHE\", {\n slug: \"prerender-clear-cache\",\n name: \"Clear Cache\",\n description: \"Tool to clear Prerender cache using SQL-like wildcard patterns. Schedules a cache clear job. Only one cache clear job can be scheduled per user at a time. Use when you need to invalidate cached pages for a URL pattern.\",\n input: PrerenderClearCacheInput,\n output: PrerenderClearCacheOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oNAAoN,EACjP,CAAC,CAAC,CAAC,SAAS,8EAA8E;AAC1F,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2IAA2I,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,SAAS,2CAA2C;
|
|
1
|
+
{"version":3,"file":"clear-cache.cjs","names":["z","action"],"sources":["../../src/actions/clear-cache.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderClearCacheInput = z.object({\n query: z.string().describe(\"SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.\"),\n}).describe(\"Request model for clearing Prerender cache using SQL-like wildcard patterns.\");\nexport const PrerenderClearCacheOutput = z.object({\n status: z.number().int().describe(\"HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).\").nullable(),\n}).passthrough().describe(\"Response model for cache clear operation.\");\n\nexport const prerenderClearCache = action(\"PRERENDER_CLEAR_CACHE\", {\n slug: \"prerender-clear-cache\",\n name: \"Clear Cache\",\n description: \"Tool to clear Prerender cache using SQL-like wildcard patterns. Schedules a cache clear job. Only one cache clear job can be scheduled per user at a time. Use when you need to invalidate cached pages for a URL pattern.\",\n input: PrerenderClearCacheInput,\n output: PrerenderClearCacheOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oNAAoN,EACjP,CAAC,CAAC,CAAC,SAAS,8EAA8E;AAC1F,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2IAA2I,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AAErE,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -6,7 +6,7 @@ declare const PrerenderClearCacheInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderClearCacheOutput: z.ZodObject<{
|
|
8
8
|
status: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderClearCache: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
query: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -6,7 +6,7 @@ declare const PrerenderClearCacheInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderClearCacheOutput: z.ZodObject<{
|
|
8
8
|
status: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderClearCache: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
query: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -5,7 +5,7 @@ const prerenderClearCache = action("PRERENDER_CLEAR_CACHE", {
|
|
|
5
5
|
name: "Clear Cache",
|
|
6
6
|
description: "Tool to clear Prerender cache using SQL-like wildcard patterns. Schedules a cache clear job. Only one cache clear job can be scheduled per user at a time. Use when you need to invalidate cached pages for a URL pattern.",
|
|
7
7
|
input: z.object({ query: z.string().describe("SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.") }).describe("Request model for clearing Prerender cache using SQL-like wildcard patterns."),
|
|
8
|
-
output: z.object({ status: z.number().int().describe("HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).").nullable() }).describe("Response model for cache clear operation.")
|
|
8
|
+
output: z.object({ status: z.number().int().describe("HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).").nullable() }).passthrough().describe("Response model for cache clear operation.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { prerenderClearCache };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clear-cache.mjs","names":[],"sources":["../../src/actions/clear-cache.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderClearCacheInput = z.object({\n query: z.string().describe(\"SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.\"),\n}).describe(\"Request model for clearing Prerender cache using SQL-like wildcard patterns.\");\nexport const PrerenderClearCacheOutput = z.object({\n status: z.number().int().describe(\"HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).\").nullable(),\n}).describe(\"Response model for cache clear operation.\");\n\nexport const prerenderClearCache = action(\"PRERENDER_CLEAR_CACHE\", {\n slug: \"prerender-clear-cache\",\n name: \"Clear Cache\",\n description: \"Tool to clear Prerender cache using SQL-like wildcard patterns. Schedules a cache clear job. Only one cache clear job can be scheduled per user at a time. Use when you need to invalidate cached pages for a URL pattern.\",\n input: PrerenderClearCacheInput,\n output: PrerenderClearCacheOutput,\n});\n"],"mappings":";;AAWA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXsC,EAAE,OAAO,EAC/C,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oNAAoN,EACjP,CAAC,CAAC,CAAC,SAAS,8EASH;CACP,QATuC,EAAE,OAAO,EAChD,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2IAA2I,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"clear-cache.mjs","names":[],"sources":["../../src/actions/clear-cache.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderClearCacheInput = z.object({\n query: z.string().describe(\"SQL-like pattern for URLs to clear from cache. Use '%' as wildcard. Example: 'https://example.com%' deletes all URLs starting with that prefix. Use 'https://example.com%' to clear all cached pages for a domain.\"),\n}).describe(\"Request model for clearing Prerender cache using SQL-like wildcard patterns.\");\nexport const PrerenderClearCacheOutput = z.object({\n status: z.number().int().describe(\"HTTP status code. 200 = Cache clear queued successfully, 403 = Cache clear already in progress (only one job allowed per user at a time).\").nullable(),\n}).passthrough().describe(\"Response model for cache clear operation.\");\n\nexport const prerenderClearCache = action(\"PRERENDER_CLEAR_CACHE\", {\n slug: \"prerender-clear-cache\",\n name: \"Clear Cache\",\n description: \"Tool to clear Prerender cache using SQL-like wildcard patterns. Schedules a cache clear job. Only one cache clear job can be scheduled per user at a time. Use when you need to invalidate cached pages for a URL pattern.\",\n input: PrerenderClearCacheInput,\n output: PrerenderClearCacheOutput,\n});\n"],"mappings":";;AAWA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXsC,EAAE,OAAO,EAC/C,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oNAAoN,EACjP,CAAC,CAAC,CAAC,SAAS,8EASH;CACP,QATuC,EAAE,OAAO,EAChD,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2IAA2I,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAOhB;AACV,CAAC"}
|
|
@@ -7,7 +7,7 @@ const PrerenderCreateSeoAuditReportInput = zod.z.object({
|
|
|
7
7
|
lastName: zod.z.string().describe("Last name of the person requesting the audit report."),
|
|
8
8
|
firstName: zod.z.string().describe("First name of the person requesting the audit report.")
|
|
9
9
|
}).describe("Request model for creating an SEO audit report for a specific URL.");
|
|
10
|
-
const PrerenderCreateSeoAuditReportOutput = zod.z.object({ reportsLeft: zod.z.number().int().describe("Number of audit reports remaining in the account quota.").nullable() }).describe("Response model for SEO audit report creation.");
|
|
10
|
+
const PrerenderCreateSeoAuditReportOutput = zod.z.object({ reportsLeft: zod.z.number().int().describe("Number of audit reports remaining in the account quota.").nullable() }).passthrough().describe("Response model for SEO audit report creation.");
|
|
11
11
|
const prerenderCreateSeoAuditReport = require_action.action("PRERENDER_CREATE_SEO_AUDIT_REPORT", {
|
|
12
12
|
slug: "prerender-create-seo-audit-report",
|
|
13
13
|
name: "Create SEO Audit Report",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-seo-audit-report.cjs","names":["z","action"],"sources":["../../src/actions/create-seo-audit-report.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCreateSeoAuditReportInput = z.object({\n url: z.string().describe(\"Full URL of the page to audit. Must include scheme (http/https). The audit will analyze SEO performance metrics for this page.\"),\n email: z.string().describe(\"Email address where the SEO audit report will be sent. Must be a valid email format.\"),\n lastName: z.string().describe(\"Last name of the person requesting the audit report.\"),\n firstName: z.string().describe(\"First name of the person requesting the audit report.\"),\n}).describe(\"Request model for creating an SEO audit report for a specific URL.\");\nexport const PrerenderCreateSeoAuditReportOutput = z.object({\n reportsLeft: z.number().int().describe(\"Number of audit reports remaining in the account quota.\").nullable(),\n}).describe(\"Response model for SEO audit report creation.\");\n\nexport const prerenderCreateSeoAuditReport = action(\"PRERENDER_CREATE_SEO_AUDIT_REPORT\", {\n slug: \"prerender-create-seo-audit-report\",\n name: \"Create SEO Audit Report\",\n description: \"Tool to generate SEO audit reports for a specific URL. Use when you need to analyze SEO performance metrics for a web page. The report will be sent to the provided email address.\",\n input: PrerenderCreateSeoAuditReportInput,\n output: PrerenderCreateSeoAuditReportOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gIAAgI;CACzJ,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF;CACjH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AACxF,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,SAAS,+CAA+C;
|
|
1
|
+
{"version":3,"file":"create-seo-audit-report.cjs","names":["z","action"],"sources":["../../src/actions/create-seo-audit-report.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCreateSeoAuditReportInput = z.object({\n url: z.string().describe(\"Full URL of the page to audit. Must include scheme (http/https). The audit will analyze SEO performance metrics for this page.\"),\n email: z.string().describe(\"Email address where the SEO audit report will be sent. Must be a valid email format.\"),\n lastName: z.string().describe(\"Last name of the person requesting the audit report.\"),\n firstName: z.string().describe(\"First name of the person requesting the audit report.\"),\n}).describe(\"Request model for creating an SEO audit report for a specific URL.\");\nexport const PrerenderCreateSeoAuditReportOutput = z.object({\n reportsLeft: z.number().int().describe(\"Number of audit reports remaining in the account quota.\").nullable(),\n}).passthrough().describe(\"Response model for SEO audit report creation.\");\n\nexport const prerenderCreateSeoAuditReport = action(\"PRERENDER_CREATE_SEO_AUDIT_REPORT\", {\n slug: \"prerender-create-seo-audit-report\",\n name: \"Create SEO Audit Report\",\n description: \"Tool to generate SEO audit reports for a specific URL. Use when you need to analyze SEO performance metrics for a web page. The report will be sent to the provided email address.\",\n input: PrerenderCreateSeoAuditReportInput,\n output: PrerenderCreateSeoAuditReportOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gIAAgI;CACzJ,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF;CACjH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AACxF,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAa,sCAAsCA,IAAAA,EAAE,OAAO,EAC1D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAA+C;AAEzE,MAAa,gCAAgCC,eAAAA,OAAO,qCAAqC;CACvF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -9,7 +9,7 @@ declare const PrerenderCreateSeoAuditReportInput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const PrerenderCreateSeoAuditReportOutput: z.ZodObject<{
|
|
11
11
|
reportsLeft: z.ZodNullable<z.ZodNumber>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const prerenderCreateSeoAuditReport: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
url: string;
|
|
15
15
|
email: string;
|
|
@@ -9,7 +9,7 @@ declare const PrerenderCreateSeoAuditReportInput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const PrerenderCreateSeoAuditReportOutput: z.ZodObject<{
|
|
11
11
|
reportsLeft: z.ZodNullable<z.ZodNumber>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const prerenderCreateSeoAuditReport: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
url: string;
|
|
15
15
|
email: string;
|
|
@@ -10,7 +10,7 @@ const prerenderCreateSeoAuditReport = action("PRERENDER_CREATE_SEO_AUDIT_REPORT"
|
|
|
10
10
|
lastName: z.string().describe("Last name of the person requesting the audit report."),
|
|
11
11
|
firstName: z.string().describe("First name of the person requesting the audit report.")
|
|
12
12
|
}).describe("Request model for creating an SEO audit report for a specific URL."),
|
|
13
|
-
output: z.object({ reportsLeft: z.number().int().describe("Number of audit reports remaining in the account quota.").nullable() }).describe("Response model for SEO audit report creation.")
|
|
13
|
+
output: z.object({ reportsLeft: z.number().int().describe("Number of audit reports remaining in the account quota.").nullable() }).passthrough().describe("Response model for SEO audit report creation.")
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
16
16
|
export { prerenderCreateSeoAuditReport };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-seo-audit-report.mjs","names":[],"sources":["../../src/actions/create-seo-audit-report.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCreateSeoAuditReportInput = z.object({\n url: z.string().describe(\"Full URL of the page to audit. Must include scheme (http/https). The audit will analyze SEO performance metrics for this page.\"),\n email: z.string().describe(\"Email address where the SEO audit report will be sent. Must be a valid email format.\"),\n lastName: z.string().describe(\"Last name of the person requesting the audit report.\"),\n firstName: z.string().describe(\"First name of the person requesting the audit report.\"),\n}).describe(\"Request model for creating an SEO audit report for a specific URL.\");\nexport const PrerenderCreateSeoAuditReportOutput = z.object({\n reportsLeft: z.number().int().describe(\"Number of audit reports remaining in the account quota.\").nullable(),\n}).describe(\"Response model for SEO audit report creation.\");\n\nexport const prerenderCreateSeoAuditReport = action(\"PRERENDER_CREATE_SEO_AUDIT_REPORT\", {\n slug: \"prerender-create-seo-audit-report\",\n name: \"Create SEO Audit Report\",\n description: \"Tool to generate SEO audit reports for a specific URL. Use when you need to analyze SEO performance metrics for a web page. The report will be sent to the provided email address.\",\n input: PrerenderCreateSeoAuditReportInput,\n output: PrerenderCreateSeoAuditReportOutput,\n});\n"],"mappings":";;AAcA,MAAa,gCAAgC,OAAO,qCAAqC;CACvF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdgD,EAAE,OAAO;EACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,gIAAgI;EACzJ,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF;EACjH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;EACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACxF,CAAC,CAAC,CAAC,SAAS,oEASH;CACP,QATiD,EAAE,OAAO,EAC1D,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,SAAS,+
|
|
1
|
+
{"version":3,"file":"create-seo-audit-report.mjs","names":[],"sources":["../../src/actions/create-seo-audit-report.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderCreateSeoAuditReportInput = z.object({\n url: z.string().describe(\"Full URL of the page to audit. Must include scheme (http/https). The audit will analyze SEO performance metrics for this page.\"),\n email: z.string().describe(\"Email address where the SEO audit report will be sent. Must be a valid email format.\"),\n lastName: z.string().describe(\"Last name of the person requesting the audit report.\"),\n firstName: z.string().describe(\"First name of the person requesting the audit report.\"),\n}).describe(\"Request model for creating an SEO audit report for a specific URL.\");\nexport const PrerenderCreateSeoAuditReportOutput = z.object({\n reportsLeft: z.number().int().describe(\"Number of audit reports remaining in the account quota.\").nullable(),\n}).passthrough().describe(\"Response model for SEO audit report creation.\");\n\nexport const prerenderCreateSeoAuditReport = action(\"PRERENDER_CREATE_SEO_AUDIT_REPORT\", {\n slug: \"prerender-create-seo-audit-report\",\n name: \"Create SEO Audit Report\",\n description: \"Tool to generate SEO audit reports for a specific URL. Use when you need to analyze SEO performance metrics for a web page. The report will be sent to the provided email address.\",\n input: PrerenderCreateSeoAuditReportInput,\n output: PrerenderCreateSeoAuditReportOutput,\n});\n"],"mappings":";;AAcA,MAAa,gCAAgC,OAAO,qCAAqC;CACvF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdgD,EAAE,OAAO;EACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,gIAAgI;EACzJ,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF;EACjH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;EACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACxF,CAAC,CAAC,CAAC,SAAS,oEASH;CACP,QATiD,EAAE,OAAO,EAC1D,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAOhB;AACV,CAAC"}
|
|
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/get-cache-clear-status.ts
|
|
4
4
|
const PrerenderGetCacheClearStatusInput = zod.z.object({ token: zod.z.string().describe("Your Prerender API token. Used in the URL path to identify the cache clear job.") }).describe("Request model for checking cache clear job status.");
|
|
5
|
-
const PrerenderGetCacheClearStatusOutput = zod.z.object({ status: zod.z.number().int().describe("Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).").nullable() }).describe("Response model containing the cache clear job status.");
|
|
5
|
+
const PrerenderGetCacheClearStatusOutput = zod.z.object({ status: zod.z.number().int().describe("Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).").nullable() }).passthrough().describe("Response model containing the cache clear job status.");
|
|
6
6
|
const prerenderGetCacheClearStatus = require_action.action("PRERENDER_GET_CACHE_CLEAR_STATUS", {
|
|
7
7
|
slug: "prerender-get-cache-clear-status",
|
|
8
8
|
name: "Get Cache Clear Status",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-cache-clear-status.cjs","names":["z","action"],"sources":["../../src/actions/get-cache-clear-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetCacheClearStatusInput = z.object({\n token: z.string().describe(\"Your Prerender API token. Used in the URL path to identify the cache clear job.\"),\n}).describe(\"Request model for checking cache clear job status.\");\nexport const PrerenderGetCacheClearStatusOutput = z.object({\n status: z.number().int().describe(\"Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).\").nullable(),\n}).describe(\"Response model containing the cache clear job status.\");\n\nexport const prerenderGetCacheClearStatus = action(\"PRERENDER_GET_CACHE_CLEAR_STATUS\", {\n slug: \"prerender-get-cache-clear-status\",\n name: \"Get Cache Clear Status\",\n description: \"Tool to check the status of a cache clear job. Use when you need to verify if a cache clearing operation is still in progress or has completed.\",\n input: PrerenderGetCacheClearStatusInput,\n output: PrerenderGetCacheClearStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAC9G,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,EACvJ,CAAC,CAAC,CAAC,SAAS,uDAAuD;
|
|
1
|
+
{"version":3,"file":"get-cache-clear-status.cjs","names":["z","action"],"sources":["../../src/actions/get-cache-clear-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetCacheClearStatusInput = z.object({\n token: z.string().describe(\"Your Prerender API token. Used in the URL path to identify the cache clear job.\"),\n}).describe(\"Request model for checking cache clear job status.\");\nexport const PrerenderGetCacheClearStatusOutput = z.object({\n status: z.number().int().describe(\"Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).\").nullable(),\n}).passthrough().describe(\"Response model containing the cache clear job status.\");\n\nexport const prerenderGetCacheClearStatus = action(\"PRERENDER_GET_CACHE_CLEAR_STATUS\", {\n slug: \"prerender-get-cache-clear-status\",\n name: \"Get Cache Clear Status\",\n description: \"Tool to check the status of a cache clear job. Use when you need to verify if a cache clearing operation is still in progress or has completed.\",\n input: PrerenderGetCacheClearStatusInput,\n output: PrerenderGetCacheClearStatusOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAC9G,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,EACvJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -6,7 +6,7 @@ declare const PrerenderGetCacheClearStatusInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderGetCacheClearStatusOutput: z.ZodObject<{
|
|
8
8
|
status: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderGetCacheClearStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
token: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -6,7 +6,7 @@ declare const PrerenderGetCacheClearStatusInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderGetCacheClearStatusOutput: z.ZodObject<{
|
|
8
8
|
status: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderGetCacheClearStatus: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
token: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -5,7 +5,7 @@ const prerenderGetCacheClearStatus = action("PRERENDER_GET_CACHE_CLEAR_STATUS",
|
|
|
5
5
|
name: "Get Cache Clear Status",
|
|
6
6
|
description: "Tool to check the status of a cache clear job. Use when you need to verify if a cache clearing operation is still in progress or has completed.",
|
|
7
7
|
input: z.object({ token: z.string().describe("Your Prerender API token. Used in the URL path to identify the cache clear job.") }).describe("Request model for checking cache clear job status."),
|
|
8
|
-
output: z.object({ status: z.number().int().describe("Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).").nullable() }).describe("Response model containing the cache clear job status.")
|
|
8
|
+
output: z.object({ status: z.number().int().describe("Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).").nullable() }).passthrough().describe("Response model containing the cache clear job status.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { prerenderGetCacheClearStatus };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-cache-clear-status.mjs","names":[],"sources":["../../src/actions/get-cache-clear-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetCacheClearStatusInput = z.object({\n token: z.string().describe(\"Your Prerender API token. Used in the URL path to identify the cache clear job.\"),\n}).describe(\"Request model for checking cache clear job status.\");\nexport const PrerenderGetCacheClearStatusOutput = z.object({\n status: z.number().int().describe(\"Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).\").nullable(),\n}).describe(\"Response model containing the cache clear job status.\");\n\nexport const prerenderGetCacheClearStatus = action(\"PRERENDER_GET_CACHE_CLEAR_STATUS\", {\n slug: \"prerender-get-cache-clear-status\",\n name: \"Get Cache Clear Status\",\n description: \"Tool to check the status of a cache clear job. Use when you need to verify if a cache clearing operation is still in progress or has completed.\",\n input: PrerenderGetCacheClearStatusInput,\n output: PrerenderGetCacheClearStatusOutput,\n});\n"],"mappings":";;AAWA,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX+C,EAAE,OAAO,EACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAC9G,CAAC,CAAC,CAAC,SAAS,oDASH;CACP,QATgD,EAAE,OAAO,EACzD,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,EACvJ,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"get-cache-clear-status.mjs","names":[],"sources":["../../src/actions/get-cache-clear-status.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetCacheClearStatusInput = z.object({\n token: z.string().describe(\"Your Prerender API token. Used in the URL path to identify the cache clear job.\"),\n}).describe(\"Request model for checking cache clear job status.\");\nexport const PrerenderGetCacheClearStatusOutput = z.object({\n status: z.number().int().describe(\"Status code indicating cache clear job state. 403 = job in progress, 200 = job completed (not queued).\").nullable(),\n}).passthrough().describe(\"Response model containing the cache clear job status.\");\n\nexport const prerenderGetCacheClearStatus = action(\"PRERENDER_GET_CACHE_CLEAR_STATUS\", {\n slug: \"prerender-get-cache-clear-status\",\n name: \"Get Cache Clear Status\",\n description: \"Tool to check the status of a cache clear job. Use when you need to verify if a cache clearing operation is still in progress or has completed.\",\n input: PrerenderGetCacheClearStatusInput,\n output: PrerenderGetCacheClearStatusOutput,\n});\n"],"mappings":";;AAWA,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX+C,EAAE,OAAO,EACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,EAC9G,CAAC,CAAC,CAAC,SAAS,oDASH;CACP,QATgD,EAAE,OAAO,EACzD,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,EACvJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}
|
|
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/get-prerendered-page.ts
|
|
4
4
|
const PrerenderGetPrerenderedPageInput = zod.z.object({ url: zod.z.string().describe("Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.") }).describe("Request model for retrieving a prerendered HTML page.");
|
|
5
|
-
const PrerenderGetPrerenderedPageOutput = zod.z.object({ html: zod.z.string().describe("Prerendered HTML content of the requested URL.").nullable() }).describe("Response model containing the prerendered HTML content.");
|
|
5
|
+
const PrerenderGetPrerenderedPageOutput = zod.z.object({ html: zod.z.string().describe("Prerendered HTML content of the requested URL.").nullable() }).passthrough().describe("Response model containing the prerendered HTML content.");
|
|
6
6
|
const prerenderGetPrerenderedPage = require_action.action("PRERENDER_GET_PRERENDERED_PAGE", {
|
|
7
7
|
slug: "prerender-get-prerendered-page",
|
|
8
8
|
name: "Get Prerendered Page",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-prerendered-page.cjs","names":["z","action"],"sources":["../../src/actions/get-prerendered-page.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetPrerenderedPageInput = z.object({\n url: z.string().describe(\"Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.\"),\n}).describe(\"Request model for retrieving a prerendered HTML page.\");\nexport const PrerenderGetPrerenderedPageOutput = z.object({\n html: z.string().describe(\"Prerendered HTML content of the requested URL.\").nullable(),\n}).describe(\"Response model containing the prerendered HTML content.\");\n\nexport const prerenderGetPrerenderedPage = action(\"PRERENDER_GET_PRERENDERED_PAGE\", {\n slug: \"prerender-get-prerendered-page\",\n name: \"Get Prerendered Page\",\n description: \"Tool to fetch a prerendered HTML page. Use when you need a static snapshot of a page before dynamic rendering.\",\n input: PrerenderGetPrerenderedPageInput,\n output: PrerenderGetPrerenderedPageOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wGAAwG,EACnI,CAAC,CAAC,CAAC,SAAS,uDAAuD;AACnE,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,SAAS,yDAAyD;
|
|
1
|
+
{"version":3,"file":"get-prerendered-page.cjs","names":["z","action"],"sources":["../../src/actions/get-prerendered-page.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetPrerenderedPageInput = z.object({\n url: z.string().describe(\"Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.\"),\n}).describe(\"Request model for retrieving a prerendered HTML page.\");\nexport const PrerenderGetPrerenderedPageOutput = z.object({\n html: z.string().describe(\"Prerendered HTML content of the requested URL.\").nullable(),\n}).passthrough().describe(\"Response model containing the prerendered HTML content.\");\n\nexport const prerenderGetPrerenderedPage = action(\"PRERENDER_GET_PRERENDERED_PAGE\", {\n slug: \"prerender-get-prerendered-page\",\n name: \"Get Prerendered Page\",\n description: \"Tool to fetch a prerendered HTML page. Use when you need a static snapshot of a page before dynamic rendering.\",\n input: PrerenderGetPrerenderedPageInput,\n output: PrerenderGetPrerenderedPageOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wGAAwG,EACnI,CAAC,CAAC,CAAC,SAAS,uDAAuD;AACnE,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yDAAyD;AAEnF,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -6,7 +6,7 @@ declare const PrerenderGetPrerenderedPageInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderGetPrerenderedPageOutput: z.ZodObject<{
|
|
8
8
|
html: z.ZodNullable<z.ZodString>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderGetPrerenderedPage: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
url: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -6,7 +6,7 @@ declare const PrerenderGetPrerenderedPageInput: z.ZodObject<{
|
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
declare const PrerenderGetPrerenderedPageOutput: z.ZodObject<{
|
|
8
8
|
html: z.ZodNullable<z.ZodString>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>;
|
|
10
10
|
declare const prerenderGetPrerenderedPage: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
url: string;
|
|
12
12
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -5,7 +5,7 @@ const prerenderGetPrerenderedPage = action("PRERENDER_GET_PRERENDERED_PAGE", {
|
|
|
5
5
|
name: "Get Prerendered Page",
|
|
6
6
|
description: "Tool to fetch a prerendered HTML page. Use when you need a static snapshot of a page before dynamic rendering.",
|
|
7
7
|
input: z.object({ url: z.string().describe("Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.") }).describe("Request model for retrieving a prerendered HTML page."),
|
|
8
|
-
output: z.object({ html: z.string().describe("Prerendered HTML content of the requested URL.").nullable() }).describe("Response model containing the prerendered HTML content.")
|
|
8
|
+
output: z.object({ html: z.string().describe("Prerendered HTML content of the requested URL.").nullable() }).passthrough().describe("Response model containing the prerendered HTML content.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { prerenderGetPrerenderedPage };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-prerendered-page.mjs","names":[],"sources":["../../src/actions/get-prerendered-page.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetPrerenderedPageInput = z.object({\n url: z.string().describe(\"Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.\"),\n}).describe(\"Request model for retrieving a prerendered HTML page.\");\nexport const PrerenderGetPrerenderedPageOutput = z.object({\n html: z.string().describe(\"Prerendered HTML content of the requested URL.\").nullable(),\n}).describe(\"Response model containing the prerendered HTML content.\");\n\nexport const prerenderGetPrerenderedPage = action(\"PRERENDER_GET_PRERENDERED_PAGE\", {\n slug: \"prerender-get-prerendered-page\",\n name: \"Get Prerendered Page\",\n description: \"Tool to fetch a prerendered HTML page. Use when you need a static snapshot of a page before dynamic rendering.\",\n input: PrerenderGetPrerenderedPageInput,\n output: PrerenderGetPrerenderedPageOutput,\n});\n"],"mappings":";;AAWA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX8C,EAAE,OAAO,EACvD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,wGAAwG,EACnI,CAAC,CAAC,CAAC,SAAS,uDASH;CACP,QAT+C,EAAE,OAAO,EACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"get-prerendered-page.mjs","names":[],"sources":["../../src/actions/get-prerendered-page.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderGetPrerenderedPageInput = z.object({\n url: z.string().describe(\"Full URL of the page to prerender. Include scheme (http/https). URL will be percent-encoded as needed.\"),\n}).describe(\"Request model for retrieving a prerendered HTML page.\");\nexport const PrerenderGetPrerenderedPageOutput = z.object({\n html: z.string().describe(\"Prerendered HTML content of the requested URL.\").nullable(),\n}).passthrough().describe(\"Response model containing the prerendered HTML content.\");\n\nexport const prerenderGetPrerenderedPage = action(\"PRERENDER_GET_PRERENDERED_PAGE\", {\n slug: \"prerender-get-prerendered-page\",\n name: \"Get Prerendered Page\",\n description: \"Tool to fetch a prerendered HTML page. Use when you need a static snapshot of a page before dynamic rendering.\",\n input: PrerenderGetPrerenderedPageInput,\n output: PrerenderGetPrerenderedPageOutput,\n});\n"],"mappings":";;AAWA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX8C,EAAE,OAAO,EACvD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,wGAAwG,EACnI,CAAC,CAAC,CAAC,SAAS,uDASH;CACP,QAT+C,EAAE,OAAO,EACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EACvF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yDAOhB;AACV,CAAC"}
|
|
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/list-healthz.ts
|
|
4
4
|
const PrerenderListHealthzInput = zod.z.object({}).describe("Request model for health check endpoint.");
|
|
5
|
-
const PrerenderListHealthzOutput = zod.z.object({ success: zod.z.boolean().describe("Indicates whether the Prerender API is available and healthy.").nullable() }).describe("Response model containing health check status.");
|
|
5
|
+
const PrerenderListHealthzOutput = zod.z.object({ success: zod.z.boolean().describe("Indicates whether the Prerender API is available and healthy.").nullable() }).passthrough().describe("Response model containing health check status.");
|
|
6
6
|
const prerenderListHealthz = require_action.action("PRERENDER_LIST_HEALTHZ", {
|
|
7
7
|
slug: "prerender-list-healthz",
|
|
8
8
|
name: "List Healthz",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-healthz.cjs","names":["z","action"],"sources":["../../src/actions/list-healthz.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListHealthzInput = z.object({}).describe(\"Request model for health check endpoint.\");\nexport const PrerenderListHealthzOutput = z.object({\n success: z.boolean().describe(\"Indicates whether the Prerender API is available and healthy.\").nullable(),\n}).describe(\"Response model containing health check status.\");\n\nexport const prerenderListHealthz = action(\"PRERENDER_LIST_HEALTHZ\", {\n slug: \"prerender-list-healthz\",\n name: \"List Healthz\",\n description: \"Tool to check Prerender API health and availability. Use when you need to verify the API is operational before making requests.\",\n input: PrerenderListHealthzInput,\n output: PrerenderListHealthzOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACzG,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,EAC1G,CAAC,CAAC,CAAC,SAAS,gDAAgD;
|
|
1
|
+
{"version":3,"file":"list-healthz.cjs","names":["z","action"],"sources":["../../src/actions/list-healthz.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListHealthzInput = z.object({}).describe(\"Request model for health check endpoint.\");\nexport const PrerenderListHealthzOutput = z.object({\n success: z.boolean().describe(\"Indicates whether the Prerender API is available and healthy.\").nullable(),\n}).passthrough().describe(\"Response model containing health check status.\");\n\nexport const prerenderListHealthz = action(\"PRERENDER_LIST_HEALTHZ\", {\n slug: \"prerender-list-healthz\",\n name: \"List Healthz\",\n description: \"Tool to check Prerender API health and availability. Use when you need to verify the API is operational before making requests.\",\n input: PrerenderListHealthzInput,\n output: PrerenderListHealthzOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACzG,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,EAC1G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAAgD;AAE1E,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -4,7 +4,7 @@ import { z } from "zod";
|
|
|
4
4
|
declare const PrerenderListHealthzInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderListHealthzOutput: z.ZodObject<{
|
|
6
6
|
success: z.ZodNullable<z.ZodBoolean>;
|
|
7
|
-
}, z.core.$
|
|
7
|
+
}, z.core.$loose>;
|
|
8
8
|
declare const prerenderListHealthz: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { prerenderListHealthz };
|
|
@@ -4,7 +4,7 @@ import { z } from "zod";
|
|
|
4
4
|
declare const PrerenderListHealthzInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderListHealthzOutput: z.ZodObject<{
|
|
6
6
|
success: z.ZodNullable<z.ZodBoolean>;
|
|
7
|
-
}, z.core.$
|
|
7
|
+
}, z.core.$loose>;
|
|
8
8
|
declare const prerenderListHealthz: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { prerenderListHealthz };
|
|
@@ -5,7 +5,7 @@ const prerenderListHealthz = action("PRERENDER_LIST_HEALTHZ", {
|
|
|
5
5
|
name: "List Healthz",
|
|
6
6
|
description: "Tool to check Prerender API health and availability. Use when you need to verify the API is operational before making requests.",
|
|
7
7
|
input: z.object({}).describe("Request model for health check endpoint."),
|
|
8
|
-
output: z.object({ success: z.boolean().describe("Indicates whether the Prerender API is available and healthy.").nullable() }).describe("Response model containing health check status.")
|
|
8
|
+
output: z.object({ success: z.boolean().describe("Indicates whether the Prerender API is available and healthy.").nullable() }).passthrough().describe("Response model containing health check status.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { prerenderListHealthz };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-healthz.mjs","names":[],"sources":["../../src/actions/list-healthz.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListHealthzInput = z.object({}).describe(\"Request model for health check endpoint.\");\nexport const PrerenderListHealthzOutput = z.object({\n success: z.boolean().describe(\"Indicates whether the Prerender API is available and healthy.\").nullable(),\n}).describe(\"Response model containing health check status.\");\n\nexport const prerenderListHealthz = action(\"PRERENDER_LIST_HEALTHZ\", {\n slug: \"prerender-list-healthz\",\n name: \"List Healthz\",\n description: \"Tool to check Prerender API health and availability. Use when you need to verify the API is operational before making requests.\",\n input: PrerenderListHealthzInput,\n output: PrerenderListHealthzOutput,\n});\n"],"mappings":";;AASA,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATuC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0CAStD;CACP,QATwC,EAAE,OAAO,EACjD,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,EAC1G,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"list-healthz.mjs","names":[],"sources":["../../src/actions/list-healthz.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListHealthzInput = z.object({}).describe(\"Request model for health check endpoint.\");\nexport const PrerenderListHealthzOutput = z.object({\n success: z.boolean().describe(\"Indicates whether the Prerender API is available and healthy.\").nullable(),\n}).passthrough().describe(\"Response model containing health check status.\");\n\nexport const prerenderListHealthz = action(\"PRERENDER_LIST_HEALTHZ\", {\n slug: \"prerender-list-healthz\",\n name: \"List Healthz\",\n description: \"Tool to check Prerender API health and availability. Use when you need to verify the API is operational before making requests.\",\n input: PrerenderListHealthzInput,\n output: PrerenderListHealthzOutput,\n});\n"],"mappings":";;AASA,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATuC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0CAStD;CACP,QATwC,EAAE,OAAO,EACjD,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,EAC1G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAOhB;AACV,CAAC"}
|
package/dist/actions/list-v3.cjs
CHANGED
|
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/list-v3.ts
|
|
4
4
|
const PrerenderListV3Input = zod.z.object({}).describe("Request model for GET /v3 endpoint - no parameters required.");
|
|
5
|
-
const PrerenderListV3Output = zod.z.object({ message: zod.z.string().describe("Greeting message returned by the API endpoint.").nullable() }).describe("Response model containing the greeting message from the API.");
|
|
5
|
+
const PrerenderListV3Output = zod.z.object({ message: zod.z.string().describe("Greeting message returned by the API endpoint.").nullable() }).passthrough().describe("Response model containing the greeting message from the API.");
|
|
6
6
|
const prerenderListV3 = require_action.action("PRERENDER_LIST_V3", {
|
|
7
7
|
slug: "prerender-list-v3",
|
|
8
8
|
name: "List V3",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-v3.cjs","names":["z","action"],"sources":["../../src/actions/list-v3.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListV3Input = z.object({}).describe(\"Request model for GET /v3 endpoint - no parameters required.\");\nexport const PrerenderListV3Output = z.object({\n message: z.string().describe(\"Greeting message returned by the API endpoint.\").nullable(),\n}).describe(\"Response model containing the greeting message from the API.\");\n\nexport const prerenderListV3 = action(\"PRERENDER_LIST_V3\", {\n slug: \"prerender-list-v3\",\n name: \"List V3\",\n description: \"Tool to get a greeting message from the Prerender API. Use when you need to verify basic API connectivity or retrieve the hello message.\",\n input: PrerenderListV3Input,\n output: PrerenderListV3Output,\n});\n"],"mappings":";;;AAIA,MAAa,uBAAuBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AACxH,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EAC1F,CAAC,CAAC,CAAC,SAAS,8DAA8D;
|
|
1
|
+
{"version":3,"file":"list-v3.cjs","names":["z","action"],"sources":["../../src/actions/list-v3.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListV3Input = z.object({}).describe(\"Request model for GET /v3 endpoint - no parameters required.\");\nexport const PrerenderListV3Output = z.object({\n message: z.string().describe(\"Greeting message returned by the API endpoint.\").nullable(),\n}).passthrough().describe(\"Response model containing the greeting message from the API.\");\n\nexport const prerenderListV3 = action(\"PRERENDER_LIST_V3\", {\n slug: \"prerender-list-v3\",\n name: \"List V3\",\n description: \"Tool to get a greeting message from the Prerender API. Use when you need to verify basic API connectivity or retrieve the hello message.\",\n input: PrerenderListV3Input,\n output: PrerenderListV3Output,\n});\n"],"mappings":";;;AAIA,MAAa,uBAAuBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AACxH,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8DAA8D;AAExF,MAAa,kBAAkBC,eAAAA,OAAO,qBAAqB;CACzD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -4,7 +4,7 @@ import { z } from "zod";
|
|
|
4
4
|
declare const PrerenderListV3Input: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderListV3Output: z.ZodObject<{
|
|
6
6
|
message: z.ZodNullable<z.ZodString>;
|
|
7
|
-
}, z.core.$
|
|
7
|
+
}, z.core.$loose>;
|
|
8
8
|
declare const prerenderListV3: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { prerenderListV3 };
|
|
@@ -4,7 +4,7 @@ import { z } from "zod";
|
|
|
4
4
|
declare const PrerenderListV3Input: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PrerenderListV3Output: z.ZodObject<{
|
|
6
6
|
message: z.ZodNullable<z.ZodString>;
|
|
7
|
-
}, z.core.$
|
|
7
|
+
}, z.core.$loose>;
|
|
8
8
|
declare const prerenderListV3: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { prerenderListV3 };
|
package/dist/actions/list-v3.mjs
CHANGED
|
@@ -5,7 +5,7 @@ const prerenderListV3 = action("PRERENDER_LIST_V3", {
|
|
|
5
5
|
name: "List V3",
|
|
6
6
|
description: "Tool to get a greeting message from the Prerender API. Use when you need to verify basic API connectivity or retrieve the hello message.",
|
|
7
7
|
input: z.object({}).describe("Request model for GET /v3 endpoint - no parameters required."),
|
|
8
|
-
output: z.object({ message: z.string().describe("Greeting message returned by the API endpoint.").nullable() }).describe("Response model containing the greeting message from the API.")
|
|
8
|
+
output: z.object({ message: z.string().describe("Greeting message returned by the API endpoint.").nullable() }).passthrough().describe("Response model containing the greeting message from the API.")
|
|
9
9
|
});
|
|
10
10
|
//#endregion
|
|
11
11
|
export { prerenderListV3 };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-v3.mjs","names":[],"sources":["../../src/actions/list-v3.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListV3Input = z.object({}).describe(\"Request model for GET /v3 endpoint - no parameters required.\");\nexport const PrerenderListV3Output = z.object({\n message: z.string().describe(\"Greeting message returned by the API endpoint.\").nullable(),\n}).describe(\"Response model containing the greeting message from the API.\");\n\nexport const prerenderListV3 = action(\"PRERENDER_LIST_V3\", {\n slug: \"prerender-list-v3\",\n name: \"List V3\",\n description: \"Tool to get a greeting message from the Prerender API. Use when you need to verify basic API connectivity or retrieve the hello message.\",\n input: PrerenderListV3Input,\n output: PrerenderListV3Output,\n});\n"],"mappings":";;AASA,MAAa,kBAAkB,OAAO,qBAAqB;CACzD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATkC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DASjD;CACP,QATmC,EAAE,OAAO,EAC5C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EAC1F,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"list-v3.mjs","names":[],"sources":["../../src/actions/list-v3.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderListV3Input = z.object({}).describe(\"Request model for GET /v3 endpoint - no parameters required.\");\nexport const PrerenderListV3Output = z.object({\n message: z.string().describe(\"Greeting message returned by the API endpoint.\").nullable(),\n}).passthrough().describe(\"Response model containing the greeting message from the API.\");\n\nexport const prerenderListV3 = action(\"PRERENDER_LIST_V3\", {\n slug: \"prerender-list-v3\",\n name: \"List V3\",\n description: \"Tool to get a greeting message from the Prerender API. Use when you need to verify basic API connectivity or retrieve the hello message.\",\n input: PrerenderListV3Input,\n output: PrerenderListV3Output,\n});\n"],"mappings":";;AASA,MAAa,kBAAkB,OAAO,qBAAqB;CACzD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATkC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DASjD;CACP,QATmC,EAAE,OAAO,EAC5C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,EAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8DAOhB;AACV,CAAC"}
|
|
@@ -9,7 +9,7 @@ const PrerenderRecacheUrlInput = zod.z.object({
|
|
|
9
9
|
const PrerenderRecacheUrlOutput = zod.z.object({
|
|
10
10
|
message: zod.z.string().describe("Response message from the API. Typically indicates that the recache operation has been queued successfully.").nullable(),
|
|
11
11
|
status_code: zod.z.number().int().describe("HTTP status code from the recache request. 200 indicates success.").nullable()
|
|
12
|
-
}).describe("Response model for recache operation.");
|
|
12
|
+
}).passthrough().describe("Response model for recache operation.");
|
|
13
13
|
const prerenderRecacheUrl = require_action.action("PRERENDER_RECACHE_URL", {
|
|
14
14
|
slug: "prerender-recache-url",
|
|
15
15
|
name: "Recache URL",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recache-url.cjs","names":["z","action"],"sources":["../../src/actions/recache-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderRecacheUrlInput = z.object({\n url: z.string().describe(\"Single URL to cache or recache. Include scheme (http/https). Use this parameter for a single URL, or use 'urls' for multiple URLs. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n urls: z.array(z.string()).describe(\"Array of URLs to cache or recache. Maximum 1000 URLs per request. Include scheme (http/https) for each URL. Use this parameter for multiple URLs, or use 'url' for a single URL. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n adaptive_type: z.enum([\"desktop\", \"mobile\"]).describe(\"Rendering device type for caching.\").optional(),\n}).describe(\"Request model for caching or recaching URLs.\");\nexport const PrerenderRecacheUrlOutput = z.object({\n message: z.string().describe(\"Response message from the API. Typically indicates that the recache operation has been queued successfully.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code from the recache request. 200 indicates success.\").nullable(),\n}).describe(\"Response model for recache operation.\");\n\nexport const prerenderRecacheUrl = action(\"PRERENDER_RECACHE_URL\", {\n slug: \"prerender-recache-url\",\n name: \"Recache URL\",\n description: \"Tool to cache or recache URLs in Prerender. Use when you need to refresh cached pages or cache new URLs. Supports single URL or batch operations (up to 1000 URLs).\",\n input: PrerenderRecacheUrlInput,\n output: PrerenderRecacheUrlOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CAC/N,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yOAAyO,CAAC,CAAC,SAAS;CACvR,eAAeA,IAAAA,EAAE,KAAK,CAAC,WAAW,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AACvG,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAC1D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CACrJ,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;AACvH,CAAC,CAAC,CAAC,SAAS,uCAAuC;
|
|
1
|
+
{"version":3,"file":"recache-url.cjs","names":["z","action"],"sources":["../../src/actions/recache-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderRecacheUrlInput = z.object({\n url: z.string().describe(\"Single URL to cache or recache. Include scheme (http/https). Use this parameter for a single URL, or use 'urls' for multiple URLs. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n urls: z.array(z.string()).describe(\"Array of URLs to cache or recache. Maximum 1000 URLs per request. Include scheme (http/https) for each URL. Use this parameter for multiple URLs, or use 'url' for a single URL. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n adaptive_type: z.enum([\"desktop\", \"mobile\"]).describe(\"Rendering device type for caching.\").optional(),\n}).describe(\"Request model for caching or recaching URLs.\");\nexport const PrerenderRecacheUrlOutput = z.object({\n message: z.string().describe(\"Response message from the API. Typically indicates that the recache operation has been queued successfully.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code from the recache request. 200 indicates success.\").nullable(),\n}).passthrough().describe(\"Response model for recache operation.\");\n\nexport const prerenderRecacheUrl = action(\"PRERENDER_RECACHE_URL\", {\n slug: \"prerender-recache-url\",\n name: \"Recache URL\",\n description: \"Tool to cache or recache URLs in Prerender. Use when you need to refresh cached pages or cache new URLs. Supports single URL or batch operations (up to 1000 URLs).\",\n input: PrerenderRecacheUrlInput,\n output: PrerenderRecacheUrlOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CAC/N,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yOAAyO,CAAC,CAAC,SAAS;CACvR,eAAeA,IAAAA,EAAE,KAAK,CAAC,WAAW,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AACvG,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAC1D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CACrJ,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;AACvH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAEjE,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -12,7 +12,7 @@ declare const PrerenderRecacheUrlInput: z.ZodObject<{
|
|
|
12
12
|
declare const PrerenderRecacheUrlOutput: z.ZodObject<{
|
|
13
13
|
message: z.ZodNullable<z.ZodString>;
|
|
14
14
|
status_code: z.ZodNullable<z.ZodNumber>;
|
|
15
|
-
}, z.core.$
|
|
15
|
+
}, z.core.$loose>;
|
|
16
16
|
declare const prerenderRecacheUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
url?: string | undefined;
|
|
18
18
|
urls?: string[] | undefined;
|
|
@@ -12,7 +12,7 @@ declare const PrerenderRecacheUrlInput: z.ZodObject<{
|
|
|
12
12
|
declare const PrerenderRecacheUrlOutput: z.ZodObject<{
|
|
13
13
|
message: z.ZodNullable<z.ZodString>;
|
|
14
14
|
status_code: z.ZodNullable<z.ZodNumber>;
|
|
15
|
-
}, z.core.$
|
|
15
|
+
}, z.core.$loose>;
|
|
16
16
|
declare const prerenderRecacheUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
url?: string | undefined;
|
|
18
18
|
urls?: string[] | undefined;
|
|
@@ -12,7 +12,7 @@ const prerenderRecacheUrl = action("PRERENDER_RECACHE_URL", {
|
|
|
12
12
|
output: z.object({
|
|
13
13
|
message: z.string().describe("Response message from the API. Typically indicates that the recache operation has been queued successfully.").nullable(),
|
|
14
14
|
status_code: z.number().int().describe("HTTP status code from the recache request. 200 indicates success.").nullable()
|
|
15
|
-
}).describe("Response model for recache operation.")
|
|
15
|
+
}).passthrough().describe("Response model for recache operation.")
|
|
16
16
|
});
|
|
17
17
|
//#endregion
|
|
18
18
|
export { prerenderRecacheUrl };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recache-url.mjs","names":[],"sources":["../../src/actions/recache-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderRecacheUrlInput = z.object({\n url: z.string().describe(\"Single URL to cache or recache. Include scheme (http/https). Use this parameter for a single URL, or use 'urls' for multiple URLs. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n urls: z.array(z.string()).describe(\"Array of URLs to cache or recache. Maximum 1000 URLs per request. Include scheme (http/https) for each URL. Use this parameter for multiple URLs, or use 'url' for a single URL. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n adaptive_type: z.enum([\"desktop\", \"mobile\"]).describe(\"Rendering device type for caching.\").optional(),\n}).describe(\"Request model for caching or recaching URLs.\");\nexport const PrerenderRecacheUrlOutput = z.object({\n message: z.string().describe(\"Response message from the API. Typically indicates that the recache operation has been queued successfully.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code from the recache request. 200 indicates success.\").nullable(),\n}).describe(\"Response model for recache operation.\");\n\nexport const prerenderRecacheUrl = action(\"PRERENDER_RECACHE_URL\", {\n slug: \"prerender-recache-url\",\n name: \"Recache URL\",\n description: \"Tool to cache or recache URLs in Prerender. Use when you need to refresh cached pages or cache new URLs. Supports single URL or batch operations (up to 1000 URLs).\",\n input: PrerenderRecacheUrlInput,\n output: PrerenderRecacheUrlOutput,\n});\n"],"mappings":";;AAcA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdsC,EAAE,OAAO;EAC/C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;EAC/N,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yOAAyO,CAAC,CAAC,SAAS;EACvR,eAAe,EAAE,KAAK,CAAC,WAAW,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvG,CAAC,CAAC,CAAC,SAAS,8CAUH;CACP,QAVuC,EAAE,OAAO;EAChD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;EACrJ,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;CACvH,CAAC,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"recache-url.mjs","names":[],"sources":["../../src/actions/recache-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderRecacheUrlInput = z.object({\n url: z.string().describe(\"Single URL to cache or recache. Include scheme (http/https). Use this parameter for a single URL, or use 'urls' for multiple URLs. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n urls: z.array(z.string()).describe(\"Array of URLs to cache or recache. Maximum 1000 URLs per request. Include scheme (http/https) for each URL. Use this parameter for multiple URLs, or use 'url' for a single URL. Either 'url' or 'urls' must be provided, but not both.\").optional(),\n adaptive_type: z.enum([\"desktop\", \"mobile\"]).describe(\"Rendering device type for caching.\").optional(),\n}).describe(\"Request model for caching or recaching URLs.\");\nexport const PrerenderRecacheUrlOutput = z.object({\n message: z.string().describe(\"Response message from the API. Typically indicates that the recache operation has been queued successfully.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code from the recache request. 200 indicates success.\").nullable(),\n}).passthrough().describe(\"Response model for recache operation.\");\n\nexport const prerenderRecacheUrl = action(\"PRERENDER_RECACHE_URL\", {\n slug: \"prerender-recache-url\",\n name: \"Recache URL\",\n description: \"Tool to cache or recache URLs in Prerender. Use when you need to refresh cached pages or cache new URLs. Supports single URL or batch operations (up to 1000 URLs).\",\n input: PrerenderRecacheUrlInput,\n output: PrerenderRecacheUrlOutput,\n});\n"],"mappings":";;AAcA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdsC,EAAE,OAAO;EAC/C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;EAC/N,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yOAAyO,CAAC,CAAC,SAAS;EACvR,eAAe,EAAE,KAAK,CAAC,WAAW,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvG,CAAC,CAAC,CAAC,SAAS,8CAUH;CACP,QAVuC,EAAE,OAAO;EAChD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;EACrJ,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;CACvH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAOhB;AACV,CAAC"}
|
|
@@ -14,8 +14,8 @@ const PrerenderSearchCachedUrls_CachedUrlSchema = zod.z.object({
|
|
|
14
14
|
last_refresh: zod.z.string().describe("Timestamp of when the cache was last refreshed").nullable().optional(),
|
|
15
15
|
adaptive_type: zod.z.string().describe("Adaptive type: 'mobile' or 'desktop'").nullable().optional(),
|
|
16
16
|
requested_recache_at: zod.z.string().describe("Timestamp of when a recache was last requested").nullable().optional()
|
|
17
|
-
}).describe("Details about a cached URL.");
|
|
18
|
-
const PrerenderSearchCachedUrlsOutput = zod.z.object({ cached_urls: zod.z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe("List of cached URLs matching the search criteria. Returns up to 200 URLs per page.").nullable().optional() }).describe("Response model containing list of cached URLs.");
|
|
17
|
+
}).passthrough().describe("Details about a cached URL.");
|
|
18
|
+
const PrerenderSearchCachedUrlsOutput = zod.z.object({ cached_urls: zod.z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe("List of cached URLs matching the search criteria. Returns up to 200 URLs per page.").nullable().optional() }).passthrough().describe("Response model containing list of cached URLs.");
|
|
19
19
|
const prerenderSearchCachedUrls = require_action.action("PRERENDER_SEARCH_CACHED_URLS", {
|
|
20
20
|
slug: "prerender-search-cached-urls",
|
|
21
21
|
name: "Search Cached URLs",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-cached-urls.cjs","names":["z","action"],"sources":["../../src/actions/search-cached-urls.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderSearchCachedUrlsInput = z.object({\n query: z.string().describe(\"Performs a 'contains' query on URLs. Searches for URLs containing this string. If both query and exact_match are provided, only exact_match is used.\").optional(),\n start: z.number().int().describe(\"Pagination offset. Search returns 200 URLs per page. Use 0 for first page, 200 for second page, 400 for third page, etc.\").optional(),\n exact_match: z.string().describe(\"Returns results where the URL is fully identical to this value. Takes precedence over query parameter if both are provided.\").optional(),\n adaptive_type: z.enum([\"mobile\", \"desktop\"]).describe(\"Type of adaptive rendering for cached pages.\").optional(),\n}).describe(\"Request model for searching cached URLs in your Prerender account.\");\nconst PrerenderSearchCachedUrls_CachedUrlSchema = z.object({\n url: z.string().describe(\"The cached URL\").nullable().optional(),\n domain: z.string().describe(\"Domain of the cached URL\").nullable().optional(),\n cache_state: z.string().describe(\"Current state of the cache for this URL\").nullable().optional(),\n last_refresh: z.string().describe(\"Timestamp of when the cache was last refreshed\").nullable().optional(),\n adaptive_type: z.string().describe(\"Adaptive type: 'mobile' or 'desktop'\").nullable().optional(),\n requested_recache_at: z.string().describe(\"Timestamp of when a recache was last requested\").nullable().optional(),\n}).describe(\"Details about a cached URL.\");\nexport const PrerenderSearchCachedUrlsOutput = z.object({\n cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe(\"List of cached URLs matching the search criteria. Returns up to 200 URLs per page.\").nullable().optional(),\n}).describe(\"Response model containing list of cached URLs.\");\n\nexport const prerenderSearchCachedUrls = action(\"PRERENDER_SEARCH_CACHED_URLS\", {\n slug: \"prerender-search-cached-urls\",\n name: \"Search Cached URLs\",\n description: \"Tool to search for cached URLs in your Prerender account and view their cache status. Supports pagination (200 URLs per page) and filtering by desktop/mobile adaptive type. Use when you need to find specific cached pages or check cache status across your account.\",\n input: PrerenderSearchCachedUrlsInput,\n output: PrerenderSearchCachedUrlsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC5L,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0HAA0H,CAAC,CAAC,SAAS;CACtK,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACzK,eAAeA,IAAAA,EAAE,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,SAAS,6BAA6B;
|
|
1
|
+
{"version":3,"file":"search-cached-urls.cjs","names":["z","action"],"sources":["../../src/actions/search-cached-urls.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderSearchCachedUrlsInput = z.object({\n query: z.string().describe(\"Performs a 'contains' query on URLs. Searches for URLs containing this string. If both query and exact_match are provided, only exact_match is used.\").optional(),\n start: z.number().int().describe(\"Pagination offset. Search returns 200 URLs per page. Use 0 for first page, 200 for second page, 400 for third page, etc.\").optional(),\n exact_match: z.string().describe(\"Returns results where the URL is fully identical to this value. Takes precedence over query parameter if both are provided.\").optional(),\n adaptive_type: z.enum([\"mobile\", \"desktop\"]).describe(\"Type of adaptive rendering for cached pages.\").optional(),\n}).describe(\"Request model for searching cached URLs in your Prerender account.\");\nconst PrerenderSearchCachedUrls_CachedUrlSchema = z.object({\n url: z.string().describe(\"The cached URL\").nullable().optional(),\n domain: z.string().describe(\"Domain of the cached URL\").nullable().optional(),\n cache_state: z.string().describe(\"Current state of the cache for this URL\").nullable().optional(),\n last_refresh: z.string().describe(\"Timestamp of when the cache was last refreshed\").nullable().optional(),\n adaptive_type: z.string().describe(\"Adaptive type: 'mobile' or 'desktop'\").nullable().optional(),\n requested_recache_at: z.string().describe(\"Timestamp of when a recache was last requested\").nullable().optional(),\n}).passthrough().describe(\"Details about a cached URL.\");\nexport const PrerenderSearchCachedUrlsOutput = z.object({\n cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe(\"List of cached URLs matching the search criteria. Returns up to 200 URLs per page.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing list of cached URLs.\");\n\nexport const prerenderSearchCachedUrls = action(\"PRERENDER_SEARCH_CACHED_URLS\", {\n slug: \"prerender-search-cached-urls\",\n name: \"Search Cached URLs\",\n description: \"Tool to search for cached URLs in your Prerender account and view their cache status. Supports pagination (200 URLs per page) and filtering by desktop/mobile adaptive type. Use when you need to find specific cached pages or check cache status across your account.\",\n input: PrerenderSearchCachedUrlsInput,\n output: PrerenderSearchCachedUrlsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC5L,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0HAA0H,CAAC,CAAC,SAAS;CACtK,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACzK,eAAeA,IAAAA,EAAE,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6BAA6B;AACvD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,aAAaA,IAAAA,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACrL,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAAgD;AAE1E,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -18,8 +18,8 @@ declare const PrerenderSearchCachedUrlsOutput: z.ZodObject<{
|
|
|
18
18
|
last_refresh: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
adaptive_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
requested_recache_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
22
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
|
+
}, z.core.$loose>;
|
|
23
23
|
declare const prerenderSearchCachedUrls: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
query?: string | undefined;
|
|
25
25
|
start?: number | undefined;
|
|
@@ -18,8 +18,8 @@ declare const PrerenderSearchCachedUrlsOutput: z.ZodObject<{
|
|
|
18
18
|
last_refresh: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
adaptive_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
requested_recache_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
22
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
|
+
}, z.core.$loose>;
|
|
23
23
|
declare const prerenderSearchCachedUrls: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
query?: string | undefined;
|
|
25
25
|
start?: number | undefined;
|
|
@@ -14,13 +14,13 @@ const PrerenderSearchCachedUrls_CachedUrlSchema = z.object({
|
|
|
14
14
|
last_refresh: z.string().describe("Timestamp of when the cache was last refreshed").nullable().optional(),
|
|
15
15
|
adaptive_type: z.string().describe("Adaptive type: 'mobile' or 'desktop'").nullable().optional(),
|
|
16
16
|
requested_recache_at: z.string().describe("Timestamp of when a recache was last requested").nullable().optional()
|
|
17
|
-
}).describe("Details about a cached URL.");
|
|
17
|
+
}).passthrough().describe("Details about a cached URL.");
|
|
18
18
|
const prerenderSearchCachedUrls = action("PRERENDER_SEARCH_CACHED_URLS", {
|
|
19
19
|
slug: "prerender-search-cached-urls",
|
|
20
20
|
name: "Search Cached URLs",
|
|
21
21
|
description: "Tool to search for cached URLs in your Prerender account and view their cache status. Supports pagination (200 URLs per page) and filtering by desktop/mobile adaptive type. Use when you need to find specific cached pages or check cache status across your account.",
|
|
22
22
|
input: PrerenderSearchCachedUrlsInput,
|
|
23
|
-
output: z.object({ cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe("List of cached URLs matching the search criteria. Returns up to 200 URLs per page.").nullable().optional() }).describe("Response model containing list of cached URLs.")
|
|
23
|
+
output: z.object({ cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe("List of cached URLs matching the search criteria. Returns up to 200 URLs per page.").nullable().optional() }).passthrough().describe("Response model containing list of cached URLs.")
|
|
24
24
|
});
|
|
25
25
|
//#endregion
|
|
26
26
|
export { prerenderSearchCachedUrls };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-cached-urls.mjs","names":[],"sources":["../../src/actions/search-cached-urls.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderSearchCachedUrlsInput = z.object({\n query: z.string().describe(\"Performs a 'contains' query on URLs. Searches for URLs containing this string. If both query and exact_match are provided, only exact_match is used.\").optional(),\n start: z.number().int().describe(\"Pagination offset. Search returns 200 URLs per page. Use 0 for first page, 200 for second page, 400 for third page, etc.\").optional(),\n exact_match: z.string().describe(\"Returns results where the URL is fully identical to this value. Takes precedence over query parameter if both are provided.\").optional(),\n adaptive_type: z.enum([\"mobile\", \"desktop\"]).describe(\"Type of adaptive rendering for cached pages.\").optional(),\n}).describe(\"Request model for searching cached URLs in your Prerender account.\");\nconst PrerenderSearchCachedUrls_CachedUrlSchema = z.object({\n url: z.string().describe(\"The cached URL\").nullable().optional(),\n domain: z.string().describe(\"Domain of the cached URL\").nullable().optional(),\n cache_state: z.string().describe(\"Current state of the cache for this URL\").nullable().optional(),\n last_refresh: z.string().describe(\"Timestamp of when the cache was last refreshed\").nullable().optional(),\n adaptive_type: z.string().describe(\"Adaptive type: 'mobile' or 'desktop'\").nullable().optional(),\n requested_recache_at: z.string().describe(\"Timestamp of when a recache was last requested\").nullable().optional(),\n}).describe(\"Details about a cached URL.\");\nexport const PrerenderSearchCachedUrlsOutput = z.object({\n cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe(\"List of cached URLs matching the search criteria. Returns up to 200 URLs per page.\").nullable().optional(),\n}).describe(\"Response model containing list of cached URLs.\");\n\nexport const prerenderSearchCachedUrls = action(\"PRERENDER_SEARCH_CACHED_URLS\", {\n slug: \"prerender-search-cached-urls\",\n name: \"Search Cached URLs\",\n description: \"Tool to search for cached URLs in your Prerender account and view their cache status. Supports pagination (200 URLs per page) and filtering by desktop/mobile adaptive type. Use when you need to find specific cached pages or check cache status across your account.\",\n input: PrerenderSearchCachedUrlsInput,\n output: PrerenderSearchCachedUrlsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO;CACrD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC5L,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0HAA0H,CAAC,CAAC,SAAS;CACtK,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACzK,eAAe,EAAE,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,4CAA4C,EAAE,OAAO;CACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,SAAS,6BAA6B;
|
|
1
|
+
{"version":3,"file":"search-cached-urls.mjs","names":[],"sources":["../../src/actions/search-cached-urls.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PrerenderSearchCachedUrlsInput = z.object({\n query: z.string().describe(\"Performs a 'contains' query on URLs. Searches for URLs containing this string. If both query and exact_match are provided, only exact_match is used.\").optional(),\n start: z.number().int().describe(\"Pagination offset. Search returns 200 URLs per page. Use 0 for first page, 200 for second page, 400 for third page, etc.\").optional(),\n exact_match: z.string().describe(\"Returns results where the URL is fully identical to this value. Takes precedence over query parameter if both are provided.\").optional(),\n adaptive_type: z.enum([\"mobile\", \"desktop\"]).describe(\"Type of adaptive rendering for cached pages.\").optional(),\n}).describe(\"Request model for searching cached URLs in your Prerender account.\");\nconst PrerenderSearchCachedUrls_CachedUrlSchema = z.object({\n url: z.string().describe(\"The cached URL\").nullable().optional(),\n domain: z.string().describe(\"Domain of the cached URL\").nullable().optional(),\n cache_state: z.string().describe(\"Current state of the cache for this URL\").nullable().optional(),\n last_refresh: z.string().describe(\"Timestamp of when the cache was last refreshed\").nullable().optional(),\n adaptive_type: z.string().describe(\"Adaptive type: 'mobile' or 'desktop'\").nullable().optional(),\n requested_recache_at: z.string().describe(\"Timestamp of when a recache was last requested\").nullable().optional(),\n}).passthrough().describe(\"Details about a cached URL.\");\nexport const PrerenderSearchCachedUrlsOutput = z.object({\n cached_urls: z.array(PrerenderSearchCachedUrls_CachedUrlSchema).describe(\"List of cached URLs matching the search criteria. Returns up to 200 URLs per page.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing list of cached URLs.\");\n\nexport const prerenderSearchCachedUrls = action(\"PRERENDER_SEARCH_CACHED_URLS\", {\n slug: \"prerender-search-cached-urls\",\n name: \"Search Cached URLs\",\n description: \"Tool to search for cached URLs in your Prerender account and view their cache status. Supports pagination (200 URLs per page) and filtering by desktop/mobile adaptive type. Use when you need to find specific cached pages or check cache status across your account.\",\n input: PrerenderSearchCachedUrlsInput,\n output: PrerenderSearchCachedUrlsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO;CACrD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC5L,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0HAA0H,CAAC,CAAC,SAAS;CACtK,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACzK,eAAe,EAAE,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,4CAA4C,EAAE,OAAO;CACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6BAA6B;AAKvD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,aAAa,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACrL,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAOhB;AACV,CAAC"}
|