@keystrokehq/respond_io 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/create-comment.cjs +23 -0
  7. package/dist/actions/create-comment.cjs.map +1 -0
  8. package/dist/actions/create-comment.d.cts +9 -0
  9. package/dist/actions/create-comment.d.cts.map +1 -0
  10. package/dist/actions/create-comment.d.mts +9 -0
  11. package/dist/actions/create-comment.d.mts.map +1 -0
  12. package/dist/actions/create-comment.mjs +20 -0
  13. package/dist/actions/create-comment.mjs.map +1 -0
  14. package/dist/actions/create-contact.cjs +32 -0
  15. package/dist/actions/create-contact.cjs.map +1 -0
  16. package/dist/actions/create-contact.d.cts +9 -0
  17. package/dist/actions/create-contact.d.cts.map +1 -0
  18. package/dist/actions/create-contact.d.mts +9 -0
  19. package/dist/actions/create-contact.d.mts.map +1 -0
  20. package/dist/actions/create-contact.mjs +29 -0
  21. package/dist/actions/create-contact.mjs.map +1 -0
  22. package/dist/actions/create-space-tag.cjs +27 -0
  23. package/dist/actions/create-space-tag.cjs.map +1 -0
  24. package/dist/actions/create-space-tag.d.cts +9 -0
  25. package/dist/actions/create-space-tag.d.cts.map +1 -0
  26. package/dist/actions/create-space-tag.d.mts +9 -0
  27. package/dist/actions/create-space-tag.d.mts.map +1 -0
  28. package/dist/actions/create-space-tag.mjs +24 -0
  29. package/dist/actions/create-space-tag.mjs.map +1 -0
  30. package/dist/actions/get-message.cjs +67 -0
  31. package/dist/actions/get-message.cjs.map +1 -0
  32. package/dist/actions/get-message.d.cts +9 -0
  33. package/dist/actions/get-message.d.cts.map +1 -0
  34. package/dist/actions/get-message.d.mts +9 -0
  35. package/dist/actions/get-message.d.mts.map +1 -0
  36. package/dist/actions/get-message.mjs +66 -0
  37. package/dist/actions/get-message.mjs.map +1 -0
  38. package/dist/actions/index.cjs +15 -0
  39. package/dist/actions/index.d.cts +8 -0
  40. package/dist/actions/index.d.mts +8 -0
  41. package/dist/actions/index.mjs +8 -0
  42. package/dist/actions/list-channels.cjs +51 -0
  43. package/dist/actions/list-channels.cjs.map +1 -0
  44. package/dist/actions/list-channels.d.cts +9 -0
  45. package/dist/actions/list-channels.d.cts.map +1 -0
  46. package/dist/actions/list-channels.d.mts +9 -0
  47. package/dist/actions/list-channels.d.mts.map +1 -0
  48. package/dist/actions/list-channels.mjs +50 -0
  49. package/dist/actions/list-channels.mjs.map +1 -0
  50. package/dist/actions/list-users.cjs +41 -0
  51. package/dist/actions/list-users.cjs.map +1 -0
  52. package/dist/actions/list-users.d.cts +9 -0
  53. package/dist/actions/list-users.d.cts.map +1 -0
  54. package/dist/actions/list-users.d.mts +9 -0
  55. package/dist/actions/list-users.d.mts.map +1 -0
  56. package/dist/actions/list-users.mjs +40 -0
  57. package/dist/actions/list-users.mjs.map +1 -0
  58. package/dist/actions/update-space-tag.cjs +28 -0
  59. package/dist/actions/update-space-tag.cjs.map +1 -0
  60. package/dist/actions/update-space-tag.d.cts +9 -0
  61. package/dist/actions/update-space-tag.d.cts.map +1 -0
  62. package/dist/actions/update-space-tag.d.mts +9 -0
  63. package/dist/actions/update-space-tag.d.mts.map +1 -0
  64. package/dist/actions/update-space-tag.mjs +25 -0
  65. package/dist/actions/update-space-tag.mjs.map +1 -0
  66. package/dist/app.cjs +9 -0
  67. package/dist/app.cjs.map +1 -0
  68. package/dist/app.d.cts +5 -0
  69. package/dist/app.d.cts.map +1 -0
  70. package/dist/app.d.mts +5 -0
  71. package/dist/app.d.mts.map +1 -0
  72. package/dist/app.mjs +10 -0
  73. package/dist/app.mjs.map +1 -0
  74. package/dist/catalog.cjs +15 -0
  75. package/dist/catalog.cjs.map +1 -0
  76. package/dist/catalog.d.cts +14 -0
  77. package/dist/catalog.d.cts.map +1 -0
  78. package/dist/catalog.d.mts +14 -0
  79. package/dist/catalog.d.mts.map +1 -0
  80. package/dist/catalog.mjs +15 -0
  81. package/dist/catalog.mjs.map +1 -0
  82. package/dist/execute.cjs +18 -0
  83. package/dist/execute.cjs.map +1 -0
  84. package/dist/execute.mjs +18 -0
  85. package/dist/execute.mjs.map +1 -0
  86. package/dist/index.cjs +20 -0
  87. package/dist/index.d.cts +10 -0
  88. package/dist/index.d.mts +10 -0
  89. package/dist/index.mjs +11 -0
  90. package/package.json +49 -0
