@keystrokehq/proxiedmail 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/create-webhook-receiver.cjs +1 -0
- package/dist/actions/create-webhook-receiver.cjs.map +1 -1
- package/dist/actions/create-webhook-receiver.d.cts +3 -13
- package/dist/actions/create-webhook-receiver.d.cts.map +1 -1
- package/dist/actions/create-webhook-receiver.d.mts +3 -13
- package/dist/actions/create-webhook-receiver.d.mts.map +1 -1
- package/dist/actions/create-webhook-receiver.mjs +1 -0
- package/dist/actions/create-webhook-receiver.mjs.map +1 -1
- package/dist/actions/get-api-token.cjs +1 -0
- package/dist/actions/get-api-token.cjs.map +1 -1
- package/dist/actions/get-api-token.d.cts +3 -15
- package/dist/actions/get-api-token.d.cts.map +1 -1
- package/dist/actions/get-api-token.d.mts +3 -15
- package/dist/actions/get-api-token.d.mts.map +1 -1
- package/dist/actions/get-api-token.mjs +1 -0
- package/dist/actions/get-api-token.mjs.map +1 -1
- package/dist/actions/get-webhook-data.cjs +1 -0
- package/dist/actions/get-webhook-data.cjs.map +1 -1
- package/dist/actions/get-webhook-data.d.cts +3 -15
- package/dist/actions/get-webhook-data.d.cts.map +1 -1
- package/dist/actions/get-webhook-data.d.mts +3 -15
- package/dist/actions/get-webhook-data.d.mts.map +1 -1
- package/dist/actions/get-webhook-data.mjs +1 -0
- package/dist/actions/get-webhook-data.mjs.map +1 -1
- package/dist/actions/list-proxy-bindings.cjs +1 -0
- package/dist/actions/list-proxy-bindings.cjs.map +1 -1
- package/dist/actions/list-proxy-bindings.d.cts +3 -13
- package/dist/actions/list-proxy-bindings.d.cts.map +1 -1
- package/dist/actions/list-proxy-bindings.d.mts +3 -13
- package/dist/actions/list-proxy-bindings.d.mts.map +1 -1
- package/dist/actions/list-proxy-bindings.mjs +1 -0
- package/dist/actions/list-proxy-bindings.mjs.map +1 -1
- package/dist/actions/update-proxy-binding.cjs +1 -0
- package/dist/actions/update-proxy-binding.cjs.map +1 -1
- package/dist/actions/update-proxy-binding.d.cts +3 -25
- package/dist/actions/update-proxy-binding.d.cts.map +1 -1
- package/dist/actions/update-proxy-binding.d.mts +3 -25
- package/dist/actions/update-proxy-binding.d.mts.map +1 -1
- package/dist/actions/update-proxy-binding.mjs +1 -0
- package/dist/actions/update-proxy-binding.mjs.map +1 -1
- package/dist/app.cjs +2 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +4 -6
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +4 -6
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +0 -1
- package/dist/app.mjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["proxiedmail","executeProxiedmailTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["proxiedmail","executeProxiedmailTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof proxiedmail.credential> {\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":";;;;;AAOA,SAAgB,OACd,MACA,KAO2D;CAC3D,OAAOA,YAAAA,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { proxiedmail } from \"./app\";\nimport { executeProxiedmailTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof proxiedmail.credential> {\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":";;;;;AAOA,SAAgB,OACd,MACA,KAO2D;CAC3D,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
|
@@ -1 +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.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-webhook-receiver.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailCreateWebhookReceiverInput = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver: AppAction<\n typeof ProxiedmailCreateWebhookReceiverInput,\n typeof ProxiedmailCreateWebhookReceiverOutput,\n typeof proxiedmail.credential\n> = 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":";;;;AAMA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAAyG;AACpL,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACrE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC5E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;AAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAE9E,MAAa,mCAITC,eAAAA,OAAO,uCAAuC;CAChD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/create-webhook-receiver.d.ts
|
|
@@ -8,19 +10,7 @@ declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodObject<{
|
|
|
8
10
|
get_url: z.ZodNullable<z.ZodString>;
|
|
9
11
|
call_url: z.ZodNullable<z.ZodString>;
|
|
10
12
|
}, z.core.$loose>;
|
|
11
|
-
declare const proxiedmailCreateWebhookReceiver:
|
|
12
|
-
connectionId: z.ZodString;
|
|
13
|
-
entityId: z.ZodString;
|
|
14
|
-
instanceId: z.ZodString;
|
|
15
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
16
|
-
generic_api_key: z.ZodString;
|
|
17
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
18
|
-
connectionId: z.ZodString;
|
|
19
|
-
entityId: z.ZodString;
|
|
20
|
-
instanceId: z.ZodString;
|
|
21
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
-
generic_api_key: z.ZodString;
|
|
23
|
-
}, z.core.$strip>>]>;
|
|
13
|
+
declare const proxiedmailCreateWebhookReceiver: AppAction<typeof ProxiedmailCreateWebhookReceiverInput, typeof ProxiedmailCreateWebhookReceiverOutput, typeof proxiedmail.credential>;
|
|
24
14
|
//#endregion
|
|
25
15
|
export { proxiedmailCreateWebhookReceiver };
|
|
26
16
|
//# sourceMappingURL=create-webhook-receiver.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-webhook-receiver.d.cts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-webhook-receiver.d.cts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/create-webhook-receiver.d.ts
|
|
@@ -8,19 +10,7 @@ declare const ProxiedmailCreateWebhookReceiverOutput: z.ZodObject<{
|
|
|
8
10
|
get_url: z.ZodNullable<z.ZodString>;
|
|
9
11
|
call_url: z.ZodNullable<z.ZodString>;
|
|
10
12
|
}, z.core.$loose>;
|
|
11
|
-
declare const proxiedmailCreateWebhookReceiver:
|
|
12
|
-
connectionId: z.ZodString;
|
|
13
|
-
entityId: z.ZodString;
|
|
14
|
-
instanceId: z.ZodString;
|
|
15
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
16
|
-
generic_api_key: z.ZodString;
|
|
17
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
18
|
-
connectionId: z.ZodString;
|
|
19
|
-
entityId: z.ZodString;
|
|
20
|
-
instanceId: z.ZodString;
|
|
21
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
-
generic_api_key: z.ZodString;
|
|
23
|
-
}, z.core.$strip>>]>;
|
|
13
|
+
declare const proxiedmailCreateWebhookReceiver: AppAction<typeof ProxiedmailCreateWebhookReceiverInput, typeof ProxiedmailCreateWebhookReceiverOutput, typeof proxiedmail.credential>;
|
|
24
14
|
//#endregion
|
|
25
15
|
export { proxiedmailCreateWebhookReceiver };
|
|
26
16
|
//# sourceMappingURL=create-webhook-receiver.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-webhook-receiver.d.mts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-webhook-receiver.d.mts","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-webhook-receiver.mjs","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailCreateWebhookReceiverInput = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver = action(\"PROXIEDMAIL_CREATE_WEBHOOK_RECEIVER\", {\n slug: \"proxiedmail-create-webhook-receiver\",\n name: \"Create webhook receiver\",\n description: \"Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.\",\n input: ProxiedmailCreateWebhookReceiverInput,\n output: ProxiedmailCreateWebhookReceiverOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-webhook-receiver.mjs","names":[],"sources":["../../src/actions/create-webhook-receiver.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailCreateWebhookReceiverInput = z.object({}).describe(\"Request model for CREATE_WEBHOOK_RECEIVER action.\\nNo parameters required to create a webhook receiver.\");\nexport const ProxiedmailCreateWebhookReceiverOutput = z.object({\n id: z.string().describe(\"Identifier of the created webhook receiver\").nullable(),\n status: z.string().describe(\"API call status, always 'ok'\").nullable(),\n get_url: z.string().describe(\"URL to GET stored webhook payloads\").nullable(),\n call_url: z.string().describe(\"URL to POST incoming webhook payloads\").nullable(),\n}).passthrough().describe(\"Response model for CREATE_WEBHOOK_RECEIVER action.\");\n\nexport const proxiedmailCreateWebhookReceiver: AppAction<\n typeof ProxiedmailCreateWebhookReceiverInput,\n typeof ProxiedmailCreateWebhookReceiverOutput,\n typeof proxiedmail.credential\n> = 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":";;;AAcA,MAAa,mCAIT,OAAO,uCAAuC;CAChD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBmD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yGAgBlE;CACP,QAhBoD,EAAE,OAAO;EAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;EAC/E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;EAC5E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-token.cjs","names":["z","action"],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-token.cjs","names":["z","action"],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken: AppAction<\n typeof ProxiedmailGetApiTokenInput,\n typeof ProxiedmailGetApiTokenOutput,\n typeof proxiedmail.credential\n> = 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":";;;;AAMA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCAAuC;AACnD,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,yBAITC,eAAAA,OAAO,6BAA6B;CACtC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-token.d.ts
|
|
@@ -7,21 +9,7 @@ declare const ProxiedmailGetApiTokenInput: z.ZodObject<{
|
|
|
7
9
|
declare const ProxiedmailGetApiTokenOutput: z.ZodObject<{
|
|
8
10
|
token: z.ZodNullable<z.ZodString>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const proxiedmailGetApiToken:
|
|
11
|
-
bearer_token: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
13
|
-
connectionId: z.ZodString;
|
|
14
|
-
entityId: z.ZodString;
|
|
15
|
-
instanceId: z.ZodString;
|
|
16
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
-
generic_api_key: z.ZodString;
|
|
18
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
19
|
-
connectionId: z.ZodString;
|
|
20
|
-
entityId: z.ZodString;
|
|
21
|
-
instanceId: z.ZodString;
|
|
22
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
-
generic_api_key: z.ZodString;
|
|
24
|
-
}, z.core.$strip>>]>;
|
|
12
|
+
declare const proxiedmailGetApiToken: AppAction<typeof ProxiedmailGetApiTokenInput, typeof ProxiedmailGetApiTokenOutput, typeof proxiedmail.credential>;
|
|
25
13
|
//#endregion
|
|
26
14
|
export { proxiedmailGetApiToken };
|
|
27
15
|
//# sourceMappingURL=get-api-token.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-token.d.cts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-token.d.cts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;;;cAMa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,EAAwB,SAAA,QAC5B,2BAAA,SACA,4BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-api-token.d.ts
|
|
@@ -7,21 +9,7 @@ declare const ProxiedmailGetApiTokenInput: z.ZodObject<{
|
|
|
7
9
|
declare const ProxiedmailGetApiTokenOutput: z.ZodObject<{
|
|
8
10
|
token: z.ZodNullable<z.ZodString>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const proxiedmailGetApiToken:
|
|
11
|
-
bearer_token: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
13
|
-
connectionId: z.ZodString;
|
|
14
|
-
entityId: z.ZodString;
|
|
15
|
-
instanceId: z.ZodString;
|
|
16
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
-
generic_api_key: z.ZodString;
|
|
18
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
19
|
-
connectionId: z.ZodString;
|
|
20
|
-
entityId: z.ZodString;
|
|
21
|
-
instanceId: z.ZodString;
|
|
22
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
-
generic_api_key: z.ZodString;
|
|
24
|
-
}, z.core.$strip>>]>;
|
|
12
|
+
declare const proxiedmailGetApiToken: AppAction<typeof ProxiedmailGetApiTokenInput, typeof ProxiedmailGetApiTokenOutput, typeof proxiedmail.credential>;
|
|
25
13
|
//#endregion
|
|
26
14
|
export { proxiedmailGetApiToken };
|
|
27
15
|
//# sourceMappingURL=get-api-token.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-token.d.mts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-token.d.mts","names":[],"sources":["../../src/actions/get-api-token.ts"],"mappings":";;;;;cAMa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAG3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,EAAwB,SAAA,QAC5B,2BAAA,SACA,4BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-api-token.mjs","names":[],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken = action(\"PROXIEDMAIL_GET_API_TOKEN\", {\n slug: \"proxiedmail-get-api-token\",\n name: \"Get API Token\",\n description: \"Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).\",\n input: ProxiedmailGetApiTokenInput,\n output: ProxiedmailGetApiTokenOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-api-token.mjs","names":[],"sources":["../../src/actions/get-api-token.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailGetApiTokenInput = z.object({\n bearer_token: z.string().describe(\"Bearer token obtained from POST /api/v1/auth. Omit leading 'Bearer ' prefix if present.\"),\n}).describe(\"Request model for GetApiToken action.\");\nexport const ProxiedmailGetApiTokenOutput = z.object({\n token: z.string().describe(\"Permanent API token to use in the `Token` header for subsequent requests.\").nullable(),\n}).passthrough().describe(\"Response model for GetApiToken action.\");\n\nexport const proxiedmailGetApiToken: AppAction<\n typeof ProxiedmailGetApiTokenInput,\n typeof ProxiedmailGetApiTokenOutput,\n typeof proxiedmail.credential\n> = 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":";;;AAaA,MAAa,yBAIT,OAAO,6BAA6B;CACtC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfyC,EAAE,OAAO,EAClD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,EAC7H,CAAC,CAAC,CAAC,SAAS,uCAaH;CACP,QAb0C,EAAE,OAAO,EACnD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-webhook-data.cjs","names":["z","action"],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-webhook-data.cjs","names":["z","action"],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData: AppAction<\n typeof ProxiedmailGetWebhookDataInput,\n typeof ProxiedmailGetWebhookDataOutput,\n typeof proxiedmail.credential\n> = 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":";;;;AAMA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AAChG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AAErE,MAAa,4BAITC,eAAAA,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-webhook-data.d.ts
|
|
@@ -11,21 +13,7 @@ declare const ProxiedmailGetWebhookDataOutput: z.ZodObject<{
|
|
|
11
13
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
14
|
is_received: z.ZodNullable<z.ZodBoolean>;
|
|
13
15
|
}, z.core.$loose>;
|
|
14
|
-
declare const proxiedmailGetWebhookData:
|
|
15
|
-
hash: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
17
|
-
connectionId: z.ZodString;
|
|
18
|
-
entityId: z.ZodString;
|
|
19
|
-
instanceId: z.ZodString;
|
|
20
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
-
generic_api_key: z.ZodString;
|
|
22
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
23
|
-
connectionId: z.ZodString;
|
|
24
|
-
entityId: z.ZodString;
|
|
25
|
-
instanceId: z.ZodString;
|
|
26
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
-
generic_api_key: z.ZodString;
|
|
28
|
-
}, z.core.$strip>>]>;
|
|
16
|
+
declare const proxiedmailGetWebhookData: AppAction<typeof ProxiedmailGetWebhookDataInput, typeof ProxiedmailGetWebhookDataOutput, typeof proxiedmail.credential>;
|
|
29
17
|
//#endregion
|
|
30
18
|
export { proxiedmailGetWebhookData };
|
|
31
19
|
//# sourceMappingURL=get-webhook-data.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-webhook-data.d.cts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-webhook-data.d.cts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;cAQ/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-webhook-data.d.ts
|
|
@@ -11,21 +13,7 @@ declare const ProxiedmailGetWebhookDataOutput: z.ZodObject<{
|
|
|
11
13
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
14
|
is_received: z.ZodNullable<z.ZodBoolean>;
|
|
13
15
|
}, z.core.$loose>;
|
|
14
|
-
declare const proxiedmailGetWebhookData:
|
|
15
|
-
hash: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
17
|
-
connectionId: z.ZodString;
|
|
18
|
-
entityId: z.ZodString;
|
|
19
|
-
instanceId: z.ZodString;
|
|
20
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
-
generic_api_key: z.ZodString;
|
|
22
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
23
|
-
connectionId: z.ZodString;
|
|
24
|
-
entityId: z.ZodString;
|
|
25
|
-
instanceId: z.ZodString;
|
|
26
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
-
generic_api_key: z.ZodString;
|
|
28
|
-
}, z.core.$strip>>]>;
|
|
16
|
+
declare const proxiedmailGetWebhookData: AppAction<typeof ProxiedmailGetWebhookDataInput, typeof ProxiedmailGetWebhookDataOutput, typeof proxiedmail.credential>;
|
|
29
17
|
//#endregion
|
|
30
18
|
export { proxiedmailGetWebhookData };
|
|
31
19
|
//# sourceMappingURL=get-webhook-data.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-webhook-data.d.mts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-webhook-data.d.mts","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;cAQ/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-webhook-data.mjs","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData = action(\"PROXIEDMAIL_GET_WEBHOOK_DATA\", {\n slug: \"proxiedmail-get-webhook-data\",\n name: \"Get webhook data\",\n description: \"Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.\",\n input: ProxiedmailGetWebhookDataInput,\n output: ProxiedmailGetWebhookDataOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-webhook-data.mjs","names":[],"sources":["../../src/actions/get-webhook-data.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailGetWebhookDataInput = z.object({\n hash: z.string().describe(\"Callback hash identifier for the webhook receiver\"),\n}).describe(\"Request model for GetWebhookData action.\");\nexport const ProxiedmailGetWebhookDataOutput = z.object({\n code: z.string().describe(\"Response code from the API\").nullable(),\n method: z.string().describe(\"HTTP method used for the callback (e.g., POST, GET)\").nullable().optional(),\n status: z.string().describe(\"Status of the webhook receiver\").nullable(),\n payload: z.record(z.string(), z.unknown()).describe(\"Payload data sent to the webhook\").nullable().optional(),\n is_received: z.boolean().describe(\"Whether a callback was received at this webhook\").nullable(),\n}).passthrough().describe(\"Response model for GetWebhookData action.\");\n\nexport const proxiedmailGetWebhookData: AppAction<\n typeof ProxiedmailGetWebhookDataInput,\n typeof ProxiedmailGetWebhookDataOutput,\n typeof proxiedmail.credential\n> = 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":";;;AAiBA,MAAa,4BAIT,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnB4C,EAAE,OAAO,EACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,EAC/E,CAAC,CAAC,CAAC,SAAS,0CAiBH;CACP,QAjB6C,EAAE,OAAO;EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACjE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;EACvE,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CAChG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-proxy-bindings.cjs","names":["z","action"],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-proxy-bindings.cjs","names":["z","action"],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings: AppAction<\n typeof ProxiedmailListProxyBindingsInput,\n typeof ProxiedmailListProxyBindingsOutput,\n typeof proxiedmail.credential\n> = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-proxy-bindings.d.ts
|
|
@@ -35,19 +37,7 @@ declare const ProxiedmailListProxyBindingsOutput: z.ZodObject<{
|
|
|
35
37
|
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
36
38
|
}, z.core.$loose>>;
|
|
37
39
|
}, z.core.$loose>;
|
|
38
|
-
declare const proxiedmailListProxyBindings:
|
|
39
|
-
connectionId: z.ZodString;
|
|
40
|
-
entityId: z.ZodString;
|
|
41
|
-
instanceId: z.ZodString;
|
|
42
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
-
generic_api_key: z.ZodString;
|
|
44
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
45
|
-
connectionId: z.ZodString;
|
|
46
|
-
entityId: z.ZodString;
|
|
47
|
-
instanceId: z.ZodString;
|
|
48
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
49
|
-
generic_api_key: z.ZodString;
|
|
50
|
-
}, z.core.$strip>>]>;
|
|
40
|
+
declare const proxiedmailListProxyBindings: AppAction<typeof ProxiedmailListProxyBindingsInput, typeof ProxiedmailListProxyBindingsOutput, typeof proxiedmail.credential>;
|
|
51
41
|
//#endregion
|
|
52
42
|
export { proxiedmailListProxyBindings };
|
|
53
43
|
//# sourceMappingURL=list-proxy-bindings.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-proxy-bindings.d.cts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-proxy-bindings.d.cts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;;;cAMa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoCjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKlC,4BAAA,EAA8B,SAAA,QAClC,iCAAA,SACA,kCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-proxy-bindings.d.ts
|
|
@@ -35,19 +37,7 @@ declare const ProxiedmailListProxyBindingsOutput: z.ZodObject<{
|
|
|
35
37
|
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
36
38
|
}, z.core.$loose>>;
|
|
37
39
|
}, z.core.$loose>;
|
|
38
|
-
declare const proxiedmailListProxyBindings:
|
|
39
|
-
connectionId: z.ZodString;
|
|
40
|
-
entityId: z.ZodString;
|
|
41
|
-
instanceId: z.ZodString;
|
|
42
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
-
generic_api_key: z.ZodString;
|
|
44
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
45
|
-
connectionId: z.ZodString;
|
|
46
|
-
entityId: z.ZodString;
|
|
47
|
-
instanceId: z.ZodString;
|
|
48
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
49
|
-
generic_api_key: z.ZodString;
|
|
50
|
-
}, z.core.$strip>>]>;
|
|
40
|
+
declare const proxiedmailListProxyBindings: AppAction<typeof ProxiedmailListProxyBindingsInput, typeof ProxiedmailListProxyBindingsOutput, typeof proxiedmail.credential>;
|
|
51
41
|
//#endregion
|
|
52
42
|
export { proxiedmailListProxyBindings };
|
|
53
43
|
//# sourceMappingURL=list-proxy-bindings.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-proxy-bindings.d.mts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-proxy-bindings.d.mts","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"mappings":";;;;;cAMa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoCjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKlC,4BAAA,EAA8B,SAAA,QAClC,iCAAA,SACA,kCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-proxy-bindings.mjs","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-proxy-bindings.mjs","names":[],"sources":["../../src/actions/list-proxy-bindings.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailListProxyBindingsInput = z.object({}).describe(\"Request model for listing proxy bindings. No parameters needed.\");\nconst ProxiedmailListProxyBindings_ProxyBindingAttributesSchema = z.object({\n type: z.number().int().describe(\"Type code for the proxy binding\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the proxy binding was created in ISO 8601 format\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the proxy binding was last updated in ISO 8601 format\").nullable(),\n description: z.string().describe(\"Description of this proxy binding\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL for notifications associated with this proxy binding\").nullable().optional(),\n is_browsable: z.boolean().describe(\"Whether emails can be browsed\").nullable().optional(),\n proxy_address: z.string().describe(\"The proxy email address\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Mapping of real email addresses to their status objects\"),\n delivery_method: z.number().int().describe(\"Delivery method code\").nullable().optional(),\n received_emails: z.number().int().describe(\"Number of emails received through this binding\").nullable(),\n wildcard_auto_create_on: z.union([z.string(), z.boolean()]).nullable().optional(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserDataSchema = z.object({\n id: z.string().describe(\"Identifier of the related user\").nullable(),\n type: z.string().describe(\"Resource type of the related user\").nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema = z.object({\n data: ProxiedmailListProxyBindings_ProxyBindingUserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema = z.object({\n user: ProxiedmailListProxyBindings_ProxyBindingUserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ProxyBindingDataItemSchema = z.object({\n id: z.string().describe(\"Identifier of the proxy binding\").nullable(),\n type: z.string().describe(\"Resource type of the proxy binding, e.g., 'proxy_bindings'\").nullable(),\n attributes: ProxiedmailListProxyBindings_ProxyBindingAttributesSchema.nullable(),\n relationships: ProxiedmailListProxyBindings_ProxyBindingRelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema = z.object({\n confirmationType: z.union([z.string(), z.number().int()]).nullable().optional(),\n usedProxyBindings: z.number().int().describe(\"Number of proxy bindings already used\").nullable(),\n availableProxyBindings: z.number().int().describe(\"Number of proxy bindings still available\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email has been sent\").nullable(),\n}).passthrough();\nexport const ProxiedmailListProxyBindingsOutput = z.object({\n data: z.array(ProxiedmailListProxyBindings_ProxyBindingDataItemSchema).describe(\"List of proxy binding records\"),\n meta: ProxiedmailListProxyBindings_ListProxyBindingsMetaSchema.nullable(),\n}).passthrough();\n\nexport const proxiedmailListProxyBindings: AppAction<\n typeof ProxiedmailListProxyBindingsInput,\n typeof ProxiedmailListProxyBindingsOutput,\n typeof proxiedmail.credential\n> = action(\"PROXIEDMAIL_LIST_PROXY_BINDINGS\", {\n slug: \"proxiedmail-list-proxy-bindings\",\n name: \"List proxy bindings\",\n description: \"Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.\",\n input: ProxiedmailListProxyBindingsInput,\n output: ProxiedmailListProxyBindingsOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1 +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.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"update-proxy-binding.cjs","names":["z","action"],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailUpdateProxyBindingInput = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding: AppAction<\n typeof ProxiedmailUpdateProxyBindingInput,\n typeof ProxiedmailUpdateProxyBindingOutput,\n typeof proxiedmail.credential\n> = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/update-proxy-binding.d.ts
|
|
@@ -42,31 +44,7 @@ declare const ProxiedmailUpdateProxyBindingOutput: z.ZodObject<{
|
|
|
42
44
|
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
43
45
|
}, z.core.$loose>>;
|
|
44
46
|
}, z.core.$loose>;
|
|
45
|
-
declare const proxiedmailUpdateProxyBinding:
|
|
46
|
-
data: {
|
|
47
|
-
id: string;
|
|
48
|
-
type: string;
|
|
49
|
-
attributes: {
|
|
50
|
-
proxy_address: string;
|
|
51
|
-
real_addresses: Record<string, unknown>;
|
|
52
|
-
description?: string | undefined;
|
|
53
|
-
callback_url?: string | undefined;
|
|
54
|
-
is_browsable?: boolean | undefined;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
58
|
-
connectionId: z.ZodString;
|
|
59
|
-
entityId: z.ZodString;
|
|
60
|
-
instanceId: z.ZodString;
|
|
61
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
-
generic_api_key: z.ZodString;
|
|
63
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
64
|
-
connectionId: z.ZodString;
|
|
65
|
-
entityId: z.ZodString;
|
|
66
|
-
instanceId: z.ZodString;
|
|
67
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
68
|
-
generic_api_key: z.ZodString;
|
|
69
|
-
}, z.core.$strip>>]>;
|
|
47
|
+
declare const proxiedmailUpdateProxyBinding: AppAction<typeof ProxiedmailUpdateProxyBindingInput, typeof ProxiedmailUpdateProxyBindingOutput, typeof proxiedmail.credential>;
|
|
70
48
|
//#endregion
|
|
71
49
|
export { proxiedmailUpdateProxyBinding };
|
|
72
50
|
//# sourceMappingURL=update-proxy-binding.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-proxy-binding.d.cts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"update-proxy-binding.d.cts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;;;cAMa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA2ClC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKnC,6BAAA,EAA+B,SAAA,QACnC,kCAAA,SACA,mCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { proxiedmail } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/update-proxy-binding.d.ts
|
|
@@ -42,31 +44,7 @@ declare const ProxiedmailUpdateProxyBindingOutput: z.ZodObject<{
|
|
|
42
44
|
isVerificationEmailSend: z.ZodNullable<z.ZodBoolean>;
|
|
43
45
|
}, z.core.$loose>>;
|
|
44
46
|
}, z.core.$loose>;
|
|
45
|
-
declare const proxiedmailUpdateProxyBinding:
|
|
46
|
-
data: {
|
|
47
|
-
id: string;
|
|
48
|
-
type: string;
|
|
49
|
-
attributes: {
|
|
50
|
-
proxy_address: string;
|
|
51
|
-
real_addresses: Record<string, unknown>;
|
|
52
|
-
description?: string | undefined;
|
|
53
|
-
callback_url?: string | undefined;
|
|
54
|
-
is_browsable?: boolean | undefined;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
58
|
-
connectionId: z.ZodString;
|
|
59
|
-
entityId: z.ZodString;
|
|
60
|
-
instanceId: z.ZodString;
|
|
61
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
-
generic_api_key: z.ZodString;
|
|
63
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"proxiedmail", z.ZodObject<{
|
|
64
|
-
connectionId: z.ZodString;
|
|
65
|
-
entityId: z.ZodString;
|
|
66
|
-
instanceId: z.ZodString;
|
|
67
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
68
|
-
generic_api_key: z.ZodString;
|
|
69
|
-
}, z.core.$strip>>]>;
|
|
47
|
+
declare const proxiedmailUpdateProxyBinding: AppAction<typeof ProxiedmailUpdateProxyBindingInput, typeof ProxiedmailUpdateProxyBindingOutput, typeof proxiedmail.credential>;
|
|
70
48
|
//#endregion
|
|
71
49
|
export { proxiedmailUpdateProxyBinding };
|
|
72
50
|
//# sourceMappingURL=update-proxy-binding.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-proxy-binding.d.mts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"update-proxy-binding.d.mts","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"mappings":";;;;;cAMa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA2ClC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKnC,6BAAA,EAA+B,SAAA,QACnC,kCAAA,SACA,mCAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-proxy-binding.mjs","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProxiedmailUpdateProxyBindingInput = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"update-proxy-binding.mjs","names":[],"sources":["../../src/actions/update-proxy-binding.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proxiedmail } from \"../app\";\n\nexport const ProxiedmailUpdateProxyBindingInput = z.object({\n data: z.object({\n id: z.string().describe(\"Proxy binding ID to update.\"),\n type: z.string().describe(\"Resource type, must be 'proxy_bindings'.\"),\n attributes: z.object({\n description: z.string().describe(\"Free-form description.\").optional(),\n callback_url: z.string().describe(\"Callback URL for webhooks.\").optional(),\n is_browsable: z.boolean().describe(\"Whether received emails can be listed.\").optional(),\n proxy_address: z.string().describe(\"Proxy email address (required for update).\"),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of real email addresses to enable (true) or disable (false). Required field.\"),\n}).describe(\"Attributes to update (proxy_address is required).\"),\n}).describe(\"Top-level JSON:API data object.\"),\n}).describe(\"Request model for updating a proxy binding in JSON:API format.\");\nconst ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema = z.object({\n type: z.number().int().describe(\"Internal resource type code.\").nullable(),\n created_at: z.string().describe(\"Creation timestamp (ISO8601).\").nullable(),\n updated_at: z.string().describe(\"Update timestamp (ISO8601).\").nullable(),\n description: z.string().describe(\"Description text.\").nullable().optional(),\n callback_url: z.string().describe(\"Callback URL.\").nullable().optional(),\n proxy_address: z.string().describe(\"Proxy email address.\").nullable(),\n real_addresses: z.record(z.string(), z.unknown()).describe(\"Map of email to status with is_enabled and is_verified.\"),\n received_emails: z.number().int().describe(\"Count of received emails.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserDataSchema = z.object({\n id: z.string().describe(\"User ID.\").nullable(),\n type: z.string().describe(\"Related resource type.\").nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_UserRelationshipSchema = z.object({\n data: ProxiedmailUpdateProxyBinding_UserDataSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_RelationshipsSchema = z.object({\n user: ProxiedmailUpdateProxyBinding_UserRelationshipSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema = z.object({\n id: z.string().describe(\"Resource ID.\").nullable(),\n type: z.string().describe(\"Resource type.\").nullable(),\n attributes: ProxiedmailUpdateProxyBinding_ProxyBindingAttributesResponseSchema.nullable(),\n relationships: ProxiedmailUpdateProxyBinding_RelationshipsSchema.nullable(),\n}).passthrough();\nconst ProxiedmailUpdateProxyBinding_MetaSchema = z.object({\n firstProxyBinding: z.boolean().describe(\"Whether this is the first proxy binding.\").nullable(),\n isVerificationEmailSend: z.boolean().describe(\"Whether a verification email was sent.\").nullable(),\n}).passthrough();\nexport const ProxiedmailUpdateProxyBindingOutput = z.object({\n data: ProxiedmailUpdateProxyBinding_ProxyBindingDataResponseSchema.nullable(),\n meta: ProxiedmailUpdateProxyBinding_MetaSchema.nullable(),\n}).passthrough().describe(\"Response model for updated proxy binding resource.\");\n\nexport const proxiedmailUpdateProxyBinding: AppAction<\n typeof ProxiedmailUpdateProxyBindingInput,\n typeof ProxiedmailUpdateProxyBindingOutput,\n typeof proxiedmail.credential\n> = action(\"PROXIEDMAIL_UPDATE_PROXY_BINDING\", {\n slug: \"proxiedmail-update-proxy-binding\",\n name: \"Update Proxy Binding\",\n description: \"Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.\",\n input: ProxiedmailUpdateProxyBindingInput,\n output: ProxiedmailUpdateProxyBindingOutput,\n});\n"],"mappings":"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"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
-
let zod = require("zod");
|
|
3
2
|
//#region src/app.ts
|
|
3
|
+
const credential = { generic_api_key: require("zod").z.string() };
|
|
4
4
|
const proxiedmail = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
5
5
|
slug: "proxiedmail",
|
|
6
6
|
auth: "keystroke",
|
|
7
|
-
credential
|
|
7
|
+
credential
|
|
8
8
|
});
|
|
9
9
|
//#endregion
|
|
10
10
|
exports.proxiedmail = proxiedmail;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const proxiedmail = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n credential
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const proxiedmail: KeystrokeApp<\"proxiedmail\", typeof credential> = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAGA,MAAM,aAAa,EACjB,8BAAiBA,CAAAA,CAAAA,EAAE,OAAO,EAC5B;AAEA,MAAa,eAAA,GAAA,2BAAA,UAAA,CAAwE;CACnF,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
1
2
|
import { z } from "zod";
|
|
2
3
|
|
|
3
4
|
//#region src/app.d.ts
|
|
4
|
-
declare const
|
|
5
|
-
connectionId: z.ZodString;
|
|
6
|
-
entityId: z.ZodString;
|
|
7
|
-
instanceId: z.ZodString;
|
|
8
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5
|
+
declare const credential: {
|
|
9
6
|
generic_api_key: z.ZodString;
|
|
10
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const proxiedmail: KeystrokeApp<"proxiedmail", typeof credential>;
|
|
11
9
|
//#endregion
|
|
12
10
|
export { proxiedmail };
|
|
13
11
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,WAAA,EAAa,YAAY,uBAAuB,UAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
1
2
|
import { z } from "zod";
|
|
2
3
|
|
|
3
4
|
//#region src/app.d.ts
|
|
4
|
-
declare const
|
|
5
|
-
connectionId: z.ZodString;
|
|
6
|
-
entityId: z.ZodString;
|
|
7
|
-
instanceId: z.ZodString;
|
|
8
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5
|
+
declare const credential: {
|
|
9
6
|
generic_api_key: z.ZodString;
|
|
10
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const proxiedmail: KeystrokeApp<"proxiedmail", typeof credential>;
|
|
11
9
|
//#endregion
|
|
12
10
|
export { proxiedmail };
|
|
13
11
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,WAAA,EAAa,YAAY,uBAAuB,UAAA"}
|
package/dist/app.mjs
CHANGED
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const proxiedmail = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n credential
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const proxiedmail: KeystrokeApp<\"proxiedmail\", typeof credential> = defineApp({\n slug: \"proxiedmail\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAOA,MAAa,cAA8D,UAAU;CACnF,MAAM;CACN,MAAM;CACN,cANA,iBAAiB,EAAE,OAAO,EAM1B;AACF,CAAC"}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { proxiedmail } from "./app.cjs";
|
|
1
2
|
import { proxiedmailCreateWebhookReceiver } from "./actions/create-webhook-receiver.cjs";
|
|
2
3
|
import { proxiedmailGetApiToken } from "./actions/get-api-token.cjs";
|
|
3
4
|
import { proxiedmailGetWebhookData } from "./actions/get-webhook-data.cjs";
|
|
4
5
|
import { proxiedmailListProxyBindings } from "./actions/list-proxy-bindings.cjs";
|
|
5
6
|
import { proxiedmailUpdateProxyBinding } from "./actions/update-proxy-binding.cjs";
|
|
6
|
-
import { proxiedmail } from "./app.cjs";
|
|
7
7
|
import { proxiedmailCatalog } from "./catalog.cjs";
|
|
8
8
|
export { proxiedmail, proxiedmailCatalog, proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { proxiedmail } from "./app.mjs";
|
|
1
2
|
import { proxiedmailCreateWebhookReceiver } from "./actions/create-webhook-receiver.mjs";
|
|
2
3
|
import { proxiedmailGetApiToken } from "./actions/get-api-token.mjs";
|
|
3
4
|
import { proxiedmailGetWebhookData } from "./actions/get-webhook-data.mjs";
|
|
4
5
|
import { proxiedmailListProxyBindings } from "./actions/list-proxy-bindings.mjs";
|
|
5
6
|
import { proxiedmailUpdateProxyBinding } from "./actions/update-proxy-binding.mjs";
|
|
6
|
-
import { proxiedmail } from "./app.mjs";
|
|
7
7
|
import { proxiedmailCatalog } from "./catalog.mjs";
|
|
8
8
|
export { proxiedmail, proxiedmailCatalog, proxiedmailCreateWebhookReceiver, proxiedmailGetApiToken, proxiedmailGetWebhookData, proxiedmailListProxyBindings, proxiedmailUpdateProxyBinding };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/proxiedmail",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": ">=0.1.
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.104",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|