@keystrokehq/renderform 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/create-pdf-from-url.cjs +4 -4
  4. package/dist/actions/create-pdf-from-url.cjs.map +1 -1
  5. package/dist/actions/create-pdf-from-url.d.cts +28 -3
  6. package/dist/actions/create-pdf-from-url.d.cts.map +1 -1
  7. package/dist/actions/create-pdf-from-url.d.mts +28 -3
  8. package/dist/actions/create-pdf-from-url.d.mts.map +1 -1
  9. package/dist/actions/create-pdf-from-url.mjs +4 -4
  10. package/dist/actions/create-pdf-from-url.mjs.map +1 -1
  11. package/dist/actions/delete-result.cjs.map +1 -1
  12. package/dist/actions/delete-result.d.cts +10 -3
  13. package/dist/actions/delete-result.d.cts.map +1 -1
  14. package/dist/actions/delete-result.d.mts +10 -3
  15. package/dist/actions/delete-result.d.mts.map +1 -1
  16. package/dist/actions/delete-result.mjs.map +1 -1
  17. package/dist/actions/get-result.cjs.map +1 -1
  18. package/dist/actions/get-result.d.cts +18 -3
  19. package/dist/actions/get-result.d.cts.map +1 -1
  20. package/dist/actions/get-result.d.mts +18 -3
  21. package/dist/actions/get-result.d.mts.map +1 -1
  22. package/dist/actions/get-result.mjs.map +1 -1
  23. package/dist/actions/list-fonts.cjs +1 -1
  24. package/dist/actions/list-fonts.cjs.map +1 -1
  25. package/dist/actions/list-fonts.d.cts +18 -3
  26. package/dist/actions/list-fonts.d.cts.map +1 -1
  27. package/dist/actions/list-fonts.d.mts +18 -3
  28. package/dist/actions/list-fonts.d.mts.map +1 -1
  29. package/dist/actions/list-fonts.mjs +1 -1
  30. package/dist/actions/list-fonts.mjs.map +1 -1
  31. package/dist/actions/list-results-v2.cjs +5 -5
  32. package/dist/actions/list-results-v2.cjs.map +1 -1
  33. package/dist/actions/list-results-v2.d.cts +50 -3
  34. package/dist/actions/list-results-v2.d.cts.map +1 -1
  35. package/dist/actions/list-results-v2.d.mts +50 -3
  36. package/dist/actions/list-results-v2.d.mts.map +1 -1
  37. package/dist/actions/list-results-v2.mjs +5 -5
  38. package/dist/actions/list-results-v2.mjs.map +1 -1
  39. package/dist/actions/list-templates-v2.cjs.map +1 -1
  40. package/dist/actions/list-templates-v2.d.cts +37 -3
  41. package/dist/actions/list-templates-v2.d.cts.map +1 -1
  42. package/dist/actions/list-templates-v2.d.mts +37 -3
  43. package/dist/actions/list-templates-v2.d.mts.map +1 -1
  44. package/dist/actions/list-templates-v2.mjs.map +1 -1
  45. package/dist/actions/take-screenshot.cjs +5 -5
  46. package/dist/actions/take-screenshot.cjs.map +1 -1
  47. package/dist/actions/take-screenshot.d.cts +21 -3
  48. package/dist/actions/take-screenshot.d.cts.map +1 -1
  49. package/dist/actions/take-screenshot.d.mts +21 -3
  50. package/dist/actions/take-screenshot.d.mts.map +1 -1
  51. package/dist/actions/take-screenshot.mjs +5 -5
  52. package/dist/actions/take-screenshot.mjs.map +1 -1
  53. package/dist/catalog.cjs +7 -1
  54. package/dist/catalog.cjs.map +1 -1
  55. package/dist/catalog.d.cts +8 -0
  56. package/dist/catalog.d.mts +8 -0
  57. package/dist/catalog.mjs +7 -1
  58. package/dist/catalog.mjs.map +1 -1
  59. package/package.json +2 -2
