@keystrokehq/respond_io 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/create-comment.cjs +3 -3
- package/dist/actions/create-comment.cjs.map +1 -1
- package/dist/actions/create-comment.d.cts +13 -3
- package/dist/actions/create-comment.d.cts.map +1 -1
- package/dist/actions/create-comment.d.mts +13 -3
- package/dist/actions/create-comment.d.mts.map +1 -1
- package/dist/actions/create-comment.mjs +3 -3
- package/dist/actions/create-comment.mjs.map +1 -1
- package/dist/actions/create-contact.cjs +2 -2
- package/dist/actions/create-contact.cjs.map +1 -1
- package/dist/actions/create-contact.d.cts +32 -3
- package/dist/actions/create-contact.d.cts.map +1 -1
- package/dist/actions/create-contact.d.mts +32 -3
- package/dist/actions/create-contact.d.mts.map +1 -1
- package/dist/actions/create-contact.mjs +2 -2
- package/dist/actions/create-contact.mjs.map +1 -1
- package/dist/actions/create-space-tag.cjs +4 -4
- package/dist/actions/create-space-tag.cjs.map +1 -1
- package/dist/actions/create-space-tag.d.cts +18 -3
- package/dist/actions/create-space-tag.d.cts.map +1 -1
- package/dist/actions/create-space-tag.d.mts +18 -3
- package/dist/actions/create-space-tag.d.mts.map +1 -1
- package/dist/actions/create-space-tag.mjs +4 -4
- package/dist/actions/create-space-tag.mjs.map +1 -1
- package/dist/actions/get-message.cjs +9 -9
- package/dist/actions/get-message.cjs.map +1 -1
- package/dist/actions/get-message.d.cts +57 -3
- package/dist/actions/get-message.d.cts.map +1 -1
- package/dist/actions/get-message.d.mts +57 -3
- package/dist/actions/get-message.d.mts.map +1 -1
- package/dist/actions/get-message.mjs +9 -9
- package/dist/actions/get-message.mjs.map +1 -1
- package/dist/actions/list-channels.cjs +4 -4
- package/dist/actions/list-channels.cjs.map +1 -1
- package/dist/actions/list-channels.d.cts +39 -3
- package/dist/actions/list-channels.d.cts.map +1 -1
- package/dist/actions/list-channels.d.mts +39 -3
- package/dist/actions/list-channels.d.mts.map +1 -1
- package/dist/actions/list-channels.mjs +4 -4
- package/dist/actions/list-channels.mjs.map +1 -1
- package/dist/actions/list-users.cjs +7 -7
- package/dist/actions/list-users.cjs.map +1 -1
- package/dist/actions/list-users.d.cts +28 -3
- package/dist/actions/list-users.d.cts.map +1 -1
- package/dist/actions/list-users.d.mts +28 -3
- package/dist/actions/list-users.d.mts.map +1 -1
- package/dist/actions/list-users.mjs +7 -7
- package/dist/actions/list-users.mjs.map +1 -1
- package/dist/actions/update-space-tag.cjs.map +1 -1
- package/dist/actions/update-space-tag.d.cts +21 -3
- package/dist/actions/update-space-tag.d.cts.map +1 -1
- package/dist/actions/update-space-tag.d.mts +21 -3
- package/dist/actions/update-space-tag.d.mts.map +1 -1
- package/dist/actions/update-space-tag.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["respondIo","executeRespondIoTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { respondIo } from \"./app\";\nimport { executeRespondIoTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["respondIo","executeRespondIoTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { respondIo } from \"./app\";\nimport { executeRespondIoTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return respondIo.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeRespondIoTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,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,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;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 { respondIo } from \"./app\";\nimport { executeRespondIoTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { respondIo } from \"./app\";\nimport { executeRespondIoTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return respondIo.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeRespondIoTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
|
|
@@ -6,9 +6,9 @@ const RespondIoCreateCommentInput = zod.z.object({
|
|
|
6
6
|
identifier: zod.z.string().describe("Identifier of the contact; either 'id:<contact_id>', 'email:<email>' or 'phone:<E.164_phone>'. Example: 'id:123', 'email:abdc@gmail.com', 'phone:+60121233112'")
|
|
7
7
|
}).describe("Request model for adding an internal comment to a contact's conversation.");
|
|
8
8
|
const RespondIoCreateCommentOutput = zod.z.object({
|
|
9
|
-
text: zod.z.string().describe("Text of the created comment."),
|
|
10
|
-
contactId: zod.z.number().int().describe("Numeric ID of the contact for which the comment was added."),
|
|
11
|
-
created_at: zod.z.number().int().describe("Unix timestamp (in seconds) when the comment was created.")
|
|
9
|
+
text: zod.z.string().describe("Text of the created comment.").nullable(),
|
|
10
|
+
contactId: zod.z.number().int().describe("Numeric ID of the contact for which the comment was added.").nullable(),
|
|
11
|
+
created_at: zod.z.number().int().describe("Unix timestamp (in seconds) when the comment was created.").nullable()
|
|
12
12
|
}).describe("Response model for the created comment.");
|
|
13
13
|
const respondIoCreateComment = require_action.action("RESPOND_IO_CREATE_COMMENT", {
|
|
14
14
|
slug: "respond_io-create-comment",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-comment.cjs","names":["z","action"],"sources":["../../src/actions/create-comment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateCommentInput
|
|
1
|
+
{"version":3,"file":"create-comment.cjs","names":["z","action"],"sources":["../../src/actions/create-comment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateCommentInput = z.object({\n text: z.string().describe(\"Content of the comment (internal note), up to 1000 characters. You can mention other users using `{{@user.ID}}`.\"),\n identifier: z.string().describe(\"Identifier of the contact; either 'id:<contact_id>', 'email:<email>' or 'phone:<E.164_phone>'. Example: 'id:123', 'email:abdc@gmail.com', 'phone:+60121233112'\"),\n}).describe(\"Request model for adding an internal comment to a contact's conversation.\");\nexport const RespondIoCreateCommentOutput = z.object({\n text: z.string().describe(\"Text of the created comment.\").nullable(),\n contactId: z.number().int().describe(\"Numeric ID of the contact for which the comment was added.\").nullable(),\n created_at: z.number().int().describe(\"Unix timestamp (in seconds) when the comment was created.\").nullable(),\n}).describe(\"Response model for the created comment.\");\n\nexport const respondIoCreateComment = action(\"RESPOND_IO_CREATE_COMMENT\", {\n slug: \"respond_io-create-comment\",\n name: \"Add internal comment to conversation\",\n description: \"Tool to add a comment (internal note) to a contact's conversation. Use after verifying the contact identifier.\",\n input: RespondIoCreateCommentInput,\n output: RespondIoCreateCommentOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kHAAkH;CAC5I,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;AAClM,CAAC,CAAC,CAAC,SAAS,2EAA2E;AACvF,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CAC5G,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;AAC9G,CAAC,CAAC,CAAC,SAAS,yCAAyC;AAErD,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-comment.d.ts
|
|
4
|
-
declare const RespondIoCreateCommentInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateCommentInput: z.ZodObject<{
|
|
5
|
+
text: z.ZodString;
|
|
6
|
+
identifier: z.ZodString;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const RespondIoCreateCommentOutput: z.ZodObject<{
|
|
9
|
+
text: z.ZodNullable<z.ZodString>;
|
|
10
|
+
contactId: z.ZodNullable<z.ZodNumber>;
|
|
11
|
+
created_at: z.ZodNullable<z.ZodNumber>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const respondIoCreateComment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
|
+
text: string;
|
|
15
|
+
identifier: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { respondIoCreateComment };
|
|
9
19
|
//# sourceMappingURL=create-comment.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-comment.d.cts","names":[],"sources":["../../src/actions/create-comment.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"create-comment.d.cts","names":[],"sources":["../../src/actions/create-comment.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;cAI3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAM5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-comment.d.ts
|
|
4
|
-
declare const RespondIoCreateCommentInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateCommentInput: z.ZodObject<{
|
|
5
|
+
text: z.ZodString;
|
|
6
|
+
identifier: z.ZodString;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const RespondIoCreateCommentOutput: z.ZodObject<{
|
|
9
|
+
text: z.ZodNullable<z.ZodString>;
|
|
10
|
+
contactId: z.ZodNullable<z.ZodNumber>;
|
|
11
|
+
created_at: z.ZodNullable<z.ZodNumber>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const respondIoCreateComment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
|
+
text: string;
|
|
15
|
+
identifier: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { respondIoCreateComment };
|
|
9
19
|
//# sourceMappingURL=create-comment.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-comment.d.mts","names":[],"sources":["../../src/actions/create-comment.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"create-comment.d.mts","names":[],"sources":["../../src/actions/create-comment.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;cAI3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAM5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -9,9 +9,9 @@ const respondIoCreateComment = action("RESPOND_IO_CREATE_COMMENT", {
|
|
|
9
9
|
identifier: z.string().describe("Identifier of the contact; either 'id:<contact_id>', 'email:<email>' or 'phone:<E.164_phone>'. Example: 'id:123', 'email:abdc@gmail.com', 'phone:+60121233112'")
|
|
10
10
|
}).describe("Request model for adding an internal comment to a contact's conversation."),
|
|
11
11
|
output: z.object({
|
|
12
|
-
text: z.string().describe("Text of the created comment."),
|
|
13
|
-
contactId: z.number().int().describe("Numeric ID of the contact for which the comment was added."),
|
|
14
|
-
created_at: z.number().int().describe("Unix timestamp (in seconds) when the comment was created.")
|
|
12
|
+
text: z.string().describe("Text of the created comment.").nullable(),
|
|
13
|
+
contactId: z.number().int().describe("Numeric ID of the contact for which the comment was added.").nullable(),
|
|
14
|
+
created_at: z.number().int().describe("Unix timestamp (in seconds) when the comment was created.").nullable()
|
|
15
15
|
}).describe("Response model for the created comment.")
|
|
16
16
|
});
|
|
17
17
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-comment.mjs","names":[],"sources":["../../src/actions/create-comment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateCommentInput
|
|
1
|
+
{"version":3,"file":"create-comment.mjs","names":[],"sources":["../../src/actions/create-comment.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateCommentInput = z.object({\n text: z.string().describe(\"Content of the comment (internal note), up to 1000 characters. You can mention other users using `{{@user.ID}}`.\"),\n identifier: z.string().describe(\"Identifier of the contact; either 'id:<contact_id>', 'email:<email>' or 'phone:<E.164_phone>'. Example: 'id:123', 'email:abdc@gmail.com', 'phone:+60121233112'\"),\n}).describe(\"Request model for adding an internal comment to a contact's conversation.\");\nexport const RespondIoCreateCommentOutput = z.object({\n text: z.string().describe(\"Text of the created comment.\").nullable(),\n contactId: z.number().int().describe(\"Numeric ID of the contact for which the comment was added.\").nullable(),\n created_at: z.number().int().describe(\"Unix timestamp (in seconds) when the comment was created.\").nullable(),\n}).describe(\"Response model for the created comment.\");\n\nexport const respondIoCreateComment = action(\"RESPOND_IO_CREATE_COMMENT\", {\n slug: \"respond_io-create-comment\",\n name: \"Add internal comment to conversation\",\n description: \"Tool to add a comment (internal note) to a contact's conversation. Use after verifying the contact identifier.\",\n input: RespondIoCreateCommentInput,\n output: RespondIoCreateCommentOutput,\n});\n"],"mappings":";;AAcA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdyC,EAAE,OAAO;EAClD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kHAAkH;EAC5I,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;CAClM,CAAC,CAAC,CAAC,SAAS,2EAWH;CACP,QAX0C,EAAE,OAAO;EACnD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACnE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EAC5G,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CAC9G,CAAC,CAAC,CAAC,SAAS,yCAOF;AACV,CAAC"}
|
|
@@ -16,8 +16,8 @@ const RespondIoCreateContactInput = zod.z.object({
|
|
|
16
16
|
})).describe("List of custom fields for the contact. Note: Custom fields must already exist in the workspace before they can be assigned to a contact").optional()
|
|
17
17
|
});
|
|
18
18
|
const RespondIoCreateContactOutput = zod.z.object({
|
|
19
|
-
code: zod.z.number().int().describe("HTTP status code of the response"),
|
|
20
|
-
message: zod.z.string().describe("API response message")
|
|
19
|
+
code: zod.z.number().int().describe("HTTP status code of the response").nullable(),
|
|
20
|
+
message: zod.z.string().describe("API response message").nullable()
|
|
21
21
|
});
|
|
22
22
|
const respondIoCreateContact = require_action.action("RESPOND_IO_CREATE_CONTACT", {
|
|
23
23
|
slug: "respond_io-create-contact",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-contact.cjs","names":["z","action"],"sources":["../../src/actions/create-contact.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateContactInput
|
|
1
|
+
{"version":3,"file":"create-contact.cjs","names":["z","action"],"sources":["../../src/actions/create-contact.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateContactInput = z.object({\n email: z.string().describe(\"Email address of the contact\").optional(),\n phone: z.string().describe(\"Phone number of the contact including country code\").optional(),\n language: z.string().describe(\"ISO 639-1 two-letter language code (e.g., 'en' for English, 'es' for Spanish)\").optional(),\n lastName: z.string().describe(\"Last name of the contact\").optional(),\n firstName: z.string().describe(\"First name of the contact\"),\n identifier: z.string().describe(\"Unique identifier for the contact in one of these formats: 'email:<email_address>' (e.g., 'email:john@example.com'), 'phone:<phone_number>' (e.g., 'phone:+60121233112' with country code), or an existing contact ID\"),\n profilePic: z.string().describe(\"URL of the contact's profile picture\").optional(),\n countryCode: z.string().describe(\"ISO 3166-1 alpha-2 two-letter country code (e.g., 'US' for United States, 'MY' for Malaysia)\").optional(),\n custom_fields: z.array(z.object({\n name: z.string().describe(\"Name of the custom field\"),\n value: z.string().describe(\"Value of the custom field\").optional(),\n})).describe(\"List of custom fields for the contact. Note: Custom fields must already exist in the workspace before they can be assigned to a contact\").optional(),\n});\nexport const RespondIoCreateContactOutput = z.object({\n code: z.number().int().describe(\"HTTP status code of the response\").nullable(),\n message: z.string().describe(\"API response message\").nullable(),\n});\n\nexport const respondIoCreateContact = action(\"RESPOND_IO_CREATE_CONTACT\", {\n slug: \"respond_io-create-contact\",\n name: \"Create Contact\",\n description: \"Creates a new contact in the respond.io workspace with the specified details. The contact is identified by email, phone number, or contact ID. Supports adding profile information, language preferences, and custom fields that have been pre-configured in the workspace.\",\n input: RespondIoCreateContactInput,\n output: RespondIoCreateContactOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACpE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC1F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+EAA+E,CAAC,CAAC,SAAS;CACxH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CAC1D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uNAAuN;CACvP,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;CAC1I,eAAeA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EAChC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;EACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACnE,CAAC,CAAC,CAAC,CAAC,SAAS,yIAAyI,CAAC,CAAC,SAAS;AACjK,CAAC;AACD,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC7E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;AAChE,CAAC;AAED,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,38 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-contact.d.ts
|
|
4
|
-
declare const RespondIoCreateContactInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateContactInput: z.ZodObject<{
|
|
5
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
7
|
+
language: z.ZodOptional<z.ZodString>;
|
|
8
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
9
|
+
firstName: z.ZodString;
|
|
10
|
+
identifier: z.ZodString;
|
|
11
|
+
profilePic: z.ZodOptional<z.ZodString>;
|
|
12
|
+
countryCode: z.ZodOptional<z.ZodString>;
|
|
13
|
+
custom_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14
|
+
name: z.ZodString;
|
|
15
|
+
value: z.ZodOptional<z.ZodString>;
|
|
16
|
+
}, z.core.$strip>>>;
|
|
17
|
+
}, z.core.$strip>;
|
|
18
|
+
declare const RespondIoCreateContactOutput: z.ZodObject<{
|
|
19
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
message: z.ZodNullable<z.ZodString>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
declare const respondIoCreateContact: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
firstName: string;
|
|
24
|
+
identifier: string;
|
|
25
|
+
email?: string | undefined;
|
|
26
|
+
phone?: string | undefined;
|
|
27
|
+
language?: string | undefined;
|
|
28
|
+
lastName?: string | undefined;
|
|
29
|
+
profilePic?: string | undefined;
|
|
30
|
+
countryCode?: string | undefined;
|
|
31
|
+
custom_fields?: {
|
|
32
|
+
name: string;
|
|
33
|
+
value?: string | undefined;
|
|
34
|
+
}[] | undefined;
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
36
|
//#endregion
|
|
8
37
|
export { respondIoCreateContact };
|
|
9
38
|
//# sourceMappingURL=create-contact.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-contact.d.cts","names":[],"sources":["../../src/actions/create-contact.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"create-contact.d.cts","names":[],"sources":["../../src/actions/create-contact.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAc3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -1,9 +1,38 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-contact.d.ts
|
|
4
|
-
declare const RespondIoCreateContactInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateContactInput: z.ZodObject<{
|
|
5
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
7
|
+
language: z.ZodOptional<z.ZodString>;
|
|
8
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
9
|
+
firstName: z.ZodString;
|
|
10
|
+
identifier: z.ZodString;
|
|
11
|
+
profilePic: z.ZodOptional<z.ZodString>;
|
|
12
|
+
countryCode: z.ZodOptional<z.ZodString>;
|
|
13
|
+
custom_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14
|
+
name: z.ZodString;
|
|
15
|
+
value: z.ZodOptional<z.ZodString>;
|
|
16
|
+
}, z.core.$strip>>>;
|
|
17
|
+
}, z.core.$strip>;
|
|
18
|
+
declare const RespondIoCreateContactOutput: z.ZodObject<{
|
|
19
|
+
code: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
message: z.ZodNullable<z.ZodString>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
declare const respondIoCreateContact: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
|
+
firstName: string;
|
|
24
|
+
identifier: string;
|
|
25
|
+
email?: string | undefined;
|
|
26
|
+
phone?: string | undefined;
|
|
27
|
+
language?: string | undefined;
|
|
28
|
+
lastName?: string | undefined;
|
|
29
|
+
profilePic?: string | undefined;
|
|
30
|
+
countryCode?: string | undefined;
|
|
31
|
+
custom_fields?: {
|
|
32
|
+
name: string;
|
|
33
|
+
value?: string | undefined;
|
|
34
|
+
}[] | undefined;
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
36
|
//#endregion
|
|
8
37
|
export { respondIoCreateContact };
|
|
9
38
|
//# sourceMappingURL=create-contact.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-contact.d.mts","names":[],"sources":["../../src/actions/create-contact.ts"],"mappings":";;;cAIa,2BAAA,
|
|
1
|
+
{"version":3,"file":"create-contact.d.mts","names":[],"sources":["../../src/actions/create-contact.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAc3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;cAK5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -19,8 +19,8 @@ const respondIoCreateContact = action("RESPOND_IO_CREATE_CONTACT", {
|
|
|
19
19
|
})).describe("List of custom fields for the contact. Note: Custom fields must already exist in the workspace before they can be assigned to a contact").optional()
|
|
20
20
|
}),
|
|
21
21
|
output: z.object({
|
|
22
|
-
code: z.number().int().describe("HTTP status code of the response"),
|
|
23
|
-
message: z.string().describe("API response message")
|
|
22
|
+
code: z.number().int().describe("HTTP status code of the response").nullable(),
|
|
23
|
+
message: z.string().describe("API response message").nullable()
|
|
24
24
|
})
|
|
25
25
|
});
|
|
26
26
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-contact.mjs","names":[],"sources":["../../src/actions/create-contact.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateContactInput
|
|
1
|
+
{"version":3,"file":"create-contact.mjs","names":[],"sources":["../../src/actions/create-contact.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateContactInput = z.object({\n email: z.string().describe(\"Email address of the contact\").optional(),\n phone: z.string().describe(\"Phone number of the contact including country code\").optional(),\n language: z.string().describe(\"ISO 639-1 two-letter language code (e.g., 'en' for English, 'es' for Spanish)\").optional(),\n lastName: z.string().describe(\"Last name of the contact\").optional(),\n firstName: z.string().describe(\"First name of the contact\"),\n identifier: z.string().describe(\"Unique identifier for the contact in one of these formats: 'email:<email_address>' (e.g., 'email:john@example.com'), 'phone:<phone_number>' (e.g., 'phone:+60121233112' with country code), or an existing contact ID\"),\n profilePic: z.string().describe(\"URL of the contact's profile picture\").optional(),\n countryCode: z.string().describe(\"ISO 3166-1 alpha-2 two-letter country code (e.g., 'US' for United States, 'MY' for Malaysia)\").optional(),\n custom_fields: z.array(z.object({\n name: z.string().describe(\"Name of the custom field\"),\n value: z.string().describe(\"Value of the custom field\").optional(),\n})).describe(\"List of custom fields for the contact. Note: Custom fields must already exist in the workspace before they can be assigned to a contact\").optional(),\n});\nexport const RespondIoCreateContactOutput = z.object({\n code: z.number().int().describe(\"HTTP status code of the response\").nullable(),\n message: z.string().describe(\"API response message\").nullable(),\n});\n\nexport const respondIoCreateContact = action(\"RESPOND_IO_CREATE_CONTACT\", {\n slug: \"respond_io-create-contact\",\n name: \"Create Contact\",\n description: \"Creates a new contact in the respond.io workspace with the specified details. The contact is identified by email, phone number, or contact ID. Supports adding profile information, language preferences, and custom fields that have been pre-configured in the workspace.\",\n input: RespondIoCreateContactInput,\n output: RespondIoCreateContactOutput,\n});\n"],"mappings":";;AAuBA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAvByC,EAAE,OAAO;EAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EACpE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;EAC1F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,+EAA+E,CAAC,CAAC,SAAS;EACxH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EACnE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;EAC1D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uNAAuN;EACvP,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;EACjF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;EAC1I,eAAe,EAAE,MAAM,EAAE,OAAO;GAChC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;GACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EACnE,CAAC,CAAC,CAAC,CAAC,SAAS,yIAAyI,CAAC,CAAC,SAAS;CACjK,CAUS;CACP,QAV0C,EAAE,OAAO;EACnD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EAC7E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAChE,CAOU;AACV,CAAC"}
|
|
@@ -7,11 +7,11 @@ const RespondIoCreateSpaceTagInput = zod.z.object({
|
|
|
7
7
|
description: zod.z.string().describe("(Optional) Brief text describing the tag's purpose or usage. Helps team members understand when to apply this tag.").optional()
|
|
8
8
|
}).describe("Request payload to create a new tag in a respond.io workspace.");
|
|
9
9
|
const RespondIoCreateSpaceTagOutput = zod.z.object({
|
|
10
|
-
id: zod.z.string().describe("Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls."),
|
|
11
|
-
name: zod.z.string().describe("The name of the tag exactly as stored in the workspace."),
|
|
10
|
+
id: zod.z.string().describe("Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls.").nullable(),
|
|
11
|
+
name: zod.z.string().describe("The name of the tag exactly as stored in the workspace.").nullable(),
|
|
12
12
|
color_code: zod.z.string().describe("The tag's color code in hexadecimal format. Typically null/empty in responses as the API currently doesn't support setting colors.").nullable().optional(),
|
|
13
|
-
created_at: zod.z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was created."),
|
|
14
|
-
updated_at: zod.z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at."),
|
|
13
|
+
created_at: zod.z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was created.").nullable(),
|
|
14
|
+
updated_at: zod.z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at.").nullable(),
|
|
15
15
|
description: zod.z.string().describe("The tag's description text if provided, otherwise null.").nullable().optional()
|
|
16
16
|
}).describe("Response schema for a newly created workspace tag.");
|
|
17
17
|
const respondIoCreateSpaceTag = require_action.action("RESPOND_IO_CREATE_SPACE_TAG", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-space-tag.cjs","names":["z","action"],"sources":["../../src/actions/create-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateSpaceTagInput
|
|
1
|
+
{"version":3,"file":"create-space-tag.cjs","names":["z","action"],"sources":["../../src/actions/create-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateSpaceTagInput = z.object({\n name: z.string().describe(\"Name of the tag. Must be unique within the workspace. Cannot contain emojis or certain invalid characters. Supports spaces, letters, numbers, and common special characters like !@#$%.\"),\n color_code: z.string().describe(\"(Optional) Hexadecimal color code for visual identification of the tag in the UI, e.g., '#FF5733'. Note: Currently the API may reject this parameter with validation errors.\").optional(),\n description: z.string().describe(\"(Optional) Brief text describing the tag's purpose or usage. Helps team members understand when to apply this tag.\").optional(),\n}).describe(\"Request payload to create a new tag in a respond.io workspace.\");\nexport const RespondIoCreateSpaceTagOutput = z.object({\n id: z.string().describe(\"Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls.\").nullable(),\n name: z.string().describe(\"The name of the tag exactly as stored in the workspace.\").nullable(),\n color_code: z.string().describe(\"The tag's color code in hexadecimal format. Typically null/empty in responses as the API currently doesn't support setting colors.\").nullable().optional(),\n created_at: z.string().describe(\"ISO 8601 formatted UTC timestamp indicating when the tag was created.\").nullable(),\n updated_at: z.string().describe(\"ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at.\").nullable(),\n description: z.string().describe(\"The tag's description text if provided, otherwise null.\").nullable().optional(),\n}).describe(\"Response schema for a newly created workspace tag.\");\n\nexport const respondIoCreateSpaceTag = action(\"RESPOND_IO_CREATE_SPACE_TAG\", {\n slug: \"respond_io-create-space-tag\",\n name: \"Create Space Tag\",\n description: \"Creates a new tag in the Respond.io workspace for organizing and categorizing contacts and conversations. Tags help with segmentation, filtering, and workflow automation. Each tag must have a unique name within the workspace.\",\n input: RespondIoCreateSpaceTagInput,\n output: RespondIoCreateSpaceTagOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yLAAyL;CACnN,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8KAA8K,CAAC,CAAC,SAAS;CACzN,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oHAAoH,CAAC,CAAC,SAAS;AAClK,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;CACvL,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CAC9F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1L,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAClH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACxK,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAEhE,MAAa,0BAA0BC,eAAAA,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-space-tag.d.ts
|
|
4
|
-
declare const RespondIoCreateSpaceTagInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateSpaceTagInput: z.ZodObject<{
|
|
5
|
+
name: z.ZodString;
|
|
6
|
+
color_code: z.ZodOptional<z.ZodString>;
|
|
7
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
declare const RespondIoCreateSpaceTagOutput: z.ZodObject<{
|
|
10
|
+
id: z.ZodNullable<z.ZodString>;
|
|
11
|
+
name: z.ZodNullable<z.ZodString>;
|
|
12
|
+
color_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
14
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
15
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
declare const respondIoCreateSpaceTag: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
|
+
name: string;
|
|
19
|
+
color_code?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { respondIoCreateSpaceTag };
|
|
9
24
|
//# sourceMappingURL=create-space-tag.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-space-tag.d.cts","names":[],"sources":["../../src/actions/create-space-tag.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"create-space-tag.d.cts","names":[],"sources":["../../src/actions/create-space-tag.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAK5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAS7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-space-tag.d.ts
|
|
4
|
-
declare const RespondIoCreateSpaceTagInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoCreateSpaceTagInput: z.ZodObject<{
|
|
5
|
+
name: z.ZodString;
|
|
6
|
+
color_code: z.ZodOptional<z.ZodString>;
|
|
7
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
declare const RespondIoCreateSpaceTagOutput: z.ZodObject<{
|
|
10
|
+
id: z.ZodNullable<z.ZodString>;
|
|
11
|
+
name: z.ZodNullable<z.ZodString>;
|
|
12
|
+
color_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
14
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
15
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
declare const respondIoCreateSpaceTag: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
|
+
name: string;
|
|
19
|
+
color_code?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
22
|
//#endregion
|
|
8
23
|
export { respondIoCreateSpaceTag };
|
|
9
24
|
//# sourceMappingURL=create-space-tag.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-space-tag.d.mts","names":[],"sources":["../../src/actions/create-space-tag.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"create-space-tag.d.mts","names":[],"sources":["../../src/actions/create-space-tag.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAK5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAS7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -10,11 +10,11 @@ const respondIoCreateSpaceTag = action("RESPOND_IO_CREATE_SPACE_TAG", {
|
|
|
10
10
|
description: z.string().describe("(Optional) Brief text describing the tag's purpose or usage. Helps team members understand when to apply this tag.").optional()
|
|
11
11
|
}).describe("Request payload to create a new tag in a respond.io workspace."),
|
|
12
12
|
output: z.object({
|
|
13
|
-
id: z.string().describe("Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls."),
|
|
14
|
-
name: z.string().describe("The name of the tag exactly as stored in the workspace."),
|
|
13
|
+
id: z.string().describe("Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls.").nullable(),
|
|
14
|
+
name: z.string().describe("The name of the tag exactly as stored in the workspace.").nullable(),
|
|
15
15
|
color_code: z.string().describe("The tag's color code in hexadecimal format. Typically null/empty in responses as the API currently doesn't support setting colors.").nullable().optional(),
|
|
16
|
-
created_at: z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was created."),
|
|
17
|
-
updated_at: z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at."),
|
|
16
|
+
created_at: z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was created.").nullable(),
|
|
17
|
+
updated_at: z.string().describe("ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at.").nullable(),
|
|
18
18
|
description: z.string().describe("The tag's description text if provided, otherwise null.").nullable().optional()
|
|
19
19
|
}).describe("Response schema for a newly created workspace tag.")
|
|
20
20
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-space-tag.mjs","names":[],"sources":["../../src/actions/create-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateSpaceTagInput
|
|
1
|
+
{"version":3,"file":"create-space-tag.mjs","names":[],"sources":["../../src/actions/create-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoCreateSpaceTagInput = z.object({\n name: z.string().describe(\"Name of the tag. Must be unique within the workspace. Cannot contain emojis or certain invalid characters. Supports spaces, letters, numbers, and common special characters like !@#$%.\"),\n color_code: z.string().describe(\"(Optional) Hexadecimal color code for visual identification of the tag in the UI, e.g., '#FF5733'. Note: Currently the API may reject this parameter with validation errors.\").optional(),\n description: z.string().describe(\"(Optional) Brief text describing the tag's purpose or usage. Helps team members understand when to apply this tag.\").optional(),\n}).describe(\"Request payload to create a new tag in a respond.io workspace.\");\nexport const RespondIoCreateSpaceTagOutput = z.object({\n id: z.string().describe(\"Unique numeric identifier of the created tag, returned as a string. Use this ID for updating, deleting, or referencing the tag in other API calls.\").nullable(),\n name: z.string().describe(\"The name of the tag exactly as stored in the workspace.\").nullable(),\n color_code: z.string().describe(\"The tag's color code in hexadecimal format. Typically null/empty in responses as the API currently doesn't support setting colors.\").nullable().optional(),\n created_at: z.string().describe(\"ISO 8601 formatted UTC timestamp indicating when the tag was created.\").nullable(),\n updated_at: z.string().describe(\"ISO 8601 formatted UTC timestamp indicating when the tag was last modified. For newly created tags, this equals created_at.\").nullable(),\n description: z.string().describe(\"The tag's description text if provided, otherwise null.\").nullable().optional(),\n}).describe(\"Response schema for a newly created workspace tag.\");\n\nexport const respondIoCreateSpaceTag = action(\"RESPOND_IO_CREATE_SPACE_TAG\", {\n slug: \"respond_io-create-space-tag\",\n name: \"Create Space Tag\",\n description: \"Creates a new tag in the Respond.io workspace for organizing and categorizing contacts and conversations. Tags help with segmentation, filtering, and workflow automation. Each tag must have a unique name within the workspace.\",\n input: RespondIoCreateSpaceTagInput,\n output: RespondIoCreateSpaceTagOutput,\n});\n"],"mappings":";;AAkBA,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlB0C,EAAE,OAAO;EACnD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yLAAyL;EACnN,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8KAA8K,CAAC,CAAC,SAAS;EACzN,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oHAAoH,CAAC,CAAC,SAAS;CAClK,CAAC,CAAC,CAAC,SAAS,gEAcH;CACP,QAd2C,EAAE,OAAO;EACpD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;EACvL,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EAC9F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1L,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;EAClH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;EACxK,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,CAAC,CAAC,CAAC,SAAS,oDAOF;AACV,CAAC"}
|
|
@@ -12,18 +12,18 @@ const RespondIoGetMessage_RESPOND_IO_GET_MESSAGEStatusSchema = zod.z.object({
|
|
|
12
12
|
"delivered",
|
|
13
13
|
"read",
|
|
14
14
|
"failed"
|
|
15
|
-
]).describe("Delivery status of the message."),
|
|
15
|
+
]).describe("Delivery status of the message.").nullable(),
|
|
16
16
|
message: zod.z.string().describe("Reason for failure, if status is 'failed'.").nullable().optional(),
|
|
17
|
-
timestamp: zod.z.number().int().describe("Unix timestamp in seconds indicating when the status was recorded.")
|
|
17
|
+
timestamp: zod.z.number().int().describe("Unix timestamp in seconds indicating when the status was recorded.").nullable()
|
|
18
18
|
});
|
|
19
19
|
const RespondIoGetMessage_RESPOND_IO_GET_MESSAGEAttachmentSchema = zod.z.object({
|
|
20
|
-
url: zod.z.string().describe("URL of the attachment."),
|
|
20
|
+
url: zod.z.string().describe("URL of the attachment.").nullable(),
|
|
21
21
|
type: zod.z.enum([
|
|
22
22
|
"image",
|
|
23
23
|
"video",
|
|
24
24
|
"audio",
|
|
25
25
|
"file"
|
|
26
|
-
]).describe("Type of the attachment."),
|
|
26
|
+
]).describe("Type of the attachment.").nullable(),
|
|
27
27
|
fileName: zod.z.string().describe("Name of the file.").nullable().optional(),
|
|
28
28
|
mimeType: zod.z.string().describe("MIME type of the attachment (e.g., 'image/png').").nullable().optional(),
|
|
29
29
|
description: zod.z.string().describe("Optional description of the attachment.").nullable().optional()
|
|
@@ -37,7 +37,7 @@ const RespondIoGetMessage_RESPOND_IO_GET_MESSAGEMessageSchema = zod.z.object({
|
|
|
37
37
|
"audio",
|
|
38
38
|
"file",
|
|
39
39
|
"attachment"
|
|
40
|
-
]).describe("Type of the message. Supported types: text, image, video, audio, file, attachment."),
|
|
40
|
+
]).describe("Type of the message. Supported types: text, image, video, audio, file, attachment.").nullable(),
|
|
41
41
|
attachment: RespondIoGetMessage_RESPOND_IO_GET_MESSAGEAttachmentSchema.nullable().optional(),
|
|
42
42
|
messageTag: zod.z.enum([
|
|
43
43
|
"ACCOUNT_UPDATE",
|
|
@@ -48,10 +48,10 @@ const RespondIoGetMessage_RESPOND_IO_GET_MESSAGEMessageSchema = zod.z.object({
|
|
|
48
48
|
const RespondIoGetMessageOutput = zod.z.object({
|
|
49
49
|
status: zod.z.array(RespondIoGetMessage_RESPOND_IO_GET_MESSAGEStatusSchema).describe("Delivery statuses of the message."),
|
|
50
50
|
message: RespondIoGetMessage_RESPOND_IO_GET_MESSAGEMessageSchema.nullable(),
|
|
51
|
-
traffic: zod.z.enum(["outgoing", "incoming"]).describe("Defines if the message was sent ('outgoing') or received ('incoming')."),
|
|
52
|
-
channelId: zod.z.number().int().describe("ID of the channel through which the message was sent/received."),
|
|
53
|
-
contactId: zod.z.number().int().describe("ID of the contact associated with the message."),
|
|
54
|
-
messageId: zod.z.number().int().describe("Unique ID of the message."),
|
|
51
|
+
traffic: zod.z.enum(["outgoing", "incoming"]).describe("Defines if the message was sent ('outgoing') or received ('incoming').").nullable(),
|
|
52
|
+
channelId: zod.z.number().int().describe("ID of the channel through which the message was sent/received.").nullable(),
|
|
53
|
+
contactId: zod.z.number().int().describe("ID of the contact associated with the message.").nullable(),
|
|
54
|
+
messageId: zod.z.number().int().describe("Unique ID of the message.").nullable(),
|
|
55
55
|
channelMessageId: zod.z.string().describe("Identifier of the message on the channel.").nullable().optional()
|
|
56
56
|
});
|
|
57
57
|
const respondIoGetMessage = require_action.action("RESPOND_IO_GET_MESSAGE", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-message.cjs","names":["z","action"],"sources":["../../src/actions/get-message.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoGetMessageInput
|
|
1
|
+
{"version":3,"file":"get-message.cjs","names":["z","action"],"sources":["../../src/actions/get-message.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoGetMessageInput = z.object({\n messageId: z.number().int().describe(\"Unique ID of the message to retrieve.\"),\n identifier: z.string().describe(\"Identifier of the contact, can be a phone number ('+60121233112'), email ('abdc@gmail.com'), or contact ID prefixed by 'id:' (e.g., 'id:123').\"),\n}).describe(\"Request model for retrieving a specific message by its ID.\");\nconst RespondIoGetMessage_RESPOND_IO_GET_MESSAGEStatusSchema = z.object({\n value: z.enum([\"pending\", \"sent\", \"delivered\", \"read\", \"failed\"]).describe(\"Delivery status of the message.\").nullable(),\n message: z.string().describe(\"Reason for failure, if status is 'failed'.\").nullable().optional(),\n timestamp: z.number().int().describe(\"Unix timestamp in seconds indicating when the status was recorded.\").nullable(),\n});\nconst RespondIoGetMessage_RESPOND_IO_GET_MESSAGEAttachmentSchema = z.object({\n url: z.string().describe(\"URL of the attachment.\").nullable(),\n type: z.enum([\"image\", \"video\", \"audio\", \"file\"]).describe(\"Type of the attachment.\").nullable(),\n fileName: z.string().describe(\"Name of the file.\").nullable().optional(),\n mimeType: z.string().describe(\"MIME type of the attachment (e.g., 'image/png').\").nullable().optional(),\n description: z.string().describe(\"Optional description of the attachment.\").nullable().optional(),\n});\nconst RespondIoGetMessage_RESPOND_IO_GET_MESSAGEMessageSchema = z.object({\n text: z.string().describe(\"Text content of the message (for text messages).\").nullable().optional(),\n type: z.enum([\"text\", \"image\", \"video\", \"audio\", \"file\", \"attachment\"]).describe(\"Type of the message. Supported types: text, image, video, audio, file, attachment.\").nullable(),\n attachment: RespondIoGetMessage_RESPOND_IO_GET_MESSAGEAttachmentSchema.nullable().optional(),\n messageTag: z.enum([\"ACCOUNT_UPDATE\", \"POST_PURCHASE_UPDATE\", \"CONFIRMED_EVENT_UPDATE\"]).describe(\"Tag for Facebook/Instagram messages sent outside 24h window. Allowed values: ACCOUNT_UPDATE, POST_PURCHASE_UPDATE, CONFIRMED_EVENT_UPDATE.\").nullable().optional(),\n});\nexport const RespondIoGetMessageOutput = z.object({\n status: z.array(RespondIoGetMessage_RESPOND_IO_GET_MESSAGEStatusSchema).describe(\"Delivery statuses of the message.\"),\n message: RespondIoGetMessage_RESPOND_IO_GET_MESSAGEMessageSchema.nullable(),\n traffic: z.enum([\"outgoing\", \"incoming\"]).describe(\"Defines if the message was sent ('outgoing') or received ('incoming').\").nullable(),\n channelId: z.number().int().describe(\"ID of the channel through which the message was sent/received.\").nullable(),\n contactId: z.number().int().describe(\"ID of the contact associated with the message.\").nullable(),\n messageId: z.number().int().describe(\"Unique ID of the message.\").nullable(),\n channelMessageId: z.string().describe(\"Identifier of the message on the channel.\").nullable().optional(),\n});\n\nexport const respondIoGetMessage = action(\"RESPOND_IO_GET_MESSAGE\", {\n slug: \"respond_io-get-message\",\n name: \"Get Message\",\n description: \"Tool to retrieve a specific message. Use when you need the details of a message sent to or received from a contact.\",\n input: RespondIoGetMessageInput,\n output: RespondIoGetMessageOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC;CAC5E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gJAAgJ;AAClL,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yDAAyDA,IAAAA,EAAE,OAAO;CACtE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAQ;EAAa;EAAQ;CAAQ,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACvH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;AACtH,CAAC;AACD,MAAM,6DAA6DA,IAAAA,EAAE,OAAO;CAC1E,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CAC5D,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAS;EAAS;CAAM,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC/F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClG,CAAC;AACD,MAAM,0DAA0DA,IAAAA,EAAE,OAAO;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAQ;EAAS;EAAS;EAAS;EAAQ;CAAY,CAAC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CAChL,YAAY,2DAA2D,SAAS,CAAC,CAAC,SAAS;CAC3F,YAAYA,IAAAA,EAAE,KAAK;EAAC;EAAkB;EAAwB;CAAwB,CAAC,CAAC,CAAC,SAAS,4IAA4I,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtQ,CAAC;AACD,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,QAAQA,IAAAA,EAAE,MAAM,sDAAsD,CAAC,CAAC,SAAS,mCAAmC;CACpH,SAAS,wDAAwD,SAAS;CAC1E,SAASA,IAAAA,EAAE,KAAK,CAAC,YAAY,UAAU,CAAC,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CACtI,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;CAChH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CAC3E,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACzG,CAAC;AAED,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,63 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-message.d.ts
|
|
4
|
-
declare const RespondIoGetMessageInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const RespondIoGetMessageInput: z.ZodObject<{
|
|
5
|
+
messageId: z.ZodNumber;
|
|
6
|
+
identifier: z.ZodString;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const RespondIoGetMessageOutput: z.ZodObject<{
|
|
9
|
+
status: z.ZodArray<z.ZodObject<{
|
|
10
|
+
value: z.ZodNullable<z.ZodEnum<{
|
|
11
|
+
pending: "pending";
|
|
12
|
+
sent: "sent";
|
|
13
|
+
delivered: "delivered";
|
|
14
|
+
read: "read";
|
|
15
|
+
failed: "failed";
|
|
16
|
+
}>>;
|
|
17
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
timestamp: z.ZodNullable<z.ZodNumber>;
|
|
19
|
+
}, z.core.$strip>>;
|
|
20
|
+
message: z.ZodNullable<z.ZodObject<{
|
|
21
|
+
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
type: z.ZodNullable<z.ZodEnum<{
|
|
23
|
+
text: "text";
|
|
24
|
+
file: "file";
|
|
25
|
+
image: "image";
|
|
26
|
+
video: "video";
|
|
27
|
+
audio: "audio";
|
|
28
|
+
attachment: "attachment";
|
|
29
|
+
}>>;
|
|
30
|
+
attachment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31
|
+
url: z.ZodNullable<z.ZodString>;
|
|
32
|
+
type: z.ZodNullable<z.ZodEnum<{
|
|
33
|
+
file: "file";
|
|
34
|
+
image: "image";
|
|
35
|
+
video: "video";
|
|
36
|
+
audio: "audio";
|
|
37
|
+
}>>;
|
|
38
|
+
fileName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
40
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
|
+
}, z.core.$strip>>>;
|
|
42
|
+
messageTag: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
43
|
+
ACCOUNT_UPDATE: "ACCOUNT_UPDATE";
|
|
44
|
+
POST_PURCHASE_UPDATE: "POST_PURCHASE_UPDATE";
|
|
45
|
+
CONFIRMED_EVENT_UPDATE: "CONFIRMED_EVENT_UPDATE";
|
|
46
|
+
}>>>;
|
|
47
|
+
}, z.core.$strip>>;
|
|
48
|
+
traffic: z.ZodNullable<z.ZodEnum<{
|
|
49
|
+
outgoing: "outgoing";
|
|
50
|
+
incoming: "incoming";
|
|
51
|
+
}>>;
|
|
52
|
+
channelId: z.ZodNullable<z.ZodNumber>;
|
|
53
|
+
contactId: z.ZodNullable<z.ZodNumber>;
|
|
54
|
+
messageId: z.ZodNullable<z.ZodNumber>;
|
|
55
|
+
channelMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
declare const respondIoGetMessage: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
58
|
+
messageId: number;
|
|
59
|
+
identifier: string;
|
|
60
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
61
|
//#endregion
|
|
8
62
|
export { respondIoGetMessage };
|
|
9
63
|
//# sourceMappingURL=get-message.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-message.d.cts","names":[],"sources":["../../src/actions/get-message.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"get-message.d.cts","names":[],"sources":["../../src/actions/get-message.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAsBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAUzB,mBAAA,gCAAmB,wBAAA"}
|