@keystrokehq/proxiedmail 0.1.0 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/create-webhook-receiver.cjs +5 -5
  4. package/dist/actions/create-webhook-receiver.cjs.map +1 -1
  5. package/dist/actions/create-webhook-receiver.d.cts +8 -3
  6. package/dist/actions/create-webhook-receiver.d.cts.map +1 -1
  7. package/dist/actions/create-webhook-receiver.d.mts +8 -3
  8. package/dist/actions/create-webhook-receiver.d.mts.map +1 -1
  9. package/dist/actions/create-webhook-receiver.mjs +5 -5
  10. package/dist/actions/create-webhook-receiver.mjs.map +1 -1
  11. package/dist/actions/get-api-token.cjs +1 -1
  12. package/dist/actions/get-api-token.cjs.map +1 -1
  13. package/dist/actions/get-api-token.d.cts +9 -3
  14. package/dist/actions/get-api-token.d.cts.map +1 -1
  15. package/dist/actions/get-api-token.d.mts +9 -3
  16. package/dist/actions/get-api-token.d.mts.map +1 -1
  17. package/dist/actions/get-api-token.mjs +1 -1
  18. package/dist/actions/get-api-token.mjs.map +1 -1
  19. package/dist/actions/get-webhook-data.cjs +4 -4
  20. package/dist/actions/get-webhook-data.cjs.map +1 -1
  21. package/dist/actions/get-webhook-data.d.cts +13 -3
  22. package/dist/actions/get-webhook-data.d.cts.map +1 -1
  23. package/dist/actions/get-webhook-data.d.mts +13 -3
  24. package/dist/actions/get-webhook-data.d.mts.map +1 -1
  25. package/dist/actions/get-webhook-data.mjs +4 -4
  26. package/dist/actions/get-webhook-data.mjs.map +1 -1
  27. package/dist/actions/list-proxy-bindings.cjs +19 -19
  28. package/dist/actions/list-proxy-bindings.cjs.map +1 -1
  29. package/dist/actions/list-proxy-bindings.d.cts +35 -3
  30. package/dist/actions/list-proxy-bindings.d.cts.map +1 -1
  31. package/dist/actions/list-proxy-bindings.d.mts +35 -3
  32. package/dist/actions/list-proxy-bindings.d.mts.map +1 -1
  33. package/dist/actions/list-proxy-bindings.mjs +19 -19
  34. package/dist/actions/list-proxy-bindings.mjs.map +1 -1
  35. package/dist/actions/update-proxy-binding.cjs +20 -20
  36. package/dist/actions/update-proxy-binding.cjs.map +1 -1
  37. package/dist/actions/update-proxy-binding.d.cts +54 -3
  38. package/dist/actions/update-proxy-binding.d.cts.map +1 -1
  39. package/dist/actions/update-proxy-binding.d.mts +54 -3
  40. package/dist/actions/update-proxy-binding.d.mts.map +1 -1
  41. package/dist/actions/update-proxy-binding.mjs +20 -20
  42. package/dist/actions/update-proxy-binding.mjs.map +1 -1
  43. package/dist/catalog.cjs +7 -1
  44. package/dist/catalog.cjs.map +1 -1
  45. package/dist/catalog.d.cts +8 -0
  46. package/dist/catalog.d.mts +8 -0
  47. package/dist/catalog.mjs +7 -1
  48. package/dist/catalog.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"action.cjs","names":["proxiedmail","executeProxiedmailTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return proxiedmail.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeProxiedmailTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.cjs","names":["proxiedmail","executeProxiedmailTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return proxiedmail.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeProxiedmailTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return proxiedmail.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeProxiedmailTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return proxiedmail.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeProxiedmailTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -3,11 +3,11 @@ let zod = require("zod");
3
3
  //#region src/actions/create-webhook-receiver.ts
4
4
  const ProxiedmailCreateWebhookReceiverInput = zod.z.object({}).describe("Request model for CREATE_WEBHOOK_RECEIVER action.\nNo parameters required to create a webhook receiver.");
5
5
  const ProxiedmailCreateWebhookReceiverOutput = zod.z.object({
6
- id: zod.z.string().describe("Identifier of the created webhook receiver"),
7
- status: zod.z.string().describe("API call status, always 'ok'"),
8
- get_url: zod.z.string().describe("URL to GET stored webhook payloads"),
9
- call_url: zod.z.string().describe("URL to POST incoming webhook payloads")
10
- }).describe("Response model for CREATE_WEBHOOK_RECEIVER action.");
6
+ id: zod.z.string().describe("Identifier of the created webhook receiver").nullable(),
7
+ status: zod.z.string().describe("API call status, always 'ok'").nullable(),
8
+ get_url: zod.z.string().describe("URL to GET stored webhook payloads").nullable(),
9
+ call_url: zod.z.string().describe("URL to POST incoming webhook payloads").nullable()
10
+ }).passthrough().describe("Response model for CREATE_WEBHOOK_RECEIVER action.");
11
11
  const proxiedmailCreateWebhookReceiver = require_action.action("PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER", {
12
12
  slug: "proxiedmail-create-webhook-receiver",
13
13
  name: "Create webhook receiver",
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook-receiver.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailCreateWebhookReceiverInput: z.ZodTypeAny = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\"),\n status: z.string().describe(\"API call status, always 'ok'\"),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\"),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\"),\n}).describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAsDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAAyG;AAClM,MAAa,yCAAuDA,IAAAA,EAAE,OAAO;CAC3E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACpE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC1D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CACjE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC;AACvE,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAEhE,MAAa,mCAAmCC,eAAAA,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook-receiver.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailCreateWebhookReceiverInput = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAAyG;AACpL,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACrE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC5E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;AAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAE9E,MAAa,mCAAmCC,eAAAA,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,14 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/create-webhook-receiver.d.ts
4
- declare const ProxiedmailCreateWebhookReceiverInput: z.ZodTypeAny;
5
- declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodTypeAny;
6
- declare const proxiedmailCreateWebhookReceiver: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailCreateWebhookReceiverInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodObject<{
6
+ id: z.ZodNullable<z.ZodString>;
7
+ status: z.ZodNullable<z.ZodString>;
8
+ get_url: z.ZodNullable<z.ZodString>;
9
+ call_url: z.ZodNullable<z.ZodString>;
10
+ }, z.core.$loose>;
11
+ declare const proxiedmailCreateWebhookReceiver: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
12
  //#endregion
8
13
  export { proxiedmailCreateWebhookReceiver };
9
14
  //# sourceMappingURL=create-webhook-receiver.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook-receiver.d.cts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;cAIa,qCAAA,EAAuC,CAAA,CAAE,UAA6I;AAAA,cACtL,sCAAA,EAAwC,CAAA,CAAE,UAKU;AAAA,cAEpD,gCAAA,gCAAgC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"create-webhook-receiver.d.cts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,14 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/create-webhook-receiver.d.ts
4
- declare const ProxiedmailCreateWebhookReceiverInput: z.ZodTypeAny;
5
- declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodTypeAny;
6
- declare const proxiedmailCreateWebhookReceiver: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailCreateWebhookReceiverInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodObject<{
6
+ id: z.ZodNullable<z.ZodString>;
7
+ status: z.ZodNullable<z.ZodString>;
8
+ get_url: z.ZodNullable<z.ZodString>;
9
+ call_url: z.ZodNullable<z.ZodString>;
10
+ }, z.core.$loose>;
11
+ declare const proxiedmailCreateWebhookReceiver: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
12
  //#endregion
8
13
  export { proxiedmailCreateWebhookReceiver };
9
14
  //# sourceMappingURL=create-webhook-receiver.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook-receiver.d.mts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;cAIa,qCAAA,EAAuC,CAAA,CAAE,UAA6I;AAAA,cACtL,sCAAA,EAAwC,CAAA,CAAE,UAKU;AAAA,cAEpD,gCAAA,gCAAgC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"create-webhook-receiver.d.mts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -6,11 +6,11 @@ const proxiedmailCreateWebhookReceiver = action("PROXIEDMAIL_CREATE_WEBHOOK_RECE
6
6
  description: "Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.",
7
7
  input: z.object({}).describe("Request model for CREATE_WEBHOOK_RECEIVER action.\nNo parameters required to create a webhook receiver."),
8
8
  output: z.object({
9
- id: z.string().describe("Identifier of the created webhook receiver"),
10
- status: z.string().describe("API call status, always 'ok'"),
11
- get_url: z.string().describe("URL to GET stored webhook payloads"),
12
- call_url: z.string().describe("URL to POST incoming webhook payloads")
13
- }).describe("Response model for CREATE_WEBHOOK_RECEIVER action.")
9
+ id: z.string().describe("Identifier of the created webhook receiver").nullable(),
10
+ status: z.string().describe("API call status, always 'ok'").nullable(),
11
+ get_url: z.string().describe("URL to GET stored webhook payloads").nullable(),
12
+ call_url: z.string().describe("URL to POST incoming webhook payloads").nullable()
13
+ }).passthrough().describe("Response model for CREATE_WEBHOOK_RECEIVER action.")
14
14
  });
