@keystrokehq/proxiedmail 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/create-webhook-receiver.cjs +4 -4
- package/dist/actions/create-webhook-receiver.cjs.map +1 -1
- package/dist/actions/create-webhook-receiver.d.cts +8 -3
- package/dist/actions/create-webhook-receiver.d.cts.map +1 -1
- package/dist/actions/create-webhook-receiver.d.mts +8 -3
- package/dist/actions/create-webhook-receiver.d.mts.map +1 -1
- package/dist/actions/create-webhook-receiver.mjs +4 -4
- package/dist/actions/create-webhook-receiver.mjs.map +1 -1
- package/dist/actions/get-api-token.cjs +1 -1
- package/dist/actions/get-api-token.cjs.map +1 -1
- package/dist/actions/get-api-token.d.cts +9 -3
- package/dist/actions/get-api-token.d.cts.map +1 -1
- package/dist/actions/get-api-token.d.mts +9 -3
- package/dist/actions/get-api-token.d.mts.map +1 -1
- package/dist/actions/get-api-token.mjs +1 -1
- package/dist/actions/get-api-token.mjs.map +1 -1
- package/dist/actions/get-webhook-data.cjs +3 -3
- package/dist/actions/get-webhook-data.cjs.map +1 -1
- package/dist/actions/get-webhook-data.d.cts +13 -3
- package/dist/actions/get-webhook-data.d.cts.map +1 -1
- package/dist/actions/get-webhook-data.d.mts +13 -3
- package/dist/actions/get-webhook-data.d.mts.map +1 -1
- package/dist/actions/get-webhook-data.mjs +3 -3
- package/dist/actions/get-webhook-data.mjs.map +1 -1
- package/dist/actions/list-proxy-bindings.cjs +11 -11
- package/dist/actions/list-proxy-bindings.cjs.map +1 -1
- package/dist/actions/list-proxy-bindings.d.cts +35 -3
- package/dist/actions/list-proxy-bindings.d.cts.map +1 -1
- package/dist/actions/list-proxy-bindings.d.mts +35 -3
- package/dist/actions/list-proxy-bindings.d.mts.map +1 -1
- package/dist/actions/list-proxy-bindings.mjs +11 -11
- package/dist/actions/list-proxy-bindings.mjs.map +1 -1
- package/dist/actions/update-proxy-binding.cjs +11 -11
- package/dist/actions/update-proxy-binding.cjs.map +1 -1
- package/dist/actions/update-proxy-binding.d.cts +54 -3
- package/dist/actions/update-proxy-binding.d.cts.map +1 -1
- package/dist/actions/update-proxy-binding.d.mts +54 -3
- package/dist/actions/update-proxy-binding.d.mts.map +1 -1
- package/dist/actions/update-proxy-binding.mjs +11 -11
- package/dist/actions/update-proxy-binding.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["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:
|
|
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"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { 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:
|
|
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,10 +3,10 @@ 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")
|
|
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
10
|
}).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",
|
|
@@ -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
|
|
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}).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,SAAS,oDAAoD;AAEhE,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.
|
|
5
|
-
declare const ProxiedmailCreateWebhookReceiverOutput: z.
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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.
|
|
5
|
-
declare const ProxiedmailCreateWebhookReceiverOutput: z.
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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,10 +6,10 @@ 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")
|
|
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
13
|
}).describe("Response model for CREATE_WEBHOOK_RECEIVER action.")
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
@@ -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
|
|
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}).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,SAAS,oDAOF;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() }).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
|
|
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}).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,SAAS,wCAAwC;AAEpD,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.
|
|
5
|
-
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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.
|
|
5
|
-
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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() }).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
|
|
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}).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,SAAS,wCAOF;AACV,CAAC"}
|
|
@@ -3,11 +3,11 @@ 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")
|
|
10
|
+
is_received: zod.z.boolean().describe("Whether a callback was received at this webhook").nullable()
|
|
11
11
|
}).describe("Response model for GetWebhookData action.");
|
|
12
12
|
const proxiedmailGetWebhookData = require_action.action("PROXIEDMAIL_GET_WEBHOOK_DATA", {
|
|
13
13
|
slug: "proxiedmail-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
|
|
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}).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,SAAS,2CAA2C;AAEvD,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.
|
|
5
|
-
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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.
|
|
5
|
-
|
|
6
|
-
|
|
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.$strip>;
|
|
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,
|
|
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,11 +6,11 @@ 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")
|
|
13
|
+
is_received: z.boolean().describe("Whether a callback was received at this webhook").nullable()
|
|
14
14
|
}).describe("Response model for GetWebhookData action.")
|
|
15
15
|
});
|
|
16
16
|
//#endregion
|
|
@@ -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
|
|
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}).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,SAAS,2CAOF;AACV,CAAC"}
|
|
@@ -4,34 +4,34 @@ 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"),
|
|
12
|
+
proxy_address: zod.z.string().describe("The proxy email address").nullable(),
|
|
13
13
|
real_addresses: zod.z.object({}).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
|
});
|
|
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")
|
|
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
21
|
});
|
|
22
22
|
const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = zod.z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() });
|
|
23
23
|
const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = zod.z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() });
|
|
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
|
});
|
|
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")
|
|
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
35
|
});
|
|
36
36
|
const ProxiedmailListProxyBindingsOutput = zod.z.object({
|
|
37
37
|
data: zod.z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe("List of proxy binding records"),
|
|
@@ -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
|
|
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.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\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n});\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});\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n});\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});\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});\nexport const ProxiedmailListProxyBindingsOutput = 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":"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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.
|
|
5
|
-
declare const ProxiedmailListProxyBindingsOutput: z.
|
|
6
|
-
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
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.$strip>>;
|
|
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.$strip>>;
|
|
28
|
+
}, z.core.$strip>>;
|
|
29
|
+
}, z.core.$strip>>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
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.$strip>>;
|
|
37
|
+
}, z.core.$strip>;
|
|
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,
|
|
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.
|
|
5
|
-
declare const ProxiedmailListProxyBindingsOutput: z.
|
|
6
|
-
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
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.$strip>>;
|
|
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.$strip>>;
|
|
28
|
+
}, z.core.$strip>>;
|
|
29
|
+
}, z.core.$strip>>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
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.$strip>>;
|
|
37
|
+
}, z.core.$strip>;
|
|
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,
|
|
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,34 +4,34 @@ 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"),
|
|
12
|
+
proxy_address: z.string().describe("The proxy email address").nullable(),
|
|
13
13
|
real_addresses: z.object({}).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
|
});
|
|
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")
|
|
19
|
+
id: z.string().describe("Identifier of the related user").nullable(),
|
|
20
|
+
type: z.string().describe("Resource type of the related user").nullable()
|
|
21
21
|
});
|
|
22
22
|
const ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({ data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable() });
|
|
23
23
|
const ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({ user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable() });
|
|
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
|
});
|
|
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")
|
|
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
35
|
});
|
|
36
36
|
const proxiedmailListProxyBindings = action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
|
|
37
37
|
slug: "proxiedmail-list-proxy-bindings",
|
|
@@ -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
|
|
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.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\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n});\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});\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n});\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n});\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});\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});\nexport const ProxiedmailListProxyBindingsOutput = 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,oCAAoC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iEAAiE;AACxI,MAAM,4DAA4D,EAAE,OAAO;CACzE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC5G,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CACjH,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,CAAC,CAAC,SAAS;CACvE,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,CAAC,CAAC,SAAS;CACtG,yBAAyB,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClF,CAAC;AACD,MAAM,0DAA0D,EAAE,OAAO;CACvE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;AAC1E,CAAC;AACD,MAAM,kEAAkE,EAAE,OAAO,EAC/E,MAAM,wDAAwD,SAAS,EACzE,CAAC;AACD,MAAM,+DAA+D,EAAE,OAAO,EAC5E,MAAM,gEAAgE,SAAS,EACjF,CAAC;AACD,MAAM,0DAA0D,EAAE,OAAO;CACvE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,YAAY,0DAA0D,SAAS;CAC/E,eAAe,6DAA6D,SAAS;AACvF,CAAC;AACD,MAAM,2DAA2D,EAAE,OAAO;CACxE,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,CAAC,CAAC,SAAS;CAC/F,wBAAwB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CACvG,yBAAyB,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AACvG,CAAC;AAMD,MAAa,+BAA+B,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVgD,EAAE,OAAO;EACzD,MAAM,EAAE,MAAM,uDAAuD,CAAC,CAAC,SAAS,+BAA+B;EAC/G,MAAM,yDAAyD,SAAS;CAC1E,CAOU;AACV,CAAC"}
|
|
@@ -13,30 +13,30 @@ const ProxiedmailUpdateProxyBindingInput = zod.z.object({ data: zod.z.object({
|
|
|
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."),
|
|
21
|
+
proxy_address: zod.z.string().describe("Proxy email address.").nullable(),
|
|
22
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.")
|
|
23
|
+
received_emails: zod.z.number().int().describe("Count of received emails.").nullable()
|
|
24
24
|
});
|
|
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.")
|
|
26
|
+
id: zod.z.string().describe("User ID.").nullable(),
|
|
27
|
+
type: zod.z.string().describe("Related resource type.").nullable()
|
|
28
28
|
});
|
|
29
29
|
const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = zod.z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() });
|
|
30
30
|
const ProxiedmailUpdateProxyBinding_RelationshipsSchema = zod.z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() });
|
|
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
|
});
|
|
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.")
|
|
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
40
|
});
|
|
41
41
|
const ProxiedmailUpdateProxyBindingOutput = zod.z.object({
|
|
42
42
|
data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),
|
|
@@ -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
|
|
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.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.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.object({}).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});\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n});\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});\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});\nexport const ProxiedmailUpdateProxyBindingOutput = 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":"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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.
|
|
5
|
-
|
|
6
|
-
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
29
|
+
received_emails: z.ZodNullable<z.ZodNumber>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
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.$strip>>;
|
|
37
|
+
}, z.core.$strip>>;
|
|
38
|
+
}, z.core.$strip>>;
|
|
39
|
+
}, z.core.$strip>>;
|
|
40
|
+
meta: z.ZodNullable<z.ZodObject<{
|
|
41
|
+
firstProxyBinding: z.ZodNullable<z.ZodBoolean>;
|
|
42
|
+
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
43
|
+
}, z.core.$strip>>;
|
|
44
|
+
}, z.core.$strip>;
|
|
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, never>;
|
|
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,
|
|
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.
|
|
5
|
-
|
|
6
|
-
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
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.ZodObject<{}, z.core.$strip>;
|
|
29
|
+
received_emails: z.ZodNullable<z.ZodNumber>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
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.$strip>>;
|
|
37
|
+
}, z.core.$strip>>;
|
|
38
|
+
}, z.core.$strip>>;
|
|
39
|
+
}, z.core.$strip>>;
|
|
40
|
+
meta: z.ZodNullable<z.ZodObject<{
|
|
41
|
+
firstProxyBinding: z.ZodNullable<z.ZodBoolean>;
|
|
42
|
+
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
43
|
+
}, z.core.$strip>>;
|
|
44
|
+
}, z.core.$strip>;
|
|
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, never>;
|
|
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,
|
|
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"}
|
|
@@ -13,30 +13,30 @@ const ProxiedmailUpdateProxyBindingInput = z.object({ data: z.object({
|
|
|
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."),
|
|
21
|
+
proxy_address: z.string().describe("Proxy email address.").nullable(),
|
|
22
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.")
|
|
23
|
+
received_emails: z.number().int().describe("Count of received emails.").nullable()
|
|
24
24
|
});
|
|
25
25
|
const ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({
|
|
26
|
-
id: z.string().describe("User ID."),
|
|
27
|
-
type: z.string().describe("Related resource type.")
|
|
26
|
+
id: z.string().describe("User ID.").nullable(),
|
|
27
|
+
type: z.string().describe("Related resource type.").nullable()
|
|
28
28
|
});
|
|
29
29
|
const ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({ data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable() });
|
|
30
30
|
const ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({ user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable() });
|
|
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
|
});
|
|
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.")
|
|
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
40
|
});
|
|
41
41
|
const proxiedmailUpdateProxyBinding = action("PROXIEDMAIL_UPDATE_PROXY_BINDING", {
|
|
42
42
|
slug: "proxiedmail-update-proxy-binding",
|
|
@@ -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
|
|
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.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.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.object({}).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});\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n});\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n});\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});\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});\nexport const ProxiedmailUpdateProxyBindingOutput = 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,qCAAqC,EAAE,OAAO,EACzD,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,qEAAqE,EAAE,OAAO;CAClF,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC1E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACxE,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,CAAC,CAAC,SAAS;CACpE,gBAAgB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;CAC/F,iBAAiB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;AACnF,CAAC;AACD,MAAM,+CAA+C,EAAE,OAAO;CAC5D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,UAAU,CAAC,CAAC,SAAS;CAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;AAC/D,CAAC;AACD,MAAM,uDAAuD,EAAE,OAAO,EACpE,MAAM,6CAA6C,SAAS,EAC9D,CAAC;AACD,MAAM,oDAAoD,EAAE,OAAO,EACjE,MAAM,qDAAqD,SAAS,EACtE,CAAC;AACD,MAAM,+DAA+D,EAAE,OAAO;CAC5E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;CACjD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS;CACrD,YAAY,mEAAmE,SAAS;CACxF,eAAe,kDAAkD,SAAS;AAC5E,CAAC;AACD,MAAM,2CAA2C,EAAE,OAAO;CACxD,mBAAmB,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC7F,yBAAyB,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;AACnG,CAAC;AAMD,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAViD,EAAE,OAAO;EAC1D,MAAM,6DAA6D,SAAS;EAC5E,MAAM,yCAAyC,SAAS;CAC1D,CAAC,CAAC,CAAC,SAAS,oDAOF;AACV,CAAC"}
|
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;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -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;
|
|
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"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -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.d.mts
CHANGED
|
@@ -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 };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -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;
|
|
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.
|
|
3
|
+
"version": "0.1.2",
|
|
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": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|