@@ -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: z.ZodTypeAny;\n output: z.ZodTypeAny;\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,\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"}
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"}
@@ -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: z.ZodTypeAny;\n output: z.ZodTypeAny;\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,\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"}
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,15 +14,15 @@ 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
  });
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")
25
+ requestId: zod.z.string().describe("Unique identifier for this PDF generation request").nullable()
26
26
  });
27
27
  const renderformCreatePdfFromUrl = require_action.action("RENDERFORM_CREATE_PDF_FROM_URL", {
28
28
  slug: "renderform-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: z.ZodTypeAny = 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.ZodTypeAny = z.object({\n url: z.string().describe(\"URL of the website captured\"),\n format: z.string().describe(\"Output format of the PDF\"),\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});\nexport const RenderformCreatePdfFromUrlOutput: z.ZodTypeAny = z.object({\n href: z.string().describe(\"URL to the generated PDF file\"),\n request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),\n requestId: z.string().describe(\"Unique identifier for this PDF generation request\"),\n});\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,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,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,mEAAiFA,IAAAA,EAAE,OAAO;CAC9F,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CACtD,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;AACD,MAAa,mCAAiDA,IAAAA,EAAE,OAAO;CACrE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACzD,SAAS,iEAAiE,SAAS;CACnF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;AACpF,CAAC;AAED,MAAa,6BAA6BC,eAAAA,OAAO,kCAAkC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
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});\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});\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;AACD,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;AAED,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.ZodTypeAny;
5
- declare const RenderformCreatePdfFromUrlOutput: z.ZodTypeAny;
6
- declare const renderformCreatePdfFromUrl: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>>;
24
+ requestId: z.ZodNullable<z.ZodString>;
25
+ }, z.core.$strip>;
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,EAAiC,CAAA,CAAE,UAK9C;AAAA,cAOW,gCAAA,EAAkC,CAAA,CAAE,UAI/C;AAAA,cAEW,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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.ZodTypeAny;
5
- declare const RenderformCreatePdfFromUrlOutput: z.ZodTypeAny;
6
- declare const renderformCreatePdfFromUrl: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>>;
24
+ requestId: z.ZodNullable<z.ZodString>;
25
+ }, z.core.$strip>;
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,EAAiC,CAAA,CAAE,UAK9C;AAAA,cAOW,gCAAA,EAAkC,CAAA,CAAE,UAI/C;AAAA,cAEW,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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,8 +14,8 @@ 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
  });
@@ -25,9 +25,9 @@ const renderformCreatePdfFromUrl = action("RENDERFORM_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")
30
+ requestId: z.string().describe("Unique identifier for this PDF generation request").nullable()
31
31
  })
32
32
  });
33
33
  //#endregion