15
15
  //#endregion
16
16
  export { proxiedmailCreateWebhookReceiver };
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook-receiver.mjs","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailCreateWebhookReceiverInput: z.ZodTypeAny = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\"),\n status: z.string().describe(\"API call status, always 'ok'\"),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\"),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\"),\n}).describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":";;AAYA,MAAa,mCAAmC,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZiE,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAYhF;CACP,QAZkE,EAAE,OAAO;EAC3E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;EACpE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;EAC1D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;EACjE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC;CACvE,CAAC,CAAC,CAAC,SAAS,oDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook-receiver.mjs","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailCreateWebhookReceiverInput = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":";;AAYA,MAAa,mCAAmC,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZmD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAYlE;CACP,QAZoD,EAAE,OAAO;EAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;EAC/E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;EAC5E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/get-api-token.ts
4
4
  const ProxiedmailGetApiTokenInput = zod.z.object({ bearer_token: zod.z.string().describe("Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.") }).describe("Request model for GetApiToken action.");
5
- const ProxiedmailGetApiTokenOutput = zod.z.object({ token: zod.z.string().describe("Permanent API token to use in the `Token` header for subsequent requests.") }).describe("Response model for GetApiToken action.");
5
+ const ProxiedmailGetApiTokenOutput = zod.z.object({ token: zod.z.string().describe("Permanent API token to use in the `Token` header for subsequent requests.").nullable() }).passthrough().describe("Response model for GetApiToken action.");
6
6
  const proxiedmailGetApiToken = require_action.action("PROXIEDMAIL_GET_API_TOKEN", {
7
7
  slug: "proxiedmail-get-api-token",
8
8
  name: "Get API Token",
@@ -1 +1 @@
1
- {"version":3,"file":"get-api-token.cjs","names":["z","action"],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput: z.ZodTypeAny = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput: z.ZodTypeAny = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\"),\n}).describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCAAuC;AACnD,MAAa,+BAA6CA,IAAAA,EAAE,OAAO,EACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,EACxG,CAAC,CAAC,CAAC,SAAS,wCAAwC;AAEpD,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-api-token.cjs","names":["z","action"],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCAAuC;AACnD,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-api-token.d.ts
4
- declare const ProxiedmailGetApiTokenInput: z.ZodTypeAny;
5
- declare const ProxiedmailGetApiTokenOutput: z.ZodTypeAny;
6
- declare const proxiedmailGetApiToken: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailGetApiTokenInput: z.ZodObject<{
5
+ bearer_token: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ProxiedmailGetApiTokenOutput: z.ZodObject<{
8
+ token: z.ZodNullable<z.ZodString>;
9
+ }, z.core.$loose>;
10
+ declare const proxiedmailGetApiToken: import("@keystrokehq/action").WorkflowActionDefinition<{
11
+ bearer_token: string;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { proxiedmailGetApiToken };
9
15
  //# sourceMappingURL=get-api-token.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-api-token.d.cts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAEQ;AAAA,cACvC,4BAAA,EAA8B,CAAA,CAAE,UAEQ;AAAA,cAExC,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-api-token.d.cts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,gCAAsB,wBAAA"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-api-token.d.ts
4
- declare const ProxiedmailGetApiTokenInput: z.ZodTypeAny;
5
- declare const ProxiedmailGetApiTokenOutput: z.ZodTypeAny;
6
- declare const proxiedmailGetApiToken: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailGetApiTokenInput: z.ZodObject<{
5
+ bearer_token: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ProxiedmailGetApiTokenOutput: z.ZodObject<{
8
+ token: z.ZodNullable<z.ZodString>;
9
+ }, z.core.$loose>;
10
+ declare const proxiedmailGetApiToken: import("@keystrokehq/action").WorkflowActionDefinition<{
11
+ bearer_token: string;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { proxiedmailGetApiToken };
9
15
  //# sourceMappingURL=get-api-token.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-api-token.d.mts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAEQ;AAAA,cACvC,4BAAA,EAA8B,CAAA,CAAE,UAEQ;AAAA,cAExC,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-api-token.d.mts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,gCAAsB,wBAAA"}
@@ -5,7 +5,7 @@ const proxiedmailGetApiToken = action("PROXIEDMAIL_GET_API_TOKEN", {
5
5
  name: "Get API Token",
6
6
  description: "Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).",
7
7
  input: z.object({ bearer_token: z.string().describe("Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.") }).describe("Request model for GetApiToken action."),
8
- output: z.object({ token: z.string().describe("Permanent API token to use in the `Token` header for subsequent requests.") }).describe("Response model for GetApiToken action.")
8
+ output: z.object({ token: z.string().describe("Permanent API token to use in the `Token` header for subsequent requests.").nullable() }).passthrough().describe("Response model for GetApiToken action.")
9
9
  });
10
10
  //#endregion
11
11
  export { proxiedmailGetApiToken };
@@ -1 +1 @@
1
- {"version":3,"file":"get-api-token.mjs","names":[],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput: z.ZodTypeAny = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput: z.ZodTypeAny = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\"),\n}).describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":";;AAWA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXuD,EAAE,OAAO,EAChE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCASH;CACP,QATwD,EAAE,OAAO,EACjE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,EACxG,CAAC,CAAC,CAAC,SAAS,wCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-api-token.mjs","names":[],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":";;AAWA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXyC,EAAE,OAAO,EAClD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCASH;CACP,QAT0C,EAAE,OAAO,EACnD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
@@ -3,12 +3,12 @@ let zod = require("zod");
3
3
  //#region src/actions/get-webhook-data.ts
4
4
  const ProxiedmailGetWebhookDataInput = zod.z.object({ hash: zod.z.string().describe("Callback hash identifier for the webhook receiver") }).describe("Request model for GetWebhookData action.");
5
5
  const ProxiedmailGetWebhookDataOutput = zod.z.object({
6
- code: zod.z.string().describe("Response code from the API"),
6
+ code: zod.z.string().describe("Response code from the API").nullable(),
7
7
  method: zod.z.string().describe("HTTP method used for the callback (e.g., POST, GET)").nullable().optional(),
8
- status: zod.z.string().describe("Status of the webhook receiver"),
8
+ status: zod.z.string().describe("Status of the webhook receiver").nullable(),
9
9
  payload: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Payload data sent to the webhook").nullable().optional(),
10
- is_received: zod.z.boolean().describe("Whether a callback was received at this webhook")
11
- }).describe("Response model for GetWebhookData action.");
10
+ is_received: zod.z.boolean().describe("Whether a callback was received at this webhook").nullable()
11
+ }).passthrough().describe("Response model for GetWebhookData action.");
12
12
  const proxiedmailGetWebhookData = require_action.action("PROXIEDMAIL_GET_WEBHOOK_DATA", {
13
13
  slug: "proxiedmail-get-webhook-data",
14
14
  name: "Get webhook data",
@@ -1 +1 @@
1
- {"version":3,"file":"get-webhook-data.cjs","names":["z","action"],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput: z.ZodTypeAny = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput: z.ZodTypeAny = z.object({\n code: z.string().describe(\"Response code from the API\"),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\"),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\"),\n}).describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,EACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC5D,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD;AACrF,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAEvD,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-webhook-data.cjs","names":["z","action"],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAChG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AAErE,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-webhook-data.d.ts
4
- declare const ProxiedmailGetWebhookDataInput: z.ZodTypeAny;
5
- declare const ProxiedmailGetWebhookDataOutput: z.ZodTypeAny;
6
- declare const proxiedmailGetWebhookData: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailGetWebhookDataInput: z.ZodObject<{
5
+ hash: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ProxiedmailGetWebhookDataOutput: z.ZodObject<{
8
+ code: z.ZodNullable<z.ZodString>;
9
+ method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ status: z.ZodNullable<z.ZodString>;
11
+ payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
+ is_received: z.ZodNullable<z.ZodBoolean>;
13
+ }, z.core.$loose>;
14
+ declare const proxiedmailGetWebhookData: import("@keystrokehq/action").WorkflowActionDefinition<{
15
+ hash: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { proxiedmailGetWebhookData };
9
19
  //# sourceMappingURL=get-webhook-data.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-webhook-data.d.cts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEQ;AAAA,cAC1C,+BAAA,EAAiC,CAAA,CAAE,UAMQ;AAAA,cAE3C,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-webhook-data.d.cts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-webhook-data.d.ts
4
- declare const ProxiedmailGetWebhookDataInput: z.ZodTypeAny;
5
- declare const ProxiedmailGetWebhookDataOutput: z.ZodTypeAny;
6
- declare const proxiedmailGetWebhookData: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailGetWebhookDataInput: z.ZodObject<{
5
+ hash: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ProxiedmailGetWebhookDataOutput: z.ZodObject<{
8
+ code: z.ZodNullable<z.ZodString>;
9
+ method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ status: z.ZodNullable<z.ZodString>;
11
+ payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12
+ is_received: z.ZodNullable<z.ZodBoolean>;
13
+ }, z.core.$loose>;
14
+ declare const proxiedmailGetWebhookData: import("@keystrokehq/action").WorkflowActionDefinition<{
15
+ hash: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { proxiedmailGetWebhookData };
9
19
  //# sourceMappingURL=get-webhook-data.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-webhook-data.d.mts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEQ;AAAA,cAC1C,+BAAA,EAAiC,CAAA,CAAE,UAMQ;AAAA,cAE3C,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-webhook-data.d.mts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;cAQ/B,yBAAA,gCAAyB,wBAAA"}
@@ -6,12 +6,12 @@ const proxiedmailGetWebhookData = action("PROXIEDMAIL_GET_WEBHOOK_DATA", {
6
6
  description: "Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.",
7
7
  input: z.object({ hash: z.string().describe("Callback hash identifier for the webhook receiver") }).describe("Request model for GetWebhookData action."),
8
8
  output: z.object({
9
- code: z.string().describe("Response code from the API"),
9
+ code: z.string().describe("Response code from the API").nullable(),
10
10
  method: z.string().describe("HTTP method used for the callback (e.g., POST, GET)").nullable().optional(),
11
- status: z.string().describe("Status of the webhook receiver"),
11
+ status: z.string().describe("Status of the webhook receiver").nullable(),
12
12
  payload: z.record(z.string(), z.unknown()).describe("Payload data sent to the webhook").nullable().optional(),
13
- is_received: z.boolean().describe("Whether a callback was received at this webhook")
14
- }).describe("Response model for GetWebhookData action.")
13
+ is_received: z.boolean().describe("Whether a callback was received at this webhook").nullable()
14
+ }).passthrough().describe("Response model for GetWebhookData action.")
15
15
  });
16
16
  //#endregion
17
17
  export { proxiedmailGetWebhookData };
@@ -1 +1 @@
1
- {"version":3,"file":"get-webhook-data.mjs","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput: z.ZodTypeAny = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput: z.ZodTypeAny = z.object({\n code: z.string().describe(\"Response code from the API\"),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\"),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\"),\n}).describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":";;AAeA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAf0D,EAAE,OAAO,EACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAaH;CACP,QAb2D,EAAE,OAAO;EACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;EACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;EAC5D,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD;CACrF,CAAC,CAAC,CAAC,SAAS,2CAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-webhook-data.mjs","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":";;AAeA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAf4C,EAAE,OAAO,EACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAaH;CACP,QAb6C,EAAE,OAAO;EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACjE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;EACvE,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CAChG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAOhB;AACV,CAAC"}
@@ -4,39 +4,39 @@ let zod = require("zod");
4
4
  const ProxiedmailListProxyBindingsInput = zod.z.object({}).describe("Request model for listing proxy bindings. No parameters needed.");
5
5
  const ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = zod.z.object({
6
6
  type: zod.z.number().int().describe("Type code for the proxy binding").nullable().optional(),
7
- created_at: zod.z.string().describe("Timestamp when the proxy binding was created in ISO 8601 format"),
8
- updated_at: zod.z.string().describe("Timestamp when the proxy binding was last updated in ISO 8601 format"),
7
+ created_at: zod.z.string().describe("Timestamp when the proxy binding was created in ISO 8601 format").nullable(),
8
+ updated_at: zod.z.string().describe("Timestamp when the proxy binding was last updated in ISO 8601 format").nullable(),
9
9
  description: zod.z.string().describe("Description of this proxy binding").nullable().optional(),
10
10
  callback_url: zod.z.string().describe("Callback URL for notifications associated with this proxy binding").nullable().optional(),
11
11
  is_browsable: zod.z.boolean().describe("Whether emails can be browsed").nullable().optional(),
12
- proxy_address: zod.z.string().describe("The proxy email address"),
13
- real_addresses: zod.z.object({}).describe("Mapping of real email addresses to their status objects"),
12
+ proxy_address: zod.z.string().describe("The proxy email address").nullable(),
13
+ real_addresses: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Mapping of real email addresses to their status objects"),
14
14
  delivery_method: zod.z.number().int().describe("Delivery method code").nullable().optional(),
15
- received_emails: zod.z.number().int().describe("Number of emails received through this binding"),
15
+ received_emails: zod.z.number().int().describe("Number of emails received through this binding").nullable(),
16
16
  wildcard_auto_create_on: zod.z.union([zod.z.string(), zod.z.boolean()]).nullable().optional()
17
- });
17
+ }).passthrough();
18
18
  const ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = zod.z.object({
19
- id: zod.z.string().describe("Identifier of the related user"),
20
- type: zod.z.string().describe("Resource type of the related user")
21
- });
22
- const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = zod.z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() });
23
- const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = zod.z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() });
19
+ id: zod.z.string().describe("Identifier of the related user").nullable(),
20
+ type: zod.z.string().describe("Resource type of the related user").nullable()
21
+ }).passthrough();
22
+ const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = zod.z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() }).passthrough();
23
+ const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = zod.z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() }).passthrough();
24
24
  const ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = zod.z.object({
25
- id: zod.z.string().describe("Identifier of the proxy binding"),
26
- type: zod.z.string().describe("Resource type of the proxy binding, e.g., 'proxy_bindings'"),
25
+ id: zod.z.string().describe("Identifier of the proxy binding").nullable(),
26
+ type: zod.z.string().describe("Resource type of the proxy binding, e.g., 'proxy_bindings'").nullable(),
27
27
  attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),
28
28
  relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable()
29
- });
29
+ }).passthrough();
30
30
  const ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = zod.z.object({
31
31
  confirmationType: zod.z.union([zod.z.string(), zod.z.number().int()]).nullable().optional(),
32
- usedProxyBindings: zod.z.number().int().describe("Number of proxy bindings already used"),
33
- availableProxyBindings: zod.z.number().int().describe("Number of proxy bindings still available"),
34
- isVerificationEmailSend: zod.z.boolean().describe("Whether a verification email has been sent")
35
- });
32
+ usedProxyBindings: zod.z.number().int().describe("Number of proxy bindings already used").nullable(),
33
+ availableProxyBindings: zod.z.number().int().describe("Number of proxy bindings still available").nullable(),
34
+ isVerificationEmailSend: zod.z.boolean().describe("Whether a verification email has been sent").nullable()
35
+ }).passthrough();
36
36
  const ProxiedmailListProxyBindingsOutput = zod.z.object({
37
37
  data: zod.z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe("List of proxy binding records"),
38
38
  meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable()
39
- });
39
+ }).passthrough();
40
40
  const proxiedmailListProxyBindings = require_action.action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
