@keystrokehq/paperform 0.1.0

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 (74) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/get-space-forms.cjs +33 -0
  7. package/dist/actions/get-space-forms.cjs.map +1 -0
  8. package/dist/actions/get-space-forms.d.cts +9 -0
  9. package/dist/actions/get-space-forms.d.cts.map +1 -0
  10. package/dist/actions/get-space-forms.d.mts +9 -0
  11. package/dist/actions/get-space-forms.d.mts.map +1 -0
  12. package/dist/actions/get-space-forms.mjs +32 -0
  13. package/dist/actions/get-space-forms.mjs.map +1 -0
  14. package/dist/actions/get-space.cjs +23 -0
  15. package/dist/actions/get-space.cjs.map +1 -0
  16. package/dist/actions/get-space.d.cts +9 -0
  17. package/dist/actions/get-space.d.cts.map +1 -0
  18. package/dist/actions/get-space.d.mts +9 -0
  19. package/dist/actions/get-space.d.mts.map +1 -0
  20. package/dist/actions/get-space.mjs +20 -0
  21. package/dist/actions/get-space.mjs.map +1 -0
  22. package/dist/actions/index.cjs +11 -0
  23. package/dist/actions/index.d.cts +6 -0
  24. package/dist/actions/index.d.mts +6 -0
  25. package/dist/actions/index.mjs +6 -0
  26. package/dist/actions/list-forms.cjs +36 -0
  27. package/dist/actions/list-forms.cjs.map +1 -0
  28. package/dist/actions/list-forms.d.cts +9 -0
  29. package/dist/actions/list-forms.d.cts.map +1 -0
  30. package/dist/actions/list-forms.d.mts +9 -0
  31. package/dist/actions/list-forms.d.mts.map +1 -0
  32. package/dist/actions/list-forms.mjs +35 -0
  33. package/dist/actions/list-forms.mjs.map +1 -0
  34. package/dist/actions/list-spaces.cjs +36 -0
  35. package/dist/actions/list-spaces.cjs.map +1 -0
  36. package/dist/actions/list-spaces.d.cts +9 -0
  37. package/dist/actions/list-spaces.d.cts.map +1 -0
  38. package/dist/actions/list-spaces.d.mts +9 -0
  39. package/dist/actions/list-spaces.d.mts.map +1 -0
  40. package/dist/actions/list-spaces.mjs +35 -0
  41. package/dist/actions/list-spaces.mjs.map +1 -0
  42. package/dist/actions/list-translations.cjs +27 -0
  43. package/dist/actions/list-translations.cjs.map +1 -0
  44. package/dist/actions/list-translations.d.cts +9 -0
  45. package/dist/actions/list-translations.d.cts.map +1 -0
  46. package/dist/actions/list-translations.d.mts +9 -0
  47. package/dist/actions/list-translations.d.mts.map +1 -0
  48. package/dist/actions/list-translations.mjs +26 -0
  49. package/dist/actions/list-translations.mjs.map +1 -0
  50. package/dist/app.cjs +9 -0
  51. package/dist/app.cjs.map +1 -0
  52. package/dist/app.d.cts +5 -0
  53. package/dist/app.d.cts.map +1 -0
  54. package/dist/app.d.mts +5 -0
  55. package/dist/app.d.mts.map +1 -0
  56. package/dist/app.mjs +10 -0
  57. package/dist/app.mjs.map +1 -0
  58. package/dist/catalog.cjs +15 -0
  59. package/dist/catalog.cjs.map +1 -0
  60. package/dist/catalog.d.cts +14 -0
  61. package/dist/catalog.d.cts.map +1 -0
  62. package/dist/catalog.d.mts +14 -0
  63. package/dist/catalog.d.mts.map +1 -0
  64. package/dist/catalog.mjs +15 -0
  65. package/dist/catalog.mjs.map +1 -0
  66. package/dist/execute.cjs +18 -0
  67. package/dist/execute.cjs.map +1 -0
  68. package/dist/execute.mjs +18 -0
  69. package/dist/execute.mjs.map +1 -0
  70. package/dist/index.cjs +16 -0
  71. package/dist/index.d.cts +8 -0
  72. package/dist/index.d.mts +8 -0
  73. package/dist/index.mjs +9 -0
  74. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/paperform
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `paperform`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 5
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { paperformGetSpace } from "@keystrokehq/paperform/actions";
12
+
13
+ export default defineAgent({
14
+ key: "paperform-agent",
15
+ tools: [paperformGetSpace],
16
+ });
17
+ ```
@@ -0,0 +1,21 @@
1
+ const require_app = require("./app.cjs");
2
+ const require_execute = require("./execute.cjs");
3
+ require("zod");
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return require_app.paperform.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await require_execute.executePaperformTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ exports.action = action;
20
+
21
+ //# sourceMappingURL=action.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.cjs","names":["paperform","executePaperformTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { paperform } from \"./app\";\nimport { executePaperformTool } 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 paperform.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 executePaperformTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,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,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ import { paperform } from "./app.mjs";
2
+ import { executePaperformTool } from "./execute.mjs";
3
+ import "zod";
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return paperform.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await executePaperformTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ export { action };
20
+
21
+ //# sourceMappingURL=action.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { paperform } from \"./app\";\nimport { executePaperformTool } 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 paperform.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 executePaperformTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -0,0 +1,33 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-space-forms.ts
4
+ const PaperformGetSpaceFormsInput = zod.z.object({ id: zod.z.string().describe("The unique identifier of the space to retrieve forms from.") }).describe("Request model for getting forms in a space.");
5
+ const PaperformGetSpaceForms_FormObjectSchema = zod.z.object({
6
+ id: zod.z.string().describe("The unique identifier of the form").nullable().optional(),
7
+ name: zod.z.string().describe("The name of the form").nullable().optional(),
8
+ slug: zod.z.string().describe("The URL slug of the form").nullable().optional(),
9
+ status: zod.z.string().describe("The status of the form").nullable().optional(),
10
+ space_id: zod.z.string().describe("The unique identifier of the space containing this form").nullable().optional(),
11
+ created_at: zod.z.string().describe("Timestamp of when the form was created").nullable().optional(),
12
+ updated_at: zod.z.string().describe("Timestamp of the last update").nullable().optional()
13
+ }).describe("Represents a form object within a space.");
14
+ const PaperformGetSpaceForms_FormsResultsSchema = zod.z.object({ forms: zod.z.array(PaperformGetSpaceForms_FormObjectSchema).describe("List of form objects").nullable().optional() }).describe("Results container for forms list.");
15
+ const PaperformGetSpaceFormsOutput = zod.z.object({
16
+ skip: zod.z.number().int().describe("The number of results to skip").nullable().optional(),
17
+ limit: zod.z.number().int().describe("The limit of results per page").nullable().optional(),
18
+ total: zod.z.number().int().describe("Total number of forms").nullable().optional(),
19
+ status: zod.z.string().describe("The status of the request").nullable().optional(),
20
+ results: PaperformGetSpaceForms_FormsResultsSchema.nullable(),
21
+ has_more: zod.z.boolean().describe("Whether there are more results").nullable().optional()
22
+ }).describe("Response model for getting forms in a space.");
23
+ const paperformGetSpaceForms = require_action.action("PAPERFORM_GET_SPACE_FORMS", {
24
+ slug: "paperform-get-space-forms",
25
+ name: "Get Space Forms",
26
+ description: "Tool to retrieve forms in a space from Paperform. Use when you need to list all forms accessible by the authorized user within a specific space. This is a Business API only feature.",
27
+ input: PaperformGetSpaceFormsInput,
28
+ output: PaperformGetSpaceFormsOutput
29
+ });
30
+ //#endregion
31
+ exports.paperformGetSpaceForms = paperformGetSpaceForms;
32
+
33
+ //# sourceMappingURL=get-space-forms.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space-forms.cjs","names":["z","action"],"sources":["../../src/actions/get-space-forms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformGetSpaceFormsInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the space to retrieve forms from.\"),\n}).describe(\"Request model for getting forms in a space.\");\nconst PaperformGetSpaceForms_FormObjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the form\").nullable().optional(),\n name: z.string().describe(\"The name of the form\").nullable().optional(),\n slug: z.string().describe(\"The URL slug of the form\").nullable().optional(),\n status: z.string().describe(\"The status of the form\").nullable().optional(),\n space_id: z.string().describe(\"The unique identifier of the space containing this form\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the form was created\").nullable().optional(),\n updated_at: z.string().describe(\"Timestamp of the last update\").nullable().optional(),\n}).describe(\"Represents a form object within a space.\");\nconst PaperformGetSpaceForms_FormsResultsSchema: z.ZodTypeAny = z.object({\n forms: z.array(PaperformGetSpaceForms_FormObjectSchema).describe(\"List of form objects\").nullable().optional(),\n}).describe(\"Results container for forms list.\");\nexport const PaperformGetSpaceFormsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"The number of results to skip\").nullable().optional(),\n limit: z.number().int().describe(\"The limit of results per page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of forms\").nullable().optional(),\n status: z.string().describe(\"The status of the request\").nullable().optional(),\n results: PaperformGetSpaceForms_FormsResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more results\").nullable().optional(),\n}).describe(\"Response model for getting forms in a space.\");\n\nexport const paperformGetSpaceForms = action(\"PAPERFORM_GET_SPACE_FORMS\", {\n slug: \"paperform-get-space-forms\",\n name: \"Get Space Forms\",\n description: \"Tool to retrieve forms in a space from Paperform. Use when you need to list all forms accessible by the authorized user within a specific space. This is a Business API only feature.\",\n input: PaperformGetSpaceFormsInput,\n output: PaperformGetSpaceFormsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,EACtF,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,0CAAwDA,IAAAA,EAAE,OAAO;CACrE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAM,4CAA0DA,IAAAA,EAAE,OAAO,EACvE,OAAOA,IAAAA,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC/G,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAa,+BAA6CA,IAAAA,EAAE,OAAO;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,SAAS,0CAA0C,SAAS;CAC5D,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-space-forms.d.ts
4
+ declare const PaperformGetSpaceFormsInput: z.ZodTypeAny;
5
+ declare const PaperformGetSpaceFormsOutput: z.ZodTypeAny;
6
+ declare const paperformGetSpaceForms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformGetSpaceForms };
9
+ //# sourceMappingURL=get-space-forms.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space-forms.d.cts","names":[],"sources":["../../src/actions/get-space-forms.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAEc;AAAA,cAa7C,4BAAA,EAA8B,CAAA,CAAE,UAOc;AAAA,cAE9C,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-space-forms.d.ts
4
+ declare const PaperformGetSpaceFormsInput: z.ZodTypeAny;
5
+ declare const PaperformGetSpaceFormsOutput: z.ZodTypeAny;
6
+ declare const paperformGetSpaceForms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformGetSpaceForms };
9
+ //# sourceMappingURL=get-space-forms.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space-forms.d.mts","names":[],"sources":["../../src/actions/get-space-forms.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAEc;AAAA,cAa7C,4BAAA,EAA8B,CAAA,CAAE,UAOc;AAAA,cAE9C,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,32 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-space-forms.ts
4
+ const PaperformGetSpaceFormsInput = z.object({ id: z.string().describe("The unique identifier of the space to retrieve forms from.") }).describe("Request model for getting forms in a space.");
5
+ const PaperformGetSpaceForms_FormObjectSchema = z.object({
6
+ id: z.string().describe("The unique identifier of the form").nullable().optional(),
7
+ name: z.string().describe("The name of the form").nullable().optional(),
8
+ slug: z.string().describe("The URL slug of the form").nullable().optional(),
9
+ status: z.string().describe("The status of the form").nullable().optional(),
10
+ space_id: z.string().describe("The unique identifier of the space containing this form").nullable().optional(),
11
+ created_at: z.string().describe("Timestamp of when the form was created").nullable().optional(),
12
+ updated_at: z.string().describe("Timestamp of the last update").nullable().optional()
13
+ }).describe("Represents a form object within a space.");
14
+ const PaperformGetSpaceForms_FormsResultsSchema = z.object({ forms: z.array(PaperformGetSpaceForms_FormObjectSchema).describe("List of form objects").nullable().optional() }).describe("Results container for forms list.");
15
+ const paperformGetSpaceForms = action("PAPERFORM_GET_SPACE_FORMS", {
16
+ slug: "paperform-get-space-forms",
17
+ name: "Get Space Forms",
18
+ description: "Tool to retrieve forms in a space from Paperform. Use when you need to list all forms accessible by the authorized user within a specific space. This is a Business API only feature.",
19
+ input: PaperformGetSpaceFormsInput,
20
+ output: z.object({
21
+ skip: z.number().int().describe("The number of results to skip").nullable().optional(),
22
+ limit: z.number().int().describe("The limit of results per page").nullable().optional(),
23
+ total: z.number().int().describe("Total number of forms").nullable().optional(),
24
+ status: z.string().describe("The status of the request").nullable().optional(),
25
+ results: PaperformGetSpaceForms_FormsResultsSchema.nullable(),
26
+ has_more: z.boolean().describe("Whether there are more results").nullable().optional()
27
+ }).describe("Response model for getting forms in a space.")
28
+ });
29
+ //#endregion
30
+ export { paperformGetSpaceForms };
31
+
32
+ //# sourceMappingURL=get-space-forms.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space-forms.mjs","names":[],"sources":["../../src/actions/get-space-forms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformGetSpaceFormsInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the space to retrieve forms from.\"),\n}).describe(\"Request model for getting forms in a space.\");\nconst PaperformGetSpaceForms_FormObjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the form\").nullable().optional(),\n name: z.string().describe(\"The name of the form\").nullable().optional(),\n slug: z.string().describe(\"The URL slug of the form\").nullable().optional(),\n status: z.string().describe(\"The status of the form\").nullable().optional(),\n space_id: z.string().describe(\"The unique identifier of the space containing this form\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the form was created\").nullable().optional(),\n updated_at: z.string().describe(\"Timestamp of the last update\").nullable().optional(),\n}).describe(\"Represents a form object within a space.\");\nconst PaperformGetSpaceForms_FormsResultsSchema: z.ZodTypeAny = z.object({\n forms: z.array(PaperformGetSpaceForms_FormObjectSchema).describe(\"List of form objects\").nullable().optional(),\n}).describe(\"Results container for forms list.\");\nexport const PaperformGetSpaceFormsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"The number of results to skip\").nullable().optional(),\n limit: z.number().int().describe(\"The limit of results per page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of forms\").nullable().optional(),\n status: z.string().describe(\"The status of the request\").nullable().optional(),\n results: PaperformGetSpaceForms_FormsResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more results\").nullable().optional(),\n}).describe(\"Response model for getting forms in a space.\");\n\nexport const paperformGetSpaceForms = action(\"PAPERFORM_GET_SPACE_FORMS\", {\n slug: \"paperform-get-space-forms\",\n name: \"Get Space Forms\",\n description: \"Tool to retrieve forms in a space from Paperform. Use when you need to list all forms accessible by the authorized user within a specific space. This is a Business API only feature.\",\n input: PaperformGetSpaceFormsInput,\n output: PaperformGetSpaceFormsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4C,EAAE,OAAO,EAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,EACtF,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,0CAAwD,EAAE,OAAO;CACrE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAM,4CAA0D,EAAE,OAAO,EACvE,OAAO,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC/G,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAU/C,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAdwD,EAAE,OAAO;EACjE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7E,SAAS,0CAA0C,SAAS;EAC5D,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
@@ -0,0 +1,23 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-space.ts
4
+ const PaperformGetSpaceInput = zod.z.object({ id: zod.z.string().describe("The unique identifier of the space to retrieve.") }).describe("Request model for getting a space by ID.");
5
+ const PaperformGetSpaceOutput = zod.z.object({
6
+ id: zod.z.union([zod.z.string(), zod.z.number().int()]),
7
+ name: zod.z.string().describe("The name of the space"),
8
+ owner_id: zod.z.string().describe("The unique identifier of the space owner").nullable().optional(),
9
+ created_at: zod.z.string().describe("Timestamp of when the space was created"),
10
+ updated_at: zod.z.string().describe("Timestamp of the last update"),
11
+ description: zod.z.string().describe("Description of the space").nullable().optional()
12
+ }).describe("Response model for getting a space by ID.");
13
+ const paperformGetSpace = require_action.action("PAPERFORM_GET_SPACE", {
14
+ slug: "paperform-get-space",
15
+ name: "Get Space",
16
+ description: "Tool to retrieve a space by ID from Paperform. Use when you need to get detailed information about a specific space.",
17
+ input: PaperformGetSpaceInput,
18
+ output: PaperformGetSpaceOutput
19
+ });
20
+ //#endregion
21
+ exports.paperformGetSpace = paperformGetSpace;
22
+
23
+ //# sourceMappingURL=get-space.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space.cjs","names":["z","action"],"sources":["../../src/actions/get-space.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformGetSpaceInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the space to retrieve.\"),\n}).describe(\"Request model for getting a space by ID.\");\nexport const PaperformGetSpaceOutput: z.ZodTypeAny = z.object({\n id: z.union([z.string(), z.number().int()]),\n name: z.string().describe(\"The name of the space\"),\n owner_id: z.string().describe(\"The unique identifier of the space owner\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the space was created\"),\n updated_at: z.string().describe(\"Timestamp of the last update\"),\n description: z.string().describe(\"Description of the space\").nullable().optional(),\n}).describe(\"Response model for getting a space by ID.\");\n\nexport const paperformGetSpace = action(\"PAPERFORM_GET_SPACE\", {\n slug: \"paperform-get-space\",\n name: \"Get Space\",\n description: \"Tool to retrieve a space by ID from Paperform. Use when you need to get detailed information about a specific space.\",\n input: PaperformGetSpaceInput,\n output: PaperformGetSpaceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAuCA,IAAAA,EAAE,OAAO,EAC3D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC3E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,0BAAwCA,IAAAA,EAAE,OAAO;CAC5D,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC;CAC1C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACzE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC9D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAEvD,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-space.d.ts
4
+ declare const PaperformGetSpaceInput: z.ZodTypeAny;
5
+ declare const PaperformGetSpaceOutput: z.ZodTypeAny;
6
+ declare const paperformGetSpace: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformGetSpace };
9
+ //# sourceMappingURL=get-space.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space.d.cts","names":[],"sources":["../../src/actions/get-space.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAEgB;AAAA,cAC1C,uBAAA,EAAyB,CAAA,CAAE,UAOgB;AAAA,cAE3C,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-space.d.ts
4
+ declare const PaperformGetSpaceInput: z.ZodTypeAny;
5
+ declare const PaperformGetSpaceOutput: z.ZodTypeAny;
6
+ declare const paperformGetSpace: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformGetSpace };
9
+ //# sourceMappingURL=get-space.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space.d.mts","names":[],"sources":["../../src/actions/get-space.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAEgB;AAAA,cAC1C,uBAAA,EAAyB,CAAA,CAAE,UAOgB;AAAA,cAE3C,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,20 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const paperformGetSpace = action("PAPERFORM_GET_SPACE", {
4
+ slug: "paperform-get-space",
5
+ name: "Get Space",
6
+ description: "Tool to retrieve a space by ID from Paperform. Use when you need to get detailed information about a specific space.",
7
+ input: z.object({ id: z.string().describe("The unique identifier of the space to retrieve.") }).describe("Request model for getting a space by ID."),
8
+ output: z.object({
9
+ id: z.union([z.string(), z.number().int()]),
10
+ name: z.string().describe("The name of the space"),
11
+ owner_id: z.string().describe("The unique identifier of the space owner").nullable().optional(),
12
+ created_at: z.string().describe("Timestamp of when the space was created"),
13
+ updated_at: z.string().describe("Timestamp of the last update"),
14
+ description: z.string().describe("Description of the space").nullable().optional()
15
+ }).describe("Response model for getting a space by ID.")
16
+ });
17
+ //#endregion
18
+ export { paperformGetSpace };
19
+
20
+ //# sourceMappingURL=get-space.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-space.mjs","names":[],"sources":["../../src/actions/get-space.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformGetSpaceInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the space to retrieve.\"),\n}).describe(\"Request model for getting a space by ID.\");\nexport const PaperformGetSpaceOutput: z.ZodTypeAny = z.object({\n id: z.union([z.string(), z.number().int()]),\n name: z.string().describe(\"The name of the space\"),\n owner_id: z.string().describe(\"The unique identifier of the space owner\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the space was created\"),\n updated_at: z.string().describe(\"Timestamp of the last update\"),\n description: z.string().describe(\"Description of the space\").nullable().optional(),\n}).describe(\"Response model for getting a space by ID.\");\n\nexport const paperformGetSpace = action(\"PAPERFORM_GET_SPACE\", {\n slug: \"paperform-get-space\",\n name: \"Get Space\",\n description: \"Tool to retrieve a space by ID from Paperform. Use when you need to get detailed information about a specific space.\",\n input: PaperformGetSpaceInput,\n output: PaperformGetSpaceOutput,\n});\n"],"mappings":";;AAgBA,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBkD,EAAE,OAAO,EAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,EAC3E,CAAC,CAAC,CAAC,SAAS,0CAcH;CACP,QAdmD,EAAE,OAAO;EAC5D,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC;EAC1C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;EACjD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;EACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;EAC9D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,CAAC,CAAC,CAAC,SAAS,2CAOF;AACV,CAAC"}
@@ -0,0 +1,11 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_get_space = require("./get-space.cjs");
3
+ const require_get_space_forms = require("./get-space-forms.cjs");
4
+ const require_list_forms = require("./list-forms.cjs");
5
+ const require_list_spaces = require("./list-spaces.cjs");
6
+ const require_list_translations = require("./list-translations.cjs");
7
+ exports.paperformGetSpace = require_get_space.paperformGetSpace;
8
+ exports.paperformGetSpaceForms = require_get_space_forms.paperformGetSpaceForms;
9
+ exports.paperformListForms = require_list_forms.paperformListForms;
10
+ exports.paperformListSpaces = require_list_spaces.paperformListSpaces;
11
+ exports.paperformListTranslations = require_list_translations.paperformListTranslations;
@@ -0,0 +1,6 @@
1
+ import { paperformGetSpace } from "./get-space.cjs";
2
+ import { paperformGetSpaceForms } from "./get-space-forms.cjs";
3
+ import { paperformListForms } from "./list-forms.cjs";
4
+ import { paperformListSpaces } from "./list-spaces.cjs";
5
+ import { paperformListTranslations } from "./list-translations.cjs";
6
+ export { paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
@@ -0,0 +1,6 @@
1
+ import { paperformGetSpace } from "./get-space.mjs";
2
+ import { paperformGetSpaceForms } from "./get-space-forms.mjs";
3
+ import { paperformListForms } from "./list-forms.mjs";
4
+ import { paperformListSpaces } from "./list-spaces.mjs";
5
+ import { paperformListTranslations } from "./list-translations.mjs";
6
+ export { paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
@@ -0,0 +1,6 @@
1
+ import { paperformGetSpace } from "./get-space.mjs";
2
+ import { paperformGetSpaceForms } from "./get-space-forms.mjs";
3
+ import { paperformListForms } from "./list-forms.mjs";
4
+ import { paperformListSpaces } from "./list-spaces.mjs";
5
+ import { paperformListTranslations } from "./list-translations.mjs";
6
+ export { paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
@@ -0,0 +1,36 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-forms.ts
4
+ const PaperformListFormsInput = zod.z.object({
5
+ skip: zod.z.number().int().describe("Number of forms to skip for pagination (default: 0)").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of forms to return per request (default: 20)").optional()
7
+ }).describe("Request model for listing forms. All parameters are optional.");
8
+ const PaperformListForms_FormSchema = zod.z.object({
9
+ id: zod.z.string().describe("The unique identifier of the form").nullable().optional(),
10
+ slug: zod.z.string().describe("The URL slug of the form (subdomain portion, e.g., 'newsletter' from newsletter.paperform.co). Note that custom slugs can change.").nullable().optional(),
11
+ title: zod.z.string().describe("The title/name of the form").nullable().optional(),
12
+ status: zod.z.string().describe("The status of the form").nullable().optional(),
13
+ space_id: zod.z.string().describe("The unique identifier of the space containing this form").nullable().optional(),
14
+ created_at: zod.z.string().describe("Timestamp of when the form was created").nullable().optional(),
15
+ updated_at: zod.z.string().describe("Timestamp of the last update").nullable().optional()
16
+ }).describe("Model representing a single form.");
17
+ const PaperformListForms_FormsResultsSchema = zod.z.object({ forms: zod.z.array(PaperformListForms_FormSchema).describe("List of form objects accessible to the authorized user").nullable().optional() }).describe("Model containing the forms list.");
18
+ const PaperformListFormsOutput = zod.z.object({
19
+ skip: zod.z.number().int().describe("Number of forms skipped").nullable().optional(),
20
+ limit: zod.z.number().int().describe("Limit of forms returned per request").nullable().optional(),
21
+ total: zod.z.number().int().describe("Total number of forms").nullable().optional(),
22
+ status: zod.z.string().describe("Status of the API response").nullable().optional(),
23
+ results: PaperformListForms_FormsResultsSchema.nullable(),
24
+ has_more: zod.z.boolean().describe("Whether there are more forms available").nullable().optional()
25
+ }).describe("Response model for listing forms.");
26
+ const paperformListForms = require_action.action("PAPERFORM_LIST_FORMS", {
27
+ slug: "paperform-list-forms",
28
+ name: "List Forms",
29
+ description: "Tool to list all forms accessible by the authorized user. Use when you need to retrieve available forms from Paperform.",
30
+ input: PaperformListFormsInput,
31
+ output: PaperformListFormsOutput
32
+ });
33
+ //#endregion
34
+ exports.paperformListForms = paperformListForms;
35
+
36
+ //# sourceMappingURL=list-forms.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-forms.cjs","names":["z","action"],"sources":["../../src/actions/list-forms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListFormsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of forms to skip for pagination (default: 0)\").optional(),\n limit: z.number().int().describe(\"Maximum number of forms to return per request (default: 20)\").optional(),\n}).describe(\"Request model for listing forms. All parameters are optional.\");\nconst PaperformListForms_FormSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the form\").nullable().optional(),\n slug: z.string().describe(\"The URL slug of the form (subdomain portion, e.g., 'newsletter' from newsletter.paperform.co). Note that custom slugs can change.\").nullable().optional(),\n title: z.string().describe(\"The title/name of the form\").nullable().optional(),\n status: z.string().describe(\"The status of the form\").nullable().optional(),\n space_id: z.string().describe(\"The unique identifier of the space containing this form\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the form was created\").nullable().optional(),\n updated_at: z.string().describe(\"Timestamp of the last update\").nullable().optional(),\n}).describe(\"Model representing a single form.\");\nconst PaperformListForms_FormsResultsSchema: z.ZodTypeAny = z.object({\n forms: z.array(PaperformListForms_FormSchema).describe(\"List of form objects accessible to the authorized user\").nullable().optional(),\n}).describe(\"Model containing the forms list.\");\nexport const PaperformListFormsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of forms skipped\").nullable().optional(),\n limit: z.number().int().describe(\"Limit of forms returned per request\").nullable().optional(),\n total: z.number().int().describe(\"Total number of forms\").nullable().optional(),\n status: z.string().describe(\"Status of the API response\").nullable().optional(),\n results: PaperformListForms_FormsResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more forms available\").nullable().optional(),\n}).describe(\"Response model for listing forms.\");\n\nexport const paperformListForms = action(\"PAPERFORM_LIST_FORMS\", {\n slug: \"paperform-list-forms\",\n name: \"List Forms\",\n description: \"Tool to list all forms accessible by the authorized user. Use when you need to retrieve available forms from Paperform.\",\n input: PaperformListFormsInput,\n output: PaperformListFormsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwCA,IAAAA,EAAE,OAAO;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAChG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,gCAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnL,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAM,wCAAsDA,IAAAA,EAAE,OAAO,EACnE,OAAOA,IAAAA,EAAE,MAAM,6BAA6B,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACvI,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC9C,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,SAAS,sCAAsC,SAAS;CACxD,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAE/C,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-forms.d.ts
4
+ declare const PaperformListFormsInput: z.ZodTypeAny;
5
+ declare const PaperformListFormsOutput: z.ZodTypeAny;
6
+ declare const paperformListForms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListForms };
9
+ //# sourceMappingURL=list-forms.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-forms.d.cts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGoC;AAAA,cAa/D,wBAAA,EAA0B,CAAA,CAAE,UAOO;AAAA,cAEnC,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-forms.d.ts
4
+ declare const PaperformListFormsInput: z.ZodTypeAny;
5
+ declare const PaperformListFormsOutput: z.ZodTypeAny;
6
+ declare const paperformListForms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListForms };
9
+ //# sourceMappingURL=list-forms.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-forms.d.mts","names":[],"sources":["../../src/actions/list-forms.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGoC;AAAA,cAa/D,wBAAA,EAA0B,CAAA,CAAE,UAOO;AAAA,cAEnC,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,35 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-forms.ts
4
+ const PaperformListFormsInput = z.object({
5
+ skip: z.number().int().describe("Number of forms to skip for pagination (default: 0)").optional(),
6
+ limit: z.number().int().describe("Maximum number of forms to return per request (default: 20)").optional()
7
+ }).describe("Request model for listing forms. All parameters are optional.");
8
+ const PaperformListForms_FormSchema = z.object({
9
+ id: z.string().describe("The unique identifier of the form").nullable().optional(),
10
+ slug: z.string().describe("The URL slug of the form (subdomain portion, e.g., 'newsletter' from newsletter.paperform.co). Note that custom slugs can change.").nullable().optional(),
11
+ title: z.string().describe("The title/name of the form").nullable().optional(),
12
+ status: z.string().describe("The status of the form").nullable().optional(),
13
+ space_id: z.string().describe("The unique identifier of the space containing this form").nullable().optional(),
14
+ created_at: z.string().describe("Timestamp of when the form was created").nullable().optional(),
15
+ updated_at: z.string().describe("Timestamp of the last update").nullable().optional()
16
+ }).describe("Model representing a single form.");
17
+ const PaperformListForms_FormsResultsSchema = z.object({ forms: z.array(PaperformListForms_FormSchema).describe("List of form objects accessible to the authorized user").nullable().optional() }).describe("Model containing the forms list.");
18
+ const paperformListForms = action("PAPERFORM_LIST_FORMS", {
19
+ slug: "paperform-list-forms",
20
+ name: "List Forms",
21
+ description: "Tool to list all forms accessible by the authorized user. Use when you need to retrieve available forms from Paperform.",
22
+ input: PaperformListFormsInput,
23
+ output: z.object({
24
+ skip: z.number().int().describe("Number of forms skipped").nullable().optional(),
25
+ limit: z.number().int().describe("Limit of forms returned per request").nullable().optional(),
26
+ total: z.number().int().describe("Total number of forms").nullable().optional(),
27
+ status: z.string().describe("Status of the API response").nullable().optional(),
28
+ results: PaperformListForms_FormsResultsSchema.nullable(),
29
+ has_more: z.boolean().describe("Whether there are more forms available").nullable().optional()
30
+ }).describe("Response model for listing forms.")
31
+ });
32
+ //#endregion
33
+ export { paperformListForms };
34
+
35
+ //# sourceMappingURL=list-forms.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-forms.mjs","names":[],"sources":["../../src/actions/list-forms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListFormsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of forms to skip for pagination (default: 0)\").optional(),\n limit: z.number().int().describe(\"Maximum number of forms to return per request (default: 20)\").optional(),\n}).describe(\"Request model for listing forms. All parameters are optional.\");\nconst PaperformListForms_FormSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique identifier of the form\").nullable().optional(),\n slug: z.string().describe(\"The URL slug of the form (subdomain portion, e.g., 'newsletter' from newsletter.paperform.co). Note that custom slugs can change.\").nullable().optional(),\n title: z.string().describe(\"The title/name of the form\").nullable().optional(),\n status: z.string().describe(\"The status of the form\").nullable().optional(),\n space_id: z.string().describe(\"The unique identifier of the space containing this form\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of when the form was created\").nullable().optional(),\n updated_at: z.string().describe(\"Timestamp of the last update\").nullable().optional(),\n}).describe(\"Model representing a single form.\");\nconst PaperformListForms_FormsResultsSchema: z.ZodTypeAny = z.object({\n forms: z.array(PaperformListForms_FormSchema).describe(\"List of form objects accessible to the authorized user\").nullable().optional(),\n}).describe(\"Model containing the forms list.\");\nexport const PaperformListFormsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of forms skipped\").nullable().optional(),\n limit: z.number().int().describe(\"Limit of forms returned per request\").nullable().optional(),\n total: z.number().int().describe(\"Total number of forms\").nullable().optional(),\n status: z.string().describe(\"Status of the API response\").nullable().optional(),\n results: PaperformListForms_FormsResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more forms available\").nullable().optional(),\n}).describe(\"Response model for listing forms.\");\n\nexport const paperformListForms = action(\"PAPERFORM_LIST_FORMS\", {\n slug: \"paperform-list-forms\",\n name: \"List Forms\",\n description: \"Tool to list all forms accessible by the authorized user. Use when you need to retrieve available forms from Paperform.\",\n input: PaperformListFormsInput,\n output: PaperformListFormsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwC,EAAE,OAAO;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAChG,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,gCAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnL,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAM,wCAAsD,EAAE,OAAO,EACnE,OAAO,EAAE,MAAM,6BAA6B,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACvI,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAU9C,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAdoD,EAAE,OAAO;EAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/E,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9E,SAAS,sCAAsC,SAAS;EACxD,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,SAAS,mCAOF;AACV,CAAC"}
@@ -0,0 +1,36 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-spaces.ts
4
+ const PaperformListSpacesInput = zod.z.object({
5
+ skip: zod.z.number().int().describe("Number of results to skip. Default: 0.").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of results to return. Default: 20, max: 100.").optional()
7
+ }).describe("Request model for listing spaces.");
8
+ const PaperformListSpaces_SpaceSchema = zod.z.object({
9
+ id: zod.z.number().int().describe("The unique identifier of the space"),
10
+ name: zod.z.string().describe("The name of the space"),
11
+ created_at: zod.z.string().describe("Timestamp of when the space was created"),
12
+ updated_at: zod.z.string().describe("Timestamp of the last update"),
13
+ created_at_utc: zod.z.string().describe("UTC timestamp of when the space was created").nullable().optional(),
14
+ updated_at_utc: zod.z.string().describe("UTC timestamp of the last update").nullable().optional(),
15
+ account_timezone: zod.z.string().describe("The timezone of the account").nullable().optional()
16
+ }).describe("Model representing a single space.");
17
+ const PaperformListSpaces_SpacesResultsSchema = zod.z.object({ spaces: zod.z.array(PaperformListSpaces_SpaceSchema).describe("List of space objects") }).describe("Nested model for spaces results.");
18
+ const PaperformListSpacesOutput = zod.z.object({
19
+ skip: zod.z.number().int().describe("Number of spaces skipped"),
20
+ limit: zod.z.number().int().describe("The limit of spaces returned"),
21
+ total: zod.z.number().int().describe("Total number of spaces"),
22
+ status: zod.z.string().describe("The status of the request"),
23
+ results: PaperformListSpaces_SpacesResultsSchema.nullable(),
24
+ has_more: zod.z.boolean().describe("Whether there are more spaces to fetch")
25
+ }).describe("Response model for listing spaces.");
26
+ const paperformListSpaces = require_action.action("PAPERFORM_LIST_SPACES", {
27
+ slug: "paperform-list-spaces",
28
+ name: "List Spaces",
29
+ description: "Tool to list all spaces accessible by the authorized user. Use when you need to retrieve available spaces from Paperform.",
30
+ input: PaperformListSpacesInput,
31
+ output: PaperformListSpacesOutput
32
+ });
33
+ //#endregion
34
+ exports.paperformListSpaces = paperformListSpaces;
35
+
36
+ //# sourceMappingURL=list-spaces.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-spaces.cjs","names":["z","action"],"sources":["../../src/actions/list-spaces.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListSpacesInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of results to skip. Default: 0.\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to return. Default: 20, max: 100.\").optional(),\n}).describe(\"Request model for listing spaces.\");\nconst PaperformListSpaces_SpaceSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"The unique identifier of the space\"),\n name: z.string().describe(\"The name of the space\"),\n created_at: z.string().describe(\"Timestamp of when the space was created\"),\n updated_at: z.string().describe(\"Timestamp of the last update\"),\n created_at_utc: z.string().describe(\"UTC timestamp of when the space was created\").nullable().optional(),\n updated_at_utc: z.string().describe(\"UTC timestamp of the last update\").nullable().optional(),\n account_timezone: z.string().describe(\"The timezone of the account\").nullable().optional(),\n}).describe(\"Model representing a single space.\");\nconst PaperformListSpaces_SpacesResultsSchema: z.ZodTypeAny = z.object({\n spaces: z.array(PaperformListSpaces_SpaceSchema).describe(\"List of space objects\"),\n}).describe(\"Nested model for spaces results.\");\nexport const PaperformListSpacesOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of spaces skipped\"),\n limit: z.number().int().describe(\"The limit of spaces returned\"),\n total: z.number().int().describe(\"Total number of spaces\"),\n status: z.string().describe(\"The status of the request\"),\n results: PaperformListSpaces_SpacesResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more spaces to fetch\"),\n}).describe(\"Response model for listing spaces.\");\n\nexport const paperformListSpaces = action(\"PAPERFORM_LIST_SPACES\", {\n slug: \"paperform-list-spaces\",\n name: \"List Spaces\",\n description: \"Tool to list all spaces accessible by the authorized user. Use when you need to retrieve available spaces from Paperform.\",\n input: PaperformListSpacesInput,\n output: PaperformListSpacesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACnF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAM,kCAAgDA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACzE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC9D,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,0CAAwDA,IAAAA,EAAE,OAAO,EACrE,QAAQA,IAAAA,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,uBAAuB,EACnF,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC9C,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CAC1D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB;CACzD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACvD,SAAS,wCAAwC,SAAS;CAC1D,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;AACzE,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAEhD,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-spaces.d.ts
4
+ declare const PaperformListSpacesInput: z.ZodTypeAny;
5
+ declare const PaperformListSpacesOutput: z.ZodTypeAny;
6
+ declare const paperformListSpaces: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListSpaces };
9
+ //# sourceMappingURL=list-spaces.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-spaces.d.cts","names":[],"sources":["../../src/actions/list-spaces.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAGO;AAAA,cAanC,yBAAA,EAA2B,CAAA,CAAE,UAOO;AAAA,cAEpC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-spaces.d.ts
4
+ declare const PaperformListSpacesInput: z.ZodTypeAny;
5
+ declare const PaperformListSpacesOutput: z.ZodTypeAny;
6
+ declare const paperformListSpaces: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListSpaces };
9
+ //# sourceMappingURL=list-spaces.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-spaces.d.mts","names":[],"sources":["../../src/actions/list-spaces.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAGO;AAAA,cAanC,yBAAA,EAA2B,CAAA,CAAE,UAOO;AAAA,cAEpC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,35 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-spaces.ts
4
+ const PaperformListSpacesInput = z.object({
5
+ skip: z.number().int().describe("Number of results to skip. Default: 0.").optional(),
6
+ limit: z.number().int().describe("Maximum number of results to return. Default: 20, max: 100.").optional()
7
+ }).describe("Request model for listing spaces.");
8
+ const PaperformListSpaces_SpaceSchema = z.object({
9
+ id: z.number().int().describe("The unique identifier of the space"),
10
+ name: z.string().describe("The name of the space"),
11
+ created_at: z.string().describe("Timestamp of when the space was created"),
12
+ updated_at: z.string().describe("Timestamp of the last update"),
13
+ created_at_utc: z.string().describe("UTC timestamp of when the space was created").nullable().optional(),
14
+ updated_at_utc: z.string().describe("UTC timestamp of the last update").nullable().optional(),
15
+ account_timezone: z.string().describe("The timezone of the account").nullable().optional()
16
+ }).describe("Model representing a single space.");
17
+ const PaperformListSpaces_SpacesResultsSchema = z.object({ spaces: z.array(PaperformListSpaces_SpaceSchema).describe("List of space objects") }).describe("Nested model for spaces results.");
18
+ const paperformListSpaces = action("PAPERFORM_LIST_SPACES", {
19
+ slug: "paperform-list-spaces",
20
+ name: "List Spaces",
21
+ description: "Tool to list all spaces accessible by the authorized user. Use when you need to retrieve available spaces from Paperform.",
22
+ input: PaperformListSpacesInput,
23
+ output: z.object({
24
+ skip: z.number().int().describe("Number of spaces skipped"),
25
+ limit: z.number().int().describe("The limit of spaces returned"),
26
+ total: z.number().int().describe("Total number of spaces"),
27
+ status: z.string().describe("The status of the request"),
28
+ results: PaperformListSpaces_SpacesResultsSchema.nullable(),
29
+ has_more: z.boolean().describe("Whether there are more spaces to fetch")
30
+ }).describe("Response model for listing spaces.")
31
+ });
32
+ //#endregion
33
+ export { paperformListSpaces };
34
+
35
+ //# sourceMappingURL=list-spaces.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-spaces.mjs","names":[],"sources":["../../src/actions/list-spaces.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListSpacesInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of results to skip. Default: 0.\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to return. Default: 20, max: 100.\").optional(),\n}).describe(\"Request model for listing spaces.\");\nconst PaperformListSpaces_SpaceSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"The unique identifier of the space\"),\n name: z.string().describe(\"The name of the space\"),\n created_at: z.string().describe(\"Timestamp of when the space was created\"),\n updated_at: z.string().describe(\"Timestamp of the last update\"),\n created_at_utc: z.string().describe(\"UTC timestamp of when the space was created\").nullable().optional(),\n updated_at_utc: z.string().describe(\"UTC timestamp of the last update\").nullable().optional(),\n account_timezone: z.string().describe(\"The timezone of the account\").nullable().optional(),\n}).describe(\"Model representing a single space.\");\nconst PaperformListSpaces_SpacesResultsSchema: z.ZodTypeAny = z.object({\n spaces: z.array(PaperformListSpaces_SpaceSchema).describe(\"List of space objects\"),\n}).describe(\"Nested model for spaces results.\");\nexport const PaperformListSpacesOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of spaces skipped\"),\n limit: z.number().int().describe(\"The limit of spaces returned\"),\n total: z.number().int().describe(\"Total number of spaces\"),\n status: z.string().describe(\"The status of the request\"),\n results: PaperformListSpaces_SpacesResultsSchema.nullable(),\n has_more: z.boolean().describe(\"Whether there are more spaces to fetch\"),\n}).describe(\"Response model for listing spaces.\");\n\nexport const paperformListSpaces = action(\"PAPERFORM_LIST_SPACES\", {\n slug: \"paperform-list-spaces\",\n name: \"List Spaces\",\n description: \"Tool to list all spaces accessible by the authorized user. Use when you need to retrieve available spaces from Paperform.\",\n input: PaperformListSpacesInput,\n output: PaperformListSpacesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyC,EAAE,OAAO;CAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACnF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAM,kCAAgD,EAAE,OAAO;CAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC9D,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,0CAAwD,EAAE,OAAO,EACrE,QAAQ,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,uBAAuB,EACnF,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAU9C,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAdqD,EAAE,OAAO;EAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;EAC1D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB;EACzD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;EACvD,SAAS,wCAAwC,SAAS;EAC1D,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;CACzE,CAAC,CAAC,CAAC,SAAS,oCAOF;AACV,CAAC"}
@@ -0,0 +1,27 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-translations.ts
4
+ const PaperformListTranslationsInput = zod.z.object({
5
+ skip: zod.z.number().int().describe("Number of results to skip. Default: 0.").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of results to return. Default: 20, max: 100.").optional()
7
+ }).describe("Request model for listing translations.");
8
+ const PaperformListTranslations_TranslationResultsSchema = zod.z.object({ translations: zod.z.array(zod.z.object({})).default([]).describe("List of translation objects accessible to the authorized user.").nullable().optional() }).describe("Model for translation results container.");
9
+ const PaperformListTranslationsOutput = zod.z.object({
10
+ skip: zod.z.number().int().default(0).describe("Number of results skipped.").nullable().optional(),
11
+ limit: zod.z.number().int().default(20).describe("Number of results per page.").nullable().optional(),
12
+ total: zod.z.number().int().default(0).describe("Total number of translations.").nullable().optional(),
13
+ status: zod.z.string().default("ok").describe("Status of the response.").nullable().optional(),
14
+ results: PaperformListTranslations_TranslationResultsSchema.nullable(),
15
+ has_more: zod.z.boolean().default(false).describe("Whether there are more results available.").nullable().optional()
16
+ }).describe("Response model for listing translations.");
17
+ const paperformListTranslations = require_action.action("PAPERFORM_LIST_TRANSLATIONS", {
18
+ slug: "paperform-list-translations",
19
+ name: "List Translations",
20
+ description: "Tool to list all translations accessible by the authorized user. Use when you need to retrieve available translations from Paperform.",
21
+ input: PaperformListTranslationsInput,
22
+ output: PaperformListTranslationsOutput
23
+ });
24
+ //#endregion
25
+ exports.paperformListTranslations = paperformListTranslations;
26
+
27
+ //# sourceMappingURL=list-translations.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-translations.cjs","names":["z","action"],"sources":["../../src/actions/list-translations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListTranslationsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of results to skip. Default: 0.\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to return. Default: 20, max: 100.\").optional(),\n}).describe(\"Request model for listing translations.\");\nconst PaperformListTranslations_TranslationResultsSchema: z.ZodTypeAny = z.object({\n translations: z.array(z.object({})).default([]).describe(\"List of translation objects accessible to the authorized user.\").nullable().optional(),\n}).describe(\"Model for translation results container.\");\nexport const PaperformListTranslationsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().default(0).describe(\"Number of results skipped.\").nullable().optional(),\n limit: z.number().int().default(20).describe(\"Number of results per page.\").nullable().optional(),\n total: z.number().int().default(0).describe(\"Total number of translations.\").nullable().optional(),\n status: z.string().default(\"ok\").describe(\"Status of the response.\").nullable().optional(),\n results: PaperformListTranslations_TranslationResultsSchema.nullable(),\n has_more: z.boolean().default(false).describe(\"Whether there are more results available.\").nullable().optional(),\n}).describe(\"Response model for listing translations.\");\n\nexport const paperformListTranslations = action(\"PAPERFORM_LIST_TRANSLATIONS\", {\n slug: \"paperform-list-translations\",\n name: \"List Translations\",\n description: \"Tool to list all translations accessible by the authorized user. Use when you need to retrieve available translations from Paperform.\",\n input: PaperformListTranslationsInput,\n output: PaperformListTranslationsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACnF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,qDAAmEA,IAAAA,EAAE,OAAO,EAChF,cAAcA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACjJ,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,SAAS,mDAAmD,SAAS;CACrE,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,4BAA4BC,eAAAA,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-translations.d.ts
4
+ declare const PaperformListTranslationsInput: z.ZodTypeAny;
5
+ declare const PaperformListTranslationsOutput: z.ZodTypeAny;
6
+ declare const paperformListTranslations: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListTranslations };
9
+ //# sourceMappingURL=list-translations.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-translations.d.cts","names":[],"sources":["../../src/actions/list-translations.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAGO;AAAA,cAIzC,+BAAA,EAAiC,CAAA,CAAE,UAOO;AAAA,cAE1C,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-translations.d.ts
4
+ declare const PaperformListTranslationsInput: z.ZodTypeAny;
5
+ declare const PaperformListTranslationsOutput: z.ZodTypeAny;
6
+ declare const paperformListTranslations: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { paperformListTranslations };
9
+ //# sourceMappingURL=list-translations.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-translations.d.mts","names":[],"sources":["../../src/actions/list-translations.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAGO;AAAA,cAIzC,+BAAA,EAAiC,CAAA,CAAE,UAOO;AAAA,cAE1C,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,26 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-translations.ts
4
+ const PaperformListTranslationsInput = z.object({
5
+ skip: z.number().int().describe("Number of results to skip. Default: 0.").optional(),
6
+ limit: z.number().int().describe("Maximum number of results to return. Default: 20, max: 100.").optional()
7
+ }).describe("Request model for listing translations.");
8
+ const PaperformListTranslations_TranslationResultsSchema = z.object({ translations: z.array(z.object({})).default([]).describe("List of translation objects accessible to the authorized user.").nullable().optional() }).describe("Model for translation results container.");
9
+ const paperformListTranslations = action("PAPERFORM_LIST_TRANSLATIONS", {
10
+ slug: "paperform-list-translations",
11
+ name: "List Translations",
12
+ description: "Tool to list all translations accessible by the authorized user. Use when you need to retrieve available translations from Paperform.",
13
+ input: PaperformListTranslationsInput,
14
+ output: z.object({
15
+ skip: z.number().int().default(0).describe("Number of results skipped.").nullable().optional(),
16
+ limit: z.number().int().default(20).describe("Number of results per page.").nullable().optional(),
17
+ total: z.number().int().default(0).describe("Total number of translations.").nullable().optional(),
18
+ status: z.string().default("ok").describe("Status of the response.").nullable().optional(),
19
+ results: PaperformListTranslations_TranslationResultsSchema.nullable(),
20
+ has_more: z.boolean().default(false).describe("Whether there are more results available.").nullable().optional()
21
+ }).describe("Response model for listing translations.")
22
+ });
23
+ //#endregion
24
+ export { paperformListTranslations };
25
+
26
+ //# sourceMappingURL=list-translations.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-translations.mjs","names":[],"sources":["../../src/actions/list-translations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PaperformListTranslationsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of results to skip. Default: 0.\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to return. Default: 20, max: 100.\").optional(),\n}).describe(\"Request model for listing translations.\");\nconst PaperformListTranslations_TranslationResultsSchema: z.ZodTypeAny = z.object({\n translations: z.array(z.object({})).default([]).describe(\"List of translation objects accessible to the authorized user.\").nullable().optional(),\n}).describe(\"Model for translation results container.\");\nexport const PaperformListTranslationsOutput: z.ZodTypeAny = z.object({\n skip: z.number().int().default(0).describe(\"Number of results skipped.\").nullable().optional(),\n limit: z.number().int().default(20).describe(\"Number of results per page.\").nullable().optional(),\n total: z.number().int().default(0).describe(\"Total number of translations.\").nullable().optional(),\n status: z.string().default(\"ok\").describe(\"Status of the response.\").nullable().optional(),\n results: PaperformListTranslations_TranslationResultsSchema.nullable(),\n has_more: z.boolean().default(false).describe(\"Whether there are more results available.\").nullable().optional(),\n}).describe(\"Response model for listing translations.\");\n\nexport const paperformListTranslations = action(\"PAPERFORM_LIST_TRANSLATIONS\", {\n slug: \"paperform-list-translations\",\n name: \"List Translations\",\n description: \"Tool to list all translations accessible by the authorized user. Use when you need to retrieve available translations from Paperform.\",\n input: PaperformListTranslationsInput,\n output: PaperformListTranslationsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+C,EAAE,OAAO;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACnF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,qDAAmE,EAAE,OAAO,EAChF,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACjJ,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAUtD,MAAa,4BAA4B,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAd2D,EAAE,OAAO;EACpE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,QAAQ,EAAE,OAAO,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzF,SAAS,mDAAmD,SAAS;EACrE,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const paperform = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "paperform",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.paperform = paperform;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const paperform = defineApp({\n slug: \"paperform\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const paperform: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { paperform };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const paperform: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { paperform };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const paperform = defineApp({
4
+ slug: "paperform",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { paperform };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const paperform = defineApp({\n slug: \"paperform\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const paperformCatalog = {
4
+ "slug": "paperform",
5
+ "name": "Paperform",
6
+ "description": "Paperform is a flexible online form builder that combines beautiful design with serious digital smarts",
7
+ "category": "Forms & Surveys",
8
+ "logo": "https://logos.composio.dev/api/paperform",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.paperformCatalog = paperformCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const paperformCatalog = {\n \"slug\": \"paperform\",\n \"name\": \"Paperform\",\n \"description\": \"Paperform is a flexible online form builder that combines beautiful design with serious digital smarts\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/paperform\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const paperformCatalog: {
4
+ readonly slug: "paperform";
5
+ readonly name: "Paperform";
6
+ readonly description: "Paperform is a flexible online form builder that combines beautiful design with serious digital smarts";
7
+ readonly category: "Forms & Surveys";
8
+ readonly logo: "https://logos.composio.dev/api/paperform";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { paperformCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const paperformCatalog: {
4
+ readonly slug: "paperform";
5
+ readonly name: "Paperform";
6
+ readonly description: "Paperform is a flexible online form builder that combines beautiful design with serious digital smarts";
7
+ readonly category: "Forms & Surveys";
8
+ readonly logo: "https://logos.composio.dev/api/paperform";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { paperformCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const paperformCatalog = {
4
+ "slug": "paperform",
5
+ "name": "Paperform",
6
+ "description": "Paperform is a flexible online form builder that combines beautiful design with serious digital smarts",
7
+ "category": "Forms & Surveys",
8
+ "logo": "https://logos.composio.dev/api/paperform",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { paperformCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const paperformCatalog = {\n \"slug\": \"paperform\",\n \"name\": \"Paperform\",\n \"description\": \"Paperform is a flexible online form builder that combines beautiful design with serious digital smarts\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/paperform\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "paperform";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executePaperformTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executePaperformTool = executePaperformTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"paperform\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executePaperformTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "paperform";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executePaperformTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executePaperformTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"paperform\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executePaperformTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,16 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_get_space = require("./actions/get-space.cjs");
5
+ const require_get_space_forms = require("./actions/get-space-forms.cjs");
6
+ const require_list_forms = require("./actions/list-forms.cjs");
7
+ const require_list_spaces = require("./actions/list-spaces.cjs");
8
+ const require_list_translations = require("./actions/list-translations.cjs");
9
+ require("./actions/index.cjs");
10
+ exports.paperform = require_app.paperform;
11
+ exports.paperformCatalog = require_catalog.paperformCatalog;
12
+ exports.paperformGetSpace = require_get_space.paperformGetSpace;
13
+ exports.paperformGetSpaceForms = require_get_space_forms.paperformGetSpaceForms;
14
+ exports.paperformListForms = require_list_forms.paperformListForms;
15
+ exports.paperformListSpaces = require_list_spaces.paperformListSpaces;
16
+ exports.paperformListTranslations = require_list_translations.paperformListTranslations;
@@ -0,0 +1,8 @@
1
+ import { paperformGetSpace } from "./actions/get-space.cjs";
2
+ import { paperformGetSpaceForms } from "./actions/get-space-forms.cjs";
3
+ import { paperformListForms } from "./actions/list-forms.cjs";
4
+ import { paperformListSpaces } from "./actions/list-spaces.cjs";
5
+ import { paperformListTranslations } from "./actions/list-translations.cjs";
6
+ import { paperform } from "./app.cjs";
7
+ import { paperformCatalog } from "./catalog.cjs";
8
+ export { paperform, paperformCatalog, paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
@@ -0,0 +1,8 @@
1
+ import { paperformGetSpace } from "./actions/get-space.mjs";
2
+ import { paperformGetSpaceForms } from "./actions/get-space-forms.mjs";
3
+ import { paperformListForms } from "./actions/list-forms.mjs";
4
+ import { paperformListSpaces } from "./actions/list-spaces.mjs";
5
+ import { paperformListTranslations } from "./actions/list-translations.mjs";
6
+ import { paperform } from "./app.mjs";
7
+ import { paperformCatalog } from "./catalog.mjs";
8
+ export { paperform, paperformCatalog, paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
package/dist/index.mjs ADDED
@@ -0,0 +1,9 @@
1
+ import { paperform } from "./app.mjs";
2
+ import { paperformCatalog } from "./catalog.mjs";
3
+ import { paperformGetSpace } from "./actions/get-space.mjs";
4
+ import { paperformGetSpaceForms } from "./actions/get-space-forms.mjs";
5
+ import { paperformListForms } from "./actions/list-forms.mjs";
6
+ import { paperformListSpaces } from "./actions/list-spaces.mjs";
7
+ import { paperformListTranslations } from "./actions/list-translations.mjs";
8
+ import "./actions/index.mjs";
9
+ export { paperform, paperformCatalog, paperformGetSpace, paperformGetSpaceForms, paperformListForms, paperformListSpaces, paperformListTranslations };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/paperform",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/keystrokehq/keystroke.git",
11
+ "directory": "packages/integrations/paperform"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./actions": {
28
+ "types": "./dist/actions/index.d.mts",
29
+ "import": "./dist/actions/index.mjs",
30
+ "require": "./dist/actions/index.cjs"
31
+ }
32
+ },
33
+ "peerDependencies": {
34
+ "@keystrokehq/keystroke": "^0.1.4",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@keystrokehq/keystroke": "link:../../keystroke",
39
+ "@types/node": "^25.9.1",
40
+ "tsdown": "^0.22.0",
41
+ "typescript": "^6.0.3",
42
+ "zod": "^4.4.3"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "dev": "tsdown --watch --no-clean",
47
+ "typecheck": "tsc --noEmit"
48
+ }
49
+ }