@keystrokehq/proxiedmail 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/create-webhook-receiver.cjs +21 -0
- package/dist/actions/create-webhook-receiver.cjs.map +1 -0
- package/dist/actions/create-webhook-receiver.d.cts +9 -0
- package/dist/actions/create-webhook-receiver.d.cts.map +1 -0
- package/dist/actions/create-webhook-receiver.d.mts +9 -0
- package/dist/actions/create-webhook-receiver.d.mts.map +1 -0
- package/dist/actions/create-webhook-receiver.mjs +18 -0
- package/dist/actions/create-webhook-receiver.mjs.map +1 -0
- package/dist/actions/get-api-token.cjs +16 -0
- package/dist/actions/get-api-token.cjs.map +1 -0
- package/dist/actions/get-api-token.d.cts +9 -0
- package/dist/actions/get-api-token.d.cts.map +1 -0
- package/dist/actions/get-api-token.d.mts +9 -0
- package/dist/actions/get-api-token.d.mts.map +1 -0
- package/dist/actions/get-api-token.mjs +13 -0
- package/dist/actions/get-api-token.mjs.map +1 -0
- package/dist/actions/get-webhook-data.cjs +22 -0
- package/dist/actions/get-webhook-data.cjs.map +1 -0
- package/dist/actions/get-webhook-data.d.cts +9 -0
- package/dist/actions/get-webhook-data.d.cts.map +1 -0
- package/dist/actions/get-webhook-data.d.mts +9 -0
- package/dist/actions/get-webhook-data.d.mts.map +1 -0
- package/dist/actions/get-webhook-data.mjs +19 -0
- package/dist/actions/get-webhook-data.mjs.map +1 -0
- package/dist/actions/index.cjs +11 -0
- package/dist/actions/index.d.cts +6 -0
- package/dist/actions/index.d.mts +6 -0
- package/dist/actions/index.mjs +6 -0
- package/dist/actions/list-proxy-bindings.cjs +50 -0
- package/dist/actions/list-proxy-bindings.cjs.map +1 -0
- package/dist/actions/list-proxy-bindings.d.cts +9 -0
- package/dist/actions/list-proxy-bindings.d.cts.map +1 -0
- package/dist/actions/list-proxy-bindings.d.mts +9 -0
- package/dist/actions/list-proxy-bindings.d.mts.map +1 -0
- package/dist/actions/list-proxy-bindings.mjs +49 -0
- package/dist/actions/list-proxy-bindings.mjs.map +1 -0
- package/dist/actions/update-proxy-binding.cjs +55 -0
- package/dist/actions/update-proxy-binding.cjs.map +1 -0
- package/dist/actions/update-proxy-binding.d.cts +9 -0
- package/dist/actions/update-proxy-binding.d.cts.map +1 -0
- package/dist/actions/update-proxy-binding.d.mts +9 -0
- package/dist/actions/update-proxy-binding.d.mts.map +1 -0
- package/dist/actions/update-proxy-binding.mjs +54 -0
- package/dist/actions/update-proxy-binding.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +16 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.mjs +9 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/proxiedmail
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `proxiedmail`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 5
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { proxiedmailCreateWebhookReceiver } from "@keystrokehq/proxiedmail/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "proxiedmail-agent",
|
|
15
|
+
tools: [proxiedmailCreateWebhookReceiver],
|
|
16
|
+
});
|
|
17
|
+
```
|
package/dist/action.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_app = require("./app.cjs");
|
|
2
|
+
const require_execute = require("./execute.cjs");
|
|
3
|
+
require("zod");
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return require_app.proxiedmail.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await require_execute.executeProxiedmailTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.action = action;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["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"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { proxiedmail } from "./app.mjs";
|
|
2
|
+
import { executeProxiedmailTool } from "./execute.mjs";
|
|
3
|
+
import "zod";
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return proxiedmail.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await executeProxiedmailTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { action };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { 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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/create-webhook-receiver.ts
|
|
4
|
+
const ProxiedmailCreateWebhookReceiverInput = zod.z.object({}).describe("Request model for CREATE_WEBHOOK_RECEIVER action.\nNo parameters required to create a webhook receiver.");
|
|
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.");
|
|
11
|
+
const proxiedmailCreateWebhookReceiver = require_action.action("PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER", {
|
|
12
|
+
slug: "proxiedmail-create-webhook-receiver",
|
|
13
|
+
name: "Create webhook receiver",
|
|
14
|
+
description: "Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.",
|
|
15
|
+
input: ProxiedmailCreateWebhookReceiverInput,
|
|
16
|
+
output: ProxiedmailCreateWebhookReceiverOutput
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.proxiedmailCreateWebhookReceiver = proxiedmailCreateWebhookReceiver;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=create-webhook-receiver.cjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailCreateWebhookReceiver };
|
|
9
|
+
//# sourceMappingURL=create-webhook-receiver.d.cts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailCreateWebhookReceiver };
|
|
9
|
+
//# sourceMappingURL=create-webhook-receiver.d.mts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const proxiedmailCreateWebhookReceiver = action("PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER", {
|
|
4
|
+
slug: "proxiedmail-create-webhook-receiver",
|
|
5
|
+
name: "Create webhook receiver",
|
|
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
|
+
input: z.object({}).describe("Request model for CREATE_WEBHOOK_RECEIVER action.\nNo parameters required to create a webhook receiver."),
|
|
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.")
|
|
14
|
+
});
|
|
15
|
+
//#endregion
|
|
16
|
+
export { proxiedmailCreateWebhookReceiver };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=create-webhook-receiver.mjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-api-token.ts
|
|
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.");
|
|
6
|
+
const proxiedmailGetApiToken = require_action.action("PROXIEDMAIL_GET_API_TOKEN", {
|
|
7
|
+
slug: "proxiedmail-get-api-token",
|
|
8
|
+
name: "Get API Token",
|
|
9
|
+
description: "Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).",
|
|
10
|
+
input: ProxiedmailGetApiTokenInput,
|
|
11
|
+
output: ProxiedmailGetApiTokenOutput
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
exports.proxiedmailGetApiToken = proxiedmailGetApiToken;
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=get-api-token.cjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailGetApiToken };
|
|
9
|
+
//# sourceMappingURL=get-api-token.d.cts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailGetApiToken };
|
|
9
|
+
//# sourceMappingURL=get-api-token.d.mts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const proxiedmailGetApiToken = action("PROXIEDMAIL_GET_API_TOKEN", {
|
|
4
|
+
slug: "proxiedmail-get-api-token",
|
|
5
|
+
name: "Get API Token",
|
|
6
|
+
description: "Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).",
|
|
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.")
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { proxiedmailGetApiToken };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=get-api-token.mjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-webhook-data.ts
|
|
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
|
+
const ProxiedmailGetWebhookDataOutput = zod.z.object({
|
|
6
|
+
code: zod.z.string().describe("Response code from the API"),
|
|
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"),
|
|
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.");
|
|
12
|
+
const proxiedmailGetWebhookData = require_action.action("PROXIEDMAIL_GET_WEBHOOK_DATA", {
|
|
13
|
+
slug: "proxiedmail-get-webhook-data",
|
|
14
|
+
name: "Get webhook data",
|
|
15
|
+
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.",
|
|
16
|
+
input: ProxiedmailGetWebhookDataInput,
|
|
17
|
+
output: ProxiedmailGetWebhookDataOutput
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
exports.proxiedmailGetWebhookData = proxiedmailGetWebhookData;
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=get-webhook-data.cjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailGetWebhookData };
|
|
9
|
+
//# sourceMappingURL=get-webhook-data.d.cts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailGetWebhookData };
|
|
9
|
+
//# sourceMappingURL=get-webhook-data.d.mts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const proxiedmailGetWebhookData = action("PROXIEDMAIL_GET_WEBHOOK_DATA", {
|
|
4
|
+
slug: "proxiedmail-get-webhook-data",
|
|
5
|
+
name: "Get webhook data",
|
|
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
|
+
input: z.object({ hash: z.string().describe("Callback hash identifier for the webhook receiver") }).describe("Request model for GetWebhookData action."),
|
|
8
|
+
output: z.object({
|
|
9
|
+
code: z.string().describe("Response code from the API"),
|
|
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"),
|
|
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.")
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { proxiedmailGetWebhookData };
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=get-webhook-data.mjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_create_webhook_receiver = require("./create-webhook-receiver.cjs");
|
|
3
|
+
const require_get_api_token = require("./get-api-token.cjs");
|
|
4
|
+
const require_get_webhook_data = require("./get-webhook-data.cjs");
|
|
5
|
+
const require_list_proxy_bindings = require("./list-proxy-bindings.cjs");
|
|
6
|
+
const require_update_proxy_binding = require("./update-proxy-binding.cjs");
|
|
7
|
+
exports.proxiedmailCreateWebhookReceiver = require_create_webhook_receiver.proxiedmailCreateWebhookReceiver;
|
|
8
|
+
exports.proxiedmailGetApiToken = require_get_api_token.proxiedmailGetApiToken;
|
|
9
|
+
exports.proxiedmailGetWebhookData = require_get_webhook_data.proxiedmailGetWebhookData;
|
|
10
|
+
exports.proxiedmailListProxyBindings = require_list_proxy_bindings.proxiedmailListProxyBindings;
|
|
11
|
+
exports.proxiedmailUpdateProxyBinding = require_update_proxy_binding.proxiedmailUpdateProxyBinding;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { proxiedmailCreateWebhookReceiver } from "./create-webhook-receiver.cjs";
|
|
2
|
+
import { proxiedmailGetApiToken } from "./get-api-token.cjs";
|
|
3
|
+
import { proxiedmailGetWebhookData } from "./get-webhook-data.cjs";
|
|
4
|
+
import { proxiedmailListProxyBindings } from "./list-proxy-bindings.cjs";
|
|
5
|
+
import { proxiedmailUpdateProxyBinding } from "./update-proxy-binding.cjs";
|
|
6
|
+
export { proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { proxiedmailCreateWebhookReceiver } from "./create-webhook-receiver.mjs";
|
|
2
|
+
import { proxiedmailGetApiToken } from "./get-api-token.mjs";
|
|
3
|
+
import { proxiedmailGetWebhookData } from "./get-webhook-data.mjs";
|
|
4
|
+
import { proxiedmailListProxyBindings } from "./list-proxy-bindings.mjs";
|
|
5
|
+
import { proxiedmailUpdateProxyBinding } from "./update-proxy-binding.mjs";
|
|
6
|
+
export { proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { proxiedmailCreateWebhookReceiver } from "./create-webhook-receiver.mjs";
|
|
2
|
+
import { proxiedmailGetApiToken } from "./get-api-token.mjs";
|
|
3
|
+
import { proxiedmailGetWebhookData } from "./get-webhook-data.mjs";
|
|
4
|
+
import { proxiedmailListProxyBindings } from "./list-proxy-bindings.mjs";
|
|
5
|
+
import { proxiedmailUpdateProxyBinding } from "./update-proxy-binding.mjs";
|
|
6
|
+
export { proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-proxy-bindings.ts
|
|
4
|
+
const ProxiedmailListProxyBindingsInput = zod.z.object({}).describe("Request model for listing proxy bindings. No parameters needed.");
|
|
5
|
+
const ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = zod.z.object({
|
|
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"),
|
|
9
|
+
description: zod.z.string().describe("Description of this proxy binding").nullable().optional(),
|
|
10
|
+
callback_url: zod.z.string().describe("Callback URL for notifications associated with this proxy binding").nullable().optional(),
|
|
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"),
|
|
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"),
|
|
16
|
+
wildcard_auto_create_on: zod.z.union([zod.z.string(), zod.z.boolean()]).nullable().optional()
|
|
17
|
+
});
|
|
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() });
|
|
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'"),
|
|
27
|
+
attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),
|
|
28
|
+
relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable()
|
|
29
|
+
});
|
|
30
|
+
const ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = zod.z.object({
|
|
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
|
+
});
|
|
36
|
+
const ProxiedmailListProxyBindingsOutput = zod.z.object({
|
|
37
|
+
data: zod.z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe("List of proxy binding records"),
|
|
38
|
+
meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable()
|
|
39
|
+
});
|
|
40
|
+
const proxiedmailListProxyBindings = require_action.action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
|
|
41
|
+
slug: "proxiedmail-list-proxy-bindings",
|
|
42
|
+
name: "List proxy bindings",
|
|
43
|
+
description: "Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.",
|
|
44
|
+
input: ProxiedmailListProxyBindingsInput,
|
|
45
|
+
output: ProxiedmailListProxyBindingsOutput
|
|
46
|
+
});
|
|
47
|
+
//#endregion
|
|
48
|
+
exports.proxiedmailListProxyBindings = proxiedmailListProxyBindings;
|
|
49
|
+
|
|
50
|
+
//# sourceMappingURL=list-proxy-bindings.cjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailListProxyBindings };
|
|
9
|
+
//# sourceMappingURL=list-proxy-bindings.d.cts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailListProxyBindings };
|
|
9
|
+
//# sourceMappingURL=list-proxy-bindings.d.mts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/list-proxy-bindings.ts
|
|
4
|
+
const ProxiedmailListProxyBindingsInput = z.object({}).describe("Request model for listing proxy bindings. No parameters needed.");
|
|
5
|
+
const ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({
|
|
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"),
|
|
9
|
+
description: z.string().describe("Description of this proxy binding").nullable().optional(),
|
|
10
|
+
callback_url: z.string().describe("Callback URL for notifications associated with this proxy binding").nullable().optional(),
|
|
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"),
|
|
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"),
|
|
16
|
+
wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional()
|
|
17
|
+
});
|
|
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() });
|
|
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'"),
|
|
27
|
+
attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),
|
|
28
|
+
relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable()
|
|
29
|
+
});
|
|
30
|
+
const ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({
|
|
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
|
+
});
|
|
36
|
+
const proxiedmailListProxyBindings = action("PROXIEDMAIL_LIST_PROXY_BINDINGS", {
|
|
37
|
+
slug: "proxiedmail-list-proxy-bindings",
|
|
38
|
+
name: "List proxy bindings",
|
|
39
|
+
description: "Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.",
|
|
40
|
+
input: ProxiedmailListProxyBindingsInput,
|
|
41
|
+
output: z.object({
|
|
42
|
+
data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe("List of proxy binding records"),
|
|
43
|
+
meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable()
|
|
44
|
+
})
|
|
45
|
+
});
|
|
46
|
+
//#endregion
|
|
47
|
+
export { proxiedmailListProxyBindings };
|
|
48
|
+
|
|
49
|
+
//# sourceMappingURL=list-proxy-bindings.mjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/update-proxy-binding.ts
|
|
4
|
+
const ProxiedmailUpdateProxyBindingInput = zod.z.object({ data: zod.z.object({
|
|
5
|
+
id: zod.z.string().describe("Proxy binding ID to update."),
|
|
6
|
+
type: zod.z.string().describe("Resource type, must be 'proxy_bindings'."),
|
|
7
|
+
attributes: zod.z.object({
|
|
8
|
+
description: zod.z.string().describe("Free-form description.").optional(),
|
|
9
|
+
callback_url: zod.z.string().describe("Callback URL for webhooks.").optional(),
|
|
10
|
+
is_browsable: zod.z.boolean().describe("Whether received emails can be listed.").optional(),
|
|
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.")
|
|
13
|
+
}).describe("Attributes to update (proxy_address is required).")
|
|
14
|
+
}).describe("Top-level JSON:API data object.") }).describe("Request model for updating a proxy binding in JSON:API format.");
|
|
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)."),
|
|
19
|
+
description: zod.z.string().describe("Description text.").nullable().optional(),
|
|
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
|
+
});
|
|
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() });
|
|
31
|
+
const ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = zod.z.object({
|
|
32
|
+
id: zod.z.string().describe("Resource ID."),
|
|
33
|
+
type: zod.z.string().describe("Resource type."),
|
|
34
|
+
attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),
|
|
35
|
+
relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable()
|
|
36
|
+
});
|
|
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
|
+
});
|
|
41
|
+
const ProxiedmailUpdateProxyBindingOutput = zod.z.object({
|
|
42
|
+
data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),
|
|
43
|
+
meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable()
|
|
44
|
+
}).describe("Response model for updated proxy binding resource.");
|
|
45
|
+
const proxiedmailUpdateProxyBinding = require_action.action("PROXIEDMAIL_UPDATE_PROXY_BINDING", {
|
|
46
|
+
slug: "proxiedmail-update-proxy-binding",
|
|
47
|
+
name: "Update Proxy Binding",
|
|
48
|
+
description: "Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.",
|
|
49
|
+
input: ProxiedmailUpdateProxyBindingInput,
|
|
50
|
+
output: ProxiedmailUpdateProxyBindingOutput
|
|
51
|
+
});
|
|
52
|
+
//#endregion
|
|
53
|
+
exports.proxiedmailUpdateProxyBinding = proxiedmailUpdateProxyBinding;
|
|
54
|
+
|
|
55
|
+
//# sourceMappingURL=update-proxy-binding.cjs.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailUpdateProxyBinding };
|
|
9
|
+
//# sourceMappingURL=update-proxy-binding.d.cts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
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]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { proxiedmailUpdateProxyBinding };
|
|
9
|
+
//# sourceMappingURL=update-proxy-binding.d.mts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/update-proxy-binding.ts
|
|
4
|
+
const ProxiedmailUpdateProxyBindingInput = z.object({ data: z.object({
|
|
5
|
+
id: z.string().describe("Proxy binding ID to update."),
|
|
6
|
+
type: z.string().describe("Resource type, must be 'proxy_bindings'."),
|
|
7
|
+
attributes: z.object({
|
|
8
|
+
description: z.string().describe("Free-form description.").optional(),
|
|
9
|
+
callback_url: z.string().describe("Callback URL for webhooks.").optional(),
|
|
10
|
+
is_browsable: z.boolean().describe("Whether received emails can be listed.").optional(),
|
|
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.")
|
|
13
|
+
}).describe("Attributes to update (proxy_address is required).")
|
|
14
|
+
}).describe("Top-level JSON:API data object.") }).describe("Request model for updating a proxy binding in JSON:API format.");
|
|
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)."),
|
|
19
|
+
description: z.string().describe("Description text.").nullable().optional(),
|
|
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
|
+
});
|
|
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() });
|
|
31
|
+
const ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({
|
|
32
|
+
id: z.string().describe("Resource ID."),
|
|
33
|
+
type: z.string().describe("Resource type."),
|
|
34
|
+
attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),
|
|
35
|
+
relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable()
|
|
36
|
+
});
|
|
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
|
+
});
|
|
41
|
+
const proxiedmailUpdateProxyBinding = action("PROXIEDMAIL_UPDATE_PROXY_BINDING", {
|
|
42
|
+
slug: "proxiedmail-update-proxy-binding",
|
|
43
|
+
name: "Update Proxy Binding",
|
|
44
|
+
description: "Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.",
|
|
45
|
+
input: ProxiedmailUpdateProxyBindingInput,
|
|
46
|
+
output: z.object({
|
|
47
|
+
data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),
|
|
48
|
+
meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable()
|
|
49
|
+
}).describe("Response model for updated proxy binding resource.")
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { proxiedmailUpdateProxyBinding };
|
|
53
|
+
|
|
54
|
+
//# sourceMappingURL=update-proxy-binding.mjs.map
|
|
@@ -0,0 +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"}
|
package/dist/app.cjs
ADDED
package/dist/app.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const proxiedmail = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,uCAAA,CAAA,CAAA,UAAA,CAAwB;CACnC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/app.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
|
package/dist/app.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
|
package/dist/app.mjs
ADDED
package/dist/app.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const proxiedmail = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,cAAc,UAAU;CACnC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/catalog.cjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const proxiedmailCatalog = {
|
|
4
|
+
"slug": "proxiedmail",
|
|
5
|
+
"name": "Proxiedmail",
|
|
6
|
+
"description": "ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.",
|
|
7
|
+
"category": "Email",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/proxiedmail",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.proxiedmailCatalog = proxiedmailCatalog;
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const proxiedmailCatalog: {
|
|
4
|
+
readonly slug: "proxiedmail";
|
|
5
|
+
readonly name: "Proxiedmail";
|
|
6
|
+
readonly description: "ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.";
|
|
7
|
+
readonly category: "Email";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/proxiedmail";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { proxiedmailCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const proxiedmailCatalog: {
|
|
4
|
+
readonly slug: "proxiedmail";
|
|
5
|
+
readonly name: "Proxiedmail";
|
|
6
|
+
readonly description: "ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.";
|
|
7
|
+
readonly category: "Email";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/proxiedmail";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { proxiedmailCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
|
package/dist/catalog.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const proxiedmailCatalog = {
|
|
4
|
+
"slug": "proxiedmail",
|
|
5
|
+
"name": "Proxiedmail",
|
|
6
|
+
"description": "ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.",
|
|
7
|
+
"category": "Email",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/proxiedmail",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { proxiedmailCatalog };
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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"}
|
package/dist/execute.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "proxiedmail";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeProxiedmailTool(tool, args) {
|
|
7
|
+
const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
exports.executeProxiedmailTool = executeProxiedmailTool;
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"proxiedmail\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeProxiedmailTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,uBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/execute.mjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "proxiedmail";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeProxiedmailTool(tool, args) {
|
|
7
|
+
const { result } = await createKeystrokeClient().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { executeProxiedmailTool };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"proxiedmail\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeProxiedmailTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,uBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_app = require("./app.cjs");
|
|
3
|
+
const require_catalog = require("./catalog.cjs");
|
|
4
|
+
const require_create_webhook_receiver = require("./actions/create-webhook-receiver.cjs");
|
|
5
|
+
const require_get_api_token = require("./actions/get-api-token.cjs");
|
|
6
|
+
const require_get_webhook_data = require("./actions/get-webhook-data.cjs");
|
|
7
|
+
const require_list_proxy_bindings = require("./actions/list-proxy-bindings.cjs");
|
|
8
|
+
const require_update_proxy_binding = require("./actions/update-proxy-binding.cjs");
|
|
9
|
+
require("./actions/index.cjs");
|
|
10
|
+
exports.proxiedmail = require_app.proxiedmail;
|
|
11
|
+
exports.proxiedmailCatalog = require_catalog.proxiedmailCatalog;
|
|
12
|
+
exports.proxiedmailCreateWebhookReceiver = require_create_webhook_receiver.proxiedmailCreateWebhookReceiver;
|
|
13
|
+
exports.proxiedmailGetApiToken = require_get_api_token.proxiedmailGetApiToken;
|
|
14
|
+
exports.proxiedmailGetWebhookData = require_get_webhook_data.proxiedmailGetWebhookData;
|
|
15
|
+
exports.proxiedmailListProxyBindings = require_list_proxy_bindings.proxiedmailListProxyBindings;
|
|
16
|
+
exports.proxiedmailUpdateProxyBinding = require_update_proxy_binding.proxiedmailUpdateProxyBinding;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { proxiedmailCreateWebhookReceiver } from "./actions/create-webhook-receiver.cjs";
|
|
2
|
+
import { proxiedmailGetApiToken } from "./actions/get-api-token.cjs";
|
|
3
|
+
import { proxiedmailGetWebhookData } from "./actions/get-webhook-data.cjs";
|
|
4
|
+
import { proxiedmailListProxyBindings } from "./actions/list-proxy-bindings.cjs";
|
|
5
|
+
import { proxiedmailUpdateProxyBinding } from "./actions/update-proxy-binding.cjs";
|
|
6
|
+
import { proxiedmail } from "./app.cjs";
|
|
7
|
+
import { proxiedmailCatalog } from "./catalog.cjs";
|
|
8
|
+
export { proxiedmail, proxiedmailCatalog, proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { proxiedmailCreateWebhookReceiver } from "./actions/create-webhook-receiver.mjs";
|
|
2
|
+
import { proxiedmailGetApiToken } from "./actions/get-api-token.mjs";
|
|
3
|
+
import { proxiedmailGetWebhookData } from "./actions/get-webhook-data.mjs";
|
|
4
|
+
import { proxiedmailListProxyBindings } from "./actions/list-proxy-bindings.mjs";
|
|
5
|
+
import { proxiedmailUpdateProxyBinding } from "./actions/update-proxy-binding.mjs";
|
|
6
|
+
import { proxiedmail } from "./app.mjs";
|
|
7
|
+
import { proxiedmailCatalog } from "./catalog.mjs";
|
|
8
|
+
export { proxiedmail, proxiedmailCatalog, proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { proxiedmail } from "./app.mjs";
|
|
2
|
+
import { proxiedmailCatalog } from "./catalog.mjs";
|
|
3
|
+
import { proxiedmailCreateWebhookReceiver } from "./actions/create-webhook-receiver.mjs";
|
|
4
|
+
import { proxiedmailGetApiToken } from "./actions/get-api-token.mjs";
|
|
5
|
+
import { proxiedmailGetWebhookData } from "./actions/get-webhook-data.mjs";
|
|
6
|
+
import { proxiedmailListProxyBindings } from "./actions/list-proxy-bindings.mjs";
|
|
7
|
+
import { proxiedmailUpdateProxyBinding } from "./actions/update-proxy-binding.mjs";
|
|
8
|
+
import "./actions/index.mjs";
|
|
9
|
+
export { proxiedmail, proxiedmailCatalog, proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/proxiedmail",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
11
|
+
"directory": "packages/integrations/proxiedmail"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./actions": {
|
|
28
|
+
"types": "./dist/actions/index.d.mts",
|
|
29
|
+
"import": "./dist/actions/index.mjs",
|
|
30
|
+
"require": "./dist/actions/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@keystrokehq/keystroke": "^0.1.4",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@keystrokehq/keystroke": "link:../../keystroke",
|
|
39
|
+
"@types/node": "^25.9.1",
|
|
40
|
+
"tsdown": "^0.22.0",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"dev": "tsdown --watch --no-clean",
|
|
47
|
+
"typecheck": "tsc --noEmit"
|
|
48
|
+
}
|
|
49
|
+
}
|