@keystrokehq/renderform 0.1.0 → 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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/create-pdf-from-url.cjs +6 -6
- package/dist/actions/create-pdf-from-url.cjs.map +1 -1
- package/dist/actions/create-pdf-from-url.d.cts +28 -3
- package/dist/actions/create-pdf-from-url.d.cts.map +1 -1
- package/dist/actions/create-pdf-from-url.d.mts +28 -3
- package/dist/actions/create-pdf-from-url.d.mts.map +1 -1
- package/dist/actions/create-pdf-from-url.mjs +6 -6
- package/dist/actions/create-pdf-from-url.mjs.map +1 -1
- package/dist/actions/delete-result.cjs +1 -1
- package/dist/actions/delete-result.cjs.map +1 -1
- package/dist/actions/delete-result.d.cts +10 -3
- package/dist/actions/delete-result.d.cts.map +1 -1
- package/dist/actions/delete-result.d.mts +10 -3
- package/dist/actions/delete-result.d.mts.map +1 -1
- package/dist/actions/delete-result.mjs +1 -1
- package/dist/actions/delete-result.mjs.map +1 -1
- package/dist/actions/get-result.cjs +1 -1
- package/dist/actions/get-result.cjs.map +1 -1
- package/dist/actions/get-result.d.cts +18 -3
- package/dist/actions/get-result.d.cts.map +1 -1
- package/dist/actions/get-result.d.mts +18 -3
- package/dist/actions/get-result.d.mts.map +1 -1
- package/dist/actions/get-result.mjs +1 -1
- package/dist/actions/get-result.mjs.map +1 -1
- package/dist/actions/list-fonts.cjs +3 -3
- package/dist/actions/list-fonts.cjs.map +1 -1
- package/dist/actions/list-fonts.d.cts +18 -3
- package/dist/actions/list-fonts.d.cts.map +1 -1
- package/dist/actions/list-fonts.d.mts +18 -3
- package/dist/actions/list-fonts.d.mts.map +1 -1
- package/dist/actions/list-fonts.mjs +3 -3
- package/dist/actions/list-fonts.mjs.map +1 -1
- package/dist/actions/list-results-v2.cjs +9 -9
- package/dist/actions/list-results-v2.cjs.map +1 -1
- package/dist/actions/list-results-v2.d.cts +50 -3
- package/dist/actions/list-results-v2.d.cts.map +1 -1
- package/dist/actions/list-results-v2.d.mts +50 -3
- package/dist/actions/list-results-v2.d.mts.map +1 -1
- package/dist/actions/list-results-v2.mjs +9 -9
- package/dist/actions/list-results-v2.mjs.map +1 -1
- package/dist/actions/list-templates-v2.cjs +2 -2
- package/dist/actions/list-templates-v2.cjs.map +1 -1
- package/dist/actions/list-templates-v2.d.cts +37 -3
- package/dist/actions/list-templates-v2.d.cts.map +1 -1
- package/dist/actions/list-templates-v2.d.mts +37 -3
- package/dist/actions/list-templates-v2.d.mts.map +1 -1
- package/dist/actions/list-templates-v2.mjs +2 -2
- package/dist/actions/list-templates-v2.mjs.map +1 -1
- package/dist/actions/take-screenshot.cjs +7 -7
- package/dist/actions/take-screenshot.cjs.map +1 -1
- package/dist/actions/take-screenshot.d.cts +21 -3
- package/dist/actions/take-screenshot.d.cts.map +1 -1
- package/dist/actions/take-screenshot.d.mts +21 -3
- package/dist/actions/take-screenshot.d.mts.map +1 -1
- package/dist/actions/take-screenshot.mjs +7 -7
- package/dist/actions/take-screenshot.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["renderform","executeRenderformTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { renderform } from \"./app\";\nimport { executeRenderformTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["renderform","executeRenderformTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { renderform } from \"./app\";\nimport { executeRenderformTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return renderform.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeRenderformTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,WAAW,OAAO;EACvB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { renderform } from \"./app\";\nimport { executeRenderformTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { renderform } from \"./app\";\nimport { executeRenderformTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return renderform.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeRenderformTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,WAAW,OAAO;EACvB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
|
|
@@ -14,16 +14,16 @@ const RenderformCreatePdfFromUrlInput = zod.z.object({
|
|
|
14
14
|
waitTime: zod.z.number().int().describe("Wait time in milliseconds before capturing the PDF (0–5000)").optional()
|
|
15
15
|
});
|
|
16
16
|
const RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema = zod.z.object({
|
|
17
|
-
url: zod.z.string().describe("URL of the website captured"),
|
|
18
|
-
format: zod.z.string().describe("Output format of the PDF"),
|
|
17
|
+
url: zod.z.string().describe("URL of the website captured").nullable(),
|
|
18
|
+
format: zod.z.string().describe("Output format of the PDF").nullable(),
|
|
19
19
|
expires: zod.z.number().int().describe("Automatically delete the PDF after this many seconds").nullable().optional(),
|
|
20
20
|
waitTime: zod.z.number().int().describe("Wait time in milliseconds before capturing the PDF").nullable().optional()
|
|
21
|
-
});
|
|
21
|
+
}).passthrough();
|
|
22
22
|
const RenderformCreatePdfFromUrlOutput = zod.z.object({
|
|
23
|
-
href: zod.z.string().describe("URL to the generated PDF file"),
|
|
23
|
+
href: zod.z.string().describe("URL to the generated PDF file").nullable(),
|
|
24
24
|
request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),
|
|
25
|
-
requestId: zod.z.string().describe("Unique identifier for this PDF generation request")
|
|
26
|
-
});
|
|
25
|
+
requestId: zod.z.string().describe("Unique identifier for this PDF generation request").nullable()
|
|
26
|
+
}).passthrough();
|
|
27
27
|
const renderformCreatePdfFromUrl = require_action.action("RENDERFORM_CREATE_PDF_FROM_URL", {
|
|
28
28
|
slug: "renderform-create-pdf-from-url",
|
|
29
29
|
name: "Create PDF from URL",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-pdf-from-url.cjs","names":["z","action"],"sources":["../../src/actions/create-pdf-from-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformCreatePdfFromUrlInput
|
|
1
|
+
{"version":3,"file":"create-pdf-from-url.cjs","names":["z","action"],"sources":["../../src/actions/create-pdf-from-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformCreatePdfFromUrlInput = z.object({\n url: z.string().describe(\"URL of the website to convert to PDF; must include http:// or https://\"),\n format: z.enum([\"A5\", \"A4\", \"A3\", \"LETTER\", \"LEGAL\"]).default(\"A4\").describe(\"Output format of the PDF\").optional(),\n expires: z.number().int().describe(\"Automatically delete the PDF after this many seconds (1–604800, max 7 days)\").optional(),\n waitTime: z.number().int().describe(\"Wait time in milliseconds before capturing the PDF (0–5000)\").optional(),\n});\nconst RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema = z.object({\n url: z.string().describe(\"URL of the website captured\").nullable(),\n format: z.string().describe(\"Output format of the PDF\").nullable(),\n expires: z.number().int().describe(\"Automatically delete the PDF after this many seconds\").nullable().optional(),\n waitTime: z.number().int().describe(\"Wait time in milliseconds before capturing the PDF\").nullable().optional(),\n}).passthrough();\nexport const RenderformCreatePdfFromUrlOutput = z.object({\n href: z.string().describe(\"URL to the generated PDF file\").nullable(),\n request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),\n requestId: z.string().describe(\"Unique identifier for this PDF generation request\").nullable(),\n}).passthrough();\n\nexport const renderformCreatePdfFromUrl = action(\"RENDERFORM_CREATE_PDF_FROM_URL\", {\n slug: \"renderform-create-pdf-from-url\",\n name: \"Create PDF from URL\",\n description: \"Tool to create a PDF from any website URL with customizable page format and auto-expiration. Use when you need to generate a PDF snapshot of a webpage.\",\n input: RenderformCreatePdfFromUrlInput,\n output: RenderformCreatePdfFromUrlOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE;CACjG,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAM;EAAM;EAAM;EAAU;CAAO,CAAC,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAClH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS;CAC3H,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC9G,CAAC;AACD,MAAM,mEAAmEA,IAAAA,EAAE,OAAO;CAChF,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACjE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACjE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,SAAS,iEAAiE,SAAS;CACnF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,6BAA6BC,eAAAA,OAAO,kCAAkC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,34 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-pdf-from-url.d.ts
|
|
4
|
-
declare const RenderformCreatePdfFromUrlInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformCreatePdfFromUrlInput: z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7
|
+
A5: "A5";
|
|
8
|
+
A4: "A4";
|
|
9
|
+
A3: "A3";
|
|
10
|
+
LETTER: "LETTER";
|
|
11
|
+
LEGAL: "LEGAL";
|
|
12
|
+
}>>>;
|
|
13
|
+
expires: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
waitTime: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
declare const RenderformCreatePdfFromUrlOutput: z.ZodObject<{
|
|
17
|
+
href: z.ZodNullable<z.ZodString>;
|
|
18
|
+
request: z.ZodNullable<z.ZodObject<{
|
|
19
|
+
url: z.ZodNullable<z.ZodString>;
|
|
20
|
+
format: z.ZodNullable<z.ZodString>;
|
|
21
|
+
expires: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22
|
+
waitTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
}, z.core.$loose>>;
|
|
24
|
+
requestId: z.ZodNullable<z.ZodString>;
|
|
25
|
+
}, z.core.$loose>;
|
|
26
|
+
declare const renderformCreatePdfFromUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
|
+
url: string;
|
|
28
|
+
format?: "A5" | "A4" | "A3" | "LETTER" | "LEGAL" | undefined;
|
|
29
|
+
expires?: number | undefined;
|
|
30
|
+
waitTime?: number | undefined;
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
32
|
//#endregion
|
|
8
33
|
export { renderformCreatePdfFromUrl };
|
|
9
34
|
//# sourceMappingURL=create-pdf-from-url.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-pdf-from-url.d.cts","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"mappings":";;;cAIa,+BAAA,
|
|
1
|
+
{"version":3,"file":"create-pdf-from-url.d.cts","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;cAY/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA"}
|
|
@@ -1,9 +1,34 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-pdf-from-url.d.ts
|
|
4
|
-
declare const RenderformCreatePdfFromUrlInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformCreatePdfFromUrlInput: z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
format: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7
|
+
A5: "A5";
|
|
8
|
+
A4: "A4";
|
|
9
|
+
A3: "A3";
|
|
10
|
+
LETTER: "LETTER";
|
|
11
|
+
LEGAL: "LEGAL";
|
|
12
|
+
}>>>;
|
|
13
|
+
expires: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
waitTime: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
declare const RenderformCreatePdfFromUrlOutput: z.ZodObject<{
|
|
17
|
+
href: z.ZodNullable<z.ZodString>;
|
|
18
|
+
request: z.ZodNullable<z.ZodObject<{
|
|
19
|
+
url: z.ZodNullable<z.ZodString>;
|
|
20
|
+
format: z.ZodNullable<z.ZodString>;
|
|
21
|
+
expires: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22
|
+
waitTime: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
+
}, z.core.$loose>>;
|
|
24
|
+
requestId: z.ZodNullable<z.ZodString>;
|
|
25
|
+
}, z.core.$loose>;
|
|
26
|
+
declare const renderformCreatePdfFromUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
|
+
url: string;
|
|
28
|
+
format?: "A5" | "A4" | "A3" | "LETTER" | "LEGAL" | undefined;
|
|
29
|
+
expires?: number | undefined;
|
|
30
|
+
waitTime?: number | undefined;
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
32
|
//#endregion
|
|
8
33
|
export { renderformCreatePdfFromUrl };
|
|
9
34
|
//# sourceMappingURL=create-pdf-from-url.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-pdf-from-url.d.mts","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"mappings":";;;cAIa,+BAAA,
|
|
1
|
+
{"version":3,"file":"create-pdf-from-url.d.mts","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;cAY/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA"}
|
|
@@ -14,21 +14,21 @@ const RenderformCreatePdfFromUrlInput = z.object({
|
|
|
14
14
|
waitTime: z.number().int().describe("Wait time in milliseconds before capturing the PDF (0–5000)").optional()
|
|
15
15
|
});
|
|
16
16
|
const RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema = z.object({
|
|
17
|
-
url: z.string().describe("URL of the website captured"),
|
|
18
|
-
format: z.string().describe("Output format of the PDF"),
|
|
17
|
+
url: z.string().describe("URL of the website captured").nullable(),
|
|
18
|
+
format: z.string().describe("Output format of the PDF").nullable(),
|
|
19
19
|
expires: z.number().int().describe("Automatically delete the PDF after this many seconds").nullable().optional(),
|
|
20
20
|
waitTime: z.number().int().describe("Wait time in milliseconds before capturing the PDF").nullable().optional()
|
|
21
|
-
});
|
|
21
|
+
}).passthrough();
|
|
22
22
|
const renderformCreatePdfFromUrl = action("RENDERFORM_CREATE_PDF_FROM_URL", {
|
|
23
23
|
slug: "renderform-create-pdf-from-url",
|
|
24
24
|
name: "Create PDF from URL",
|
|
25
25
|
description: "Tool to create a PDF from any website URL with customizable page format and auto-expiration. Use when you need to generate a PDF snapshot of a webpage.",
|
|
26
26
|
input: RenderformCreatePdfFromUrlInput,
|
|
27
27
|
output: z.object({
|
|
28
|
-
href: z.string().describe("URL to the generated PDF file"),
|
|
28
|
+
href: z.string().describe("URL to the generated PDF file").nullable(),
|
|
29
29
|
request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),
|
|
30
|
-
requestId: z.string().describe("Unique identifier for this PDF generation request")
|
|
31
|
-
})
|
|
30
|
+
requestId: z.string().describe("Unique identifier for this PDF generation request").nullable()
|
|
31
|
+
}).passthrough()
|
|
32
32
|
});
|
|
33
33
|
//#endregion
|
|
34
34
|
export { renderformCreatePdfFromUrl };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-pdf-from-url.mjs","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformCreatePdfFromUrlInput
|
|
1
|
+
{"version":3,"file":"create-pdf-from-url.mjs","names":[],"sources":["../../src/actions/create-pdf-from-url.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformCreatePdfFromUrlInput = z.object({\n url: z.string().describe(\"URL of the website to convert to PDF; must include http:// or https://\"),\n format: z.enum([\"A5\", \"A4\", \"A3\", \"LETTER\", \"LEGAL\"]).default(\"A4\").describe(\"Output format of the PDF\").optional(),\n expires: z.number().int().describe(\"Automatically delete the PDF after this many seconds (1–604800, max 7 days)\").optional(),\n waitTime: z.number().int().describe(\"Wait time in milliseconds before capturing the PDF (0–5000)\").optional(),\n});\nconst RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema = z.object({\n url: z.string().describe(\"URL of the website captured\").nullable(),\n format: z.string().describe(\"Output format of the PDF\").nullable(),\n expires: z.number().int().describe(\"Automatically delete the PDF after this many seconds\").nullable().optional(),\n waitTime: z.number().int().describe(\"Wait time in milliseconds before capturing the PDF\").nullable().optional(),\n}).passthrough();\nexport const RenderformCreatePdfFromUrlOutput = z.object({\n href: z.string().describe(\"URL to the generated PDF file\").nullable(),\n request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),\n requestId: z.string().describe(\"Unique identifier for this PDF generation request\").nullable(),\n}).passthrough();\n\nexport const renderformCreatePdfFromUrl = action(\"RENDERFORM_CREATE_PDF_FROM_URL\", {\n slug: \"renderform-create-pdf-from-url\",\n name: \"Create PDF from URL\",\n description: \"Tool to create a PDF from any website URL with customizable page format and auto-expiration. Use when you need to generate a PDF snapshot of a webpage.\",\n input: RenderformCreatePdfFromUrlInput,\n output: RenderformCreatePdfFromUrlOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkC,EAAE,OAAO;CACtD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE;CACjG,QAAQ,EAAE,KAAK;EAAC;EAAM;EAAM;EAAM;EAAU;CAAO,CAAC,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAClH,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS;CAC3H,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC9G,CAAC;AACD,MAAM,mEAAmE,EAAE,OAAO;CAChF,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACjE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACjE,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,6BAA6B,OAAO,kCAAkC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX8C,EAAE,OAAO;EACvD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACpE,SAAS,iEAAiE,SAAS;EACnF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -5,7 +5,7 @@ const RenderformDeleteResultInput = zod.z.object({ identifier: zod.z.string().de
|
|
|
5
5
|
const RenderformDeleteResultOutput = zod.z.object({
|
|
6
6
|
message: zod.z.string().default("Result deleted successfully").describe("Success message confirming the deletion").nullable().optional(),
|
|
7
7
|
success: zod.z.boolean().default(true).describe("Indicates successful deletion of the result").nullable().optional()
|
|
8
|
-
}).describe("Response schema for deleting a result.");
|
|
8
|
+
}).passthrough().describe("Response schema for deleting a result.");
|
|
9
9
|
const renderformDeleteResult = require_action.action("RENDERFORM_DELETE_RESULT", {
|
|
10
10
|
slug: "renderform-delete-result",
|
|
11
11
|
name: "Delete Result",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-result.cjs","names":["z","action"],"sources":["../../src/actions/delete-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformDeleteResultInput
|
|
1
|
+
{"version":3,"file":"delete-result.cjs","names":["z","action"],"sources":["../../src/actions/delete-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformDeleteResultInput = z.object({\n identifier: z.string().describe(\"Unique identifier of the result to delete (e.g., req-b71ba6dc-0bfc-40ed-8fe6-7b84e880691a)\"),\n}).describe(\"Request parameters for deleting a render result.\");\nexport const RenderformDeleteResultOutput = z.object({\n message: z.string().default(\"Result deleted successfully\").describe(\"Success message confirming the deletion\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Indicates successful deletion of the result\").nullable().optional(),\n}).passthrough().describe(\"Response schema for deleting a result.\");\n\nexport const renderformDeleteResult = action(\"RENDERFORM_DELETE_RESULT\", {\n slug: \"renderform-delete-result\",\n name: \"Delete Result\",\n description: \"Tool to delete a render result (image/PDF) by its identifier. Use when you need to remove a previously generated image or PDF from the system.\",\n input: RenderformDeleteResultInput,\n output: RenderformDeleteResultOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,EAC9H,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,QAAQ,6BAA6B,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnI,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,yBAAyBC,eAAAA,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/delete-result.d.ts
|
|
4
|
-
declare const RenderformDeleteResultInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformDeleteResultInput: z.ZodObject<{
|
|
5
|
+
identifier: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RenderformDeleteResultOutput: z.ZodObject<{
|
|
8
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
|
|
9
|
+
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
|
+
declare const renderformDeleteResult: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
|
+
identifier: string;
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { renderformDeleteResult };
|
|
9
16
|
//# sourceMappingURL=delete-result.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-result.d.cts","names":[],"sources":["../../src/actions/delete-result.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"delete-result.d.cts","names":[],"sources":["../../src/actions/delete-result.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/delete-result.d.ts
|
|
4
|
-
declare const RenderformDeleteResultInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformDeleteResultInput: z.ZodObject<{
|
|
5
|
+
identifier: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RenderformDeleteResultOutput: z.ZodObject<{
|
|
8
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
|
|
9
|
+
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
|
+
declare const renderformDeleteResult: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
|
+
identifier: string;
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { renderformDeleteResult };
|
|
9
16
|
//# sourceMappingURL=delete-result.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-result.d.mts","names":[],"sources":["../../src/actions/delete-result.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"delete-result.d.mts","names":[],"sources":["../../src/actions/delete-result.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -8,7 +8,7 @@ const renderformDeleteResult = action("RENDERFORM_DELETE_RESULT", {
|
|
|
8
8
|
output: z.object({
|
|
9
9
|
message: z.string().default("Result deleted successfully").describe("Success message confirming the deletion").nullable().optional(),
|
|
10
10
|
success: z.boolean().default(true).describe("Indicates successful deletion of the result").nullable().optional()
|
|
11
|
-
}).describe("Response schema for deleting a result.")
|
|
11
|
+
}).passthrough().describe("Response schema for deleting a result.")
|
|
12
12
|
});
|
|
13
13
|
//#endregion
|
|
14
14
|
export { renderformDeleteResult };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-result.mjs","names":[],"sources":["../../src/actions/delete-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformDeleteResultInput
|
|
1
|
+
{"version":3,"file":"delete-result.mjs","names":[],"sources":["../../src/actions/delete-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformDeleteResultInput = z.object({\n identifier: z.string().describe(\"Unique identifier of the result to delete (e.g., req-b71ba6dc-0bfc-40ed-8fe6-7b84e880691a)\"),\n}).describe(\"Request parameters for deleting a render result.\");\nexport const RenderformDeleteResultOutput = z.object({\n message: z.string().default(\"Result deleted successfully\").describe(\"Success message confirming the deletion\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Indicates successful deletion of the result\").nullable().optional(),\n}).passthrough().describe(\"Response schema for deleting a result.\");\n\nexport const renderformDeleteResult = action(\"RENDERFORM_DELETE_RESULT\", {\n slug: \"renderform-delete-result\",\n name: \"Delete Result\",\n description: \"Tool to delete a render result (image/PDF) by its identifier. Use when you need to remove a previously generated image or PDF from the system.\",\n input: RenderformDeleteResultInput,\n output: RenderformDeleteResultOutput,\n});\n"],"mappings":";;AAYA,MAAa,yBAAyB,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZyC,EAAE,OAAO,EAClD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,EAC9H,CAAC,CAAC,CAAC,SAAS,kDAUH;CACP,QAV0C,EAAE,OAAO;EACnD,SAAS,EAAE,OAAO,CAAC,CAAC,QAAQ,6BAA6B,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnI,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
|
|
@@ -13,7 +13,7 @@ const RenderformGetResultOutput = zod.z.object({
|
|
|
13
13
|
identifier: zod.z.string().describe("Unique identifier for the result").nullable().optional(),
|
|
14
14
|
templateName: zod.z.string().describe("Human-readable name of the template").nullable().optional(),
|
|
15
15
|
requestPayload: zod.z.string().describe("Original request payload used to generate this result").nullable().optional()
|
|
16
|
-
}).describe("Response schema for a single render result.");
|
|
16
|
+
}).passthrough().describe("Response schema for a single render result.");
|
|
17
17
|
const renderformGetResult = require_action.action("RENDERFORM_GET_RESULT", {
|
|
18
18
|
slug: "renderform-get-result",
|
|
19
19
|
name: "Get Result",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-result.cjs","names":["z","action"],"sources":["../../src/actions/get-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformGetResultInput
|
|
1
|
+
{"version":3,"file":"get-result.cjs","names":["z","action"],"sources":["../../src/actions/get-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformGetResultInput = z.object({\n identifier: z.string().describe(\"Unique identifier for the render result to retrieve\"),\n}).describe(\"Request parameters for getting a specific render result.\");\nexport const RenderformGetResultOutput = z.object({\n href: z.string().describe(\"URL to the generated image\").nullable().optional(),\n width: z.number().int().describe(\"Width of the generated image in pixels\").nullable().optional(),\n height: z.number().int().describe(\"Height of the generated image in pixels\").nullable().optional(),\n status: z.string().describe(\"Status of the render result (e.g., completed, pending, failed)\").nullable().optional(),\n template: z.string().describe(\"Template identifier used for this render\").nullable().optional(),\n createdAt: z.string().describe(\"Date/time result was created (ISO8601)\").nullable().optional(),\n deletedAt: z.string().describe(\"Date/time result was deleted (ISO8601), null if not deleted\").nullable().optional(),\n identifier: z.string().describe(\"Unique identifier for the result\").nullable().optional(),\n templateName: z.string().describe(\"Human-readable name of the template\").nullable().optional(),\n requestPayload: z.string().describe(\"Original request payload used to generate this result\").nullable().optional(),\n}).passthrough().describe(\"Response schema for a single render result.\");\n\nexport const renderformGetResult = action(\"RENDERFORM_GET_RESULT\", {\n slug: \"renderform-get-result\",\n name: \"Get Result\",\n description: \"Tool to retrieve detailed information about a specific render result by its identifier. Use when you need to check the status or get the full details of a previously generated image or PDF.\",\n input: RenderformGetResultInput,\n output: RenderformGetResultOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EACvF,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6CAA6C;AAEvE,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-result.d.ts
|
|
4
|
-
declare const RenderformGetResultInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformGetResultInput: z.ZodObject<{
|
|
5
|
+
identifier: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RenderformGetResultOutput: z.ZodObject<{
|
|
8
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
height: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
11
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
templateName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
requestPayload: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
}, z.core.$loose>;
|
|
19
|
+
declare const renderformGetResult: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
identifier: string;
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { renderformGetResult };
|
|
9
24
|
//# sourceMappingURL=get-result.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-result.d.cts","names":[],"sources":["../../src/actions/get-result.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"get-result.d.cts","names":[],"sources":["../../src/actions/get-result.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;cAGxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-result.d.ts
|
|
4
|
-
declare const RenderformGetResultInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RenderformGetResultInput: z.ZodObject<{
|
|
5
|
+
identifier: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const RenderformGetResultOutput: z.ZodObject<{
|
|
8
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10
|
+
height: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
11
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
template: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
templateName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
requestPayload: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
}, z.core.$loose>;
|
|
19
|
+
declare const renderformGetResult: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
identifier: string;
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { renderformGetResult };
|
|
9
24
|
//# sourceMappingURL=get-result.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-result.d.mts","names":[],"sources":["../../src/actions/get-result.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"get-result.d.mts","names":[],"sources":["../../src/actions/get-result.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;cAGxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
|
|
@@ -16,7 +16,7 @@ const renderformGetResult = action("RENDERFORM_GET_RESULT", {
|
|
|
16
16
|
identifier: z.string().describe("Unique identifier for the result").nullable().optional(),
|
|
17
17
|
templateName: z.string().describe("Human-readable name of the template").nullable().optional(),
|
|
18
18
|
requestPayload: z.string().describe("Original request payload used to generate this result").nullable().optional()
|
|
19
|
-
}).describe("Response schema for a single render result.")
|
|
19
|
+
}).passthrough().describe("Response schema for a single render result.")
|
|
20
20
|
});
|
|
21
21
|
//#endregion
|
|
22
22
|
export { renderformGetResult };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-result.mjs","names":[],"sources":["../../src/actions/get-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformGetResultInput
|
|
1
|
+
{"version":3,"file":"get-result.mjs","names":[],"sources":["../../src/actions/get-result.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformGetResultInput = z.object({\n identifier: z.string().describe(\"Unique identifier for the render result to retrieve\"),\n}).describe(\"Request parameters for getting a specific render result.\");\nexport const RenderformGetResultOutput = z.object({\n href: z.string().describe(\"URL to the generated image\").nullable().optional(),\n width: z.number().int().describe(\"Width of the generated image in pixels\").nullable().optional(),\n height: z.number().int().describe(\"Height of the generated image in pixels\").nullable().optional(),\n status: z.string().describe(\"Status of the render result (e.g., completed, pending, failed)\").nullable().optional(),\n template: z.string().describe(\"Template identifier used for this render\").nullable().optional(),\n createdAt: z.string().describe(\"Date/time result was created (ISO8601)\").nullable().optional(),\n deletedAt: z.string().describe(\"Date/time result was deleted (ISO8601), null if not deleted\").nullable().optional(),\n identifier: z.string().describe(\"Unique identifier for the result\").nullable().optional(),\n templateName: z.string().describe(\"Human-readable name of the template\").nullable().optional(),\n requestPayload: z.string().describe(\"Original request payload used to generate this result\").nullable().optional(),\n}).passthrough().describe(\"Response schema for a single render result.\");\n\nexport const renderformGetResult = action(\"RENDERFORM_GET_RESULT\", {\n slug: \"renderform-get-result\",\n name: \"Get Result\",\n description: \"Tool to retrieve detailed information about a specific render result by its identifier. Use when you need to check the status or get the full details of a previously generated image or PDF.\",\n input: RenderformGetResultInput,\n output: RenderformGetResultOutput,\n});\n"],"mappings":";;AAoBA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApBsC,EAAE,OAAO,EAC/C,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EACvF,CAAC,CAAC,CAAC,SAAS,0DAkBH;CACP,QAlBuC,EAAE,OAAO;EAChD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5E,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/F,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6CAOhB;AACV,CAAC"}
|
|
@@ -5,7 +5,7 @@ const RenderformListFontsInput = zod.z.object({}).describe("No input parameters
|
|
|
5
5
|
const RenderformListFonts_FontSourceSchema = zod.z.enum(["GOOGLE", "CUSTOM"]).describe("Source of the font.");
|
|
6
6
|
const RenderformListFonts_FontSchema = zod.z.object({
|
|
7
7
|
size: zod.z.number().int().describe("File size in bytes (for custom fonts)").nullable().optional(),
|
|
8
|
-
family: zod.z.string().describe("Name of the font family"),
|
|
8
|
+
family: zod.z.string().describe("Name of the font family").nullable(),
|
|
9
9
|
source: RenderformListFonts_FontSourceSchema.nullable(),
|
|
10
10
|
subsets: zod.z.array(zod.z.string()).describe("Character subsets supported by the font (e.g., 'latin', 'cyrillic')").nullable().optional(),
|
|
11
11
|
category: zod.z.string().describe("Category of the font (e.g., 'sans-serif', 'serif', 'display')").nullable().optional(),
|
|
@@ -13,8 +13,8 @@ const RenderformListFonts_FontSchema = zod.z.object({
|
|
|
13
13
|
createdAt: zod.z.string().describe("Timestamp when the font was added (for custom fonts)").nullable().optional(),
|
|
14
14
|
originalName: zod.z.string().describe("Original filename of the uploaded font (for custom fonts)").nullable().optional(),
|
|
15
15
|
defaultVariant: zod.z.string().describe("Default variant for the font").nullable().optional()
|
|
16
|
-
}).describe("Represents a single font available in the system.");
|
|
17
|
-
const RenderformListFontsOutput = zod.z.object({ fonts: zod.z.array(RenderformListFonts_FontSchema).describe("List of all fonts available in the system for the current user") }).describe("Response model for listing fonts.");
|
|
16
|
+
}).passthrough().describe("Represents a single font available in the system.");
|
|
17
|
+
const RenderformListFontsOutput = zod.z.object({ fonts: zod.z.array(RenderformListFonts_FontSchema).describe("List of all fonts available in the system for the current user") }).passthrough().describe("Response model for listing fonts.");
|
|
18
18
|
const renderformListFonts = require_action.action("RENDERFORM_LIST_FONTS", {
|
|
19
19
|
slug: "renderform-list-fonts",
|
|
20
20
|
name: "List Fonts",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-fonts.cjs","names":["z","action"],"sources":["../../src/actions/list-fonts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListFontsInput
|
|
1
|
+
{"version":3,"file":"list-fonts.cjs","names":["z","action"],"sources":["../../src/actions/list-fonts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListFontsInput = z.object({}).describe(\"No input parameters are required to list fonts.\");\nconst RenderformListFonts_FontSourceSchema = z.enum([\"GOOGLE\", \"CUSTOM\"]).describe(\"Source of the font.\");\nconst RenderformListFonts_FontSchema = z.object({\n size: z.number().int().describe(\"File size in bytes (for custom fonts)\").nullable().optional(),\n family: z.string().describe(\"Name of the font family\").nullable(),\n source: RenderformListFonts_FontSourceSchema.nullable(),\n subsets: z.array(z.string()).describe(\"Character subsets supported by the font (e.g., 'latin', 'cyrillic')\").nullable().optional(),\n category: z.string().describe(\"Category of the font (e.g., 'sans-serif', 'serif', 'display')\").nullable().optional(),\n variants: z.array(z.string()).describe(\"List of all variants available for the font (e.g., 'regular', 'bold', 'italic')\"),\n createdAt: z.string().describe(\"Timestamp when the font was added (for custom fonts)\").nullable().optional(),\n originalName: z.string().describe(\"Original filename of the uploaded font (for custom fonts)\").nullable().optional(),\n defaultVariant: z.string().describe(\"Default variant for the font\").nullable().optional(),\n}).passthrough().describe(\"Represents a single font available in the system.\");\nexport const RenderformListFontsOutput = z.object({\n fonts: z.array(RenderformListFonts_FontSchema).describe(\"List of all fonts available in the system for the current user\"),\n}).passthrough().describe(\"Response model for listing fonts.\");\n\nexport const renderformListFonts = action(\"RENDERFORM_LIST_FONTS\", {\n slug: \"renderform-list-fonts\",\n name: \"List Fonts\",\n description: \"Tool to retrieve all available fonts including Google Fonts and custom uploaded fonts. Use when you need to list fonts for text rendering.\",\n input: RenderformListFontsInput,\n output: RenderformListFontsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC/G,MAAM,uCAAuCA,IAAAA,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,qBAAqB;AACxG,MAAM,iCAAiCA,IAAAA,EAAE,OAAO;CAC9C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAChE,QAAQ,qCAAqC,SAAS;CACtD,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjI,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iFAAiF;CACxH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mDAAmD;AAC7E,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,gEAAgE,EAC1H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC;AAE7D,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-fonts.d.ts
|
|
4
|
-
declare const RenderformListFontsInput: z.
|
|
5
|
-
declare const RenderformListFontsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const RenderformListFontsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const RenderformListFontsOutput: z.ZodObject<{
|
|
6
|
+
fonts: z.ZodArray<z.ZodObject<{
|
|
7
|
+
size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
|
+
family: z.ZodNullable<z.ZodString>;
|
|
9
|
+
source: z.ZodNullable<z.ZodEnum<{
|
|
10
|
+
GOOGLE: "GOOGLE";
|
|
11
|
+
CUSTOM: "CUSTOM";
|
|
12
|
+
}>>;
|
|
13
|
+
subsets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
14
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
variants: z.ZodArray<z.ZodString>;
|
|
16
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
originalName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
defaultVariant: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
}, z.core.$loose>>;
|
|
20
|
+
}, z.core.$loose>;
|
|
21
|
+
declare const renderformListFonts: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { renderformListFonts };
|
|
9
24
|
//# sourceMappingURL=list-fonts.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-fonts.d.cts","names":[],"sources":["../../src/actions/list-fonts.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"list-fonts.d.cts","names":[],"sources":["../../src/actions/list-fonts.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAaxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-fonts.d.ts
|
|
4
|
-
declare const RenderformListFontsInput: z.
|
|
5
|
-
declare const RenderformListFontsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const RenderformListFontsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const RenderformListFontsOutput: z.ZodObject<{
|
|
6
|
+
fonts: z.ZodArray<z.ZodObject<{
|
|
7
|
+
size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
|
+
family: z.ZodNullable<z.ZodString>;
|
|
9
|
+
source: z.ZodNullable<z.ZodEnum<{
|
|
10
|
+
GOOGLE: "GOOGLE";
|
|
11
|
+
CUSTOM: "CUSTOM";
|
|
12
|
+
}>>;
|
|
13
|
+
subsets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
14
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
variants: z.ZodArray<z.ZodString>;
|
|
16
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
originalName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
defaultVariant: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
}, z.core.$loose>>;
|
|
20
|
+
}, z.core.$loose>;
|
|
21
|
+
declare const renderformListFonts: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { renderformListFonts };
|
|
9
24
|
//# sourceMappingURL=list-fonts.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-fonts.d.mts","names":[],"sources":["../../src/actions/list-fonts.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"list-fonts.d.mts","names":[],"sources":["../../src/actions/list-fonts.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAaxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -5,7 +5,7 @@ const RenderformListFontsInput = z.object({}).describe("No input parameters are
|
|
|
5
5
|
const RenderformListFonts_FontSourceSchema = z.enum(["GOOGLE", "CUSTOM"]).describe("Source of the font.");
|
|
6
6
|
const RenderformListFonts_FontSchema = z.object({
|
|
7
7
|
size: z.number().int().describe("File size in bytes (for custom fonts)").nullable().optional(),
|
|
8
|
-
family: z.string().describe("Name of the font family"),
|
|
8
|
+
family: z.string().describe("Name of the font family").nullable(),
|
|
9
9
|
source: RenderformListFonts_FontSourceSchema.nullable(),
|
|
10
10
|
subsets: z.array(z.string()).describe("Character subsets supported by the font (e.g., 'latin', 'cyrillic')").nullable().optional(),
|
|
11
11
|
category: z.string().describe("Category of the font (e.g., 'sans-serif', 'serif', 'display')").nullable().optional(),
|
|
@@ -13,13 +13,13 @@ const RenderformListFonts_FontSchema = z.object({
|
|
|
13
13
|
createdAt: z.string().describe("Timestamp when the font was added (for custom fonts)").nullable().optional(),
|
|
14
14
|
originalName: z.string().describe("Original filename of the uploaded font (for custom fonts)").nullable().optional(),
|
|
15
15
|
defaultVariant: z.string().describe("Default variant for the font").nullable().optional()
|
|
16
|
-
}).describe("Represents a single font available in the system.");
|
|
16
|
+
}).passthrough().describe("Represents a single font available in the system.");
|
|
17
17
|
const renderformListFonts = action("RENDERFORM_LIST_FONTS", {
|
|
18
18
|
slug: "renderform-list-fonts",
|
|
19
19
|
name: "List Fonts",
|
|
20
20
|
description: "Tool to retrieve all available fonts including Google Fonts and custom uploaded fonts. Use when you need to list fonts for text rendering.",
|
|
21
21
|
input: RenderformListFontsInput,
|
|
22
|
-
output: z.object({ fonts: z.array(RenderformListFonts_FontSchema).describe("List of all fonts available in the system for the current user") }).describe("Response model for listing fonts.")
|
|
22
|
+
output: z.object({ fonts: z.array(RenderformListFonts_FontSchema).describe("List of all fonts available in the system for the current user") }).passthrough().describe("Response model for listing fonts.")
|
|
23
23
|
});
|
|
24
24
|
//#endregion
|
|
25
25
|
export { renderformListFonts };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-fonts.mjs","names":[],"sources":["../../src/actions/list-fonts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListFontsInput
|
|
1
|
+
{"version":3,"file":"list-fonts.mjs","names":[],"sources":["../../src/actions/list-fonts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListFontsInput = z.object({}).describe(\"No input parameters are required to list fonts.\");\nconst RenderformListFonts_FontSourceSchema = z.enum([\"GOOGLE\", \"CUSTOM\"]).describe(\"Source of the font.\");\nconst RenderformListFonts_FontSchema = z.object({\n size: z.number().int().describe(\"File size in bytes (for custom fonts)\").nullable().optional(),\n family: z.string().describe(\"Name of the font family\").nullable(),\n source: RenderformListFonts_FontSourceSchema.nullable(),\n subsets: z.array(z.string()).describe(\"Character subsets supported by the font (e.g., 'latin', 'cyrillic')\").nullable().optional(),\n category: z.string().describe(\"Category of the font (e.g., 'sans-serif', 'serif', 'display')\").nullable().optional(),\n variants: z.array(z.string()).describe(\"List of all variants available for the font (e.g., 'regular', 'bold', 'italic')\"),\n createdAt: z.string().describe(\"Timestamp when the font was added (for custom fonts)\").nullable().optional(),\n originalName: z.string().describe(\"Original filename of the uploaded font (for custom fonts)\").nullable().optional(),\n defaultVariant: z.string().describe(\"Default variant for the font\").nullable().optional(),\n}).passthrough().describe(\"Represents a single font available in the system.\");\nexport const RenderformListFontsOutput = z.object({\n fonts: z.array(RenderformListFonts_FontSchema).describe(\"List of all fonts available in the system for the current user\"),\n}).passthrough().describe(\"Response model for listing fonts.\");\n\nexport const renderformListFonts = action(\"RENDERFORM_LIST_FONTS\", {\n slug: \"renderform-list-fonts\",\n name: \"List Fonts\",\n description: \"Tool to retrieve all available fonts including Google Fonts and custom uploaded fonts. Use when you need to list fonts for text rendering.\",\n input: RenderformListFontsInput,\n output: RenderformListFontsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC/G,MAAM,uCAAuC,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,qBAAqB;AACxG,MAAM,iCAAiC,EAAE,OAAO;CAC9C,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAChE,QAAQ,qCAAqC,SAAS;CACtD,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjI,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iFAAiF;CACxH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mDAAmD;AAK7E,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,gEAAgE,EAC1H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAOhB;AACV,CAAC"}
|