@@ -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: z.ZodTypeAny = 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.ZodTypeAny = z.object({\n url: z.string().describe(\"URL of the website captured\"),\n format: z.string().describe(\"Output format of the PDF\"),\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});\nexport const RenderformCreatePdfFromUrlOutput: z.ZodTypeAny = z.object({\n href: z.string().describe(\"URL to the generated PDF file\"),\n request: RenderformCreatePdfFromUrl_CreatePdfFromUrlResponseRequestSchema.nullable(),\n requestId: z.string().describe(\"Unique identifier for this PDF generation request\"),\n});\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,kCAAgD,EAAE,OAAO;CACpE,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,mEAAiF,EAAE,OAAO;CAC9F,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CACtD,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;AAOD,MAAa,6BAA6B,OAAO,kCAAkC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX4D,EAAE,OAAO;EACrE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;EACzD,SAAS,iEAAiE,SAAS;EACnF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;CACpF,CAOU;AACV,CAAC"}
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});\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});\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;AAOD,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,CAOU;AACV,CAAC"}
@@ -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: z.ZodTypeAny = 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.ZodTypeAny = 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}).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,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,EAC9H,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,+BAA6CA,IAAAA,EAAE,OAAO;CACjE,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,SAAS,wCAAwC;AAEpD,MAAa,yBAAyBC,eAAAA,OAAO,4BAA4B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
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}).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,SAAS,wCAAwC;AAEpD,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.ZodTypeAny;
5
- declare const RenderformDeleteResultOutput: z.ZodTypeAny;
6
- declare const renderformDeleteResult: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>;
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,EAA6B,CAAA,CAAE,UAEmB;AAAA,cAClD,4BAAA,EAA8B,CAAA,CAAE,UAGQ;AAAA,cAExC,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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.ZodTypeAny;
5
- declare const RenderformDeleteResultOutput: z.ZodTypeAny;
6
- declare const renderformDeleteResult: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>;
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,EAA6B,CAAA,CAAE,UAEmB;AAAA,cAClD,4BAAA,EAA8B,CAAA,CAAE,UAGQ;AAAA,cAExC,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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"}
@@ -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: z.ZodTypeAny = 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.ZodTypeAny = 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}).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,OAZuD,EAAE,OAAO,EAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,EAC9H,CAAC,CAAC,CAAC,SAAS,kDAUH;CACP,QAVwD,EAAE,OAAO;EACjE,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,SAAS,wCAOF;AACV,CAAC"}
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}).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,SAAS,wCAOF;AACV,CAAC"}
@@ -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: z.ZodTypeAny = 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.ZodTypeAny = 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}).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,2BAAyCA,IAAAA,EAAE,OAAO,EAC7D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EACvF,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,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,SAAS,6CAA6C;AAEzD,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
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}).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,SAAS,6CAA6C;AAEzD,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.ZodTypeAny;
5
- declare const RenderformGetResultOutput: z.ZodTypeAny;
6
- declare const renderformGetResult: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>;
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,EAA0B,CAAA,CAAE,UAE8B;AAAA,cAC1D,yBAAA,EAA2B,CAAA,CAAE,UAWgB;AAAA,cAE7C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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.ZodTypeAny;
5
- declare const RenderformGetResultOutput: z.ZodTypeAny;
6
- declare const renderformGetResult: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>;
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,EAA0B,CAAA,CAAE,UAE8B;AAAA,cAC1D,yBAAA,EAA2B,CAAA,CAAE,UAWgB;AAAA,cAE7C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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"}
@@ -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: z.ZodTypeAny = 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.ZodTypeAny = 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}).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,OApBoD,EAAE,OAAO,EAC7D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,EACvF,CAAC,CAAC,CAAC,SAAS,0DAkBH;CACP,QAlBqD,EAAE,OAAO;EAC9D,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,SAAS,6CAOF;AACV,CAAC"}
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}).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,SAAS,6CAOF;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(),
@@ -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: z.ZodTypeAny = z.object({}).describe(\"No input parameters are required to list fonts.\");\nconst RenderformListFonts_FontSourceSchema: z.ZodTypeAny = z.enum([\"GOOGLE\", \"CUSTOM\"]).describe(\"Source of the font.\");\nconst RenderformListFonts_FontSchema: z.ZodTypeAny = 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\"),\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}).describe(\"Represents a single font available in the system.\");\nexport const RenderformListFontsOutput: z.ZodTypeAny = z.object({\n fonts: z.array(RenderformListFonts_FontSchema).describe(\"List of all fonts available in the system for the current user\"),\n}).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,2BAAyCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7H,MAAM,uCAAqDA,IAAAA,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,qBAAqB;AACtH,MAAM,iCAA+CA,IAAAA,EAAE,OAAO;CAC5D,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;CACrD,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,SAAS,mDAAmD;AAC/D,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,OAAOA,IAAAA,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,gEAAgE,EAC1H,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAE/C,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
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}).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}).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,SAAS,mDAAmD;AAC/D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,gEAAgE,EAC1H,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAE/C,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.ZodTypeAny;
5
- declare const RenderformListFontsOutput: z.ZodTypeAny;
6
- declare const renderformListFonts: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>>;
20
+ }, z.core.$strip>;
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,EAA0B,CAAA,CAAE,UAAqF;AAAA,cAajH,yBAAA,EAA2B,CAAA,CAAE,UAEM;AAAA,cAEnC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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.ZodTypeAny;
5
- declare const RenderformListFontsOutput: z.ZodTypeAny;
6
- declare const renderformListFonts: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
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.$strip>>;
20
+ }, z.core.$strip>;
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,EAA0B,CAAA,CAAE,UAAqF;AAAA,cAajH,yBAAA,EAA2B,CAAA,CAAE,UAEM;AAAA,cAEnC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
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(),
@@ -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: z.ZodTypeAny = z.object({}).describe(\"No input parameters are required to list fonts.\");\nconst RenderformListFonts_FontSourceSchema: z.ZodTypeAny = z.enum([\"GOOGLE\", \"CUSTOM\"]).describe(\"Source of the font.\");\nconst RenderformListFonts_FontSchema: z.ZodTypeAny = 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\"),\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}).describe(\"Represents a single font available in the system.\");\nexport const RenderformListFontsOutput: z.ZodTypeAny = z.object({\n fonts: z.array(RenderformListFonts_FontSchema).describe(\"List of all fonts available in the system for the current user\"),\n}).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,2BAAyC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7H,MAAM,uCAAqD,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,qBAAqB;AACtH,MAAM,iCAA+C,EAAE,OAAO;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACrD,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,SAAS,mDAAmD;AAK/D,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqD,EAAE,OAAO,EAC9D,OAAO,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,gEAAgE,EAC1H,CAAC,CAAC,CAAC,SAAS,mCAOF;AACV,CAAC"}
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}).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}).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,SAAS,mDAAmD;AAK/D,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,SAAS,mCAOF;AACV,CAAC"}
@@ -13,13 +13,13 @@ const RenderformListResultsV2_SortInfoSchema = zod.z.object({
13
13
  unsorted: zod.z.boolean().describe("Whether results are unsorted").nullable().optional()
14
14
  }).describe("Information about result sorting.");