41
41
  slug: "proxiedmail-list-proxy-bindings",
42
42
  name: "List proxy bindings",
@@ -1 +1 @@
1
- {"version":3,"file":"list-proxy-bindings.cjs","names":["z","action"],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema: z.ZodTypeAny = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\"),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\"),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\"),\n real_addresses: z.object({}).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\"),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the related user\"),\n type: z.string().describe(\"Resource type of the related user\"),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema: z.ZodTypeAny = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema: z.ZodTypeAny = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\"),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\"),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema: z.ZodTypeAny = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\"),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\"),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\"),\n});\nexport const ProxiedmailListProxyBindingsOutput: z.ZodTypeAny = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n});\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iEAAiE;AACtJ,MAAM,4DAA0EA,IAAAA,EAAE,OAAO;CACvF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE;CACjG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;CACtG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,cAAcA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CAC5D,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;CAC/F,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD;CAC3F,yBAAyBA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClF,CAAC;AACD,MAAM,0DAAwEA,IAAAA,EAAE,OAAO;CACrF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;AAC/D,CAAC;AACD,MAAM,kEAAgFA,IAAAA,EAAE,OAAO,EAC7F,MAAM,wDAAwD,SAAS,EACzE,CAAC;AACD,MAAM,+DAA6EA,IAAAA,EAAE,OAAO,EAC1F,MAAM,gEAAgE,SAAS,EACjF,CAAC;AACD,MAAM,0DAAwEA,IAAAA,EAAE,OAAO;CACrF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;CACtF,YAAY,0DAA0D,SAAS;CAC/E,eAAe,6DAA6D,SAAS;AACvF,CAAC;AACD,MAAM,2DAAyEA,IAAAA,EAAE,OAAO;CACtF,kBAAkBA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC;CACpF,wBAAwBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C;CAC5F,yBAAyBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C;AAC5F,CAAC;AACD,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,MAAMA,IAAAA,EAAE,MAAM,uDAAuD,CAAC,CAAC,SAAS,+BAA+B;CAC/G,MAAM,yDAAyD,SAAS;AAC1E,CAAC;AAED,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-proxy-bindings.cjs","names":["z","action"],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"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"}
@@ -1,9 +1,41 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-proxy-bindings.d.ts
4
- declare const ProxiedmailListProxyBindingsInput: z.ZodTypeAny;
5
- declare const ProxiedmailListProxyBindingsOutput: z.ZodTypeAny;
6
- declare const proxiedmailListProxyBindings: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailListProxyBindingsInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ProxiedmailListProxyBindingsOutput: z.ZodObject<{
6
+ data: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ type: z.ZodNullable<z.ZodString>;
9
+ attributes: z.ZodNullable<z.ZodObject<{
10
+ type: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11
+ created_at: z.ZodNullable<z.ZodString>;
12
+ updated_at: z.ZodNullable<z.ZodString>;
13
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ is_browsable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16
+ proxy_address: z.ZodNullable<z.ZodString>;
17
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
18
+ delivery_method: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
19
+ received_emails: z.ZodNullable<z.ZodNumber>;
20
+ wildcard_auto_create_on: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodBoolean]>>>;
21
+ }, z.core.$loose>>;
22
+ relationships: z.ZodNullable<z.ZodObject<{
23
+ user: z.ZodNullable<z.ZodObject<{
24
+ data: z.ZodNullable<z.ZodObject<{
25
+ id: z.ZodNullable<z.ZodString>;
26
+ type: z.ZodNullable<z.ZodString>;
27
+ }, z.core.$loose>>;
28
+ }, z.core.$loose>>;
29
+ }, z.core.$loose>>;
30
+ }, z.core.$loose>>;
31
+ meta: z.ZodNullable<z.ZodObject<{
32
+ confirmationType: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
33
+ usedProxyBindings: z.ZodNullable<z.ZodNumber>;
34
+ availableProxyBindings: z.ZodNullable<z.ZodNumber>;
35
+ isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$loose>>;
37
+ }, z.core.$loose>;
38
+ declare const proxiedmailListProxyBindings: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
39
  //#endregion
