@keystrokehq/promptmate_io 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/dist/actions/create-webhook.cjs +2 -2
  2. package/dist/actions/create-webhook.cjs.map +1 -1
  3. package/dist/actions/create-webhook.d.cts +2 -2
  4. package/dist/actions/create-webhook.d.mts +2 -2
  5. package/dist/actions/create-webhook.mjs +2 -2
  6. package/dist/actions/create-webhook.mjs.map +1 -1
  7. package/dist/actions/delete-webhook.cjs +1 -1
  8. package/dist/actions/delete-webhook.cjs.map +1 -1
  9. package/dist/actions/delete-webhook.d.cts +1 -1
  10. package/dist/actions/delete-webhook.d.mts +1 -1
  11. package/dist/actions/delete-webhook.mjs +1 -1
  12. package/dist/actions/delete-webhook.mjs.map +1 -1
  13. package/dist/actions/get-app-job.cjs +3 -3
  14. package/dist/actions/get-app-job.cjs.map +1 -1
  15. package/dist/actions/get-app-job.d.cts +3 -3
  16. package/dist/actions/get-app-job.d.mts +3 -3
  17. package/dist/actions/get-app-job.mjs +3 -3
  18. package/dist/actions/get-app-job.mjs.map +1 -1
  19. package/dist/actions/get-user-info.cjs +1 -1
  20. package/dist/actions/get-user-info.cjs.map +1 -1
  21. package/dist/actions/get-user-info.d.cts +1 -1
  22. package/dist/actions/get-user-info.d.mts +1 -1
  23. package/dist/actions/get-user-info.mjs +1 -1
  24. package/dist/actions/get-user-info.mjs.map +1 -1
  25. package/dist/actions/list-apps.cjs +2 -2
  26. package/dist/actions/list-apps.cjs.map +1 -1
  27. package/dist/actions/list-apps.d.cts +2 -2
  28. package/dist/actions/list-apps.d.mts +2 -2
  29. package/dist/actions/list-apps.mjs +2 -2
  30. package/dist/actions/list-apps.mjs.map +1 -1
  31. package/dist/actions/list-countries.cjs +1 -1
  32. package/dist/actions/list-countries.cjs.map +1 -1
  33. package/dist/actions/list-countries.d.cts +1 -1
  34. package/dist/actions/list-countries.d.mts +1 -1
  35. package/dist/actions/list-countries.mjs +1 -1
  36. package/dist/actions/list-countries.mjs.map +1 -1
  37. package/dist/actions/list-languages.cjs +1 -1
  38. package/dist/actions/list-languages.cjs.map +1 -1
  39. package/dist/actions/list-languages.d.cts +1 -1
  40. package/dist/actions/list-languages.d.mts +1 -1
  41. package/dist/actions/list-languages.mjs +1 -1
  42. package/dist/actions/list-languages.mjs.map +1 -1
  43. package/dist/actions/list-projects.cjs +2 -2
  44. package/dist/actions/list-projects.cjs.map +1 -1
  45. package/dist/actions/list-projects.d.cts +2 -2
  46. package/dist/actions/list-projects.d.mts +2 -2
  47. package/dist/actions/list-projects.mjs +2 -2
  48. package/dist/actions/list-projects.mjs.map +1 -1
  49. package/dist/actions/list-templates.cjs +1 -1
  50. package/dist/actions/list-templates.cjs.map +1 -1
  51. package/dist/actions/list-templates.d.cts +1 -1
  52. package/dist/actions/list-templates.d.mts +1 -1
  53. package/dist/actions/list-templates.mjs +1 -1
  54. package/dist/actions/list-templates.mjs.map +1 -1
  55. package/dist/actions/list-webhooks.cjs +2 -2
  56. package/dist/actions/list-webhooks.cjs.map +1 -1
  57. package/dist/actions/list-webhooks.d.cts +2 -2
  58. package/dist/actions/list-webhooks.d.mts +2 -2
  59. package/dist/actions/list-webhooks.mjs +2 -2
  60. package/dist/actions/list-webhooks.mjs.map +1 -1
  61. package/dist/actions/use-template.cjs +2 -2
  62. package/dist/actions/use-template.cjs.map +1 -1
  63. package/dist/actions/use-template.d.cts +3 -3
  64. package/dist/actions/use-template.d.mts +3 -3
  65. package/dist/actions/use-template.mjs +2 -2
  66. package/dist/actions/use-template.mjs.map +1 -1
  67. package/package.json +1 -1
@@ -15,8 +15,8 @@ const PromptmateIoCreateWebhook_WebhookDetailSchema = zod.z.object({
15
15
  webhookType: zod.z.enum(["job", "row"]).describe("Subscribed event type ('job' or 'row').").nullable().optional(),
16
16
  restrictedAppIds: zod.z.array(zod.z.string()).describe("App IDs that can trigger this webhook.").nullable().optional(),
17
17
  webhookReference: zod.z.string().describe("Client-provided reference identifier.").nullable().optional()
18
- }).describe("Representation of a created Promptmate.io webhook detail.");
19
- const PromptmateIoCreateWebhookOutput = zod.z.object({ details: zod.z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe("List of created webhook details.") }).describe("Response schema for a newly created webhook. Returns a list of webhook details.");
18
+ }).passthrough().describe("Representation of a created Promptmate.io webhook detail.");
19
+ const PromptmateIoCreateWebhookOutput = zod.z.object({ details: zod.z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe("List of created webhook details.") }).passthrough().describe("Response schema for a newly created webhook. Returns a list of webhook details.");
20
20
  const promptmateIoCreateWebhook = require_action.action("PROMPTMATE_IO_CREATE_WEBHOOK", {
21
21
  slug: "promptmate_io-create-webhook",
22
22
  name: "Create webhook",
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoCreateWebhookInput = z.object({\n endpointUrl: z.string().describe(\"The HTTP(S) URL where Promptmate will send webhook POST callbacks.\"),\n webhookName: z.string().describe(\"Optional friendly name for the webhook.\").optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Type of events to subscribe to ('job' or 'row').\").optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of Promptmate app IDs that are allowed to trigger this webhook.\").optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication.\").optional(),\n}).describe(\"Request body for creating a new webhook in Promptmate.io.\");\nconst PromptmateIoCreateWebhook_WebhookDetailSchema = z.object({\n webhookId: z.string().describe(\"System-assigned unique identifier for the webhook.\").nullable(),\n endpointUrl: z.string().describe(\"Callback URL for webhook events.\").nullable(),\n webhookName: z.string().describe(\"Name of the webhook.\").nullable().optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Subscribed event type ('job' or 'row').\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"App IDs that can trigger this webhook.\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-provided reference identifier.\").nullable().optional(),\n}).describe(\"Representation of a created Promptmate.io webhook detail.\");\nexport const PromptmateIoCreateWebhookOutput = z.object({\n details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe(\"List of created webhook details.\"),\n}).describe(\"Response schema for a newly created webhook. Returns a list of webhook details.\");\n\nexport const promptmateIoCreateWebhook = action(\"PROMPTMATE_IO_CREATE_WEBHOOK\", {\n slug: \"promptmate_io-create-webhook\",\n name: \"Create webhook\",\n description: \"Tool to create a new webhook. Use when you need to subscribe an endpoint URL to job or row events.\",\n input: PromptmateIoCreateWebhookInput,\n output: PromptmateIoCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACrF,aAAaA,IAAAA,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC1G,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChI,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gDAAgDA,IAAAA,EAAE,OAAO;CAC7D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC9E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,aAAaA,IAAAA,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,SAASA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,kCAAkC,EAC7G,CAAC,CAAC,CAAC,SAAS,iFAAiF;AAE7F,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoCreateWebhookInput = z.object({\n endpointUrl: z.string().describe(\"The HTTP(S) URL where Promptmate will send webhook POST callbacks.\"),\n webhookName: z.string().describe(\"Optional friendly name for the webhook.\").optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Type of events to subscribe to ('job' or 'row').\").optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of Promptmate app IDs that are allowed to trigger this webhook.\").optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication.\").optional(),\n}).describe(\"Request body for creating a new webhook in Promptmate.io.\");\nconst PromptmateIoCreateWebhook_WebhookDetailSchema = z.object({\n webhookId: z.string().describe(\"System-assigned unique identifier for the webhook.\").nullable(),\n endpointUrl: z.string().describe(\"Callback URL for webhook events.\").nullable(),\n webhookName: z.string().describe(\"Name of the webhook.\").nullable().optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Subscribed event type ('job' or 'row').\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"App IDs that can trigger this webhook.\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-provided reference identifier.\").nullable().optional(),\n}).passthrough().describe(\"Representation of a created Promptmate.io webhook detail.\");\nexport const PromptmateIoCreateWebhookOutput = z.object({\n details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe(\"List of created webhook details.\"),\n}).passthrough().describe(\"Response schema for a newly created webhook. Returns a list of webhook details.\");\n\nexport const promptmateIoCreateWebhook = action(\"PROMPTMATE_IO_CREATE_WEBHOOK\", {\n slug: \"promptmate_io-create-webhook\",\n name: \"Create webhook\",\n description: \"Tool to create a new webhook. Use when you need to subscribe an endpoint URL to job or row events.\",\n input: PromptmateIoCreateWebhookInput,\n output: PromptmateIoCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACrF,aAAaA,IAAAA,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC1G,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChI,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gDAAgDA,IAAAA,EAAE,OAAO;CAC7D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC9E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,aAAaA,IAAAA,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AACrF,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,SAASA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,kCAAkC,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iFAAiF;AAE3G,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -22,8 +22,8 @@ declare const PromptmateIoCreateWebhookOutput: z.ZodObject<{
22
22
  }>>>;
23
23
  restrictedAppIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
24
24
  webhookReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>>;
26
- }, z.core.$strip>;
25
+ }, z.core.$loose>>;
26
+ }, z.core.$loose>;
27
27
  declare const promptmateIoCreateWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  endpointUrl: string;
29
29
  webhookName?: string | undefined;
@@ -22,8 +22,8 @@ declare const PromptmateIoCreateWebhookOutput: z.ZodObject<{
22
22
  }>>>;
23
23
  restrictedAppIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
24
24
  webhookReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>>;
26
- }, z.core.$strip>;
25
+ }, z.core.$loose>>;
26
+ }, z.core.$loose>;
27
27
  declare const promptmateIoCreateWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  endpointUrl: string;
29
29
  webhookName?: string | undefined;
@@ -15,13 +15,13 @@ const PromptmateIoCreateWebhook_WebhookDetailSchema = z.object({
15
15
  webhookType: z.enum(["job", "row"]).describe("Subscribed event type ('job' or 'row').").nullable().optional(),
16
16
  restrictedAppIds: z.array(z.string()).describe("App IDs that can trigger this webhook.").nullable().optional(),
17
17
  webhookReference: z.string().describe("Client-provided reference identifier.").nullable().optional()
18
- }).describe("Representation of a created Promptmate.io webhook detail.");
18
+ }).passthrough().describe("Representation of a created Promptmate.io webhook detail.");
19
19
  const promptmateIoCreateWebhook = action("PROMPTMATE_IO_CREATE_WEBHOOK", {
20
20
  slug: "promptmate_io-create-webhook",
21
21
  name: "Create webhook",
22
22
  description: "Tool to create a new webhook. Use when you need to subscribe an endpoint URL to job or row events.",
23
23
  input: PromptmateIoCreateWebhookInput,
24
- output: z.object({ details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe("List of created webhook details.") }).describe("Response schema for a newly created webhook. Returns a list of webhook details.")
24
+ output: z.object({ details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe("List of created webhook details.") }).passthrough().describe("Response schema for a newly created webhook. Returns a list of webhook details.")
25
25
  });
26
26
  //#endregion