15
15
  const RenderformListResultsV2_ResultItemSchema = zod.z.object({
16
- href: zod.z.string().describe("URL to access the generated image or PDF file"),
17
- width: zod.z.number().int().describe("Width of the generated image in pixels"),
18
- height: zod.z.number().int().describe("Height of the generated image in pixels"),
16
+ href: zod.z.string().describe("URL to access the generated image or PDF file").nullable(),
17
+ width: zod.z.number().int().describe("Width of the generated image in pixels").nullable(),
18
+ height: zod.z.number().int().describe("Height of the generated image in pixels").nullable(),
19
19
  fileName: zod.z.string().describe("File name of the generated image or PDF").nullable().optional(),
20
- createdAt: zod.z.string().describe("ISO 8601 timestamp when the result was created"),
20
+ createdAt: zod.z.string().describe("ISO 8601 timestamp when the result was created").nullable(),
21
21
  deletedAt: zod.z.string().describe("ISO 8601 timestamp when the result was deleted, if applicable").nullable().optional(),
22
- identifier: zod.z.string().describe("Unique identifier for the rendered result"),
22
+ identifier: zod.z.string().describe("Unique identifier for the rendered result").nullable(),
23
23
  templateName: zod.z.string().describe("Name of the template used to generate this result").nullable().optional(),
24
24
  templateIdentifier: zod.z.string().describe("Identifier of the template used to generate this result").nullable().optional()
25
25
  }).describe("A single rendered result entry representing a generated image or PDF.");