8
40
  export { proxiedmailListProxyBindings };
9
41
  //# sourceMappingURL=list-proxy-bindings.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-proxy-bindings.d.cts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAqG;AAAA,cAoC1I,kCAAA,EAAoC,CAAA,CAAE,UAGjD;AAAA,cAEW,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-proxy-bindings.d.cts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoCjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKlC,4BAAA,gCAA4B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,41 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-proxy-bindings.d.ts
4
- declare const ProxiedmailListProxyBindingsInput: z.ZodTypeAny;
5
- declare const ProxiedmailListProxyBindingsOutput: z.ZodTypeAny;
6
- declare const proxiedmailListProxyBindings: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailListProxyBindingsInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ProxiedmailListProxyBindingsOutput: z.ZodObject<{
6
+ data: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ type: z.ZodNullable<z.ZodString>;
9
+ attributes: z.ZodNullable<z.ZodObject<{
10
+ type: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11
+ created_at: z.ZodNullable<z.ZodString>;
12
+ updated_at: z.ZodNullable<z.ZodString>;
13
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ is_browsable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16
+ proxy_address: z.ZodNullable<z.ZodString>;
17
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
18
+ delivery_method: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
19
+ received_emails: z.ZodNullable<z.ZodNumber>;
20
+ wildcard_auto_create_on: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodBoolean]>>>;
21
+ }, z.core.$loose>>;
22
+ relationships: z.ZodNullable<z.ZodObject<{
23
+ user: z.ZodNullable<z.ZodObject<{
24
+ data: z.ZodNullable<z.ZodObject<{
25
+ id: z.ZodNullable<z.ZodString>;
26
+ type: z.ZodNullable<z.ZodString>;
27
+ }, z.core.$loose>>;
28
+ }, z.core.$loose>>;
29
+ }, z.core.$loose>>;
30
+ }, z.core.$loose>>;
31
+ meta: z.ZodNullable<z.ZodObject<{
32
+ confirmationType: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
33
+ usedProxyBindings: z.ZodNullable<z.ZodNumber>;
34
+ availableProxyBindings: z.ZodNullable<z.ZodNumber>;
35
+ isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$loose>>;
37
+ }, z.core.$loose>;
38
+ declare const proxiedmailListProxyBindings: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
39
  //#endregion