27
27
  export { promptmateIoCreateWebhook };
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook.mjs","names":[],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoCreateWebhookInput = z.object({\n endpointUrl: z.string().describe(\"The HTTP(S) URL where Promptmate will send webhook POST callbacks.\"),\n webhookName: z.string().describe(\"Optional friendly name for the webhook.\").optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Type of events to subscribe to ('job' or 'row').\").optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of Promptmate app IDs that are allowed to trigger this webhook.\").optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication.\").optional(),\n}).describe(\"Request body for creating a new webhook in Promptmate.io.\");\nconst PromptmateIoCreateWebhook_WebhookDetailSchema = z.object({\n webhookId: z.string().describe(\"System-assigned unique identifier for the webhook.\").nullable(),\n endpointUrl: z.string().describe(\"Callback URL for webhook events.\").nullable(),\n webhookName: z.string().describe(\"Name of the webhook.\").nullable().optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Subscribed event type ('job' or 'row').\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"App IDs that can trigger this webhook.\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-provided reference identifier.\").nullable().optional(),\n}).describe(\"Representation of a created Promptmate.io webhook detail.\");\nexport const PromptmateIoCreateWebhookOutput = z.object({\n details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe(\"List of created webhook details.\"),\n}).describe(\"Response schema for a newly created webhook. Returns a list of webhook details.\");\n\nexport const promptmateIoCreateWebhook = action(\"PROMPTMATE_IO_CREATE_WEBHOOK\", {\n slug: \"promptmate_io-create-webhook\",\n name: \"Create webhook\",\n description: \"Tool to create a new webhook. Use when you need to subscribe an endpoint URL to job or row events.\",\n input: PromptmateIoCreateWebhookInput,\n output: PromptmateIoCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO;CACrD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACrF,aAAa,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC1G,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChI,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gDAAgD,EAAE,OAAO;CAC7D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC9E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAKvE,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,SAAS,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,kCAAkC,EAC7G,CAAC,CAAC,CAAC,SAAS,iFAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook.mjs","names":[],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoCreateWebhookInput = z.object({\n endpointUrl: z.string().describe(\"The HTTP(S) URL where Promptmate will send webhook POST callbacks.\"),\n webhookName: z.string().describe(\"Optional friendly name for the webhook.\").optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Type of events to subscribe to ('job' or 'row').\").optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of Promptmate app IDs that are allowed to trigger this webhook.\").optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication.\").optional(),\n}).describe(\"Request body for creating a new webhook in Promptmate.io.\");\nconst PromptmateIoCreateWebhook_WebhookDetailSchema = z.object({\n webhookId: z.string().describe(\"System-assigned unique identifier for the webhook.\").nullable(),\n endpointUrl: z.string().describe(\"Callback URL for webhook events.\").nullable(),\n webhookName: z.string().describe(\"Name of the webhook.\").nullable().optional(),\n webhookType: z.enum([\"job\", \"row\"]).describe(\"Subscribed event type ('job' or 'row').\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"App IDs that can trigger this webhook.\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-provided reference identifier.\").nullable().optional(),\n}).passthrough().describe(\"Representation of a created Promptmate.io webhook detail.\");\nexport const PromptmateIoCreateWebhookOutput = z.object({\n details: z.array(PromptmateIoCreateWebhook_WebhookDetailSchema).describe(\"List of created webhook details.\"),\n}).passthrough().describe(\"Response schema for a newly created webhook. Returns a list of webhook details.\");\n\nexport const promptmateIoCreateWebhook = action(\"PROMPTMATE_IO_CREATE_WEBHOOK\", {\n slug: \"promptmate_io-create-webhook\",\n name: \"Create webhook\",\n description: \"Tool to create a new webhook. Use when you need to subscribe an endpoint URL to job or row events.\",\n input: PromptmateIoCreateWebhookInput,\n output: PromptmateIoCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO;CACrD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACrF,aAAa,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC1G,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChI,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAM,gDAAgD,EAAE,OAAO;CAC7D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC9E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAKrF,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,SAAS,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,kCAAkC,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iFAOhB;AACV,CAAC"}
@@ -6,7 +6,7 @@ const PromptmateIoDeleteWebhookOutput = zod.z.object({
6
6
  error: zod.z.string().describe("Error message if deletion failed").nullable().optional(),
7
7
  message: zod.z.string().describe("A message detailing the outcome").nullable(),
8
8
  success: zod.z.boolean().describe("Indicates if the deletion was successful").nullable()
9
- });
9
+ }).passthrough();
10
10
  const promptmateIoDeleteWebhook = require_action.action("PROMPTMATE_IO_DELETE_WEBHOOK", {
11
11
  slug: "promptmate_io-delete-webhook",
12
12
  name: "Delete Webhook",
@@ -1 +1 @@
1
- {"version":3,"file":"delete-webhook.cjs","names":["z","action"],"sources":["../../src/actions/delete-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoDeleteWebhookInput = z.object({\n webhook_id: z.string().describe(\"Unique identifier of the webhook to delete\"),\n});\nexport const PromptmateIoDeleteWebhookOutput = z.object({\n error: z.string().describe(\"Error message if deletion failed\").nullable().optional(),\n message: z.string().describe(\"A message detailing the outcome\").nullable(),\n success: z.boolean().describe(\"Indicates if the deletion was successful\").nullable(),\n});\n\nexport const promptmateIoDeleteWebhook = action(\"PROMPTMATE_IO_DELETE_WEBHOOK\", {\n slug: \"promptmate_io-delete-webhook\",\n name: \"Delete Webhook\",\n description: \"Tool to delete a webhook by its unique ID. Use after confirming the webhookId to remove.\",\n input: PromptmateIoDeleteWebhookInput,\n output: PromptmateIoDeleteWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC9E,CAAC;AACD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACzE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;AACrF,CAAC;AAED,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"delete-webhook.cjs","names":["z","action"],"sources":["../../src/actions/delete-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoDeleteWebhookInput = z.object({\n webhook_id: z.string().describe(\"Unique identifier of the webhook to delete\"),\n});\nexport const PromptmateIoDeleteWebhookOutput = z.object({\n error: z.string().describe(\"Error message if deletion failed\").nullable().optional(),\n message: z.string().describe(\"A message detailing the outcome\").nullable(),\n success: z.boolean().describe(\"Indicates if the deletion was successful\").nullable(),\n}).passthrough();\n\nexport const promptmateIoDeleteWebhook = action(\"PROMPTMATE_IO_DELETE_WEBHOOK\", {\n slug: \"promptmate_io-delete-webhook\",\n name: \"Delete Webhook\",\n description: \"Tool to delete a webhook by its unique ID. Use after confirming the webhookId to remove.\",\n input: PromptmateIoDeleteWebhookInput,\n output: PromptmateIoDeleteWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC9E,CAAC;AACD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACzE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -8,7 +8,7 @@ declare const PromptmateIoDeleteWebhookOutput: z.ZodObject<{
8
8
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  message: z.ZodNullable<z.ZodString>;
10
10
  success: z.ZodNullable<z.ZodBoolean>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const promptmateIoDeleteWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  webhook_id: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,7 +8,7 @@ declare const PromptmateIoDeleteWebhookOutput: z.ZodObject<{
8
8
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  message: z.ZodNullable<z.ZodString>;
10
10
  success: z.ZodNullable<z.ZodBoolean>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const promptmateIoDeleteWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  webhook_id: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -9,7 +9,7 @@ const promptmateIoDeleteWebhook = action("PROMPTMATE_IO_DELETE_WEBHOOK", {
9
9
  error: z.string().describe("Error message if deletion failed").nullable().optional(),
10
10
  message: z.string().describe("A message detailing the outcome").nullable(),
11
11
  success: z.boolean().describe("Indicates if the deletion was successful").nullable()
12
- })
12
+ }).passthrough()
13
13
  });
14
14
  //#endregion
15
15
  export { promptmateIoDeleteWebhook };
@@ -1 +1 @@
1
- {"version":3,"file":"delete-webhook.mjs","names":[],"sources":["../../src/actions/delete-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoDeleteWebhookInput = z.object({\n webhook_id: z.string().describe(\"Unique identifier of the webhook to delete\"),\n});\nexport const PromptmateIoDeleteWebhookOutput = z.object({\n error: z.string().describe(\"Error message if deletion failed\").nullable().optional(),\n message: z.string().describe(\"A message detailing the outcome\").nullable(),\n success: z.boolean().describe(\"Indicates if the deletion was successful\").nullable(),\n});\n\nexport const promptmateIoDeleteWebhook = action(\"PROMPTMATE_IO_DELETE_WEBHOOK\", {\n slug: \"promptmate_io-delete-webhook\",\n name: \"Delete Webhook\",\n description: \"Tool to delete a webhook by its unique ID. Use after confirming the webhookId to remove.\",\n input: PromptmateIoDeleteWebhookInput,\n output: PromptmateIoDeleteWebhookOutput,\n});\n"],"mappings":";;AAaA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAb4C,EAAE,OAAO,EACrD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC9E,CAWS;CACP,QAX6C,EAAE,OAAO;EACtD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EACzE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CACrF,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"delete-webhook.mjs","names":[],"sources":["../../src/actions/delete-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoDeleteWebhookInput = z.object({\n webhook_id: z.string().describe(\"Unique identifier of the webhook to delete\"),\n});\nexport const PromptmateIoDeleteWebhookOutput = z.object({\n error: z.string().describe(\"Error message if deletion failed\").nullable().optional(),\n message: z.string().describe(\"A message detailing the outcome\").nullable(),\n success: z.boolean().describe(\"Indicates if the deletion was successful\").nullable(),\n}).passthrough();\n\nexport const promptmateIoDeleteWebhook = action(\"PROMPTMATE_IO_DELETE_WEBHOOK\", {\n slug: \"promptmate_io-delete-webhook\",\n name: \"Delete Webhook\",\n description: \"Tool to delete a webhook by its unique ID. Use after confirming the webhookId to remove.\",\n input: PromptmateIoDeleteWebhookInput,\n output: PromptmateIoDeleteWebhookOutput,\n});\n"],"mappings":";;AAaA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAb4C,EAAE,OAAO,EACrD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC9E,CAWS;CACP,QAX6C,EAAE,OAAO;EACtD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EACzE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CACrF,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
@@ -8,11 +8,11 @@ const PromptmateIoGetAppJobInput = zod.z.object({
8
8
  const PromptmateIoGetAppJob_ResponseFieldSchema = zod.z.object({
9
9
  key: zod.z.string().describe("Key identifier for the response field").nullable(),
10
10
  name: zod.z.string().describe("Human-readable name for the response field").nullable()
11
- }).describe("Response field information.");
11
+ }).passthrough().describe("Response field information.");
12
12
  const PromptmateIoGetAppJobOutput = zod.z.object({
13
13
  appId: zod.z.string().describe("The app ID for this job").nullable().optional(),
14
14
  jobId: zod.z.string().describe("Unique identifier for the job").nullable(),
15
- result: zod.z.object({}).describe("Job result data (available when job is finished)").nullable().optional(),
15
+ result: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Job result data (available when job is finished)").nullable().optional(),
16
16
  jobStatus: zod.z.string().describe("Current status of the job").nullable(),
17
17
  stepCount: zod.z.number().int().describe("Total number of steps").nullable().optional(),
18
18
  actualStep: zod.z.string().describe("Description of the current step").nullable().optional(),
@@ -21,7 +21,7 @@ const PromptmateIoGetAppJobOutput = zod.z.object({
21
21
  dataProcessType: zod.z.string().describe("Type of data processing (e.g., single, batch)").nullable().optional(),
22
22
  processedRowCount: zod.z.number().int().describe("Number of rows processed").nullable().optional(),
23
23
  requestedRowCount: zod.z.number().int().describe("Number of rows requested").nullable().optional()
24
- }).describe("Response model for getting app job status and result.");
24
+ }).passthrough().describe("Response model for getting app job status and result.");
25
25
  const promptmateIoGetAppJob = require_action.action("PROMPTMATE_IO_GET_APP_JOB", {
26
26
  slug: "promptmate_io-get-app-job",
27
27
  name: "Get App Job Status",
@@ -1 +1 @@
1
- {"version":3,"file":"get-app-job.cjs","names":["z","action"],"sources":["../../src/actions/get-app-job.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetAppJobInput = z.object({\n app_id: z.string().describe(\"The unique identifier of the app\"),\n job_id: z.string().describe(\"The unique identifier of the job\"),\n}).describe(\"Request model for getting app job status and result.\");\nconst PromptmateIoGetAppJob_ResponseFieldSchema = z.object({\n key: z.string().describe(\"Key identifier for the response field\").nullable(),\n name: z.string().describe(\"Human-readable name for the response field\").nullable(),\n}).describe(\"Response field information.\");\nexport const PromptmateIoGetAppJobOutput = z.object({\n appId: z.string().describe(\"The app ID for this job\").nullable().optional(),\n jobId: z.string().describe(\"Unique identifier for the job\").nullable(),\n result: z.object({}).describe(\"Job result data (available when job is finished)\").nullable().optional(),\n jobStatus: z.string().describe(\"Current status of the job\").nullable(),\n stepCount: z.number().int().describe(\"Total number of steps\").nullable().optional(),\n actualStep: z.string().describe(\"Description of the current step\").nullable().optional(),\n executingStep: z.number().int().describe(\"Currently executing step number\").nullable().optional(),\n responseFields: z.array(PromptmateIoGetAppJob_ResponseFieldSchema).describe(\"List of response fields for the job\").nullable().optional(),\n dataProcessType: z.string().describe(\"Type of data processing (e.g., single, batch)\").nullable().optional(),\n processedRowCount: z.number().int().describe(\"Number of rows processed\").nullable().optional(),\n requestedRowCount: z.number().int().describe(\"Number of rows requested\").nullable().optional(),\n}).describe(\"Response model for getting app job status and result.\");\n\nexport const promptmateIoGetAppJob = action(\"PROMPTMATE_IO_GET_APP_JOB\", {\n slug: \"promptmate_io-get-app-job\",\n name: \"Get App Job Status\",\n description: \"Tool to get the status and result of a specific app job by its ID. Use when you need to check the status or retrieve results of a previously submitted job.\",\n input: PromptmateIoGetAppJobInput,\n output: PromptmateIoGetAppJobOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAChE,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC3E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,6BAA6B;AACzC,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACrE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,gBAAgBA,IAAAA,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvI,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,wBAAwBC,eAAAA,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-app-job.cjs","names":["z","action"],"sources":["../../src/actions/get-app-job.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetAppJobInput = z.object({\n app_id: z.string().describe(\"The unique identifier of the app\"),\n job_id: z.string().describe(\"The unique identifier of the job\"),\n}).describe(\"Request model for getting app job status and result.\");\nconst PromptmateIoGetAppJob_ResponseFieldSchema = z.object({\n key: z.string().describe(\"Key identifier for the response field\").nullable(),\n name: z.string().describe(\"Human-readable name for the response field\").nullable(),\n}).passthrough().describe(\"Response field information.\");\nexport const PromptmateIoGetAppJobOutput = z.object({\n appId: z.string().describe(\"The app ID for this job\").nullable().optional(),\n jobId: z.string().describe(\"Unique identifier for the job\").nullable(),\n result: z.record(z.string(), z.unknown()).describe(\"Job result data (available when job is finished)\").nullable().optional(),\n jobStatus: z.string().describe(\"Current status of the job\").nullable(),\n stepCount: z.number().int().describe(\"Total number of steps\").nullable().optional(),\n actualStep: z.string().describe(\"Description of the current step\").nullable().optional(),\n executingStep: z.number().int().describe(\"Currently executing step number\").nullable().optional(),\n responseFields: z.array(PromptmateIoGetAppJob_ResponseFieldSchema).describe(\"List of response fields for the job\").nullable().optional(),\n dataProcessType: z.string().describe(\"Type of data processing (e.g., single, batch)\").nullable().optional(),\n processedRowCount: z.number().int().describe(\"Number of rows processed\").nullable().optional(),\n requestedRowCount: z.number().int().describe(\"Number of rows requested\").nullable().optional(),\n}).passthrough().describe(\"Response model for getting app job status and result.\");\n\nexport const promptmateIoGetAppJob = action(\"PROMPTMATE_IO_GET_APP_JOB\", {\n slug: \"promptmate_io-get-app-job\",\n name: \"Get App Job Status\",\n description: \"Tool to get the status and result of a specific app job by its ID. Use when you need to check the status or retrieve results of a previously submitted job.\",\n input: PromptmateIoGetAppJobInput,\n output: PromptmateIoGetAppJobOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAChE,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC3E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6BAA6B;AACvD,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACrE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,gBAAgBA,IAAAA,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvI,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,MAAa,wBAAwBC,eAAAA,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -8,7 +8,7 @@ declare const PromptmateIoGetAppJobInput: z.ZodObject<{
8
8
  declare const PromptmateIoGetAppJobOutput: z.ZodObject<{
9
9
  appId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
10
  jobId: z.ZodNullable<z.ZodString>;
11
- result: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
11
+ result: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
12
  jobStatus: z.ZodNullable<z.ZodString>;
13
13
  stepCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
14
14
  actualStep: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -16,11 +16,11 @@ declare const PromptmateIoGetAppJobOutput: z.ZodObject<{
16
16
  responseFields: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17
17
  key: z.ZodNullable<z.ZodString>;
18
18
  name: z.ZodNullable<z.ZodString>;
19
- }, z.core.$strip>>>>;
19
+ }, z.core.$loose>>>>;
20
20
  dataProcessType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
21
  processedRowCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22
22
  requestedRowCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
23
- }, z.core.$strip>;
23
+ }, z.core.$loose>;
24
24
  declare const promptmateIoGetAppJob: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  app_id: string;
26
26
  job_id: string;
@@ -8,7 +8,7 @@ declare const PromptmateIoGetAppJobInput: z.ZodObject<{
8
8
  declare const PromptmateIoGetAppJobOutput: z.ZodObject<{
9
9
  appId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
10
  jobId: z.ZodNullable<z.ZodString>;
11
- result: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
11
+ result: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
12
  jobStatus: z.ZodNullable<z.ZodString>;
13
13
  stepCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
14
14
  actualStep: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -16,11 +16,11 @@ declare const PromptmateIoGetAppJobOutput: z.ZodObject<{
16
16
  responseFields: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17
17
  key: z.ZodNullable<z.ZodString>;
18
18
  name: z.ZodNullable<z.ZodString>;
19
- }, z.core.$strip>>>>;
19
+ }, z.core.$loose>>>>;
20
20
  dataProcessType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
21
  processedRowCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22
22
  requestedRowCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
23
- }, z.core.$strip>;
23
+ }, z.core.$loose>;
24
24
  declare const promptmateIoGetAppJob: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  app_id: string;
26
26
  job_id: string;
@@ -8,7 +8,7 @@ const PromptmateIoGetAppJobInput = z.object({
8
8
  const PromptmateIoGetAppJob_ResponseFieldSchema = z.object({
9
9
  key: z.string().describe("Key identifier for the response field").nullable(),
10
10
  name: z.string().describe("Human-readable name for the response field").nullable()
11
- }).describe("Response field information.");
11
+ }).passthrough().describe("Response field information.");
12
12
  const promptmateIoGetAppJob = action("PROMPTMATE_IO_GET_APP_JOB", {
13
13
  slug: "promptmate_io-get-app-job",
14
14
  name: "Get App Job Status",
@@ -17,7 +17,7 @@ const promptmateIoGetAppJob = action("PROMPTMATE_IO_GET_APP_JOB", {
17
17
  output: z.object({
18
18
  appId: z.string().describe("The app ID for this job").nullable().optional(),
19
19
  jobId: z.string().describe("Unique identifier for the job").nullable(),
20
- result: z.object({}).describe("Job result data (available when job is finished)").nullable().optional(),
20
+ result: z.record(z.string(), z.unknown()).describe("Job result data (available when job is finished)").nullable().optional(),
21
21
  jobStatus: z.string().describe("Current status of the job").nullable(),
22
22
  stepCount: z.number().int().describe("Total number of steps").nullable().optional(),
23
23
  actualStep: z.string().describe("Description of the current step").nullable().optional(),
@@ -26,7 +26,7 @@ const promptmateIoGetAppJob = action("PROMPTMATE_IO_GET_APP_JOB", {
26
26
  dataProcessType: z.string().describe("Type of data processing (e.g., single, batch)").nullable().optional(),
27
27
  processedRowCount: z.number().int().describe("Number of rows processed").nullable().optional(),
28
28
  requestedRowCount: z.number().int().describe("Number of rows requested").nullable().optional()
29
- }).describe("Response model for getting app job status and result.")
29
+ }).passthrough().describe("Response model for getting app job status and result.")
30
30
  });
31
31
  //#endregion
32
32
  export { promptmateIoGetAppJob };
@@ -1 +1 @@
1
- {"version":3,"file":"get-app-job.mjs","names":[],"sources":["../../src/actions/get-app-job.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetAppJobInput = z.object({\n app_id: z.string().describe(\"The unique identifier of the app\"),\n job_id: z.string().describe(\"The unique identifier of the job\"),\n}).describe(\"Request model for getting app job status and result.\");\nconst PromptmateIoGetAppJob_ResponseFieldSchema = z.object({\n key: z.string().describe(\"Key identifier for the response field\").nullable(),\n name: z.string().describe(\"Human-readable name for the response field\").nullable(),\n}).describe(\"Response field information.\");\nexport const PromptmateIoGetAppJobOutput = z.object({\n appId: z.string().describe(\"The app ID for this job\").nullable().optional(),\n jobId: z.string().describe(\"Unique identifier for the job\").nullable(),\n result: z.object({}).describe(\"Job result data (available when job is finished)\").nullable().optional(),\n jobStatus: z.string().describe(\"Current status of the job\").nullable(),\n stepCount: z.number().int().describe(\"Total number of steps\").nullable().optional(),\n actualStep: z.string().describe(\"Description of the current step\").nullable().optional(),\n executingStep: z.number().int().describe(\"Currently executing step number\").nullable().optional(),\n responseFields: z.array(PromptmateIoGetAppJob_ResponseFieldSchema).describe(\"List of response fields for the job\").nullable().optional(),\n dataProcessType: z.string().describe(\"Type of data processing (e.g., single, batch)\").nullable().optional(),\n processedRowCount: z.number().int().describe(\"Number of rows processed\").nullable().optional(),\n requestedRowCount: z.number().int().describe(\"Number of rows requested\").nullable().optional(),\n}).describe(\"Response model for getting app job status and result.\");\n\nexport const promptmateIoGetAppJob = action(\"PROMPTMATE_IO_GET_APP_JOB\", {\n slug: \"promptmate_io-get-app-job\",\n name: \"Get App Job Status\",\n description: \"Tool to get the status and result of a specific app job by its ID. Use when you need to check the status or retrieve results of a previously submitted job.\",\n input: PromptmateIoGetAppJobInput,\n output: PromptmateIoGetAppJobOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAChE,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,4CAA4C,EAAE,OAAO;CACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC3E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,6BAA6B;AAezC,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAnByC,EAAE,OAAO;EAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EACrE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvF,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,gBAAgB,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvI,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-app-job.mjs","names":[],"sources":["../../src/actions/get-app-job.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetAppJobInput = z.object({\n app_id: z.string().describe(\"The unique identifier of the app\"),\n job_id: z.string().describe(\"The unique identifier of the job\"),\n}).describe(\"Request model for getting app job status and result.\");\nconst PromptmateIoGetAppJob_ResponseFieldSchema = z.object({\n key: z.string().describe(\"Key identifier for the response field\").nullable(),\n name: z.string().describe(\"Human-readable name for the response field\").nullable(),\n}).passthrough().describe(\"Response field information.\");\nexport const PromptmateIoGetAppJobOutput = z.object({\n appId: z.string().describe(\"The app ID for this job\").nullable().optional(),\n jobId: z.string().describe(\"Unique identifier for the job\").nullable(),\n result: z.record(z.string(), z.unknown()).describe(\"Job result data (available when job is finished)\").nullable().optional(),\n jobStatus: z.string().describe(\"Current status of the job\").nullable(),\n stepCount: z.number().int().describe(\"Total number of steps\").nullable().optional(),\n actualStep: z.string().describe(\"Description of the current step\").nullable().optional(),\n executingStep: z.number().int().describe(\"Currently executing step number\").nullable().optional(),\n responseFields: z.array(PromptmateIoGetAppJob_ResponseFieldSchema).describe(\"List of response fields for the job\").nullable().optional(),\n dataProcessType: z.string().describe(\"Type of data processing (e.g., single, batch)\").nullable().optional(),\n processedRowCount: z.number().int().describe(\"Number of rows processed\").nullable().optional(),\n requestedRowCount: z.number().int().describe(\"Number of rows requested\").nullable().optional(),\n}).passthrough().describe(\"Response model for getting app job status and result.\");\n\nexport const promptmateIoGetAppJob = action(\"PROMPTMATE_IO_GET_APP_JOB\", {\n slug: \"promptmate_io-get-app-job\",\n name: \"Get App Job Status\",\n description: \"Tool to get the status and result of a specific app job by its ID. Use when you need to check the status or retrieve results of a previously submitted job.\",\n input: PromptmateIoGetAppJobInput,\n output: PromptmateIoGetAppJobOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAChE,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,4CAA4C,EAAE,OAAO;CACzD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC3E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6BAA6B;AAevD,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAnByC,EAAE,OAAO;EAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACrE,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3H,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EACrE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvF,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,gBAAgB,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvI,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}
@@ -5,7 +5,7 @@ const PromptmateIoGetUserInfoInput = zod.z.object({}).describe("Request model fo
5
5
  const PromptmateIoGetUserInfoOutput = zod.z.object({
6
6
  email: zod.z.string().describe("User email address").nullable().optional(),
7
7
  userId: zod.z.string().describe("Unique identifier for the user").nullable().optional()
8
- }).describe("Response model for user information.");
8
+ }).passthrough().describe("Response model for user information.");
9
9
  const promptmateIoGetUserInfo = require_action.action("PROMPTMATE_IO_GET_USER_INFO", {
10
10
  slug: "promptmate_io-get-user-info",
11
11
  name: "Get User Info",
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-info.cjs","names":["z","action"],"sources":["../../src/actions/get-user-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetUserInfoInput = z.object({}).describe(\"Request model for getting user information. No parameters required.\");\nexport const PromptmateIoGetUserInfoOutput = z.object({\n email: z.string().describe(\"User email address\").nullable().optional(),\n userId: z.string().describe(\"Unique identifier for the user\").nullable().optional(),\n}).describe(\"Response model for user information.\");\n\nexport const promptmateIoGetUserInfo = action(\"PROMPTMATE_IO_GET_USER_INFO\", {\n slug: \"promptmate_io-get-user-info\",\n name: \"Get User Info\",\n description: \"Tool to get user information for the authenticated API key owner. Use when you need to retrieve details about the current user.\",\n input: PromptmateIoGetUserInfoInput,\n output: PromptmateIoGetUserInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACvI,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAElD,MAAa,0BAA0BC,eAAAA,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-user-info.cjs","names":["z","action"],"sources":["../../src/actions/get-user-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetUserInfoInput = z.object({}).describe(\"Request model for getting user information. No parameters required.\");\nexport const PromptmateIoGetUserInfoOutput = z.object({\n email: z.string().describe(\"User email address\").nullable().optional(),\n userId: z.string().describe(\"Unique identifier for the user\").nullable().optional(),\n}).passthrough().describe(\"Response model for user information.\");\n\nexport const promptmateIoGetUserInfo = action(\"PROMPTMATE_IO_GET_USER_INFO\", {\n slug: \"promptmate_io-get-user-info\",\n name: \"Get User Info\",\n description: \"Tool to get user information for the authenticated API key owner. Use when you need to retrieve details about the current user.\",\n input: PromptmateIoGetUserInfoInput,\n output: PromptmateIoGetUserInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACvI,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAEhE,MAAa,0BAA0BC,eAAAA,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -5,7 +5,7 @@ declare const PromptmateIoGetUserInfoInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoGetUserInfoOutput: z.ZodObject<{
6
6
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7
7
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
- }, z.core.$strip>;
8
+ }, z.core.$loose>;
9
9
  declare const promptmateIoGetUserInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
10
  //#endregion
11
11
  export { promptmateIoGetUserInfo };
@@ -5,7 +5,7 @@ declare const PromptmateIoGetUserInfoInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoGetUserInfoOutput: z.ZodObject<{
6
6
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7
7
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
- }, z.core.$strip>;
8
+ }, z.core.$loose>;
9
9
  declare const promptmateIoGetUserInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
10
  //#endregion
11
11
  export { promptmateIoGetUserInfo };
@@ -8,7 +8,7 @@ const promptmateIoGetUserInfo = action("PROMPTMATE_IO_GET_USER_INFO", {
8
8
  output: z.object({
9
9
  email: z.string().describe("User email address").nullable().optional(),
10
10
  userId: z.string().describe("Unique identifier for the user").nullable().optional()
11
- }).describe("Response model for user information.")
11
+ }).passthrough().describe("Response model for user information.")
12
12
  });
13
13
  //#endregion
14
14
  export { promptmateIoGetUserInfo };
@@ -1 +1 @@
1
- {"version":3,"file":"get-user-info.mjs","names":[],"sources":["../../src/actions/get-user-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetUserInfoInput = z.object({}).describe(\"Request model for getting user information. No parameters required.\");\nexport const PromptmateIoGetUserInfoOutput = z.object({\n email: z.string().describe(\"User email address\").nullable().optional(),\n userId: z.string().describe(\"Unique identifier for the user\").nullable().optional(),\n}).describe(\"Response model for user information.\");\n\nexport const promptmateIoGetUserInfo = action(\"PROMPTMATE_IO_GET_USER_INFO\", {\n slug: \"promptmate_io-get-user-info\",\n name: \"Get User Info\",\n description: \"Tool to get user information for the authenticated API key owner. Use when you need to retrieve details about the current user.\",\n input: PromptmateIoGetUserInfoInput,\n output: PromptmateIoGetUserInfoOutput,\n});\n"],"mappings":";;AAUA,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAV0C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAUzD;CACP,QAV2C,EAAE,OAAO;EACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-user-info.mjs","names":[],"sources":["../../src/actions/get-user-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoGetUserInfoInput = z.object({}).describe(\"Request model for getting user information. No parameters required.\");\nexport const PromptmateIoGetUserInfoOutput = z.object({\n email: z.string().describe(\"User email address\").nullable().optional(),\n userId: z.string().describe(\"Unique identifier for the user\").nullable().optional(),\n}).passthrough().describe(\"Response model for user information.\");\n\nexport const promptmateIoGetUserInfo = action(\"PROMPTMATE_IO_GET_USER_INFO\", {\n slug: \"promptmate_io-get-user-info\",\n name: \"Get User Info\",\n description: \"Tool to get user information for the authenticated API key owner. Use when you need to retrieve details about the current user.\",\n input: PromptmateIoGetUserInfoInput,\n output: PromptmateIoGetUserInfoOutput,\n});\n"],"mappings":";;AAUA,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAV0C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAUzD;CACP,QAV2C,EAAE,OAAO;EACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAOhB;AACV,CAAC"}
@@ -9,8 +9,8 @@ const PromptmateIoListApps_AppSchema = zod.z.object({
9
9
  createdAt: zod.z.string().describe("Timestamp when the app was created (ISO 8601 format)").nullable(),
10
10
  updatedAt: zod.z.string().describe("Timestamp when the app was last updated (ISO 8601 format)").nullable(),
11
11
  description: zod.z.string().describe("Detailed description of the app's purpose").nullable()
12
- });
13
- const PromptmateIoListAppsOutput = zod.z.object({ apps: zod.z.array(PromptmateIoListApps_AppSchema).describe("List of available apps") }).describe("Response model for listing apps.");
12
+ }).passthrough();
13
+ const PromptmateIoListAppsOutput = zod.z.object({ apps: zod.z.array(PromptmateIoListApps_AppSchema).describe("List of available apps") }).passthrough().describe("Response model for listing apps.");
14
14
  const promptmateIoListApps = require_action.action("PROMPTMATE_IO_LIST_APPS", {
15
15
  slug: "promptmate_io-list-apps",
16
16
  name: "List PromptMate Apps",
@@ -1 +1 @@
1
- {"version":3,"file":"list-apps.cjs","names":["z","action"],"sources":["../../src/actions/list-apps.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListAppsInput = z.object({}).describe(\"Request model for listing apps. No parameters.\");\nconst PromptmateIoListApps_AppSchema = z.object({\n id: z.string().describe(\"Unique identifier of the app\").nullable(),\n name: z.string().describe(\"Human-readable name of the app\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags assigned to this app\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the app was created (ISO 8601 format)\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the app was last updated (ISO 8601 format)\").nullable(),\n description: z.string().describe(\"Detailed description of the app's purpose\").nullable(),\n});\nexport const PromptmateIoListAppsOutput = z.object({\n apps: z.array(PromptmateIoListApps_AppSchema).describe(\"List of available apps\"),\n}).describe(\"Response model for listing apps.\");\n\nexport const promptmateIoListApps = action(\"PROMPTMATE_IO_LIST_APPS\", {\n slug: \"promptmate_io-list-apps\",\n name: \"List PromptMate Apps\",\n description: \"Tool to list all available apps. Use when you need to retrieve the catalogue of PromptMate apps.\",\n input: PromptmateIoListAppsInput,\n output: PromptmateIoListAppsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC/G,MAAM,iCAAiCA,IAAAA,EAAE,OAAO;CAC9C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACrE,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;AACzF,CAAC;AACD,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,MAAMA,IAAAA,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,wBAAwB,EACjF,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAE9C,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-apps.cjs","names":["z","action"],"sources":["../../src/actions/list-apps.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListAppsInput = z.object({}).describe(\"Request model for listing apps. No parameters.\");\nconst PromptmateIoListApps_AppSchema = z.object({\n id: z.string().describe(\"Unique identifier of the app\").nullable(),\n name: z.string().describe(\"Human-readable name of the app\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags assigned to this app\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the app was created (ISO 8601 format)\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the app was last updated (ISO 8601 format)\").nullable(),\n description: z.string().describe(\"Detailed description of the app's purpose\").nullable(),\n}).passthrough();\nexport const PromptmateIoListAppsOutput = z.object({\n apps: z.array(PromptmateIoListApps_AppSchema).describe(\"List of available apps\"),\n}).passthrough().describe(\"Response model for listing apps.\");\n\nexport const promptmateIoListApps = action(\"PROMPTMATE_IO_LIST_APPS\", {\n slug: \"promptmate_io-list-apps\",\n name: \"List PromptMate Apps\",\n description: \"Tool to list all available apps. Use when you need to retrieve the catalogue of PromptMate apps.\",\n input: PromptmateIoListAppsInput,\n output: PromptmateIoListAppsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC/G,MAAM,iCAAiCA,IAAAA,EAAE,OAAO;CAC9C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACrE,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,MAAMA,IAAAA,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,wBAAwB,EACjF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC;AAE5D,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -10,8 +10,8 @@ declare const PromptmateIoListAppsOutput: z.ZodObject<{
10
10
  createdAt: z.ZodNullable<z.ZodString>;
11
11
  updatedAt: z.ZodNullable<z.ZodString>;
12
12
  description: z.ZodNullable<z.ZodString>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const promptmateIoListApps: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
16
  //#endregion
17
17
  export { promptmateIoListApps };
@@ -10,8 +10,8 @@ declare const PromptmateIoListAppsOutput: z.ZodObject<{
10
10
  createdAt: z.ZodNullable<z.ZodString>;
11
11
  updatedAt: z.ZodNullable<z.ZodString>;
12
12
  description: z.ZodNullable<z.ZodString>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const promptmateIoListApps: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
16
  //#endregion
17
17
  export { promptmateIoListApps };
@@ -9,13 +9,13 @@ const PromptmateIoListApps_AppSchema = z.object({
9
9
  createdAt: z.string().describe("Timestamp when the app was created (ISO 8601 format)").nullable(),
10
10
  updatedAt: z.string().describe("Timestamp when the app was last updated (ISO 8601 format)").nullable(),
11
11
  description: z.string().describe("Detailed description of the app's purpose").nullable()
12
- });
12
+ }).passthrough();
13
13
  const promptmateIoListApps = action("PROMPTMATE_IO_LIST_APPS", {
14
14
  slug: "promptmate_io-list-apps",
15
15
  name: "List PromptMate Apps",
16
16
  description: "Tool to list all available apps. Use when you need to retrieve the catalogue of PromptMate apps.",
17
17
  input: PromptmateIoListAppsInput,
18
- output: z.object({ apps: z.array(PromptmateIoListApps_AppSchema).describe("List of available apps") }).describe("Response model for listing apps.")
18
+ output: z.object({ apps: z.array(PromptmateIoListApps_AppSchema).describe("List of available apps") }).passthrough().describe("Response model for listing apps.")
19
19
  });
20
20
  //#endregion
21
21
  export { promptmateIoListApps };
@@ -1 +1 @@
1
- {"version":3,"file":"list-apps.mjs","names":[],"sources":["../../src/actions/list-apps.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListAppsInput = z.object({}).describe(\"Request model for listing apps. No parameters.\");\nconst PromptmateIoListApps_AppSchema = z.object({\n id: z.string().describe(\"Unique identifier of the app\").nullable(),\n name: z.string().describe(\"Human-readable name of the app\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags assigned to this app\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the app was created (ISO 8601 format)\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the app was last updated (ISO 8601 format)\").nullable(),\n description: z.string().describe(\"Detailed description of the app's purpose\").nullable(),\n});\nexport const PromptmateIoListAppsOutput = z.object({\n apps: z.array(PromptmateIoListApps_AppSchema).describe(\"List of available apps\"),\n}).describe(\"Response model for listing apps.\");\n\nexport const promptmateIoListApps = action(\"PROMPTMATE_IO_LIST_APPS\", {\n slug: \"promptmate_io-list-apps\",\n name: \"List PromptMate Apps\",\n description: \"Tool to list all available apps. Use when you need to retrieve the catalogue of PromptMate apps.\",\n input: PromptmateIoListAppsInput,\n output: PromptmateIoListAppsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC/G,MAAM,iCAAiC,EAAE,OAAO;CAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACrE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAChG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;AACzF,CAAC;AAKD,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATwC,EAAE,OAAO,EACjD,MAAM,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,wBAAwB,EACjF,CAAC,CAAC,CAAC,SAAS,kCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-apps.mjs","names":[],"sources":["../../src/actions/list-apps.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListAppsInput = z.object({}).describe(\"Request model for listing apps. No parameters.\");\nconst PromptmateIoListApps_AppSchema = z.object({\n id: z.string().describe(\"Unique identifier of the app\").nullable(),\n name: z.string().describe(\"Human-readable name of the app\").nullable(),\n tags: z.array(z.string()).describe(\"List of tags assigned to this app\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the app was created (ISO 8601 format)\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the app was last updated (ISO 8601 format)\").nullable(),\n description: z.string().describe(\"Detailed description of the app's purpose\").nullable(),\n}).passthrough();\nexport const PromptmateIoListAppsOutput = z.object({\n apps: z.array(PromptmateIoListApps_AppSchema).describe(\"List of available apps\"),\n}).passthrough().describe(\"Response model for listing apps.\");\n\nexport const promptmateIoListApps = action(\"PROMPTMATE_IO_LIST_APPS\", {\n slug: \"promptmate_io-list-apps\",\n name: \"List PromptMate Apps\",\n description: \"Tool to list all available apps. Use when you need to retrieve the catalogue of PromptMate apps.\",\n input: PromptmateIoListAppsInput,\n output: PromptmateIoListAppsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC/G,MAAM,iCAAiC,EAAE,OAAO;CAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACrE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAChG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,YAAY;AAKf,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATwC,EAAE,OAAO,EACjD,MAAM,EAAE,MAAM,8BAA8B,CAAC,CAAC,SAAS,wBAAwB,EACjF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/list-countries.ts
4
4
  const PromptmateIoListCountriesInput = zod.z.object({}).describe("Request model for listing countries. No parameters required.");
5
- const PromptmateIoListCountriesOutput = zod.z.object({ countries: zod.z.array(zod.z.string()).describe("List of available country names") }).describe("Response model for listing countries.");
5
+ const PromptmateIoListCountriesOutput = zod.z.object({ countries: zod.z.array(zod.z.string()).describe("List of available country names") }).passthrough().describe("Response model for listing countries.");
6
6
  const promptmateIoListCountries = require_action.action("PROMPTMATE_IO_LIST_COUNTRIES", {
7
7
  slug: "promptmate_io-list-countries",
8
8
  name: "List Countries",
@@ -1 +1 @@
1
- {"version":3,"file":"list-countries.cjs","names":["z","action"],"sources":["../../src/actions/list-countries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListCountriesInput = z.object({}).describe(\"Request model for listing countries. No parameters required.\");\nexport const PromptmateIoListCountriesOutput = z.object({\n countries: z.array(z.string()).describe(\"List of available country names\"),\n}).describe(\"Response model for listing countries.\");\n\nexport const promptmateIoListCountries = action(\"PROMPTMATE_IO_LIST_COUNTRIES\", {\n slug: \"promptmate_io-list-countries\",\n name: \"List Countries\",\n description: \"Tool to list available countries for app configuration. Use when you need to retrieve the list of supported countries.\",\n input: PromptmateIoListCountriesInput,\n output: PromptmateIoListCountriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC3E,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAEnD,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-countries.cjs","names":["z","action"],"sources":["../../src/actions/list-countries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListCountriesInput = z.object({}).describe(\"Request model for listing countries. No parameters required.\");\nexport const PromptmateIoListCountriesOutput = z.object({\n countries: z.array(z.string()).describe(\"List of available country names\"),\n}).passthrough().describe(\"Response model for listing countries.\");\n\nexport const promptmateIoListCountries = action(\"PROMPTMATE_IO_LIST_COUNTRIES\", {\n slug: \"promptmate_io-list-countries\",\n name: \"List Countries\",\n description: \"Tool to list available countries for app configuration. Use when you need to retrieve the list of supported countries.\",\n input: PromptmateIoListCountriesInput,\n output: PromptmateIoListCountriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC3E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAEjE,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PromptmateIoListCountriesInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoListCountriesOutput: z.ZodObject<{
6
6
  countries: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const promptmateIoListCountries: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { promptmateIoListCountries };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PromptmateIoListCountriesInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoListCountriesOutput: z.ZodObject<{
6
6
  countries: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const promptmateIoListCountries: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { promptmateIoListCountries };
@@ -5,7 +5,7 @@ const promptmateIoListCountries = action("PROMPTMATE_IO_LIST_COUNTRIES", {
5
5
  name: "List Countries",
6
6
  description: "Tool to list available countries for app configuration. Use when you need to retrieve the list of supported countries.",
7
7
  input: z.object({}).describe("Request model for listing countries. No parameters required."),
8
- output: z.object({ countries: z.array(z.string()).describe("List of available country names") }).describe("Response model for listing countries.")
8
+ output: z.object({ countries: z.array(z.string()).describe("List of available country names") }).passthrough().describe("Response model for listing countries.")
9
9
  });
10
10
  //#endregion
11
11
  export { promptmateIoListCountries };
@@ -1 +1 @@
1
- {"version":3,"file":"list-countries.mjs","names":[],"sources":["../../src/actions/list-countries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListCountriesInput = z.object({}).describe(\"Request model for listing countries. No parameters required.\");\nexport const PromptmateIoListCountriesOutput = z.object({\n countries: z.array(z.string()).describe(\"List of available country names\"),\n}).describe(\"Response model for listing countries.\");\n\nexport const promptmateIoListCountries = action(\"PROMPTMATE_IO_LIST_COUNTRIES\", {\n slug: \"promptmate_io-list-countries\",\n name: \"List Countries\",\n description: \"Tool to list available countries for app configuration. Use when you need to retrieve the list of supported countries.\",\n input: PromptmateIoListCountriesInput,\n output: PromptmateIoListCountriesOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC3E,CAAC,CAAC,CAAC,SAAS,uCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-countries.mjs","names":[],"sources":["../../src/actions/list-countries.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListCountriesInput = z.object({}).describe(\"Request model for listing countries. No parameters required.\");\nexport const PromptmateIoListCountriesOutput = z.object({\n countries: z.array(z.string()).describe(\"List of available country names\"),\n}).passthrough().describe(\"Response model for listing countries.\");\n\nexport const promptmateIoListCountries = action(\"PROMPTMATE_IO_LIST_COUNTRIES\", {\n slug: \"promptmate_io-list-countries\",\n name: \"List Countries\",\n description: \"Tool to list available countries for app configuration. Use when you need to retrieve the list of supported countries.\",\n input: PromptmateIoListCountriesInput,\n output: PromptmateIoListCountriesOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC3E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/list-languages.ts
4
4
  const PromptmateIoListLanguagesInput = zod.z.object({}).describe("Request model for listing available languages. No parameters required.");
5
- const PromptmateIoListLanguagesOutput = zod.z.object({ languages: zod.z.array(zod.z.string()).describe("List of available language names for app configuration") }).describe("Response model for listing available languages.");
5
+ const PromptmateIoListLanguagesOutput = zod.z.object({ languages: zod.z.array(zod.z.string()).describe("List of available language names for app configuration") }).passthrough().describe("Response model for listing available languages.");
6
6
  const promptmateIoListLanguages = require_action.action("PROMPTMATE_IO_LIST_LANGUAGES", {
7
7
  slug: "promptmate_io-list-languages",
8
8
  name: "List Available Languages",
@@ -1 +1 @@
1
- {"version":3,"file":"list-languages.cjs","names":["z","action"],"sources":["../../src/actions/list-languages.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListLanguagesInput = z.object({}).describe(\"Request model for listing available languages. No parameters required.\");\nexport const PromptmateIoListLanguagesOutput = z.object({\n languages: z.array(z.string()).describe(\"List of available language names for app configuration\"),\n}).describe(\"Response model for listing available languages.\");\n\nexport const promptmateIoListLanguages = action(\"PROMPTMATE_IO_LIST_LANGUAGES\", {\n slug: \"promptmate_io-list-languages\",\n name: \"List Available Languages\",\n description: \"Tool to list available languages for app configuration. Use when you need to retrieve supported language options.\",\n input: PromptmateIoListLanguagesInput,\n output: PromptmateIoListLanguagesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,wEAAwE;AAC5I,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wDAAwD,EAClG,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAE7D,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-languages.cjs","names":["z","action"],"sources":["../../src/actions/list-languages.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListLanguagesInput = z.object({}).describe(\"Request model for listing available languages. No parameters required.\");\nexport const PromptmateIoListLanguagesOutput = z.object({\n languages: z.array(z.string()).describe(\"List of available language names for app configuration\"),\n}).passthrough().describe(\"Response model for listing available languages.\");\n\nexport const promptmateIoListLanguages = action(\"PROMPTMATE_IO_LIST_LANGUAGES\", {\n slug: \"promptmate_io-list-languages\",\n name: \"List Available Languages\",\n description: \"Tool to list available languages for app configuration. Use when you need to retrieve supported language options.\",\n input: PromptmateIoListLanguagesInput,\n output: PromptmateIoListLanguagesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,wEAAwE;AAC5I,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wDAAwD,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAAiD;AAE3E,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PromptmateIoListLanguagesInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoListLanguagesOutput: z.ZodObject<{
6
6
  languages: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const promptmateIoListLanguages: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { promptmateIoListLanguages };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PromptmateIoListLanguagesInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PromptmateIoListLanguagesOutput: z.ZodObject<{
6
6
  languages: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const promptmateIoListLanguages: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { promptmateIoListLanguages };
@@ -5,7 +5,7 @@ const promptmateIoListLanguages = action("PROMPTMATE_IO_LIST_LANGUAGES", {
5
5
  name: "List Available Languages",
6
6
  description: "Tool to list available languages for app configuration. Use when you need to retrieve supported language options.",
7
7
  input: z.object({}).describe("Request model for listing available languages. No parameters required."),
8
- output: z.object({ languages: z.array(z.string()).describe("List of available language names for app configuration") }).describe("Response model for listing available languages.")
8
+ output: z.object({ languages: z.array(z.string()).describe("List of available language names for app configuration") }).passthrough().describe("Response model for listing available languages.")
9
9
  });
10
10
  //#endregion
11
11
  export { promptmateIoListLanguages };
@@ -1 +1 @@
1
- {"version":3,"file":"list-languages.mjs","names":[],"sources":["../../src/actions/list-languages.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListLanguagesInput = z.object({}).describe(\"Request model for listing available languages. No parameters required.\");\nexport const PromptmateIoListLanguagesOutput = z.object({\n languages: z.array(z.string()).describe(\"List of available language names for app configuration\"),\n}).describe(\"Response model for listing available languages.\");\n\nexport const promptmateIoListLanguages = action(\"PROMPTMATE_IO_LIST_LANGUAGES\", {\n slug: \"promptmate_io-list-languages\",\n name: \"List Available Languages\",\n description: \"Tool to list available languages for app configuration. Use when you need to retrieve supported language options.\",\n input: PromptmateIoListLanguagesInput,\n output: PromptmateIoListLanguagesOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,wEAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wDAAwD,EAClG,CAAC,CAAC,CAAC,SAAS,iDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-languages.mjs","names":[],"sources":["../../src/actions/list-languages.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListLanguagesInput = z.object({}).describe(\"Request model for listing available languages. No parameters required.\");\nexport const PromptmateIoListLanguagesOutput = z.object({\n languages: z.array(z.string()).describe(\"List of available language names for app configuration\"),\n}).passthrough().describe(\"Response model for listing available languages.\");\n\nexport const promptmateIoListLanguages = action(\"PROMPTMATE_IO_LIST_LANGUAGES\", {\n slug: \"promptmate_io-list-languages\",\n name: \"List Available Languages\",\n description: \"Tool to list available languages for app configuration. Use when you need to retrieve supported language options.\",\n input: PromptmateIoListLanguagesInput,\n output: PromptmateIoListLanguagesOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,wEAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wDAAwD,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAOhB;AACV,CAAC"}
@@ -5,8 +5,8 @@ const PromptmateIoListProjectsInput = zod.z.object({}).describe("Request model f
5
5
  const PromptmateIoListProjects_ProjectSchema = zod.z.object({
6
6
  projectId: zod.z.string().describe("Unique identifier for the project").nullable(),
7
7
  projectName: zod.z.string().describe("Name of the project").nullable()
8
- }).describe("Represents a single project.");
9
- const PromptmateIoListProjectsOutput = zod.z.object({ projects: zod.z.array(PromptmateIoListProjects_ProjectSchema).describe("List of available projects") }).describe("Response model for listing projects.");
8
+ }).passthrough().describe("Represents a single project.");
9
+ const PromptmateIoListProjectsOutput = zod.z.object({ projects: zod.z.array(PromptmateIoListProjects_ProjectSchema).describe("List of available projects") }).passthrough().describe("Response model for listing projects.");
10
10
  const promptmateIoListProjects = require_action.action("PROMPTMATE_IO_LIST_PROJECTS", {
11
11
  slug: "promptmate_io-list-projects",
12
12
  name: "List Projects",
@@ -1 +1 @@
1
- {"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListProjectsInput = z.object({}).describe(\"Request model for listing projects. No parameters required.\");\nconst PromptmateIoListProjects_ProjectSchema = z.object({\n projectId: z.string().describe(\"Unique identifier for the project\").nullable(),\n projectName: z.string().describe(\"Name of the project\").nullable(),\n}).describe(\"Represents a single project.\");\nexport const PromptmateIoListProjectsOutput = z.object({\n projects: z.array(PromptmateIoListProjects_ProjectSchema).describe(\"List of available projects\"),\n}).describe(\"Response model for listing projects.\");\n\nexport const promptmateIoListProjects = action(\"PROMPTMATE_IO_LIST_PROJECTS\", {\n slug: \"promptmate_io-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all available projects. Use when you need to retrieve the list of PromptMate projects.\",\n input: PromptmateIoListProjectsInput,\n output: PromptmateIoListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC7E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAC1C,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,UAAUA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,4BAA4B,EACjG,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAElD,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListProjectsInput = z.object({}).describe(\"Request model for listing projects. No parameters required.\");\nconst PromptmateIoListProjects_ProjectSchema = z.object({\n projectId: z.string().describe(\"Unique identifier for the project\").nullable(),\n projectName: z.string().describe(\"Name of the project\").nullable(),\n}).passthrough().describe(\"Represents a single project.\");\nexport const PromptmateIoListProjectsOutput = z.object({\n projects: z.array(PromptmateIoListProjects_ProjectSchema).describe(\"List of available projects\"),\n}).passthrough().describe(\"Response model for listing projects.\");\n\nexport const promptmateIoListProjects = action(\"PROMPTMATE_IO_LIST_PROJECTS\", {\n slug: \"promptmate_io-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all available projects. Use when you need to retrieve the list of PromptMate projects.\",\n input: PromptmateIoListProjectsInput,\n output: PromptmateIoListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC7E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8BAA8B;AACxD,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,UAAUA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,4BAA4B,EACjG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAEhE,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,8 +6,8 @@ declare const PromptmateIoListProjectsOutput: z.ZodObject<{
6
6
  projects: z.ZodArray<z.ZodObject<{
7
7
  projectId: z.ZodNullable<z.ZodString>;
8
8
  projectName: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>>;
10
- }, z.core.$strip>;
9
+ }, z.core.$loose>>;
10
+ }, z.core.$loose>;
11
11
  declare const promptmateIoListProjects: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
12
  //#endregion
13
13
  export { promptmateIoListProjects };
@@ -6,8 +6,8 @@ declare const PromptmateIoListProjectsOutput: z.ZodObject<{
6
6
  projects: z.ZodArray<z.ZodObject<{
7
7
  projectId: z.ZodNullable<z.ZodString>;
8
8
  projectName: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>>;
10
- }, z.core.$strip>;
9
+ }, z.core.$loose>>;
10
+ }, z.core.$loose>;
11
11
  declare const promptmateIoListProjects: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
12
  //#endregion
13
13
  export { promptmateIoListProjects };
@@ -5,13 +5,13 @@ const PromptmateIoListProjectsInput = z.object({}).describe("Request model for l
5
5
  const PromptmateIoListProjects_ProjectSchema = z.object({
6
6
  projectId: z.string().describe("Unique identifier for the project").nullable(),
7
7
  projectName: z.string().describe("Name of the project").nullable()
8
- }).describe("Represents a single project.");
8
+ }).passthrough().describe("Represents a single project.");
9
9
  const promptmateIoListProjects = action("PROMPTMATE_IO_LIST_PROJECTS", {
10
10
  slug: "promptmate_io-list-projects",
11
11
  name: "List Projects",
12
12
  description: "Tool to list all available projects. Use when you need to retrieve the list of PromptMate projects.",
13
13
  input: PromptmateIoListProjectsInput,
14
- output: z.object({ projects: z.array(PromptmateIoListProjects_ProjectSchema).describe("List of available projects") }).describe("Response model for listing projects.")
14
+ output: z.object({ projects: z.array(PromptmateIoListProjects_ProjectSchema).describe("List of available projects") }).passthrough().describe("Response model for listing projects.")
15
15
  });
16
16
  //#endregion
17
17
  export { promptmateIoListProjects };
@@ -1 +1 @@
1
- {"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListProjectsInput = z.object({}).describe(\"Request model for listing projects. No parameters required.\");\nconst PromptmateIoListProjects_ProjectSchema = z.object({\n projectId: z.string().describe(\"Unique identifier for the project\").nullable(),\n projectName: z.string().describe(\"Name of the project\").nullable(),\n}).describe(\"Represents a single project.\");\nexport const PromptmateIoListProjectsOutput = z.object({\n projects: z.array(PromptmateIoListProjects_ProjectSchema).describe(\"List of available projects\"),\n}).describe(\"Response model for listing projects.\");\n\nexport const promptmateIoListProjects = action(\"PROMPTMATE_IO_LIST_PROJECTS\", {\n slug: \"promptmate_io-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all available projects. Use when you need to retrieve the list of PromptMate projects.\",\n input: PromptmateIoListProjectsInput,\n output: PromptmateIoListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyC,EAAE,OAAO;CACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAK1C,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT4C,EAAE,OAAO,EACrD,UAAU,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,4BAA4B,EACjG,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListProjectsInput = z.object({}).describe(\"Request model for listing projects. No parameters required.\");\nconst PromptmateIoListProjects_ProjectSchema = z.object({\n projectId: z.string().describe(\"Unique identifier for the project\").nullable(),\n projectName: z.string().describe(\"Name of the project\").nullable(),\n}).passthrough().describe(\"Represents a single project.\");\nexport const PromptmateIoListProjectsOutput = z.object({\n projects: z.array(PromptmateIoListProjects_ProjectSchema).describe(\"List of available projects\"),\n}).passthrough().describe(\"Response model for listing projects.\");\n\nexport const promptmateIoListProjects = action(\"PROMPTMATE_IO_LIST_PROJECTS\", {\n slug: \"promptmate_io-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all available projects. Use when you need to retrieve the list of PromptMate projects.\",\n input: PromptmateIoListProjectsInput,\n output: PromptmateIoListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyC,EAAE,OAAO;CACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC7E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8BAA8B;AAKxD,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT4C,EAAE,OAAO,EACrD,UAAU,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,4BAA4B,EACjG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAOhB;AACV,CAAC"}
@@ -21,7 +21,7 @@ const PromptmateIoListTemplates_TemplateSchema = zod.z.object({
21
21
  templateVideo_url: zod.z.string().describe("URL to a video about the template").nullable().optional(),
22
22
  templateDescription: zod.z.string().describe("Description of the template").nullable().optional()
23
23
  }).passthrough().describe("Represents a single template.");
24
- const PromptmateIoListTemplatesOutput = zod.z.object({ templates: zod.z.array(PromptmateIoListTemplates_TemplateSchema).describe("List of available templates") }).describe("Response model for listing templates.");
24
+ const PromptmateIoListTemplatesOutput = zod.z.object({ templates: zod.z.array(PromptmateIoListTemplates_TemplateSchema).describe("List of available templates") }).passthrough().describe("Response model for listing templates.");
25
25
  const promptmateIoListTemplates = require_action.action("PROMPTMATE_IO_LIST_TEMPLATES", {
26
26
  slug: "promptmate_io-list-templates",
27
27
  name: "List Templates",
@@ -1 +1 @@
1
- {"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nconst PromptmateIoListTemplates_DataFieldSchema = z.object({\n name: z.string().nullable().optional(),\n type: z.string().nullable().optional(),\n options: z.array(z.string()).nullable().optional(),\n fileName: z.string().nullable().optional(),\n required: z.boolean().nullable().optional(),\n localFile: z.string().nullable().optional(),\n fieldOrder: z.number().int().nullable().optional(),\n defaultValue: z.string().nullable().optional(),\n}).passthrough().describe(\"Represents a data field in a template.\");\nconst PromptmateIoListTemplates_TemplateSchema = z.object({\n id: z.string().describe(\"Unique identifier for the template\").nullable(),\n dataFields: z.union([z.array(PromptmateIoListTemplates_DataFieldSchema), z.array(z.string())]).nullable().optional(),\n templateName: z.string().describe(\"Name of the template\").nullable(),\n templateType: z.string().describe(\"Type of the template\").nullable().optional(),\n templateCategory: z.string().describe(\"Category of the template\").nullable().optional(),\n templateVideo_url: z.string().describe(\"URL to a video about the template\").nullable().optional(),\n templateDescription: z.string().describe(\"Description of the template\").nullable().optional(),\n}).passthrough().describe(\"Represents a single template.\");\nexport const PromptmateIoListTemplatesOutput = z.object({\n templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe(\"List of available templates\"),\n}).describe(\"Response model for listing templates.\");\n\nexport const promptmateIoListTemplates = action(\"PROMPTMATE_IO_LIST_TEMPLATES\", {\n slug: \"promptmate_io-list-templates\",\n name: \"List Templates\",\n description: \"Tool to list all available templates. Use when you need to retrieve the catalogue of PromptMate templates.\",\n input: PromptmateIoListTemplatesInput,\n output: PromptmateIoListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzC,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/C,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAClE,MAAM,2CAA2CA,IAAAA,EAAE,OAAO;CACxD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,YAAYA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,MAAM,yCAAyC,GAAGA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACnE,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AACzD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAM,wCAAwC,CAAC,CAAC,SAAS,6BAA6B,EACrG,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAEnD,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nconst PromptmateIoListTemplates_DataFieldSchema = z.object({\n name: z.string().nullable().optional(),\n type: z.string().nullable().optional(),\n options: z.array(z.string()).nullable().optional(),\n fileName: z.string().nullable().optional(),\n required: z.boolean().nullable().optional(),\n localFile: z.string().nullable().optional(),\n fieldOrder: z.number().int().nullable().optional(),\n defaultValue: z.string().nullable().optional(),\n}).passthrough().describe(\"Represents a data field in a template.\");\nconst PromptmateIoListTemplates_TemplateSchema = z.object({\n id: z.string().describe(\"Unique identifier for the template\").nullable(),\n dataFields: z.union([z.array(PromptmateIoListTemplates_DataFieldSchema), z.array(z.string())]).nullable().optional(),\n templateName: z.string().describe(\"Name of the template\").nullable(),\n templateType: z.string().describe(\"Type of the template\").nullable().optional(),\n templateCategory: z.string().describe(\"Category of the template\").nullable().optional(),\n templateVideo_url: z.string().describe(\"URL to a video about the template\").nullable().optional(),\n templateDescription: z.string().describe(\"Description of the template\").nullable().optional(),\n}).passthrough().describe(\"Represents a single template.\");\nexport const PromptmateIoListTemplatesOutput = z.object({\n templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe(\"List of available templates\"),\n}).passthrough().describe(\"Response model for listing templates.\");\n\nexport const promptmateIoListTemplates = action(\"PROMPTMATE_IO_LIST_TEMPLATES\", {\n slug: \"promptmate_io-list-templates\",\n name: \"List Templates\",\n description: \"Tool to list all available templates. Use when you need to retrieve the catalogue of PromptMate templates.\",\n input: PromptmateIoListTemplatesInput,\n output: PromptmateIoListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzC,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/C,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAClE,MAAM,2CAA2CA,IAAAA,EAAE,OAAO;CACxD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,YAAYA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,MAAM,yCAAyC,GAAGA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACnE,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AACzD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,WAAWA,IAAAA,EAAE,MAAM,wCAAwC,CAAC,CAAC,SAAS,6BAA6B,EACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAEjE,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -21,7 +21,7 @@ declare const PromptmateIoListTemplatesOutput: z.ZodObject<{
21
21
  templateVideo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
22
  templateDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
23
  }, z.core.$loose>>;
24
- }, z.core.$strip>;
24
+ }, z.core.$loose>;
25
25
  declare const promptmateIoListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
26
  //#endregion
27
27
  export { promptmateIoListTemplates };
@@ -21,7 +21,7 @@ declare const PromptmateIoListTemplatesOutput: z.ZodObject<{
21
21
  templateVideo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
22
  templateDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
23
  }, z.core.$loose>>;
24
- }, z.core.$strip>;
24
+ }, z.core.$loose>;
25
25
  declare const promptmateIoListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
26
  //#endregion
27
27
  export { promptmateIoListTemplates };
@@ -26,7 +26,7 @@ const promptmateIoListTemplates = action("PROMPTMATE_IO_LIST_TEMPLATES", {
26
26
  name: "List Templates",
27
27
  description: "Tool to list all available templates. Use when you need to retrieve the catalogue of PromptMate templates.",
28
28
  input: PromptmateIoListTemplatesInput,
29
- output: z.object({ templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe("List of available templates") }).describe("Response model for listing templates.")
29
+ output: z.object({ templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe("List of available templates") }).passthrough().describe("Response model for listing templates.")
30
30
  });
31
31
  //#endregion
32
32
  export { promptmateIoListTemplates };
@@ -1 +1 @@
1
- {"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nconst PromptmateIoListTemplates_DataFieldSchema = z.object({\n name: z.string().nullable().optional(),\n type: z.string().nullable().optional(),\n options: z.array(z.string()).nullable().optional(),\n fileName: z.string().nullable().optional(),\n required: z.boolean().nullable().optional(),\n localFile: z.string().nullable().optional(),\n fieldOrder: z.number().int().nullable().optional(),\n defaultValue: z.string().nullable().optional(),\n}).passthrough().describe(\"Represents a data field in a template.\");\nconst PromptmateIoListTemplates_TemplateSchema = z.object({\n id: z.string().describe(\"Unique identifier for the template\").nullable(),\n dataFields: z.union([z.array(PromptmateIoListTemplates_DataFieldSchema), z.array(z.string())]).nullable().optional(),\n templateName: z.string().describe(\"Name of the template\").nullable(),\n templateType: z.string().describe(\"Type of the template\").nullable().optional(),\n templateCategory: z.string().describe(\"Category of the template\").nullable().optional(),\n templateVideo_url: z.string().describe(\"URL to a video about the template\").nullable().optional(),\n templateDescription: z.string().describe(\"Description of the template\").nullable().optional(),\n}).passthrough().describe(\"Represents a single template.\");\nexport const PromptmateIoListTemplatesOutput = z.object({\n templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe(\"List of available templates\"),\n}).describe(\"Response model for listing templates.\");\n\nexport const promptmateIoListTemplates = action(\"PROMPTMATE_IO_LIST_TEMPLATES\", {\n slug: \"promptmate_io-list-templates\",\n name: \"List Templates\",\n description: \"Tool to list all available templates. Use when you need to retrieve the catalogue of PromptMate templates.\",\n input: PromptmateIoListTemplatesInput,\n output: PromptmateIoListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAM,4CAA4C,EAAE,OAAO;CACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzC,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/C,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAClE,MAAM,2CAA2C,EAAE,OAAO;CACxD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,YAAY,EAAE,MAAM,CAAC,EAAE,MAAM,yCAAyC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACnE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AAKzD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,wCAAwC,CAAC,CAAC,SAAS,6BAA6B,EACrG,CAAC,CAAC,CAAC,SAAS,uCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nconst PromptmateIoListTemplates_DataFieldSchema = z.object({\n name: z.string().nullable().optional(),\n type: z.string().nullable().optional(),\n options: z.array(z.string()).nullable().optional(),\n fileName: z.string().nullable().optional(),\n required: z.boolean().nullable().optional(),\n localFile: z.string().nullable().optional(),\n fieldOrder: z.number().int().nullable().optional(),\n defaultValue: z.string().nullable().optional(),\n}).passthrough().describe(\"Represents a data field in a template.\");\nconst PromptmateIoListTemplates_TemplateSchema = z.object({\n id: z.string().describe(\"Unique identifier for the template\").nullable(),\n dataFields: z.union([z.array(PromptmateIoListTemplates_DataFieldSchema), z.array(z.string())]).nullable().optional(),\n templateName: z.string().describe(\"Name of the template\").nullable(),\n templateType: z.string().describe(\"Type of the template\").nullable().optional(),\n templateCategory: z.string().describe(\"Category of the template\").nullable().optional(),\n templateVideo_url: z.string().describe(\"URL to a video about the template\").nullable().optional(),\n templateDescription: z.string().describe(\"Description of the template\").nullable().optional(),\n}).passthrough().describe(\"Represents a single template.\");\nexport const PromptmateIoListTemplatesOutput = z.object({\n templates: z.array(PromptmateIoListTemplates_TemplateSchema).describe(\"List of available templates\"),\n}).passthrough().describe(\"Response model for listing templates.\");\n\nexport const promptmateIoListTemplates = action(\"PROMPTMATE_IO_LIST_TEMPLATES\", {\n slug: \"promptmate_io-list-templates\",\n name: \"List Templates\",\n description: \"Tool to list all available templates. Use when you need to retrieve the catalogue of PromptMate templates.\",\n input: PromptmateIoListTemplatesInput,\n output: PromptmateIoListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAClI,MAAM,4CAA4C,EAAE,OAAO;CACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzC,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1C,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/C,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAClE,MAAM,2CAA2C,EAAE,OAAO;CACxD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,YAAY,EAAE,MAAM,CAAC,EAAE,MAAM,yCAAyC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACnE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AAKzD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,WAAW,EAAE,MAAM,wCAAwC,CAAC,CAAC,SAAS,6BAA6B,EACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAOhB;AACV,CAAC"}
@@ -9,11 +9,11 @@ const PromptmateIoListWebhooks_WebhookSchema = zod.z.object({
9
9
  webhookType: zod.z.string().describe("Type of events subscribed by the webhook ('job' or 'row')").nullable().optional(),
10
10
  restrictedAppIds: zod.z.array(zod.z.string()).describe("List of app IDs that can trigger this webhook").nullable().optional(),
11
11
  webhookReference: zod.z.string().describe("Client-defined identifier for correlation or de-duplication").nullable().optional()
12
- }).describe("Represents a single webhook configuration.");
12
+ }).passthrough().describe("Represents a single webhook configuration.");
13
13
  const PromptmateIoListWebhooksOutput = zod.z.object({
14
14
  total: zod.z.number().int().describe("Total number of webhooks returned").nullable(),
15
15
  webhooks: zod.z.array(PromptmateIoListWebhooks_WebhookSchema).describe("Array of all registered webhooks.")
16
- }).describe("Response model for listing webhooks.");
16
+ }).passthrough().describe("Response model for listing webhooks.");
17
17
  const promptmateIoListWebhooks = require_action.action("PROMPTMATE_IO_LIST_WEBHOOKS", {
18
18
  slug: "promptmate_io-list-webhooks",
19
19
  name: "List Webhooks",
@@ -1 +1 @@
1
- {"version":3,"file":"list-webhooks.cjs","names":["z","action"],"sources":["../../src/actions/list-webhooks.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListWebhooksInput = z.object({}).describe(\"Request model for listing webhooks. No parameters required.\");\nconst PromptmateIoListWebhooks_WebhookSchema = z.object({\n webhookId: z.string().describe(\"Unique identifier of the webhook\").nullable(),\n endpointUrl: z.string().describe(\"Endpoint URL that receives webhook events\").nullable(),\n webhookName: z.string().describe(\"Optional friendly name for the webhook\").nullable().optional(),\n webhookType: z.string().describe(\"Type of events subscribed by the webhook ('job' or 'row')\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of app IDs that can trigger this webhook\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication\").nullable().optional(),\n}).describe(\"Represents a single webhook configuration.\");\nexport const PromptmateIoListWebhooksOutput = z.object({\n total: z.number().int().describe(\"Total number of webhooks returned\").nullable(),\n webhooks: z.array(PromptmateIoListWebhooks_WebhookSchema).describe(\"Array of all registered webhooks.\"),\n}).describe(\"Response model for listing webhooks.\");\n\nexport const promptmateIoListWebhooks = action(\"PROMPTMATE_IO_LIST_WEBHOOKS\", {\n slug: \"promptmate_io-list-webhooks\",\n name: \"List Webhooks\",\n description: \"Tool to list all configured webhooks. Use when you need to inspect current webhook subscriptions.\",\n input: PromptmateIoListWebhooksInput,\n output: PromptmateIoListWebhooksOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACvF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3H,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC/E,UAAUA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,mCAAmC;AACxG,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAElD,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-webhooks.cjs","names":["z","action"],"sources":["../../src/actions/list-webhooks.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListWebhooksInput = z.object({}).describe(\"Request model for listing webhooks. No parameters required.\");\nconst PromptmateIoListWebhooks_WebhookSchema = z.object({\n webhookId: z.string().describe(\"Unique identifier of the webhook\").nullable(),\n endpointUrl: z.string().describe(\"Endpoint URL that receives webhook events\").nullable(),\n webhookName: z.string().describe(\"Optional friendly name for the webhook\").nullable().optional(),\n webhookType: z.string().describe(\"Type of events subscribed by the webhook ('job' or 'row')\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of app IDs that can trigger this webhook\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication\").nullable().optional(),\n}).passthrough().describe(\"Represents a single webhook configuration.\");\nexport const PromptmateIoListWebhooksOutput = z.object({\n total: z.number().int().describe(\"Total number of webhooks returned\").nullable(),\n webhooks: z.array(PromptmateIoListWebhooks_WebhookSchema).describe(\"Array of all registered webhooks.\"),\n}).passthrough().describe(\"Response model for listing webhooks.\");\n\nexport const promptmateIoListWebhooks = action(\"PROMPTMATE_IO_LIST_WEBHOOKS\", {\n slug: \"promptmate_io-list-webhooks\",\n name: \"List Webhooks\",\n description: \"Tool to list all configured webhooks. Use when you need to inspect current webhook subscriptions.\",\n input: PromptmateIoListWebhooksInput,\n output: PromptmateIoListWebhooksOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACvF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAA4C;AACtE,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC/E,UAAUA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,mCAAmC;AACxG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAEhE,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -11,8 +11,8 @@ declare const PromptmateIoListWebhooksOutput: z.ZodObject<{
11
11
  webhookType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
12
  restrictedAppIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
13
13
  webhookReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
- }, z.core.$strip>>;
15
- }, z.core.$strip>;
14
+ }, z.core.$loose>>;
15
+ }, z.core.$loose>;
16
16
  declare const promptmateIoListWebhooks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
17
  //#endregion
18
18
  export { promptmateIoListWebhooks };
@@ -11,8 +11,8 @@ declare const PromptmateIoListWebhooksOutput: z.ZodObject<{
11
11
  webhookType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
12
  restrictedAppIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
13
13
  webhookReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
- }, z.core.$strip>>;
15
- }, z.core.$strip>;
14
+ }, z.core.$loose>>;
15
+ }, z.core.$loose>;
16
16
  declare const promptmateIoListWebhooks: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
17
  //#endregion
18
18
  export { promptmateIoListWebhooks };
@@ -9,7 +9,7 @@ const PromptmateIoListWebhooks_WebhookSchema = z.object({
9
9
  webhookType: z.string().describe("Type of events subscribed by the webhook ('job' or 'row')").nullable().optional(),
10
10
  restrictedAppIds: z.array(z.string()).describe("List of app IDs that can trigger this webhook").nullable().optional(),
11
11
  webhookReference: z.string().describe("Client-defined identifier for correlation or de-duplication").nullable().optional()
12
- }).describe("Represents a single webhook configuration.");
12
+ }).passthrough().describe("Represents a single webhook configuration.");
13
13
  const promptmateIoListWebhooks = action("PROMPTMATE_IO_LIST_WEBHOOKS", {
14
14
  slug: "promptmate_io-list-webhooks",
15
15
  name: "List Webhooks",
@@ -18,7 +18,7 @@ const promptmateIoListWebhooks = action("PROMPTMATE_IO_LIST_WEBHOOKS", {
18
18
  output: z.object({
19
19
  total: z.number().int().describe("Total number of webhooks returned").nullable(),
20
20
  webhooks: z.array(PromptmateIoListWebhooks_WebhookSchema).describe("Array of all registered webhooks.")
21
- }).describe("Response model for listing webhooks.")
21
+ }).passthrough().describe("Response model for listing webhooks.")
22
22
  });
23
23
  //#endregion
24
24
  export { promptmateIoListWebhooks };
@@ -1 +1 @@
1
- {"version":3,"file":"list-webhooks.mjs","names":[],"sources":["../../src/actions/list-webhooks.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListWebhooksInput = z.object({}).describe(\"Request model for listing webhooks. No parameters required.\");\nconst PromptmateIoListWebhooks_WebhookSchema = z.object({\n webhookId: z.string().describe(\"Unique identifier of the webhook\").nullable(),\n endpointUrl: z.string().describe(\"Endpoint URL that receives webhook events\").nullable(),\n webhookName: z.string().describe(\"Optional friendly name for the webhook\").nullable().optional(),\n webhookType: z.string().describe(\"Type of events subscribed by the webhook ('job' or 'row')\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of app IDs that can trigger this webhook\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication\").nullable().optional(),\n}).describe(\"Represents a single webhook configuration.\");\nexport const PromptmateIoListWebhooksOutput = z.object({\n total: z.number().int().describe(\"Total number of webhooks returned\").nullable(),\n webhooks: z.array(PromptmateIoListWebhooks_WebhookSchema).describe(\"Array of all registered webhooks.\"),\n}).describe(\"Response model for listing webhooks.\");\n\nexport const promptmateIoListWebhooks = action(\"PROMPTMATE_IO_LIST_WEBHOOKS\", {\n slug: \"promptmate_io-list-webhooks\",\n name: \"List Webhooks\",\n description: \"Tool to list all configured webhooks. Use when you need to inspect current webhook subscriptions.\",\n input: PromptmateIoListWebhooksInput,\n output: PromptmateIoListWebhooksOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyC,EAAE,OAAO;CACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3H,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAMxD,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV4C,EAAE,OAAO;EACrD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC/E,UAAU,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,mCAAmC;CACxG,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-webhooks.mjs","names":[],"sources":["../../src/actions/list-webhooks.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoListWebhooksInput = z.object({}).describe(\"Request model for listing webhooks. No parameters required.\");\nconst PromptmateIoListWebhooks_WebhookSchema = z.object({\n webhookId: z.string().describe(\"Unique identifier of the webhook\").nullable(),\n endpointUrl: z.string().describe(\"Endpoint URL that receives webhook events\").nullable(),\n webhookName: z.string().describe(\"Optional friendly name for the webhook\").nullable().optional(),\n webhookType: z.string().describe(\"Type of events subscribed by the webhook ('job' or 'row')\").nullable().optional(),\n restrictedAppIds: z.array(z.string()).describe(\"List of app IDs that can trigger this webhook\").nullable().optional(),\n webhookReference: z.string().describe(\"Client-defined identifier for correlation or de-duplication\").nullable().optional(),\n}).passthrough().describe(\"Represents a single webhook configuration.\");\nexport const PromptmateIoListWebhooksOutput = z.object({\n total: z.number().int().describe(\"Total number of webhooks returned\").nullable(),\n webhooks: z.array(PromptmateIoListWebhooks_WebhookSchema).describe(\"Array of all registered webhooks.\"),\n}).passthrough().describe(\"Response model for listing webhooks.\");\n\nexport const promptmateIoListWebhooks = action(\"PROMPTMATE_IO_LIST_WEBHOOKS\", {\n slug: \"promptmate_io-list-webhooks\",\n name: \"List Webhooks\",\n description: \"Tool to list all configured webhooks. Use when you need to inspect current webhook subscriptions.\",\n input: PromptmateIoListWebhooksInput,\n output: PromptmateIoListWebhooksOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAChI,MAAM,yCAAyC,EAAE,OAAO;CACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC5E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAA4C;AAMtE,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV4C,EAAE,OAAO;EACrD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC/E,UAAU,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,mCAAmC;CACxG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAOhB;AACV,CAAC"}
@@ -2,14 +2,14 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/use-template.ts
4
4
  const PromptmateIoUseTemplateInput = zod.z.object({
5
- data: zod.z.object({}).describe("Data to fill the template with. Key-value pairs where keys match template variables and values are strings.").optional(),
5
+ data: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Data to fill the template with. Key-value pairs where keys match template variables and values are strings.").optional(),
6
6
  templateId: zod.z.string().describe("The template ID to use")
7
7
  }).describe("Request model for using a template.");
8
8
  const PromptmateIoUseTemplateOutput = zod.z.object({
9
9
  appId: zod.z.string().describe("The app ID created or associated with the template usage").nullable(),
10
10
  message: zod.z.string().describe("Status message for the template usage operation").nullable(),
11
11
  templateId: zod.z.string().describe("The template ID that was used").nullable()
12
- }).describe("Response model for template usage.");
12
+ }).passthrough().describe("Response model for template usage.");
13
13
  const promptmateIoUseTemplate = require_action.action("PROMPTMATE_IO_USE_TEMPLATE", {
14
14
  slug: "promptmate_io-use-template",
15
15
  name: "Use Template",
@@ -1 +1 @@
1
- {"version":3,"file":"use-template.cjs","names":["z","action"],"sources":["../../src/actions/use-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoUseTemplateInput = z.object({\n data: z.object({}).describe(\"Data to fill the template with. Key-value pairs where keys match template variables and values are strings.\").optional(),\n templateId: z.string().describe(\"The template ID to use\"),\n}).describe(\"Request model for using a template.\");\nexport const PromptmateIoUseTemplateOutput = z.object({\n appId: z.string().describe(\"The app ID created or associated with the template usage\").nullable(),\n message: z.string().describe(\"Status message for the template usage operation\").nullable(),\n templateId: z.string().describe(\"The template ID that was used\").nullable(),\n}).describe(\"Response model for template usage.\");\n\nexport const promptmateIoUseTemplate = action(\"PROMPTMATE_IO_USE_TEMPLATE\", {\n slug: \"promptmate_io-use-template\",\n name: \"Use Template\",\n description: \"Tool to use a specific template to process data. Use when you need to apply a template with optional data parameters.\",\n input: PromptmateIoUseTemplateInput,\n output: PromptmateIoUseTemplateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CACpJ,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AAC1D,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAChG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAEhD,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"use-template.cjs","names":["z","action"],"sources":["../../src/actions/use-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoUseTemplateInput = z.object({\n data: z.record(z.string(), z.unknown()).describe(\"Data to fill the template with. Key-value pairs where keys match template variables and values are strings.\").optional(),\n templateId: z.string().describe(\"The template ID to use\"),\n}).describe(\"Request model for using a template.\");\nexport const PromptmateIoUseTemplateOutput = z.object({\n appId: z.string().describe(\"The app ID created or associated with the template usage\").nullable(),\n message: z.string().describe(\"Status message for the template usage operation\").nullable(),\n templateId: z.string().describe(\"The template ID that was used\").nullable(),\n}).passthrough().describe(\"Response model for template usage.\");\n\nexport const promptmateIoUseTemplate = action(\"PROMPTMATE_IO_USE_TEMPLATE\", {\n slug: \"promptmate_io-use-template\",\n name: \"Use Template\",\n description: \"Tool to use a specific template to process data. Use when you need to apply a template with optional data parameters.\",\n input: PromptmateIoUseTemplateInput,\n output: PromptmateIoUseTemplateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CACzK,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AAC1D,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAChG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAE9D,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -2,17 +2,17 @@ import { z } from "zod";
2
2
 
3
3
  //#region src/actions/use-template.d.ts
4
4
  declare const PromptmateIoUseTemplateInput: z.ZodObject<{
5
- data: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
5
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
6
  templateId: z.ZodString;
7
7
  }, z.core.$strip>;
8
8
  declare const PromptmateIoUseTemplateOutput: z.ZodObject<{
9
9
  appId: z.ZodNullable<z.ZodString>;
10
10
  message: z.ZodNullable<z.ZodString>;
11
11
  templateId: z.ZodNullable<z.ZodString>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const promptmateIoUseTemplate: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  templateId: string;
15
- data?: Record<string, never> | undefined;
15
+ data?: Record<string, unknown> | undefined;
16
16
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
17
  //#endregion
18
18
  export { promptmateIoUseTemplate };
@@ -2,17 +2,17 @@ import { z } from "zod";
2
2
 
3
3
  //#region src/actions/use-template.d.ts
4
4
  declare const PromptmateIoUseTemplateInput: z.ZodObject<{
5
- data: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
5
+ data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
6
  templateId: z.ZodString;
7
7
  }, z.core.$strip>;
8
8
  declare const PromptmateIoUseTemplateOutput: z.ZodObject<{
9
9
  appId: z.ZodNullable<z.ZodString>;
10
10
  message: z.ZodNullable<z.ZodString>;
11
11
  templateId: z.ZodNullable<z.ZodString>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const promptmateIoUseTemplate: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  templateId: string;
15
- data?: Record<string, never> | undefined;
15
+ data?: Record<string, unknown> | undefined;
16
16
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
17
  //#endregion
18
18
  export { promptmateIoUseTemplate };
@@ -5,14 +5,14 @@ const promptmateIoUseTemplate = action("PROMPTMATE_IO_USE_TEMPLATE", {
5
5
  name: "Use Template",
6
6
  description: "Tool to use a specific template to process data. Use when you need to apply a template with optional data parameters.",
7
7
  input: z.object({
8
- data: z.object({}).describe("Data to fill the template with. Key-value pairs where keys match template variables and values are strings.").optional(),
8
+ data: z.record(z.string(), z.unknown()).describe("Data to fill the template with. Key-value pairs where keys match template variables and values are strings.").optional(),
9
9
  templateId: z.string().describe("The template ID to use")
10
10
  }).describe("Request model for using a template."),
11
11
  output: z.object({
12
12
  appId: z.string().describe("The app ID created or associated with the template usage").nullable(),
13
13
  message: z.string().describe("Status message for the template usage operation").nullable(),
14
14
  templateId: z.string().describe("The template ID that was used").nullable()
15
- }).describe("Response model for template usage.")
15
+ }).passthrough().describe("Response model for template usage.")
16
16
  });
17
17
  //#endregion
18
18
  export { promptmateIoUseTemplate };
@@ -1 +1 @@
1
- {"version":3,"file":"use-template.mjs","names":[],"sources":["../../src/actions/use-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoUseTemplateInput = z.object({\n data: z.object({}).describe(\"Data to fill the template with. Key-value pairs where keys match template variables and values are strings.\").optional(),\n templateId: z.string().describe(\"The template ID to use\"),\n}).describe(\"Request model for using a template.\");\nexport const PromptmateIoUseTemplateOutput = z.object({\n appId: z.string().describe(\"The app ID created or associated with the template usage\").nullable(),\n message: z.string().describe(\"Status message for the template usage operation\").nullable(),\n templateId: z.string().describe(\"The template ID that was used\").nullable(),\n}).describe(\"Response model for template usage.\");\n\nexport const promptmateIoUseTemplate = action(\"PROMPTMATE_IO_USE_TEMPLATE\", {\n slug: \"promptmate_io-use-template\",\n name: \"Use Template\",\n description: \"Tool to use a specific template to process data. Use when you need to apply a template with optional data parameters.\",\n input: PromptmateIoUseTemplateInput,\n output: PromptmateIoUseTemplateOutput,\n});\n"],"mappings":";;AAcA,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd0C,EAAE,OAAO;EACnD,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;EACpJ,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CAC1D,CAAC,CAAC,CAAC,SAAS,qCAWH;CACP,QAX2C,EAAE,OAAO;EACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAChG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;EACzF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC5E,CAAC,CAAC,CAAC,SAAS,oCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"use-template.mjs","names":[],"sources":["../../src/actions/use-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PromptmateIoUseTemplateInput = z.object({\n data: z.record(z.string(), z.unknown()).describe(\"Data to fill the template with. Key-value pairs where keys match template variables and values are strings.\").optional(),\n templateId: z.string().describe(\"The template ID to use\"),\n}).describe(\"Request model for using a template.\");\nexport const PromptmateIoUseTemplateOutput = z.object({\n appId: z.string().describe(\"The app ID created or associated with the template usage\").nullable(),\n message: z.string().describe(\"Status message for the template usage operation\").nullable(),\n templateId: z.string().describe(\"The template ID that was used\").nullable(),\n}).passthrough().describe(\"Response model for template usage.\");\n\nexport const promptmateIoUseTemplate = action(\"PROMPTMATE_IO_USE_TEMPLATE\", {\n slug: \"promptmate_io-use-template\",\n name: \"Use Template\",\n description: \"Tool to use a specific template to process data. Use when you need to apply a template with optional data parameters.\",\n input: PromptmateIoUseTemplateInput,\n output: PromptmateIoUseTemplateOutput,\n});\n"],"mappings":";;AAcA,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd0C,EAAE,OAAO;EACnD,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;EACzK,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CAC1D,CAAC,CAAC,CAAC,SAAS,qCAWH;CACP,QAX2C,EAAE,OAAO;EACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAChG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;EACzF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oCAOhB;AACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/promptmate_io",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"