@@ -0,0 +1,8 @@
1
+ import { respondIoCreateComment } from "./create-comment.mjs";
2
+ import { respondIoCreateContact } from "./create-contact.mjs";
3
+ import { respondIoCreateSpaceTag } from "./create-space-tag.mjs";
4
+ import { respondIoGetMessage } from "./get-message.mjs";
5
+ import { respondIoListChannels } from "./list-channels.mjs";
6
+ import { respondIoListUsers } from "./list-users.mjs";
7
+ import { respondIoUpdateSpaceTag } from "./update-space-tag.mjs";
8
+ export { respondIoCreateComment, respondIoCreateContact, respondIoCreateSpaceTag, respondIoGetMessage, respondIoListChannels, respondIoListUsers, respondIoUpdateSpaceTag };
@@ -0,0 +1,8 @@
1
+ import { respondIoCreateComment } from "./create-comment.mjs";
2
+ import { respondIoCreateContact } from "./create-contact.mjs";
3
+ import { respondIoCreateSpaceTag } from "./create-space-tag.mjs";
4
+ import { respondIoGetMessage } from "./get-message.mjs";
5
+ import { respondIoListChannels } from "./list-channels.mjs";
6
+ import { respondIoListUsers } from "./list-users.mjs";
7
+ import { respondIoUpdateSpaceTag } from "./update-space-tag.mjs";
8
+ export { respondIoCreateComment, respondIoCreateContact, respondIoCreateSpaceTag, respondIoGetMessage, respondIoListChannels, respondIoListUsers, respondIoUpdateSpaceTag };
@@ -0,0 +1,51 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-channels.ts
4
+ const RespondIoListChannelsInput = zod.z.object({
5
+ limit: zod.z.number().int().default(10).describe("Number of items to return (page size). Default is 10, maximum 100.").optional(),
6
+ cursorId: zod.z.number().int().describe("Pointer to the channel ID from where the next batch of records should start.").optional()
7
+ }).describe("Request model for listing channels with optional pagination.");
8
+ const RespondIoListChannels_ChannelItemSchema = zod.z.object({
9
+ id: zod.z.number().int().describe("Unique identifier for the channel."),
10
+ name: zod.z.string().describe("Name of the channel."),
11
+ source: zod.z.enum([
12
+ "facebook",
13
+ "instagram",
14
+ "line",
15
+ "telegram",
16
+ "viber",
17
+ "twitter",
18
+ "wechat",
19
+ "custom_channel",
20
+ "gmail",
21
+ "other_email",
22
+ "twilio",
23
+ "message_bird",
24
+ "nexmo",
25
+ "360dialog_whatsapp",
26
+ "twilio_whatsapp",
27
+ "message_bird_whatsapp",
28
+ "whatsappnexmo_whatsapp",
29
+ "whatsapp_cloud"
30
+ ]).describe("Type of the channel."),
31
+ created_at: zod.z.number().int().describe("Unix timestamp (in seconds) when the channel was created.")
32
+ }).describe("Represents a messaging channel connected to the workspace.");
33
+ const RespondIoListChannels_PaginationSchema = zod.z.object({
34
+ next: zod.z.string().nullable(),
35
+ previous: zod.z.string().describe("URL to the previous page of results.").nullable().optional()
36
+ }).describe("URLs for navigating through paginated channel list.");
37
+ const RespondIoListChannelsOutput = zod.z.object({
38
+ items: zod.z.array(RespondIoListChannels_ChannelItemSchema).describe("List of channels connected to the workspace."),
39
+ pagination: RespondIoListChannels_PaginationSchema.nullable()
40
+ }).describe("Response model containing the list of channels and pagination info.");
41
+ const respondIoListChannels = require_action.action("RESPOND_IO_LIST_CHANNELS", {
42
+ slug: "respond_io-list-channels",
43
+ name: "List channels",
44
+ description: "Tool to retrieve a list of channels connected to the workspace. Use when you need to enumerate all messaging channels with pagination support.",
45
+ input: RespondIoListChannelsInput,
46
+ output: RespondIoListChannelsOutput
47
+ });
48
+ //#endregion
49
+ exports.respondIoListChannels = respondIoListChannels;
50
+
51
+ //# sourceMappingURL=list-channels.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-channels.cjs","names":["z","action"],"sources":["../../src/actions/list-channels.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoListChannelsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().default(10).describe(\"Number of items to return (page size). Default is 10, maximum 100.\").optional(),\n cursorId: z.number().int().describe(\"Pointer to the channel ID from where the next batch of records should start.\").optional(),\n}).describe(\"Request model for listing channels with optional pagination.\");\nconst RespondIoListChannels_ChannelItemSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier for the channel.\"),\n name: z.string().describe(\"Name of the channel.\"),\n source: z.enum([\"facebook\", \"instagram\", \"line\", \"telegram\", \"viber\", \"twitter\", \"wechat\", \"custom_channel\", \"gmail\", \"other_email\", \"twilio\", \"message_bird\", \"nexmo\", \"360dialog_whatsapp\", \"twilio_whatsapp\", \"message_bird_whatsapp\", \"whatsappnexmo_whatsapp\", \"whatsapp_cloud\"]).describe(\"Type of the channel.\"),\n created_at: z.number().int().describe(\"Unix timestamp (in seconds) when the channel was created.\"),\n}).describe(\"Represents a messaging channel connected to the workspace.\");\nconst RespondIoListChannels_PaginationSchema: z.ZodTypeAny = z.object({\n next: z.string().nullable(),\n previous: z.string().describe(\"URL to the previous page of results.\").nullable().optional(),\n}).describe(\"URLs for navigating through paginated channel list.\");\nexport const RespondIoListChannelsOutput: z.ZodTypeAny = z.object({\n items: z.array(RespondIoListChannels_ChannelItemSchema).describe(\"List of channels connected to the workspace.\"),\n pagination: RespondIoListChannels_PaginationSchema.nullable(),\n}).describe(\"Response model containing the list of channels and pagination info.\");\n\nexport const respondIoListChannels = action(\"RESPOND_IO_LIST_CHANNELS\", {\n slug: \"respond_io-list-channels\",\n name: \"List channels\",\n description: \"Tool to retrieve a list of channels connected to the workspace. Use when you need to enumerate all messaging channels with pagination support.\",\n input: RespondIoListChannelsInput,\n output: RespondIoListChannelsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CAC5H,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAM,0CAAwDA,IAAAA,EAAE,OAAO;CACrE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAY;EAAa;EAAQ;EAAY;EAAS;EAAW;EAAU;EAAkB;EAAS;EAAe;EAAU;EAAgB;EAAS;EAAsB;EAAmB;EAAyB;EAA0B;CAAgB,CAAC,CAAC,CAAC,SAAS,sBAAsB;CACtT,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D;AACnG,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAuDA,IAAAA,EAAE,OAAO;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS;CAC1B,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,qDAAqD;AACjE,MAAa,8BAA4CA,IAAAA,EAAE,OAAO;CAChE,OAAOA,IAAAA,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,8CAA8C;CAC/G,YAAY,uCAAuC,SAAS;AAC9D,CAAC,CAAC,CAAC,SAAS,qEAAqE;AAEjF,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-channels.d.ts
4
+ declare const RespondIoListChannelsInput: z.ZodTypeAny;
5
+ declare const RespondIoListChannelsOutput: z.ZodTypeAny;
6
+ declare const respondIoListChannels: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoListChannels };
9
+ //# sourceMappingURL=list-channels.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-channels.d.cts","names":[],"sources":["../../src/actions/list-channels.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAGgC;AAAA,cAW9D,2BAAA,EAA6B,CAAA,CAAE,UAGsC;AAAA,cAErE,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-channels.d.ts
4
+ declare const RespondIoListChannelsInput: z.ZodTypeAny;
5
+ declare const RespondIoListChannelsOutput: z.ZodTypeAny;
6
+ declare const respondIoListChannels: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoListChannels };
9
+ //# sourceMappingURL=list-channels.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-channels.d.mts","names":[],"sources":["../../src/actions/list-channels.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAGgC;AAAA,cAW9D,2BAAA,EAA6B,CAAA,CAAE,UAGsC;AAAA,cAErE,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,50 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-channels.ts
4
+ const RespondIoListChannelsInput = z.object({
5
+ limit: z.number().int().default(10).describe("Number of items to return (page size). Default is 10, maximum 100.").optional(),
6
+ cursorId: z.number().int().describe("Pointer to the channel ID from where the next batch of records should start.").optional()
7
+ }).describe("Request model for listing channels with optional pagination.");
8
+ const RespondIoListChannels_ChannelItemSchema = z.object({
9
+ id: z.number().int().describe("Unique identifier for the channel."),
10
+ name: z.string().describe("Name of the channel."),
11
+ source: z.enum([
12
+ "facebook",
13
+ "instagram",
14
+ "line",
15
+ "telegram",
16
+ "viber",
17
+ "twitter",
18
+ "wechat",
19
+ "custom_channel",
20
+ "gmail",
21
+ "other_email",
22
+ "twilio",
23
+ "message_bird",
24
+ "nexmo",
25
+ "360dialog_whatsapp",
26
+ "twilio_whatsapp",
27
+ "message_bird_whatsapp",
28
+ "whatsappnexmo_whatsapp",
29
+ "whatsapp_cloud"
30
+ ]).describe("Type of the channel."),
31
+ created_at: z.number().int().describe("Unix timestamp (in seconds) when the channel was created.")
32
+ }).describe("Represents a messaging channel connected to the workspace.");
33
+ const RespondIoListChannels_PaginationSchema = z.object({
34
+ next: z.string().nullable(),
35
+ previous: z.string().describe("URL to the previous page of results.").nullable().optional()
36
+ }).describe("URLs for navigating through paginated channel list.");
37
+ const respondIoListChannels = action("RESPOND_IO_LIST_CHANNELS", {
38
+ slug: "respond_io-list-channels",
39
+ name: "List channels",
40
+ description: "Tool to retrieve a list of channels connected to the workspace. Use when you need to enumerate all messaging channels with pagination support.",
41
+ input: RespondIoListChannelsInput,
42
+ output: z.object({
43
+ items: z.array(RespondIoListChannels_ChannelItemSchema).describe("List of channels connected to the workspace."),
44
+ pagination: RespondIoListChannels_PaginationSchema.nullable()
45
+ }).describe("Response model containing the list of channels and pagination info.")
46
+ });
47
+ //#endregion
48
+ export { respondIoListChannels };
49
+
50
+ //# sourceMappingURL=list-channels.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-channels.mjs","names":[],"sources":["../../src/actions/list-channels.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoListChannelsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().default(10).describe(\"Number of items to return (page size). Default is 10, maximum 100.\").optional(),\n cursorId: z.number().int().describe(\"Pointer to the channel ID from where the next batch of records should start.\").optional(),\n}).describe(\"Request model for listing channels with optional pagination.\");\nconst RespondIoListChannels_ChannelItemSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier for the channel.\"),\n name: z.string().describe(\"Name of the channel.\"),\n source: z.enum([\"facebook\", \"instagram\", \"line\", \"telegram\", \"viber\", \"twitter\", \"wechat\", \"custom_channel\", \"gmail\", \"other_email\", \"twilio\", \"message_bird\", \"nexmo\", \"360dialog_whatsapp\", \"twilio_whatsapp\", \"message_bird_whatsapp\", \"whatsappnexmo_whatsapp\", \"whatsapp_cloud\"]).describe(\"Type of the channel.\"),\n created_at: z.number().int().describe(\"Unix timestamp (in seconds) when the channel was created.\"),\n}).describe(\"Represents a messaging channel connected to the workspace.\");\nconst RespondIoListChannels_PaginationSchema: z.ZodTypeAny = z.object({\n next: z.string().nullable(),\n previous: z.string().describe(\"URL to the previous page of results.\").nullable().optional(),\n}).describe(\"URLs for navigating through paginated channel list.\");\nexport const RespondIoListChannelsOutput: z.ZodTypeAny = z.object({\n items: z.array(RespondIoListChannels_ChannelItemSchema).describe(\"List of channels connected to the workspace.\"),\n pagination: RespondIoListChannels_PaginationSchema.nullable(),\n}).describe(\"Response model containing the list of channels and pagination info.\");\n\nexport const respondIoListChannels = action(\"RESPOND_IO_LIST_CHANNELS\", {\n slug: \"respond_io-list-channels\",\n name: \"List channels\",\n description: \"Tool to retrieve a list of channels connected to the workspace. Use when you need to enumerate all messaging channels with pagination support.\",\n input: RespondIoListChannelsInput,\n output: RespondIoListChannelsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2C,EAAE,OAAO;CAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CAC5H,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAM,0CAAwD,EAAE,OAAO;CACrE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,QAAQ,EAAE,KAAK;EAAC;EAAY;EAAa;EAAQ;EAAY;EAAS;EAAW;EAAU;EAAkB;EAAS;EAAe;EAAU;EAAgB;EAAS;EAAsB;EAAmB;EAAyB;EAA0B;CAAgB,CAAC,CAAC,CAAC,SAAS,sBAAsB;CACtT,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D;AACnG,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAuD,EAAE,OAAO;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS;CAC1B,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,qDAAqD;AAMjE,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVuD,EAAE,OAAO;EAChE,OAAO,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,8CAA8C;EAC/G,YAAY,uCAAuC,SAAS;CAC9D,CAAC,CAAC,CAAC,SAAS,qEAOF;AACV,CAAC"}
@@ -0,0 +1,41 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-users.ts
4
+ const RespondIoListUsersInput = zod.z.object({}).describe("Request model for listing all users in the workspace.");
5
+ const RespondIoListUsers_TeamSchema = zod.z.object({
6
+ id: zod.z.number().int().describe("Unique identifier of the team."),
7
+ name: zod.z.string().describe("Name of the team.")
8
+ }).describe("Team object associated with a user.");
9
+ const RespondIoListUsers_UserItemSchema = zod.z.object({
10
+ id: zod.z.number().int().describe("Unique identifier of the user."),
11
+ role: zod.z.enum([
12
+ "agent",
13
+ "manager",
14
+ "owner"
15
+ ]).describe("Role of the user in the workspace."),
16
+ team: RespondIoListUsers_TeamSchema.nullable().optional(),
17
+ email: zod.z.string().describe("Email address of the user."),
18
+ lastName: zod.z.string().describe("Last name of the user."),
19
+ firstName: zod.z.string().describe("First name of the user."),
20
+ restrictions: zod.z.array(zod.z.enum([
21
+ "restrict_data_export",
22
+ "restrict_contact_deletion",
23
+ "restrict_space_settings",
24
+ "show_team_contacts",
25
+ "show_only_mine",
26
+ "restrict_space_integration",
27
+ "restrict_shortcuts"
28
+ ])).describe("Workspace-level restrictions applied to the user.")
29
+ }).describe("Represents a user in the workspace.");
30
+ const RespondIoListUsersOutput = zod.z.object({ data: zod.z.array(RespondIoListUsers_UserItemSchema).describe("List of users in the workspace.") }).describe("Response model containing a list of users in the workspace.");
31
+ const respondIoListUsers = require_action.action("RESPOND_IO_LIST_USERS", {
32
+ slug: "respond_io-list-users",
33
+ name: "List users",
34
+ description: "Tool to retrieve a list of users in the workspace. Use when you need to fetch all workspace users for auditing or assignment.",
35
+ input: RespondIoListUsersInput,
36
+ output: RespondIoListUsersOutput
37
+ });
38
+ //#endregion
39
+ exports.respondIoListUsers = respondIoListUsers;
40
+
41
+ //# sourceMappingURL=list-users.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-users.cjs","names":["z","action"],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoListUsersInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all users in the workspace.\");\nconst RespondIoListUsers_TeamSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier of the team.\"),\n name: z.string().describe(\"Name of the team.\"),\n}).describe(\"Team object associated with a user.\");\nconst RespondIoListUsers_UserItemSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier of the user.\"),\n role: z.enum([\"agent\", \"manager\", \"owner\"]).describe(\"Role of the user in the workspace.\"),\n team: RespondIoListUsers_TeamSchema.nullable().optional(),\n email: z.string().describe(\"Email address of the user.\"),\n lastName: z.string().describe(\"Last name of the user.\"),\n firstName: z.string().describe(\"First name of the user.\"),\n restrictions: z.array(z.enum([\"restrict_data_export\", \"restrict_contact_deletion\", \"restrict_space_settings\", \"show_team_contacts\", \"show_only_mine\", \"restrict_space_integration\", \"restrict_shortcuts\"])).describe(\"Workspace-level restrictions applied to the user.\"),\n}).describe(\"Represents a user in the workspace.\");\nexport const RespondIoListUsersOutput: z.ZodTypeAny = z.object({\n data: z.array(RespondIoListUsers_UserItemSchema).describe(\"List of users in the workspace.\"),\n}).describe(\"Response model containing a list of users in the workspace.\");\n\nexport const respondIoListUsers = action(\"RESPOND_IO_LIST_USERS\", {\n slug: \"respond_io-list-users\",\n name: \"List users\",\n description: \"Tool to retrieve a list of users in the workspace. Use when you need to fetch all workspace users for auditing or assignment.\",\n input: RespondIoListUsersInput,\n output: RespondIoListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAClI,MAAM,gCAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB;AAC/C,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAM,oCAAkDA,IAAAA,EAAE,OAAO;CAC/D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC;CAC9D,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAW;CAAO,CAAC,CAAC,CAAC,SAAS,oCAAoC;CACzF,MAAM,8BAA8B,SAAS,CAAC,CAAC,SAAS;CACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACvD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACxD,cAAcA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAwB;EAA6B;EAA2B;EAAsB;EAAkB;EAA8B;CAAoB,CAAC,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC1Q,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,2BAAyCA,IAAAA,EAAE,OAAO,EAC7D,MAAMA,IAAAA,EAAE,MAAM,iCAAiC,CAAC,CAAC,SAAS,iCAAiC,EAC7F,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAEzE,MAAa,qBAAqBC,eAAAA,OAAO,yBAAyB;CAChE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-users.d.ts
4
+ declare const RespondIoListUsersInput: z.ZodTypeAny;
5
+ declare const RespondIoListUsersOutput: z.ZodTypeAny;
6
+ declare const respondIoListUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoListUsers };
9
+ //# sourceMappingURL=list-users.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-users.d.cts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAA2F;AAAA,cActH,wBAAA,EAA0B,CAAA,CAAE,UAEiC;AAAA,cAE7D,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-users.d.ts
4
+ declare const RespondIoListUsersInput: z.ZodTypeAny;
5
+ declare const RespondIoListUsersOutput: z.ZodTypeAny;
6
+ declare const respondIoListUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoListUsers };
9
+ //# sourceMappingURL=list-users.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-users.d.mts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAA2F;AAAA,cActH,wBAAA,EAA0B,CAAA,CAAE,UAEiC;AAAA,cAE7D,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,40 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-users.ts
4
+ const RespondIoListUsersInput = z.object({}).describe("Request model for listing all users in the workspace.");
5
+ const RespondIoListUsers_TeamSchema = z.object({
6
+ id: z.number().int().describe("Unique identifier of the team."),
7
+ name: z.string().describe("Name of the team.")
8
+ }).describe("Team object associated with a user.");
9
+ const RespondIoListUsers_UserItemSchema = z.object({
10
+ id: z.number().int().describe("Unique identifier of the user."),
11
+ role: z.enum([
12
+ "agent",
13
+ "manager",
14
+ "owner"
15
+ ]).describe("Role of the user in the workspace."),
16
+ team: RespondIoListUsers_TeamSchema.nullable().optional(),
17
+ email: z.string().describe("Email address of the user."),
18
+ lastName: z.string().describe("Last name of the user."),
19
+ firstName: z.string().describe("First name of the user."),
20
+ restrictions: z.array(z.enum([
21
+ "restrict_data_export",
22
+ "restrict_contact_deletion",
23
+ "restrict_space_settings",
24
+ "show_team_contacts",
25
+ "show_only_mine",
26
+ "restrict_space_integration",
27
+ "restrict_shortcuts"
28
+ ])).describe("Workspace-level restrictions applied to the user.")
29
+ }).describe("Represents a user in the workspace.");
30
+ const respondIoListUsers = action("RESPOND_IO_LIST_USERS", {
31
+ slug: "respond_io-list-users",
32
+ name: "List users",
33
+ description: "Tool to retrieve a list of users in the workspace. Use when you need to fetch all workspace users for auditing or assignment.",
34
+ input: RespondIoListUsersInput,
35
+ output: z.object({ data: z.array(RespondIoListUsers_UserItemSchema).describe("List of users in the workspace.") }).describe("Response model containing a list of users in the workspace.")
36
+ });
37
+ //#endregion
38
+ export { respondIoListUsers };
39
+
40
+ //# sourceMappingURL=list-users.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-users.mjs","names":[],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoListUsersInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all users in the workspace.\");\nconst RespondIoListUsers_TeamSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier of the team.\"),\n name: z.string().describe(\"Name of the team.\"),\n}).describe(\"Team object associated with a user.\");\nconst RespondIoListUsers_UserItemSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique identifier of the user.\"),\n role: z.enum([\"agent\", \"manager\", \"owner\"]).describe(\"Role of the user in the workspace.\"),\n team: RespondIoListUsers_TeamSchema.nullable().optional(),\n email: z.string().describe(\"Email address of the user.\"),\n lastName: z.string().describe(\"Last name of the user.\"),\n firstName: z.string().describe(\"First name of the user.\"),\n restrictions: z.array(z.enum([\"restrict_data_export\", \"restrict_contact_deletion\", \"restrict_space_settings\", \"show_team_contacts\", \"show_only_mine\", \"restrict_space_integration\", \"restrict_shortcuts\"])).describe(\"Workspace-level restrictions applied to the user.\"),\n}).describe(\"Represents a user in the workspace.\");\nexport const RespondIoListUsersOutput: z.ZodTypeAny = z.object({\n data: z.array(RespondIoListUsers_UserItemSchema).describe(\"List of users in the workspace.\"),\n}).describe(\"Response model containing a list of users in the workspace.\");\n\nexport const respondIoListUsers = action(\"RESPOND_IO_LIST_USERS\", {\n slug: \"respond_io-list-users\",\n name: \"List users\",\n description: \"Tool to retrieve a list of users in the workspace. Use when you need to fetch all workspace users for auditing or assignment.\",\n input: RespondIoListUsersInput,\n output: RespondIoListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAClI,MAAM,gCAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB;AAC/C,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAM,oCAAkD,EAAE,OAAO;CAC/D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC;CAC9D,MAAM,EAAE,KAAK;EAAC;EAAS;EAAW;CAAO,CAAC,CAAC,CAAC,SAAS,oCAAoC;CACzF,MAAM,8BAA8B,SAAS,CAAC,CAAC,SAAS;CACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACvD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACxD,cAAc,EAAE,MAAM,EAAE,KAAK;EAAC;EAAwB;EAA6B;EAA2B;EAAsB;EAAkB;EAA8B;CAAoB,CAAC,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC1Q,CAAC,CAAC,CAAC,SAAS,qCAAqC;AAKjD,MAAa,qBAAqB,OAAO,yBAAyB;CAChE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToD,EAAE,OAAO,EAC7D,MAAM,EAAE,MAAM,iCAAiC,CAAC,CAAC,SAAS,iCAAiC,EAC7F,CAAC,CAAC,CAAC,SAAS,6DAOF;AACV,CAAC"}
@@ -0,0 +1,28 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/update-space-tag.ts
4
+ const RespondIoUpdateSpaceTagInput = zod.z.object({
5
+ name: zod.z.string().describe("New name for the tag (if you want to rename it)").optional(),
6
+ emoji: zod.z.string().describe("Emoji to associate with the tag (single emoji character)").optional(),
7
+ colorCode: zod.z.string().describe("Hex color code for the tag (Note: Currently not supported by API and will return error if provided)").optional(),
8
+ currentName: zod.z.string().describe("The current name of the tag you want to update (must match exactly)"),
9
+ description: zod.z.string().describe("New description for the tag (updates or sets the description)").optional()
10
+ }).describe("Request model for updating an existing space tag. At least one optional field must be provided.");
11
+ const RespondIoUpdateSpaceTagOutput = zod.z.object({
12
+ name: zod.z.string().describe("Updated name of the tag").nullable().optional(),
13
+ emoji: zod.z.string().describe("Updated emoji associated with the tag").nullable().optional(),
14
+ colorCode: zod.z.string().describe("Hex color code of the tag (usually empty string if not set)").nullable().optional(),
15
+ createdAt: zod.z.number().int().describe("Unix timestamp when the tag was originally created").nullable().optional(),
16
+ description: zod.z.string().describe("Updated description of the tag").nullable().optional()
17
+ }).describe("Response model for an updated space tag.");
18
+ const respondIoUpdateSpaceTag = require_action.action("RESPOND_IO_UPDATE_SPACE_TAG", {
19
+ slug: "respond_io-update-space-tag",
20
+ name: "Update Space Tag",
21
+ description: "Updates an existing workspace tag by its current name. You can modify the tag's name, description, or emoji. Note: Color codes are not currently supported by the API and will be rejected if provided. At least one field besides currentName must be provided to update.",
22
+ input: RespondIoUpdateSpaceTagInput,
23
+ output: RespondIoUpdateSpaceTagOutput
24
+ });
25
+ //#endregion
26
+ exports.respondIoUpdateSpaceTag = respondIoUpdateSpaceTag;
27
+
28
+ //# sourceMappingURL=update-space-tag.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-space-tag.cjs","names":["z","action"],"sources":["../../src/actions/update-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoUpdateSpaceTagInput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"New name for the tag (if you want to rename it)\").optional(),\n emoji: z.string().describe(\"Emoji to associate with the tag (single emoji character)\").optional(),\n colorCode: z.string().describe(\"Hex color code for the tag (Note: Currently not supported by API and will return error if provided)\").optional(),\n currentName: z.string().describe(\"The current name of the tag you want to update (must match exactly)\"),\n description: z.string().describe(\"New description for the tag (updates or sets the description)\").optional(),\n}).describe(\"Request model for updating an existing space tag. At least one optional field must be provided.\");\nexport const RespondIoUpdateSpaceTagOutput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Updated name of the tag\").nullable().optional(),\n emoji: z.string().describe(\"Updated emoji associated with the tag\").nullable().optional(),\n colorCode: z.string().describe(\"Hex color code of the tag (usually empty string if not set)\").nullable().optional(),\n createdAt: z.number().int().describe(\"Unix timestamp when the tag was originally created\").nullable().optional(),\n description: z.string().describe(\"Updated description of the tag\").nullable().optional(),\n}).describe(\"Response model for an updated space tag.\");\n\nexport const respondIoUpdateSpaceTag = action(\"RESPOND_IO_UPDATE_SPACE_TAG\", {\n slug: \"respond_io-update-space-tag\",\n name: \"Update Space Tag\",\n description: \"Updates an existing workspace tag by its current name. You can modify the tag's name, description, or emoji. Note: Color codes are not currently supported by the API and will be rejected if provided. At least one field besides currentName must be provided to update.\",\n input: RespondIoUpdateSpaceTagInput,\n output: RespondIoUpdateSpaceTagOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA6CA,IAAAA,EAAE,OAAO;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,CAAC,CAAC,SAAS;CAC/I,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;CACtG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,SAAS,iGAAiG;AAC7G,MAAa,gCAA8CA,IAAAA,EAAE,OAAO;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,0BAA0BC,eAAAA,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/update-space-tag.d.ts
4
+ declare const RespondIoUpdateSpaceTagInput: z.ZodTypeAny;
5
+ declare const RespondIoUpdateSpaceTagOutput: z.ZodTypeAny;
6
+ declare const respondIoUpdateSpaceTag: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoUpdateSpaceTag };
9
+ //# sourceMappingURL=update-space-tag.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-space-tag.d.cts","names":[],"sources":["../../src/actions/update-space-tag.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAMiE;AAAA,cACjG,6BAAA,EAA+B,CAAA,CAAE,UAMS;AAAA,cAE1C,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/update-space-tag.d.ts
4
+ declare const RespondIoUpdateSpaceTagInput: z.ZodTypeAny;
5
+ declare const RespondIoUpdateSpaceTagOutput: z.ZodTypeAny;
6
+ declare const respondIoUpdateSpaceTag: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { respondIoUpdateSpaceTag };
9
+ //# sourceMappingURL=update-space-tag.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-space-tag.d.mts","names":[],"sources":["../../src/actions/update-space-tag.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAMiE;AAAA,cACjG,6BAAA,EAA+B,CAAA,CAAE,UAMS;AAAA,cAE1C,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,25 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const respondIoUpdateSpaceTag = action("RESPOND_IO_UPDATE_SPACE_TAG", {
4
+ slug: "respond_io-update-space-tag",
5
+ name: "Update Space Tag",
6
+ description: "Updates an existing workspace tag by its current name. You can modify the tag's name, description, or emoji. Note: Color codes are not currently supported by the API and will be rejected if provided. At least one field besides currentName must be provided to update.",
7
+ input: z.object({
8
+ name: z.string().describe("New name for the tag (if you want to rename it)").optional(),
9
+ emoji: z.string().describe("Emoji to associate with the tag (single emoji character)").optional(),
10
+ colorCode: z.string().describe("Hex color code for the tag (Note: Currently not supported by API and will return error if provided)").optional(),
11
+ currentName: z.string().describe("The current name of the tag you want to update (must match exactly)"),
12
+ description: z.string().describe("New description for the tag (updates or sets the description)").optional()
13
+ }).describe("Request model for updating an existing space tag. At least one optional field must be provided."),
14
+ output: z.object({
15
+ name: z.string().describe("Updated name of the tag").nullable().optional(),
16
+ emoji: z.string().describe("Updated emoji associated with the tag").nullable().optional(),
17
+ colorCode: z.string().describe("Hex color code of the tag (usually empty string if not set)").nullable().optional(),
18
+ createdAt: z.number().int().describe("Unix timestamp when the tag was originally created").nullable().optional(),
19
+ description: z.string().describe("Updated description of the tag").nullable().optional()
20
+ }).describe("Response model for an updated space tag.")
21
+ });
22
+ //#endregion
23
+ export { respondIoUpdateSpaceTag };
24
+
25
+ //# sourceMappingURL=update-space-tag.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-space-tag.mjs","names":[],"sources":["../../src/actions/update-space-tag.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RespondIoUpdateSpaceTagInput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"New name for the tag (if you want to rename it)\").optional(),\n emoji: z.string().describe(\"Emoji to associate with the tag (single emoji character)\").optional(),\n colorCode: z.string().describe(\"Hex color code for the tag (Note: Currently not supported by API and will return error if provided)\").optional(),\n currentName: z.string().describe(\"The current name of the tag you want to update (must match exactly)\"),\n description: z.string().describe(\"New description for the tag (updates or sets the description)\").optional(),\n}).describe(\"Request model for updating an existing space tag. At least one optional field must be provided.\");\nexport const RespondIoUpdateSpaceTagOutput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Updated name of the tag\").nullable().optional(),\n emoji: z.string().describe(\"Updated emoji associated with the tag\").nullable().optional(),\n colorCode: z.string().describe(\"Hex color code of the tag (usually empty string if not set)\").nullable().optional(),\n createdAt: z.number().int().describe(\"Unix timestamp when the tag was originally created\").nullable().optional(),\n description: z.string().describe(\"Updated description of the tag\").nullable().optional(),\n}).describe(\"Response model for an updated space tag.\");\n\nexport const respondIoUpdateSpaceTag = action(\"RESPOND_IO_UPDATE_SPACE_TAG\", {\n slug: \"respond_io-update-space-tag\",\n name: \"Update Space Tag\",\n description: \"Updates an existing workspace tag by its current name. You can modify the tag's name, description, or emoji. Note: Color codes are not currently supported by the API and will be rejected if provided. At least one field besides currentName must be provided to update.\",\n input: RespondIoUpdateSpaceTagInput,\n output: RespondIoUpdateSpaceTagOutput,\n});\n"],"mappings":";;AAmBA,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnBwD,EAAE,OAAO;EACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;EACtF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAChG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,CAAC,CAAC,SAAS;EAC/I,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;EACtG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;CAC7G,CAAC,CAAC,CAAC,SAAS,iGAaH;CACP,QAbyD,EAAE,OAAO;EAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const respondIo = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "respond_io",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.respondIo = respondIo;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const respondIo = defineApp({\n slug: \"respond_io\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const respondIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { respondIo };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const respondIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { respondIo };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const respondIo = defineApp({
4
+ slug: "respond_io",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { respondIo };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const respondIo = defineApp({\n slug: \"respond_io\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const respondIoCatalog = {
4
+ "slug": "respond_io",
5
+ "name": "Respond.io",
6
+ "description": "AI-powered customer conversation management software.",
7
+ "category": "Customer Support",
8
+ "logo": "https://logos.composio.dev/api/respond_io",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.respondIoCatalog = respondIoCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const respondIoCatalog = {\n \"slug\": \"respond_io\",\n \"name\": \"Respond.io\",\n \"description\": \"AI-powered customer conversation management software.\",\n \"category\": \"Customer Support\",\n \"logo\": \"https://logos.composio.dev/api/respond_io\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const respondIoCatalog: {
4
+ readonly slug: "respond_io";
5
+ readonly name: "Respond.io";
6
+ readonly description: "AI-powered customer conversation management software.";
7
+ readonly category: "Customer Support";
8
+ readonly logo: "https://logos.composio.dev/api/respond_io";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { respondIoCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const respondIoCatalog: {
4
+ readonly slug: "respond_io";
5
+ readonly name: "Respond.io";
6
+ readonly description: "AI-powered customer conversation management software.";
7
+ readonly category: "Customer Support";
8
+ readonly logo: "https://logos.composio.dev/api/respond_io";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { respondIoCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const respondIoCatalog = {
4
+ "slug": "respond_io",
5
+ "name": "Respond.io",
6
+ "description": "AI-powered customer conversation management software.",
7
+ "category": "Customer Support",
8
+ "logo": "https://logos.composio.dev/api/respond_io",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { respondIoCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const respondIoCatalog = {\n \"slug\": \"respond_io\",\n \"name\": \"Respond.io\",\n \"description\": \"AI-powered customer conversation management software.\",\n \"category\": \"Customer Support\",\n \"logo\": \"https://logos.composio.dev/api/respond_io\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "respond_io";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeRespondIoTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executeRespondIoTool = executeRespondIoTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"respond_io\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeRespondIoTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "respond_io";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeRespondIoTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executeRespondIoTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"respond_io\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeRespondIoTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,20 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_create_comment = require("./actions/create-comment.cjs");
5
+ const require_create_contact = require("./actions/create-contact.cjs");
6
+ const require_create_space_tag = require("./actions/create-space-tag.cjs");
7
+ const require_get_message = require("./actions/get-message.cjs");
8
+ const require_list_channels = require("./actions/list-channels.cjs");
9
+ const require_list_users = require("./actions/list-users.cjs");
10
+ const require_update_space_tag = require("./actions/update-space-tag.cjs");
11
+ require("./actions/index.cjs");
12
+ exports.respondIo = require_app.respondIo;
13
+ exports.respondIoCatalog = require_catalog.respondIoCatalog;
14
+ exports.respondIoCreateComment = require_create_comment.respondIoCreateComment;
15
+ exports.respondIoCreateContact = require_create_contact.respondIoCreateContact;
16
+ exports.respondIoCreateSpaceTag = require_create_space_tag.respondIoCreateSpaceTag;
17
+ exports.respondIoGetMessage = require_get_message.respondIoGetMessage;
18
+ exports.respondIoListChannels = require_list_channels.respondIoListChannels;
19
+ exports.respondIoListUsers = require_list_users.respondIoListUsers;
20
+ exports.respondIoUpdateSpaceTag = require_update_space_tag.respondIoUpdateSpaceTag;