8
40
  export { proxiedmailListProxyBindings };
9
41
  //# sourceMappingURL=list-proxy-bindings.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-proxy-bindings.d.mts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAqG;AAAA,cAoC1I,kCAAA,EAAoC,CAAA,CAAE,UAGjD;AAAA,cAEW,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-proxy-bindings.d.mts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoCjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKlC,4BAAA,gCAA4B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -4,35 +4,35 @@ import { z } from "zod";
4
4
  const ProxiedmailListProxyBindingsInput = z.object({}).describe("Request model for listing proxy bindings. No parameters needed.");
5
5
  const ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({
6
6
  type: z.number().int().describe("Type code for the proxy binding").nullable().optional(),
7
- created_at: z.string().describe("Timestamp when the proxy binding was created in ISO 8601 format"),
8
- updated_at: z.string().describe("Timestamp when the proxy binding was last updated in ISO 8601 format"),
7
+ created_at: z.string().describe("Timestamp when the proxy binding was created in ISO 8601 format").nullable(),
8
+ updated_at: z.string().describe("Timestamp when the proxy binding was last updated in ISO 8601 format").nullable(),
9
9
  description: z.string().describe("Description of this proxy binding").nullable().optional(),
10
10
  callback_url: z.string().describe("Callback URL for notifications associated with this proxy binding").nullable().optional(),
11
11
  is_browsable: z.boolean().describe("Whether emails can be browsed").nullable().optional(),
12
- proxy_address: z.string().describe("The proxy email address"),
13
- real_addresses: z.object({}).describe("Mapping of real email addresses to their status objects"),
12
+ proxy_address: z.string().describe("The proxy email address").nullable(),
13
+ real_addresses: z.record(z.string(), z.unknown()).describe("Mapping of real email addresses to their status objects"),
14
14
  delivery_method: z.number().int().describe("Delivery method code").nullable().optional(),
15
- received_emails: z.number().int().describe("Number of emails received through this binding"),
15
+ received_emails: z.number().int().describe("Number of emails received through this binding").nullable(),
16
16
  wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional()
17
- });
17
+ }).passthrough();
18
18
  const ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({
19
- id: z.string().describe("Identifier of the related user"),
20
- type: z.string().describe("Resource type of the related user")
21
- });
22
- const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() });
23
- const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() });
19
+ id: z.string().describe("Identifier of the related user").nullable(),
20
+ type: z.string().describe("Resource type of the related user").nullable()
21
+ }).passthrough();
22
+ const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() }).passthrough();
23
+ const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() }).passthrough();
24
24
  const ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({
25
- id: z.string().describe("Identifier of the proxy binding"),
26
- type: z.string().describe("Resource type of the proxy binding, e.g., 'proxy_bindings'"),
25
+ id: z.string().describe("Identifier of the proxy binding").nullable(),
26
+ type: z.string().describe("Resource type of the proxy binding, e.g., 'proxy_bindings'").nullable(),
27
27
  attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),
28
28
  relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable()
29
- });
29
+ }).passthrough();
30
30
  const ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({
31
31
  confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),
32
- usedProxyBindings: z.number().int().describe("Number of proxy bindings already used"),
33
- availableProxyBindings: z.number().int().describe("Number of proxy bindings still available"),
34
- isVerificationEmailSend: z.boolean().describe("Whether a verification email has been sent")
35
- });
32
+ usedProxyBindings: z.number().int().describe("Number of proxy bindings already used").nullable(),
33
+ availableProxyBindings: z.number().int().describe("Number of proxy bindings still available").nullable(),
34
+ isVerificationEmailSend: z.boolean().describe("Whether a verification email has been sent").nullable()
35
+ }).passthrough();
36
36
  const proxiedmailListProxyBindings = action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
37
37
  slug: "proxiedmail-list-proxy-bindings",
38
38
  name: "List proxy bindings",
@@ -41,7 +41,7 @@ const proxiedmailListProxyBindings = action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
41
41
  output: z.object({
42
42
  data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe("List of proxy binding records"),
43
43
  meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable()
44
- })
44
+ }).passthrough()
45
45
  });
46
46
  //#endregion
47
47
  export { proxiedmailListProxyBindings };
@@ -1 +1 @@
1
- {"version":3,"file":"list-proxy-bindings.mjs","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema: z.ZodTypeAny = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\"),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\"),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\"),\n real_addresses: z.object({}).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\"),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the related user\"),\n type: z.string().describe(\"Resource type of the related user\"),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema: z.ZodTypeAny = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema: z.ZodTypeAny = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\"),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\"),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema: z.ZodTypeAny = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\"),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\"),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\"),\n});\nexport const ProxiedmailListProxyBindingsOutput: z.ZodTypeAny = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n});\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iEAAiE;AACtJ,MAAM,4DAA0E,EAAE,OAAO;CACvF,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE;CACjG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;CACtG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CAC5D,gBAAgB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;CAC/F,iBAAiB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,iBAAiB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD;CAC3F,yBAAyB,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClF,CAAC;AACD,MAAM,0DAAwE,EAAE,OAAO;CACrF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;AAC/D,CAAC;AACD,MAAM,kEAAgF,EAAE,OAAO,EAC7F,MAAM,wDAAwD,SAAS,EACzE,CAAC;AACD,MAAM,+DAA6E,EAAE,OAAO,EAC1F,MAAM,gEAAgE,SAAS,EACjF,CAAC;AACD,MAAM,0DAAwE,EAAE,OAAO;CACrF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;CACtF,YAAY,0DAA0D,SAAS;CAC/E,eAAe,6DAA6D,SAAS;AACvF,CAAC;AACD,MAAM,2DAAyE,EAAE,OAAO;CACtF,kBAAkB,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC;CACpF,wBAAwB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C;CAC5F,yBAAyB,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C;AAC5F,CAAC;AAMD,MAAa,+BAA+B,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV8D,EAAE,OAAO;EACvE,MAAM,EAAE,MAAM,uDAAuD,CAAC,CAAC,SAAS,+BAA+B;EAC/G,MAAM,yDAAyD,SAAS;CAC1E,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"list-proxy-bindings.mjs","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"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"}
@@ -9,39 +9,39 @@ const ProxiedmailUpdateProxyBindingInput = zod.z.object({ data: zod.z.object({
9
9
  callback_url: zod.z.string().describe("Callback URL for webhooks.").optional(),
10
10
  is_browsable: zod.z.boolean().describe("Whether received emails can be listed.").optional(),
11
11
  proxy_address: zod.z.string().describe("Proxy email address (required for update)."),
12
- real_addresses: zod.z.object({}).describe("Map of real email addresses to enable (true) or disable (false). Required field.")
12
+ real_addresses: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Map of real email addresses to enable (true) or disable (false). Required field.")
13
13
  }).describe("Attributes to update (proxy_address is required).")
14
14
  }).describe("Top-level JSON:API data object.") }).describe("Request model for updating a proxy binding in JSON:API format.");