@@ -1 +1 @@
1
- {"version":3,"file":"list-results-v2.cjs","names":["z","action"],"sources":["../../src/actions/list-results-v2.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListResultsV2Input: z.ZodTypeAny = z.object({\n page: z.number().int().default(0).describe(\"Page number to retrieve (0-indexed). Use 0 for the first page.\").optional(),\n size: z.number().int().default(20).describe(\"Number of results per page (1-50). Maximum allowed is 50.\").optional(),\n batch: z.string().describe(\"Filter results by batch identifier. Returns only results from the specified batch render request.\").optional(),\n template: z.string().describe(\"Filter results by template identifier. Returns only results generated from the specified template.\").optional(),\n}).describe(\"Request parameters for listing rendered results with pagination support.\");\nconst RenderformListResultsV2_SortInfoSchema: z.ZodTypeAny = z.object({\n empty: z.boolean().describe(\"Whether the sort configuration is empty\").nullable().optional(),\n sorted: z.boolean().describe(\"Whether results are sorted\").nullable().optional(),\n unsorted: z.boolean().describe(\"Whether results are unsorted\").nullable().optional(),\n}).describe(\"Information about result sorting.\");\nconst RenderformListResultsV2_ResultItemSchema: z.ZodTypeAny = z.object({\n href: z.string().describe(\"URL to access the generated image or PDF file\"),\n width: z.number().int().describe(\"Width of the generated image in pixels\"),\n height: z.number().int().describe(\"Height of the generated image in pixels\"),\n fileName: z.string().describe(\"File name of the generated image or PDF\").nullable().optional(),\n createdAt: z.string().describe(\"ISO 8601 timestamp when the result was created\"),\n deletedAt: z.string().describe(\"ISO 8601 timestamp when the result was deleted, if applicable\").nullable().optional(),\n identifier: z.string().describe(\"Unique identifier for the rendered result\"),\n templateName: z.string().describe(\"Name of the template used to generate this result\").nullable().optional(),\n templateIdentifier: z.string().describe(\"Identifier of the template used to generate this result\").nullable().optional(),\n}).describe(\"A single rendered result entry representing a generated image or PDF.\");\nconst RenderformListResultsV2_PageableInfoSchema: z.ZodTypeAny = z.object({\n sort: RenderformListResultsV2_SortInfoSchema.nullable().optional(),\n paged: z.boolean().describe(\"Whether results are paged\").nullable().optional(),\n offset: z.number().int().describe(\"Offset from the beginning of the result set\").nullable().optional(),\n unpaged: z.boolean().describe(\"Whether results are unpaged\").nullable().optional(),\n pageSize: z.number().int().describe(\"Number of results per page\").nullable().optional(),\n pageNumber: z.number().int().describe(\"Current page number (0-indexed)\").nullable().optional(),\n}).describe(\"Pagination metadata for the current page.\");\nexport const RenderformListResultsV2Output: z.ZodTypeAny = z.object({\n last: z.boolean().describe(\"Whether this is the last page of results\").nullable().optional(),\n size: z.number().int().describe(\"Page size used for this request\").nullable().optional(),\n sort: RenderformListResultsV2_SortInfoSchema.nullable().optional(),\n empty: z.boolean().describe(\"Whether the result set is empty\").nullable().optional(),\n first: z.boolean().describe(\"Whether this is the first page of results\").nullable().optional(),\n number: z.number().int().describe(\"Current page number (0-indexed)\").nullable().optional(),\n content: z.array(RenderformListResultsV2_ResultItemSchema).describe(\"List of rendered result items on this page\").nullable().optional(),\n pageable: RenderformListResultsV2_PageableInfoSchema.nullable().optional(),\n totalPages: z.number().int().describe(\"Total number of pages available\").nullable().optional(),\n totalElements: z.number().int().describe(\"Total number of results across all pages\").nullable().optional(),\n numberOfElements: z.number().int().describe(\"Number of elements on the current page\").nullable().optional(),\n}).describe(\"Paginated response containing rendered images and PDFs.\");\n\nexport const renderformListResultsV2 = action(\"RENDERFORM_LIST_RESULTS_V2\", {\n slug: \"renderform-list-results-v2\",\n name: \"List Results (v2)\",\n description: \"Tool to list all rendered images and PDFs with pagination support. Use when retrieving results from the v2 API with filtering by template or batch.\",\n input: RenderformListResultsV2Input,\n output: RenderformListResultsV2Output,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"list-results-v2.cjs","names":["z","action"],"sources":["../../src/actions/list-results-v2.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RenderformListResultsV2Input = z.object({\n page: z.number().int().default(0).describe(\"Page number to retrieve (0-indexed). Use 0 for the first page.\").optional(),\n size: z.number().int().default(20).describe(\"Number of results per page (1-50). Maximum allowed is 50.\").optional(),\n batch: z.string().describe(\"Filter results by batch identifier. Returns only results from the specified batch render request.\").optional(),\n template: z.string().describe(\"Filter results by template identifier. Returns only results generated from the specified template.\").optional(),\n}).describe(\"Request parameters for listing rendered results with pagination support.\");\nconst RenderformListResultsV2_SortInfoSchema = z.object({\n empty: z.boolean().describe(\"Whether the sort configuration is empty\").nullable().optional(),\n sorted: z.boolean().describe(\"Whether results are sorted\").nullable().optional(),\n unsorted: z.boolean().describe(\"Whether results are unsorted\").nullable().optional(),\n}).describe(\"Information about result sorting.\");\nconst RenderformListResultsV2_ResultItemSchema = z.object({\n href: z.string().describe(\"URL to access the generated image or PDF file\").nullable(),\n width: z.number().int().describe(\"Width of the generated image in pixels\").nullable(),\n height: z.number().int().describe(\"Height of the generated image in pixels\").nullable(),\n fileName: z.string().describe(\"File name of the generated image or PDF\").nullable().optional(),\n createdAt: z.string().describe(\"ISO 8601 timestamp when the result was created\").nullable(),\n deletedAt: z.string().describe(\"ISO 8601 timestamp when the result was deleted, if applicable\").nullable().optional(),\n identifier: z.string().describe(\"Unique identifier for the rendered result\").nullable(),\n templateName: z.string().describe(\"Name of the template used to generate this result\").nullable().optional(),\n templateIdentifier: z.string().describe(\"Identifier of the template used to generate this result\").nullable().optional(),\n}).describe(\"A single rendered result entry representing a generated image or PDF.\");\nconst RenderformListResultsV2_PageableInfoSchema = z.object({\n sort: RenderformListResultsV2_SortInfoSchema.nullable().optional(),\n paged: z.boolean().describe(\"Whether results are paged\").nullable().optional(),\n offset: z.number().int().describe(\"Offset from the beginning of the result set\").nullable().optional(),\n unpaged: z.boolean().describe(\"Whether results are unpaged\").nullable().optional(),\n pageSize: z.number().int().describe(\"Number of results per page\").nullable().optional(),\n pageNumber: z.number().int().describe(\"Current page number (0-indexed)\").nullable().optional(),\n}).describe(\"Pagination metadata for the current page.\");\nexport const RenderformListResultsV2Output = z.object({\n last: z.boolean().describe(\"Whether this is the last page of results\").nullable().optional(),\n size: z.number().int().describe(\"Page size used for this request\").nullable().optional(),\n sort: RenderformListResultsV2_SortInfoSchema.nullable().optional(),\n empty: z.boolean().describe(\"Whether the result set is empty\").nullable().optional(),\n first: z.boolean().describe(\"Whether this is the first page of results\").nullable().optional(),\n number: z.number().int().describe(\"Current page number (0-indexed)\").nullable().optional(),\n content: z.array(RenderformListResultsV2_ResultItemSchema).describe(\"List of rendered result items on this page\").nullable().optional(),\n pageable: RenderformListResultsV2_PageableInfoSchema.nullable().optional(),\n totalPages: z.number().int().describe(\"Total number of pages available\").nullable().optional(),\n totalElements: z.number().int().describe(\"Total number of results across all pages\").nullable().optional(),\n numberOfElements: z.number().int().describe(\"Number of elements on the current page\").nullable().optional(),\n}).describe(\"Paginated response containing rendered images and PDFs.\");\n\nexport const renderformListResultsV2 = action(\"RENDERFORM_LIST_RESULTS_V2\", {\n slug: \"renderform-list-results-v2\",\n name: \"List Results (v2)\",\n description: \"Tool to list all rendered images and PDFs with pagination support. Use when retrieving results from the v2 API with filtering by template or batch.\",\n input: RenderformListResultsV2Input,\n output: RenderformListResultsV2Output,\n});\n"],"mappings":"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"}