15
15
  const ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = zod.z.object({
16
- type: zod.z.number().int().describe("Internal resource type code."),
17
- created_at: zod.z.string().describe("Creation timestamp (ISO8601)."),
18
- updated_at: zod.z.string().describe("Update timestamp (ISO8601)."),
16
+ type: zod.z.number().int().describe("Internal resource type code.").nullable(),
17
+ created_at: zod.z.string().describe("Creation timestamp (ISO8601).").nullable(),
18
+ updated_at: zod.z.string().describe("Update timestamp (ISO8601).").nullable(),
19
19
  description: zod.z.string().describe("Description text.").nullable().optional(),
20
20
  callback_url: zod.z.string().describe("Callback URL.").nullable().optional(),
21
- proxy_address: zod.z.string().describe("Proxy email address."),
22
- real_addresses: zod.z.object({}).describe("Map of email to status with is_enabled and is_verified."),
23
- received_emails: zod.z.number().int().describe("Count of received emails.")
24
- });
21
+ proxy_address: zod.z.string().describe("Proxy email address.").nullable(),
22
+ real_addresses: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Map of email to status with is_enabled and is_verified."),
23
+ received_emails: zod.z.number().int().describe("Count of received emails.").nullable()
24
+ }).passthrough();
25
25
  const ProxiedmailUpdateProxyBinding_UserDataSchema = zod.z.object({
26
- id: zod.z.string().describe("User ID."),
27
- type: zod.z.string().describe("Related resource type.")
28
- });
29
- const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = zod.z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() });
30
- const ProxiedmailUpdateProxyBinding_RelationshipsSchema = zod.z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() });
26
+ id: zod.z.string().describe("User ID.").nullable(),
27
+ type: zod.z.string().describe("Related resource type.").nullable()
28
+ }).passthrough();
29
+ const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = zod.z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() }).passthrough();
30
+ const ProxiedmailUpdateProxyBinding_RelationshipsSchema = zod.z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() }).passthrough();
31
31
  const ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = zod.z.object({
32
- id: zod.z.string().describe("Resource ID."),
33
- type: zod.z.string().describe("Resource type."),
32
+ id: zod.z.string().describe("Resource ID.").nullable(),
33
+ type: zod.z.string().describe("Resource type.").nullable(),
34
34
  attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),
35
35
  relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable()
36
- });
36
+ }).passthrough();
37
37
  const ProxiedmailUpdateProxyBinding_MetaSchema = zod.z.object({
38
- firstProxyBinding: zod.z.boolean().describe("Whether this is the first proxy binding."),
39
- isVerificationEmailSend: zod.z.boolean().describe("Whether a verification email was sent.")
40
- });
38
+ firstProxyBinding: zod.z.boolean().describe("Whether this is the first proxy binding.").nullable(),
39
+ isVerificationEmailSend: zod.z.boolean().describe("Whether a verification email was sent.").nullable()
40
+ }).passthrough();
41
41
  const ProxiedmailUpdateProxyBindingOutput = zod.z.object({
42
42
  data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),
43
43
  meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable()
44
- }).describe("Response model for updated proxy binding resource.");
44
+ }).passthrough().describe("Response model for updated proxy binding resource.");
45
45
  const proxiedmailUpdateProxyBinding = require_action.action("PROXIEDMAIL_UPDATE_PROXY_BINDING", {
46
46
  slug: "proxiedmail-update-proxy-binding",
47
47
  name: "Update Proxy Binding",
@@ -1 +1 @@
1
- {"version":3,"file":"update-proxy-binding.cjs","names":["z","action"],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailUpdateProxyBindingInput: z.ZodTypeAny = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.object({}).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema: z.ZodTypeAny = z.object({\n type: z.number().int().describe(\"Internal resource type code.\"),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\"),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\"),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\"),\n real_addresses: z.object({}).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\"),\n});\nconst ProxiedmailUpdateProxyBinding_UserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"User ID.\"),\n type: z.string().describe(\"Related resource type.\"),\n});\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema: z.ZodTypeAny = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema: z.ZodTypeAny = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Resource ID.\"),\n type: z.string().describe(\"Resource type.\"),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_MetaSchema: z.ZodTypeAny = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\"),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\"),\n});\nexport const ProxiedmailUpdateProxyBindingOutput: z.ZodTypeAny = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmDA,IAAAA,EAAE,OAAO,EACvE,MAAMA,IAAAA,EAAE,OAAO;CACf,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CACpE,YAAYA,IAAAA,EAAE,OAAO;EACrB,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;EACpE,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACzE,cAAcA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;EACtF,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;EAC/E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAAkF;CAC1H,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC/D,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC7C,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAM,qEAAmFA,IAAAA,EAAE,OAAO;CAChG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CAC9D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC/D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC7D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CACzD,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;CAC/F,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B;AACxE,CAAC;AACD,MAAM,+CAA6DA,IAAAA,EAAE,OAAO;CAC1E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,UAAU;CAClC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AACpD,CAAC;AACD,MAAM,uDAAqEA,IAAAA,EAAE,OAAO,EAClF,MAAM,6CAA6C,SAAS,EAC9D,CAAC;AACD,MAAM,oDAAkEA,IAAAA,EAAE,OAAO,EAC/E,MAAM,qDAAqD,SAAS,EACtE,CAAC;AACD,MAAM,+DAA6EA,IAAAA,EAAE,OAAO;CAC1F,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;CACtC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB;CAC1C,YAAY,mEAAmE,SAAS;CACxF,eAAe,kDAAkD,SAAS;AAC5E,CAAC;AACD,MAAM,2CAAyDA,IAAAA,EAAE,OAAO;CACtE,mBAAmBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;CAClF,yBAAyBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;AACxF,CAAC;AACD,MAAa,sCAAoDA,IAAAA,EAAE,OAAO;CACxE,MAAM,6DAA6D,SAAS;CAC5E,MAAM,yCAAyC,SAAS;AAC1D,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAEhE,MAAa,gCAAgCC,eAAAA,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"update-proxy-binding.cjs","names":["z","action"],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailUpdateProxyBindingInput = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"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"}
@@ -1,9 +1,60 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/update-proxy-binding.d.ts
4
- declare const ProxiedmailUpdateProxyBindingInput: z.ZodTypeAny;
5
- declare const ProxiedmailUpdateProxyBindingOutput: z.ZodTypeAny;
6
- declare const proxiedmailUpdateProxyBinding: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailUpdateProxyBindingInput: z.ZodObject<{
5
+ data: z.ZodObject<{
6
+ id: z.ZodString;
7
+ type: z.ZodString;
8
+ attributes: z.ZodObject<{
9
+ description: z.ZodOptional<z.ZodString>;
10
+ callback_url: z.ZodOptional<z.ZodString>;
11
+ is_browsable: z.ZodOptional<z.ZodBoolean>;
12
+ proxy_address: z.ZodString;
13
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14
+ }, z.core.$strip>;
15
+ }, z.core.$strip>;
16
+ }, z.core.$strip>;
17
+ declare const ProxiedmailUpdateProxyBindingOutput: z.ZodObject<{
18
+ data: z.ZodNullable<z.ZodObject<{
19
+ id: z.ZodNullable<z.ZodString>;
20
+ type: z.ZodNullable<z.ZodString>;
21
+ attributes: z.ZodNullable<z.ZodObject<{
22
+ type: z.ZodNullable<z.ZodNumber>;
23
+ created_at: z.ZodNullable<z.ZodString>;
24
+ updated_at: z.ZodNullable<z.ZodString>;
25
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
+ proxy_address: z.ZodNullable<z.ZodString>;
28
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
29
+ received_emails: z.ZodNullable<z.ZodNumber>;
30
+ }, z.core.$loose>>;
31
+ relationships: z.ZodNullable<z.ZodObject<{
32
+ user: z.ZodNullable<z.ZodObject<{
33
+ data: z.ZodNullable<z.ZodObject<{
34
+ id: z.ZodNullable<z.ZodString>;
35
+ type: z.ZodNullable<z.ZodString>;
36
+ }, z.core.$loose>>;
37
+ }, z.core.$loose>>;
38
+ }, z.core.$loose>>;
39
+ }, z.core.$loose>>;
40
+ meta: z.ZodNullable<z.ZodObject<{
41
+ firstProxyBinding: z.ZodNullable<z.ZodBoolean>;
42
+ isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
43
+ }, z.core.$loose>>;
44
+ }, z.core.$loose>;
45
+ declare const proxiedmailUpdateProxyBinding: import("@keystrokehq/action").WorkflowActionDefinition<{
46
+ data: {
47
+ id: string;
48
+ type: string;
49
+ attributes: {
50
+ proxy_address: string;
51
+ real_addresses: Record<string, unknown>;
52
+ description?: string | undefined;
53
+ callback_url?: string | undefined;
54
+ is_browsable?: boolean | undefined;
55
+ };
56
+ };
57
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
58
  //#endregion
8
59
  export { proxiedmailUpdateProxyBinding };
9
60
  //# sourceMappingURL=update-proxy-binding.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-proxy-binding.d.cts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAY0B;AAAA,cA+BhE,mCAAA,EAAqC,CAAA,CAAE,UAGa;AAAA,cAEpD,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"update-proxy-binding.d.cts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA2ClC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKnC,6BAAA,gCAA6B,wBAAA;;;;;;sBAMxC,MAAA"}
@@ -1,9 +1,60 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/update-proxy-binding.d.ts
4
- declare const ProxiedmailUpdateProxyBindingInput: z.ZodTypeAny;
5
- declare const ProxiedmailUpdateProxyBindingOutput: z.ZodTypeAny;
6
- declare const proxiedmailUpdateProxyBinding: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ProxiedmailUpdateProxyBindingInput: z.ZodObject<{
5
+ data: z.ZodObject<{
6
+ id: z.ZodString;
7
+ type: z.ZodString;
8
+ attributes: z.ZodObject<{
9
+ description: z.ZodOptional<z.ZodString>;
10
+ callback_url: z.ZodOptional<z.ZodString>;
11
+ is_browsable: z.ZodOptional<z.ZodBoolean>;
12
+ proxy_address: z.ZodString;
13
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
14
+ }, z.core.$strip>;
15
+ }, z.core.$strip>;
16
+ }, z.core.$strip>;
17
+ declare const ProxiedmailUpdateProxyBindingOutput: z.ZodObject<{
18
+ data: z.ZodNullable<z.ZodObject<{
19
+ id: z.ZodNullable<z.ZodString>;
20
+ type: z.ZodNullable<z.ZodString>;
21
+ attributes: z.ZodNullable<z.ZodObject<{
22
+ type: z.ZodNullable<z.ZodNumber>;
23
+ created_at: z.ZodNullable<z.ZodString>;
24
+ updated_at: z.ZodNullable<z.ZodString>;
25
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
+ proxy_address: z.ZodNullable<z.ZodString>;
28
+ real_addresses: z.ZodRecord<z.ZodString, z.ZodUnknown>;
29
+ received_emails: z.ZodNullable<z.ZodNumber>;
30
+ }, z.core.$loose>>;
31
+ relationships: z.ZodNullable<z.ZodObject<{
32
+ user: z.ZodNullable<z.ZodObject<{
33
+ data: z.ZodNullable<z.ZodObject<{
34
+ id: z.ZodNullable<z.ZodString>;
35
+ type: z.ZodNullable<z.ZodString>;
36
+ }, z.core.$loose>>;
37
+ }, z.core.$loose>>;
38
+ }, z.core.$loose>>;
39
+ }, z.core.$loose>>;
40
+ meta: z.ZodNullable<z.ZodObject<{
41
+ firstProxyBinding: z.ZodNullable<z.ZodBoolean>;
42
+ isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
43
+ }, z.core.$loose>>;
44
+ }, z.core.$loose>;
45
+ declare const proxiedmailUpdateProxyBinding: import("@keystrokehq/action").WorkflowActionDefinition<{
46
+ data: {
47
+ id: string;
48
+ type: string;
49
+ attributes: {
50
+ proxy_address: string;
51
+ real_addresses: Record<string, unknown>;
52
+ description?: string | undefined;
53
+ callback_url?: string | undefined;
54
+ is_browsable?: boolean | undefined;
55
+ };
56
+ };
57
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
58
  //#endregion
8
59
  export { proxiedmailUpdateProxyBinding };
9
60
  //# sourceMappingURL=update-proxy-binding.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-proxy-binding.d.mts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAY0B;AAAA,cA+BhE,mCAAA,EAAqC,CAAA,CAAE,UAGa;AAAA,cAEpD,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"update-proxy-binding.d.mts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA2ClC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKnC,6BAAA,gCAA6B,wBAAA;;;;;;sBAMxC,MAAA"}
@@ -9,35 +9,35 @@ const ProxiedmailUpdateProxyBindingInput = z.object({ data: z.object({
9
9
  callback_url: z.string().describe("Callback URL for webhooks.").optional(),
10
10
  is_browsable: z.boolean().describe("Whether received emails can be listed.").optional(),
11
11
  proxy_address: z.string().describe("Proxy email address (required for update)."),
12
- real_addresses: z.object({}).describe("Map of real email addresses to enable (true) or disable (false). Required field.")
12
+ real_addresses: z.record(z.string(), z.unknown()).describe("Map of real email addresses to enable (true) or disable (false). Required field.")
13
13
  }).describe("Attributes to update (proxy_address is required).")
14
14
  }).describe("Top-level JSON:API data object.") }).describe("Request model for updating a proxy binding in JSON:API format.");
15
15
  const ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({
16
- type: z.number().int().describe("Internal resource type code."),
17
- created_at: z.string().describe("Creation timestamp (ISO8601)."),
18
- updated_at: z.string().describe("Update timestamp (ISO8601)."),
16
+ type: z.number().int().describe("Internal resource type code.").nullable(),
17
+ created_at: z.string().describe("Creation timestamp (ISO8601).").nullable(),
18
+ updated_at: z.string().describe("Update timestamp (ISO8601).").nullable(),
19
19
  description: z.string().describe("Description text.").nullable().optional(),
20
20
  callback_url: z.string().describe("Callback URL.").nullable().optional(),
21
- proxy_address: z.string().describe("Proxy email address."),
22
- real_addresses: z.object({}).describe("Map of email to status with is_enabled and is_verified."),
23
- received_emails: z.number().int().describe("Count of received emails.")
24
- });
21
+ proxy_address: z.string().describe("Proxy email address.").nullable(),
22
+ real_addresses: z.record(z.string(), z.unknown()).describe("Map of email to status with is_enabled and is_verified."),
23
+ received_emails: z.number().int().describe("Count of received emails.").nullable()
24
+ }).passthrough();
25
25
  const ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({
26
- id: z.string().describe("User ID."),
27
- type: z.string().describe("Related resource type.")
28
- });
29
- const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() });
30
- const ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() });
26
+ id: z.string().describe("User ID.").nullable(),
27
+ type: z.string().describe("Related resource type.").nullable()
28
+ }).passthrough();
29
+ const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() }).passthrough();
30
+ const ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() }).passthrough();
31
31
  const ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({
32
- id: z.string().describe("Resource ID."),
33
- type: z.string().describe("Resource type."),
32
+ id: z.string().describe("Resource ID.").nullable(),
33
+ type: z.string().describe("Resource type.").nullable(),
34
34
  attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),
35
35
  relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable()
36
- });
36
+ }).passthrough();
37
37
  const ProxiedmailUpdateProxyBinding_MetaSchema = z.object({
38
- firstProxyBinding: z.boolean().describe("Whether this is the first proxy binding."),
39
- isVerificationEmailSend: z.boolean().describe("Whether a verification email was sent.")
40
- });
38
+ firstProxyBinding: z.boolean().describe("Whether this is the first proxy binding.").nullable(),
39
+ isVerificationEmailSend: z.boolean().describe("Whether a verification email was sent.").nullable()
40
+ }).passthrough();
41
41
  const proxiedmailUpdateProxyBinding = action("PROXIEDMAIL_UPDATE_PROXY_BINDING", {
42
42
  slug: "proxiedmail-update-proxy-binding",
43
43
  name: "Update Proxy Binding",
@@ -46,7 +46,7 @@ const proxiedmailUpdateProxyBinding = action("PROXIEDMAIL_UPDATE_PROXY_BINDING",
46
46
  output: z.object({
47
47
  data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),
48
48
  meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable()
49
- }).describe("Response model for updated proxy binding resource.")
49
+ }).passthrough().describe("Response model for updated proxy binding resource.")
50
50
  });
51
51
  //#endregion
52
52
  export { proxiedmailUpdateProxyBinding };
@@ -1 +1 @@
1
- {"version":3,"file":"update-proxy-binding.mjs","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailUpdateProxyBindingInput: z.ZodTypeAny = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.object({}).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema: z.ZodTypeAny = z.object({\n type: z.number().int().describe(\"Internal resource type code.\"),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\"),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\"),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\"),\n real_addresses: z.object({}).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\"),\n});\nconst ProxiedmailUpdateProxyBinding_UserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"User ID.\"),\n type: z.string().describe(\"Related resource type.\"),\n});\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema: z.ZodTypeAny = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema: z.ZodTypeAny = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Resource ID.\"),\n type: z.string().describe(\"Resource type.\"),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_MetaSchema: z.ZodTypeAny = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\"),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\"),\n});\nexport const ProxiedmailUpdateProxyBindingOutput: z.ZodTypeAny = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmD,EAAE,OAAO,EACvE,MAAM,EAAE,OAAO;CACf,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CACpE,YAAY,EAAE,OAAO;EACrB,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;EACpE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACzE,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;EACtF,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;EAC/E,gBAAgB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAAkF;CAC1H,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC/D,CAAC,CAAC,CAAC,SAAS,iCAAiC,EAC7C,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAM,qEAAmF,EAAE,OAAO;CAChG,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CAC9D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC/D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC7D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CACzD,gBAAgB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;CAC/F,iBAAiB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B;AACxE,CAAC;AACD,MAAM,+CAA6D,EAAE,OAAO;CAC1E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,UAAU;CAClC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AACpD,CAAC;AACD,MAAM,uDAAqE,EAAE,OAAO,EAClF,MAAM,6CAA6C,SAAS,EAC9D,CAAC;AACD,MAAM,oDAAkE,EAAE,OAAO,EAC/E,MAAM,qDAAqD,SAAS,EACtE,CAAC;AACD,MAAM,+DAA6E,EAAE,OAAO;CAC1F,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;CACtC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB;CAC1C,YAAY,mEAAmE,SAAS;CACxF,eAAe,kDAAkD,SAAS;AAC5E,CAAC;AACD,MAAM,2CAAyD,EAAE,OAAO;CACtE,mBAAmB,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;CAClF,yBAAyB,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;AACxF,CAAC;AAMD,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV+D,EAAE,OAAO;EACxE,MAAM,6DAA6D,SAAS;EAC5E,MAAM,yCAAyC,SAAS;CAC1D,CAAC,CAAC,CAAC,SAAS,oDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"update-proxy-binding.mjs","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailUpdateProxyBindingInput = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"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"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,13 @@ const proxiedmailCatalog = {
7
7
  "category": "Email",
8
8
  "logo": "https://logos.composio.dev/api/proxiedmail",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "ProxiedMail API Key",
13
+ "secret": true,
14
+ "description": "The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \"Token\" header."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  exports.proxiedmailCatalog = proxiedmailCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const proxiedmailCatalog = {\n \"slug\": \"proxiedmail\",\n \"name\": \"Proxiedmail\",\n \"description\": \"ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/proxiedmail\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const proxiedmailCatalog = {\n \"slug\": \"proxiedmail\",\n \"name\": \"Proxiedmail\",\n \"description\": \"ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/proxiedmail\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"ProxiedMail API Key\",\n \"secret\": true,\n \"description\": \"The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \\\"Token\\\" header.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,14 @@ declare const proxiedmailCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/proxiedmail";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "ProxiedMail API Key";
14
+ readonly secret: true;
15
+ readonly description: "The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \"Token\" header.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { proxiedmailCatalog };
@@ -8,6 +8,14 @@ declare const proxiedmailCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/proxiedmail";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "ProxiedMail API Key";
14
+ readonly secret: true;
15
+ readonly description: "The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \"Token\" header.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { proxiedmailCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,13 @@ const proxiedmailCatalog = {
7
7
  "category": "Email",
8
8
  "logo": "https://logos.composio.dev/api/proxiedmail",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "ProxiedMail API Key",
13
+ "secret": true,
14
+ "description": "The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \"Token\" header."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  export { proxiedmailCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const proxiedmailCatalog = {\n \"slug\": \"proxiedmail\",\n \"name\": \"Proxiedmail\",\n \"description\": \"ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/proxiedmail\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const proxiedmailCatalog = {\n \"slug\": \"proxiedmail\",\n \"name\": \"Proxiedmail\",\n \"description\": \"ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.\",\n \"category\": \"Email\",\n \"logo\": \"https://logos.composio.dev/api/proxiedmail\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"ProxiedMail API Key\",\n \"secret\": true,\n \"description\": \"The API key used for authenticating requests to the ProxiedMail API. This should be provided in the \\\"Token\\\" header.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/proxiedmail",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {