@keystrokehq/sendbird_ai_chabot 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/create-bot.cjs +39 -0
- package/dist/actions/create-bot.cjs.map +1 -0
- package/dist/actions/create-bot.d.cts +9 -0
- package/dist/actions/create-bot.d.cts.map +1 -0
- package/dist/actions/create-bot.d.mts +9 -0
- package/dist/actions/create-bot.d.mts.map +1 -0
- package/dist/actions/create-bot.mjs +38 -0
- package/dist/actions/create-bot.mjs.map +1 -0
- package/dist/actions/get-bot.cjs +27 -0
- package/dist/actions/get-bot.cjs.map +1 -0
- package/dist/actions/get-bot.d.cts +9 -0
- package/dist/actions/get-bot.d.cts.map +1 -0
- package/dist/actions/get-bot.d.mts +9 -0
- package/dist/actions/get-bot.d.mts.map +1 -0
- package/dist/actions/get-bot.mjs +26 -0
- package/dist/actions/get-bot.mjs.map +1 -0
- package/dist/actions/index.cjs +13 -0
- package/dist/actions/index.d.cts +7 -0
- package/dist/actions/index.d.mts +7 -0
- package/dist/actions/index.mjs +7 -0
- package/dist/actions/list-bots.cjs +39 -0
- package/dist/actions/list-bots.cjs.map +1 -0
- package/dist/actions/list-bots.d.cts +9 -0
- package/dist/actions/list-bots.d.cts.map +1 -0
- package/dist/actions/list-bots.d.mts +9 -0
- package/dist/actions/list-bots.d.mts.map +1 -0
- package/dist/actions/list-bots.mjs +38 -0
- package/dist/actions/list-bots.mjs.map +1 -0
- package/dist/actions/list-group-channels.cjs +79 -0
- package/dist/actions/list-group-channels.cjs.map +1 -0
- package/dist/actions/list-group-channels.d.cts +9 -0
- package/dist/actions/list-group-channels.d.cts.map +1 -0
- package/dist/actions/list-group-channels.d.mts +9 -0
- package/dist/actions/list-group-channels.d.mts.map +1 -0
- package/dist/actions/list-group-channels.mjs +78 -0
- package/dist/actions/list-group-channels.mjs.map +1 -0
- package/dist/actions/unregister-bot-webhook.cjs +19 -0
- package/dist/actions/unregister-bot-webhook.cjs.map +1 -0
- package/dist/actions/unregister-bot-webhook.d.cts +9 -0
- package/dist/actions/unregister-bot-webhook.d.cts.map +1 -0
- package/dist/actions/unregister-bot-webhook.d.mts +9 -0
- package/dist/actions/unregister-bot-webhook.d.mts.map +1 -0
- package/dist/actions/unregister-bot-webhook.mjs +16 -0
- package/dist/actions/unregister-bot-webhook.mjs.map +1 -0
- package/dist/actions/update-bot.cjs +39 -0
- package/dist/actions/update-bot.cjs.map +1 -0
- package/dist/actions/update-bot.d.cts +9 -0
- package/dist/actions/update-bot.d.cts.map +1 -0
- package/dist/actions/update-bot.d.mts +9 -0
- package/dist/actions/update-bot.d.mts.map +1 -0
- package/dist/actions/update-bot.mjs +38 -0
- package/dist/actions/update-bot.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +18 -0
- package/dist/index.d.cts +9 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.mjs +10 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/sendbird_ai_chabot
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `sendbird_ai_chabot`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 6
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { sendbirdAiChabotCreateBot } from "@keystrokehq/sendbird_ai_chabot/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "sendbird_ai_chabot-agent",
|
|
15
|
+
tools: [sendbirdAiChabotCreateBot],
|
|
16
|
+
});
|
|
17
|
+
```
|
package/dist/action.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_app = require("./app.cjs");
|
|
2
|
+
const require_execute = require("./execute.cjs");
|
|
3
|
+
require("zod");
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return require_app.sendbirdAiChabot.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await require_execute.executeSendbirdAiChabotTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.action = action;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["sendbirdAiChabot","executeSendbirdAiChabotTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { sendbirdAiChabot } from \"./app\";\nimport { executeSendbirdAiChabotTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return sendbirdAiChabot.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSendbirdAiChabotTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,iBAAiB,OAAO;EAC7B,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,4BAA4B,MAAM,KAAgC,CAAC;EACnG;CACF,CAAC;AACH"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { sendbirdAiChabot } from "./app.mjs";
|
|
2
|
+
import { executeSendbirdAiChabotTool } from "./execute.mjs";
|
|
3
|
+
import "zod";
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return sendbirdAiChabot.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await executeSendbirdAiChabotTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { action };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { sendbirdAiChabot } from \"./app\";\nimport { executeSendbirdAiChabotTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return sendbirdAiChabot.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSendbirdAiChabotTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,iBAAiB,OAAO;EAC7B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,4BAA4B,MAAM,KAAgC,CAAC;EACnG;CACF,CAAC;AACH"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/create-bot.ts
|
|
4
|
+
const SendbirdAiChabotCreateBotInput = zod.z.object({
|
|
5
|
+
bot_type: zod.z.enum(["AI", "DEFAULT"]).default("AI").describe("Type of the bot").optional(),
|
|
6
|
+
bot_userid: zod.z.string().describe("Unique ID for the bot, maximum 80 characters"),
|
|
7
|
+
bot_nickname: zod.z.string().describe("Nickname for the bot, maximum 80 characters"),
|
|
8
|
+
bot_profile_url: zod.z.string().describe("Profile image URL for the bot").optional(),
|
|
9
|
+
is_privacy_mode: zod.z.boolean().default(false).describe("Whether the bot operates in privacy mode").optional(),
|
|
10
|
+
bot_callback_url: zod.z.string().describe("Callback URL for the bot’s webhook events").optional(),
|
|
11
|
+
enable_mark_as_read: zod.z.boolean().default(false).describe("Whether the bot marks messages as read automatically").optional(),
|
|
12
|
+
channel_invitation_preference: zod.z.number().int().describe("Channel invitation handling options for the bot. 0 = disable auto accept, 1 = auto accept").optional()
|
|
13
|
+
}).describe("Request model for creating a new bot");
|
|
14
|
+
const SendbirdAiChabotCreateBot_BotModelSchema = zod.z.object({
|
|
15
|
+
bot_type: zod.z.enum(["AI", "DEFAULT"]).describe("Type of the bot"),
|
|
16
|
+
bot_token: zod.z.string().describe("Bot's authentication token").nullable().optional(),
|
|
17
|
+
bot_userid: zod.z.string().describe("Bot's unique user ID"),
|
|
18
|
+
bot_nickname: zod.z.string().describe("Bot's nickname"),
|
|
19
|
+
bot_profile_url: zod.z.string().describe("Bot's profile image URL (can be empty string)").nullable().optional()
|
|
20
|
+
}).describe("Model representing a bot in Sendbird");
|
|
21
|
+
const SendbirdAiChabotCreateBotOutput = zod.z.object({
|
|
22
|
+
bot: SendbirdAiChabotCreateBot_BotModelSchema.nullable(),
|
|
23
|
+
created_at: zod.z.number().int().describe("Timestamp (in milliseconds) when the bot was created"),
|
|
24
|
+
is_privacy_mode: zod.z.boolean().describe("Whether the bot operates in privacy mode"),
|
|
25
|
+
bot_callback_url: zod.z.string().describe("Callback URL for the bot's webhook events").nullable().optional(),
|
|
26
|
+
enable_mark_as_read: zod.z.boolean().describe("Whether the bot marks messages as read automatically"),
|
|
27
|
+
channel_invitation_preference: zod.z.number().int().describe("Channel invitation handling options (0 = disable auto accept, 1 = auto accept)").nullable().optional()
|
|
28
|
+
}).describe("Response model for creating a new bot");
|
|
29
|
+
const sendbirdAiChabotCreateBot = require_action.action("SENDBIRD_AI_CHABOT_CREATE_BOT", {
|
|
30
|
+
slug: "sendbird_ai_chabot-create-bot",
|
|
31
|
+
name: "Create Bot",
|
|
32
|
+
description: "Tool to create a new bot. Use when you need to add an AI or default bot to your Sendbird app.",
|
|
33
|
+
input: SendbirdAiChabotCreateBotInput,
|
|
34
|
+
output: SendbirdAiChabotCreateBotOutput
|
|
35
|
+
});
|
|
36
|
+
//#endregion
|
|
37
|
+
exports.sendbirdAiChabotCreateBot = sendbirdAiChabotCreateBot;
|
|
38
|
+
|
|
39
|
+
//# sourceMappingURL=create-bot.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-bot.cjs","names":["z","action"],"sources":["../../src/actions/create-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotCreateBotInput: z.ZodTypeAny = z.object({\n bot_type: z.enum([\"AI\", \"DEFAULT\"]).default(\"AI\").describe(\"Type of the bot\").optional(),\n bot_userid: z.string().describe(\"Unique ID for the bot, maximum 80 characters\"),\n bot_nickname: z.string().describe(\"Nickname for the bot, maximum 80 characters\"),\n bot_profile_url: z.string().describe(\"Profile image URL for the bot\").optional(),\n is_privacy_mode: z.boolean().default(false).describe(\"Whether the bot operates in privacy mode\").optional(),\n bot_callback_url: z.string().describe(\"Callback URL for the bot’s webhook events\").optional(),\n enable_mark_as_read: z.boolean().default(false).describe(\"Whether the bot marks messages as read automatically\").optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation handling options for the bot. 0 = disable auto accept, 1 = auto accept\").optional(),\n}).describe(\"Request model for creating a new bot\");\nconst SendbirdAiChabotCreateBot_BotModelSchema: z.ZodTypeAny = z.object({\n bot_type: z.enum([\"AI\", \"DEFAULT\"]).describe(\"Type of the bot\"),\n bot_token: z.string().describe(\"Bot's authentication token\").nullable().optional(),\n bot_userid: z.string().describe(\"Bot's unique user ID\"),\n bot_nickname: z.string().describe(\"Bot's nickname\"),\n bot_profile_url: z.string().describe(\"Bot's profile image URL (can be empty string)\").nullable().optional(),\n}).describe(\"Model representing a bot in Sendbird\");\nexport const SendbirdAiChabotCreateBotOutput: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotCreateBot_BotModelSchema.nullable(),\n created_at: z.number().int().describe(\"Timestamp (in milliseconds) when the bot was created\"),\n is_privacy_mode: z.boolean().describe(\"Whether the bot operates in privacy mode\"),\n bot_callback_url: z.string().describe(\"Callback URL for the bot's webhook events\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether the bot marks messages as read automatically\"),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation handling options (0 = disable auto accept, 1 = auto accept)\").nullable().optional(),\n}).describe(\"Response model for creating a new bot\");\n\nexport const sendbirdAiChabotCreateBot = action(\"SENDBIRD_AI_CHABOT_CREATE_BOT\", {\n slug: \"sendbird_ai_chabot-create-bot\",\n name: \"Create Bot\",\n description: \"Tool to create a new bot. Use when you need to add an AI or default bot to your Sendbird app.\",\n input: SendbirdAiChabotCreateBotInput,\n output: SendbirdAiChabotCreateBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO;CACnE,UAAUA,IAAAA,EAAE,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CACvF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CAC9E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CAC/E,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC/E,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC1G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CAC5F,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC1H,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;AACjK,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAClD,MAAM,2CAAyDA,IAAAA,EAAE,OAAO;CACtE,UAAUA,IAAAA,EAAE,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,CAAC,SAAS,iBAAiB;CAC9D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CACtD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB;CAClD,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAClD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,KAAK,yCAAyC,SAAS;CACvD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD;CAC5F,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;CAChF,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD;CAChG,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjK,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAEnD,MAAa,4BAA4BC,eAAAA,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-bot.d.ts
|
|
4
|
+
declare const SendbirdAiChabotCreateBotInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotCreateBotOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotCreateBot: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotCreateBot };
|
|
9
|
+
//# sourceMappingURL=create-bot.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-bot.d.cts","names":[],"sources":["../../src/actions/create-bot.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UASI;AAAA,cAQtC,+BAAA,EAAiC,CAAA,CAAE,UAOI;AAAA,cAEvC,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-bot.d.ts
|
|
4
|
+
declare const SendbirdAiChabotCreateBotInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotCreateBotOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotCreateBot: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotCreateBot };
|
|
9
|
+
//# sourceMappingURL=create-bot.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-bot.d.mts","names":[],"sources":["../../src/actions/create-bot.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UASI;AAAA,cAQtC,+BAAA,EAAiC,CAAA,CAAE,UAOI;AAAA,cAEvC,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/create-bot.ts
|
|
4
|
+
const SendbirdAiChabotCreateBotInput = z.object({
|
|
5
|
+
bot_type: z.enum(["AI", "DEFAULT"]).default("AI").describe("Type of the bot").optional(),
|
|
6
|
+
bot_userid: z.string().describe("Unique ID for the bot, maximum 80 characters"),
|
|
7
|
+
bot_nickname: z.string().describe("Nickname for the bot, maximum 80 characters"),
|
|
8
|
+
bot_profile_url: z.string().describe("Profile image URL for the bot").optional(),
|
|
9
|
+
is_privacy_mode: z.boolean().default(false).describe("Whether the bot operates in privacy mode").optional(),
|
|
10
|
+
bot_callback_url: z.string().describe("Callback URL for the bot’s webhook events").optional(),
|
|
11
|
+
enable_mark_as_read: z.boolean().default(false).describe("Whether the bot marks messages as read automatically").optional(),
|
|
12
|
+
channel_invitation_preference: z.number().int().describe("Channel invitation handling options for the bot. 0 = disable auto accept, 1 = auto accept").optional()
|
|
13
|
+
}).describe("Request model for creating a new bot");
|
|
14
|
+
const SendbirdAiChabotCreateBot_BotModelSchema = z.object({
|
|
15
|
+
bot_type: z.enum(["AI", "DEFAULT"]).describe("Type of the bot"),
|
|
16
|
+
bot_token: z.string().describe("Bot's authentication token").nullable().optional(),
|
|
17
|
+
bot_userid: z.string().describe("Bot's unique user ID"),
|
|
18
|
+
bot_nickname: z.string().describe("Bot's nickname"),
|
|
19
|
+
bot_profile_url: z.string().describe("Bot's profile image URL (can be empty string)").nullable().optional()
|
|
20
|
+
}).describe("Model representing a bot in Sendbird");
|
|
21
|
+
const sendbirdAiChabotCreateBot = action("SENDBIRD_AI_CHABOT_CREATE_BOT", {
|
|
22
|
+
slug: "sendbird_ai_chabot-create-bot",
|
|
23
|
+
name: "Create Bot",
|
|
24
|
+
description: "Tool to create a new bot. Use when you need to add an AI or default bot to your Sendbird app.",
|
|
25
|
+
input: SendbirdAiChabotCreateBotInput,
|
|
26
|
+
output: z.object({
|
|
27
|
+
bot: SendbirdAiChabotCreateBot_BotModelSchema.nullable(),
|
|
28
|
+
created_at: z.number().int().describe("Timestamp (in milliseconds) when the bot was created"),
|
|
29
|
+
is_privacy_mode: z.boolean().describe("Whether the bot operates in privacy mode"),
|
|
30
|
+
bot_callback_url: z.string().describe("Callback URL for the bot's webhook events").nullable().optional(),
|
|
31
|
+
enable_mark_as_read: z.boolean().describe("Whether the bot marks messages as read automatically"),
|
|
32
|
+
channel_invitation_preference: z.number().int().describe("Channel invitation handling options (0 = disable auto accept, 1 = auto accept)").nullable().optional()
|
|
33
|
+
}).describe("Response model for creating a new bot")
|
|
34
|
+
});
|
|
35
|
+
//#endregion
|
|
36
|
+
export { sendbirdAiChabotCreateBot };
|
|
37
|
+
|
|
38
|
+
//# sourceMappingURL=create-bot.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-bot.mjs","names":[],"sources":["../../src/actions/create-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotCreateBotInput: z.ZodTypeAny = z.object({\n bot_type: z.enum([\"AI\", \"DEFAULT\"]).default(\"AI\").describe(\"Type of the bot\").optional(),\n bot_userid: z.string().describe(\"Unique ID for the bot, maximum 80 characters\"),\n bot_nickname: z.string().describe(\"Nickname for the bot, maximum 80 characters\"),\n bot_profile_url: z.string().describe(\"Profile image URL for the bot\").optional(),\n is_privacy_mode: z.boolean().default(false).describe(\"Whether the bot operates in privacy mode\").optional(),\n bot_callback_url: z.string().describe(\"Callback URL for the bot’s webhook events\").optional(),\n enable_mark_as_read: z.boolean().default(false).describe(\"Whether the bot marks messages as read automatically\").optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation handling options for the bot. 0 = disable auto accept, 1 = auto accept\").optional(),\n}).describe(\"Request model for creating a new bot\");\nconst SendbirdAiChabotCreateBot_BotModelSchema: z.ZodTypeAny = z.object({\n bot_type: z.enum([\"AI\", \"DEFAULT\"]).describe(\"Type of the bot\"),\n bot_token: z.string().describe(\"Bot's authentication token\").nullable().optional(),\n bot_userid: z.string().describe(\"Bot's unique user ID\"),\n bot_nickname: z.string().describe(\"Bot's nickname\"),\n bot_profile_url: z.string().describe(\"Bot's profile image URL (can be empty string)\").nullable().optional(),\n}).describe(\"Model representing a bot in Sendbird\");\nexport const SendbirdAiChabotCreateBotOutput: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotCreateBot_BotModelSchema.nullable(),\n created_at: z.number().int().describe(\"Timestamp (in milliseconds) when the bot was created\"),\n is_privacy_mode: z.boolean().describe(\"Whether the bot operates in privacy mode\"),\n bot_callback_url: z.string().describe(\"Callback URL for the bot's webhook events\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether the bot marks messages as read automatically\"),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation handling options (0 = disable auto accept, 1 = auto accept)\").nullable().optional(),\n}).describe(\"Response model for creating a new bot\");\n\nexport const sendbirdAiChabotCreateBot = action(\"SENDBIRD_AI_CHABOT_CREATE_BOT\", {\n slug: \"sendbird_ai_chabot-create-bot\",\n name: \"Create Bot\",\n description: \"Tool to create a new bot. Use when you need to add an AI or default bot to your Sendbird app.\",\n input: SendbirdAiChabotCreateBotInput,\n output: SendbirdAiChabotCreateBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+C,EAAE,OAAO;CACnE,UAAU,EAAE,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CACvF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CAC9E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CAC/E,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC/E,iBAAiB,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC1G,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CAC5F,qBAAqB,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC1H,+BAA+B,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS;AACjK,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAClD,MAAM,2CAAyD,EAAE,OAAO;CACtE,UAAU,EAAE,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,CAAC,SAAS,iBAAiB;CAC9D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CACtD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB;CAClD,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAUlD,MAAa,4BAA4B,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAd2D,EAAE,OAAO;EACpE,KAAK,yCAAyC,SAAS;EACvD,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD;EAC5F,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;EAChF,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD;EAChG,+BAA+B,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjK,CAAC,CAAC,CAAC,SAAS,uCAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-bot.ts
|
|
4
|
+
const SendbirdAiChabotGetBotInput = zod.z.object({ bot_user_id: zod.z.string().describe("The unique user ID of the bot to retrieve.") }).describe("Request model for retrieving a specific bot by its user ID.");
|
|
5
|
+
const SendbirdAiChabotGetBot_BotSchema = zod.z.object({
|
|
6
|
+
name: zod.z.string().describe("Name of the bot."),
|
|
7
|
+
status: zod.z.string().describe("Current status of the bot."),
|
|
8
|
+
created_at: zod.z.number().int().describe("Timestamp when the bot was created in milliseconds."),
|
|
9
|
+
bot_user_id: zod.z.string().describe("Unique user ID of the bot."),
|
|
10
|
+
profile_url: zod.z.string().describe("Profile image URL of the bot.").nullable().optional(),
|
|
11
|
+
show_member: zod.z.boolean().describe("Indicates if the bot is shown as a member.").nullable().optional(),
|
|
12
|
+
issue_status: zod.z.string().describe("Issue status if any.").nullable().optional(),
|
|
13
|
+
is_privacy_mode: zod.z.boolean().describe("Indicates if privacy mode is enabled for the bot.").nullable().optional(),
|
|
14
|
+
channel_invitation_preference: zod.z.string().describe("Channel invitation preference setting.").nullable().optional()
|
|
15
|
+
}).describe("Represents a Sendbird AI chatbot bot object.");
|
|
16
|
+
const SendbirdAiChabotGetBotOutput = zod.z.object({ bot: SendbirdAiChabotGetBot_BotSchema.nullable() }).describe("Response model containing the bot information.");
|
|
17
|
+
const sendbirdAiChabotGetBot = require_action.action("SENDBIRD_AI_CHABOT_GET_BOT", {
|
|
18
|
+
slug: "sendbird_ai_chabot-get-bot",
|
|
19
|
+
name: "Get Bot",
|
|
20
|
+
description: "Tool to retrieve information on a specific bot by its user ID. Use when you need to fetch bot details before performing subsequent operations.",
|
|
21
|
+
input: SendbirdAiChabotGetBotInput,
|
|
22
|
+
output: SendbirdAiChabotGetBotOutput
|
|
23
|
+
});
|
|
24
|
+
//#endregion
|
|
25
|
+
exports.sendbirdAiChabotGetBot = sendbirdAiChabotGetBot;
|
|
26
|
+
|
|
27
|
+
//# sourceMappingURL=get-bot.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-bot.cjs","names":["z","action"],"sources":["../../src/actions/get-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotGetBotInput: z.ZodTypeAny = z.object({\n bot_user_id: z.string().describe(\"The unique user ID of the bot to retrieve.\"),\n}).describe(\"Request model for retrieving a specific bot by its user ID.\");\nconst SendbirdAiChabotGetBot_BotSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the bot.\"),\n status: z.string().describe(\"Current status of the bot.\"),\n created_at: z.number().int().describe(\"Timestamp when the bot was created in milliseconds.\"),\n bot_user_id: z.string().describe(\"Unique user ID of the bot.\"),\n profile_url: z.string().describe(\"Profile image URL of the bot.\").nullable().optional(),\n show_member: z.boolean().describe(\"Indicates if the bot is shown as a member.\").nullable().optional(),\n issue_status: z.string().describe(\"Issue status if any.\").nullable().optional(),\n is_privacy_mode: z.boolean().describe(\"Indicates if privacy mode is enabled for the bot.\").nullable().optional(),\n channel_invitation_preference: z.string().describe(\"Channel invitation preference setting.\").nullable().optional(),\n}).describe(\"Represents a Sendbird AI chatbot bot object.\");\nexport const SendbirdAiChabotGetBotOutput: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotGetBot_BotSchema.nullable(),\n}).describe(\"Response model containing the bot information.\");\n\nexport const sendbirdAiChabotGetBot = action(\"SENDBIRD_AI_CHABOT_GET_BOT\", {\n slug: \"sendbird_ai_chabot-get-bot\",\n name: \"Get Bot\",\n description: \"Tool to retrieve information on a specific bot by its user ID. Use when you need to fetch bot details before performing subsequent operations.\",\n input: SendbirdAiChabotGetBotInput,\n output: SendbirdAiChabotGetBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC/E,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,mCAAiDA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACxD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qDAAqD;CAC3F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CAC7D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnH,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAC1D,MAAa,+BAA6CA,IAAAA,EAAE,OAAO,EACjE,KAAK,iCAAiC,SAAS,EACjD,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAE5D,MAAa,yBAAyBC,eAAAA,OAAO,8BAA8B;CACzE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-bot.d.ts
|
|
4
|
+
declare const SendbirdAiChabotGetBotInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotGetBotOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotGetBot: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotGetBot };
|
|
9
|
+
//# sourceMappingURL=get-bot.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-bot.d.cts","names":[],"sources":["../../src/actions/get-bot.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAE8B;AAAA,cAY7D,4BAAA,EAA8B,CAAA,CAAE,UAEgB;AAAA,cAEhD,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-bot.d.ts
|
|
4
|
+
declare const SendbirdAiChabotGetBotInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotGetBotOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotGetBot: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotGetBot };
|
|
9
|
+
//# sourceMappingURL=get-bot.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-bot.d.mts","names":[],"sources":["../../src/actions/get-bot.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAE8B;AAAA,cAY7D,4BAAA,EAA8B,CAAA,CAAE,UAEgB;AAAA,cAEhD,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-bot.ts
|
|
4
|
+
const SendbirdAiChabotGetBotInput = z.object({ bot_user_id: z.string().describe("The unique user ID of the bot to retrieve.") }).describe("Request model for retrieving a specific bot by its user ID.");
|
|
5
|
+
const SendbirdAiChabotGetBot_BotSchema = z.object({
|
|
6
|
+
name: z.string().describe("Name of the bot."),
|
|
7
|
+
status: z.string().describe("Current status of the bot."),
|
|
8
|
+
created_at: z.number().int().describe("Timestamp when the bot was created in milliseconds."),
|
|
9
|
+
bot_user_id: z.string().describe("Unique user ID of the bot."),
|
|
10
|
+
profile_url: z.string().describe("Profile image URL of the bot.").nullable().optional(),
|
|
11
|
+
show_member: z.boolean().describe("Indicates if the bot is shown as a member.").nullable().optional(),
|
|
12
|
+
issue_status: z.string().describe("Issue status if any.").nullable().optional(),
|
|
13
|
+
is_privacy_mode: z.boolean().describe("Indicates if privacy mode is enabled for the bot.").nullable().optional(),
|
|
14
|
+
channel_invitation_preference: z.string().describe("Channel invitation preference setting.").nullable().optional()
|
|
15
|
+
}).describe("Represents a Sendbird AI chatbot bot object.");
|
|
16
|
+
const sendbirdAiChabotGetBot = action("SENDBIRD_AI_CHABOT_GET_BOT", {
|
|
17
|
+
slug: "sendbird_ai_chabot-get-bot",
|
|
18
|
+
name: "Get Bot",
|
|
19
|
+
description: "Tool to retrieve information on a specific bot by its user ID. Use when you need to fetch bot details before performing subsequent operations.",
|
|
20
|
+
input: SendbirdAiChabotGetBotInput,
|
|
21
|
+
output: z.object({ bot: SendbirdAiChabotGetBot_BotSchema.nullable() }).describe("Response model containing the bot information.")
|
|
22
|
+
});
|
|
23
|
+
//#endregion
|
|
24
|
+
export { sendbirdAiChabotGetBot };
|
|
25
|
+
|
|
26
|
+
//# sourceMappingURL=get-bot.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-bot.mjs","names":[],"sources":["../../src/actions/get-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotGetBotInput: z.ZodTypeAny = z.object({\n bot_user_id: z.string().describe(\"The unique user ID of the bot to retrieve.\"),\n}).describe(\"Request model for retrieving a specific bot by its user ID.\");\nconst SendbirdAiChabotGetBot_BotSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the bot.\"),\n status: z.string().describe(\"Current status of the bot.\"),\n created_at: z.number().int().describe(\"Timestamp when the bot was created in milliseconds.\"),\n bot_user_id: z.string().describe(\"Unique user ID of the bot.\"),\n profile_url: z.string().describe(\"Profile image URL of the bot.\").nullable().optional(),\n show_member: z.boolean().describe(\"Indicates if the bot is shown as a member.\").nullable().optional(),\n issue_status: z.string().describe(\"Issue status if any.\").nullable().optional(),\n is_privacy_mode: z.boolean().describe(\"Indicates if privacy mode is enabled for the bot.\").nullable().optional(),\n channel_invitation_preference: z.string().describe(\"Channel invitation preference setting.\").nullable().optional(),\n}).describe(\"Represents a Sendbird AI chatbot bot object.\");\nexport const SendbirdAiChabotGetBotOutput: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotGetBot_BotSchema.nullable(),\n}).describe(\"Response model containing the bot information.\");\n\nexport const sendbirdAiChabotGetBot = action(\"SENDBIRD_AI_CHABOT_GET_BOT\", {\n slug: \"sendbird_ai_chabot-get-bot\",\n name: \"Get Bot\",\n description: \"Tool to retrieve information on a specific bot by its user ID. Use when you need to fetch bot details before performing subsequent operations.\",\n input: SendbirdAiChabotGetBotInput,\n output: SendbirdAiChabotGetBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4C,EAAE,OAAO,EAChE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EAC/E,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,mCAAiD,EAAE,OAAO;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACxD,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qDAAqD;CAC3F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CAC7D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,+BAA+B,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnH,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAK1D,MAAa,yBAAyB,OAAO,8BAA8B;CACzE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATwD,EAAE,OAAO,EACjE,KAAK,iCAAiC,SAAS,EACjD,CAAC,CAAC,CAAC,SAAS,gDAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_create_bot = require("./create-bot.cjs");
|
|
3
|
+
const require_get_bot = require("./get-bot.cjs");
|
|
4
|
+
const require_list_bots = require("./list-bots.cjs");
|
|
5
|
+
const require_list_group_channels = require("./list-group-channels.cjs");
|
|
6
|
+
const require_unregister_bot_webhook = require("./unregister-bot-webhook.cjs");
|
|
7
|
+
const require_update_bot = require("./update-bot.cjs");
|
|
8
|
+
exports.sendbirdAiChabotCreateBot = require_create_bot.sendbirdAiChabotCreateBot;
|
|
9
|
+
exports.sendbirdAiChabotGetBot = require_get_bot.sendbirdAiChabotGetBot;
|
|
10
|
+
exports.sendbirdAiChabotListBots = require_list_bots.sendbirdAiChabotListBots;
|
|
11
|
+
exports.sendbirdAiChabotListGroupChannels = require_list_group_channels.sendbirdAiChabotListGroupChannels;
|
|
12
|
+
exports.sendbirdAiChabotUnregisterBotWebhook = require_unregister_bot_webhook.sendbirdAiChabotUnregisterBotWebhook;
|
|
13
|
+
exports.sendbirdAiChabotUpdateBot = require_update_bot.sendbirdAiChabotUpdateBot;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { sendbirdAiChabotCreateBot } from "./create-bot.cjs";
|
|
2
|
+
import { sendbirdAiChabotGetBot } from "./get-bot.cjs";
|
|
3
|
+
import { sendbirdAiChabotListBots } from "./list-bots.cjs";
|
|
4
|
+
import { sendbirdAiChabotListGroupChannels } from "./list-group-channels.cjs";
|
|
5
|
+
import { sendbirdAiChabotUnregisterBotWebhook } from "./unregister-bot-webhook.cjs";
|
|
6
|
+
import { sendbirdAiChabotUpdateBot } from "./update-bot.cjs";
|
|
7
|
+
export { sendbirdAiChabotCreateBot, sendbirdAiChabotGetBot, sendbirdAiChabotListBots, sendbirdAiChabotListGroupChannels, sendbirdAiChabotUnregisterBotWebhook, sendbirdAiChabotUpdateBot };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { sendbirdAiChabotCreateBot } from "./create-bot.mjs";
|
|
2
|
+
import { sendbirdAiChabotGetBot } from "./get-bot.mjs";
|
|
3
|
+
import { sendbirdAiChabotListBots } from "./list-bots.mjs";
|
|
4
|
+
import { sendbirdAiChabotListGroupChannels } from "./list-group-channels.mjs";
|
|
5
|
+
import { sendbirdAiChabotUnregisterBotWebhook } from "./unregister-bot-webhook.mjs";
|
|
6
|
+
import { sendbirdAiChabotUpdateBot } from "./update-bot.mjs";
|
|
7
|
+
export { sendbirdAiChabotCreateBot, sendbirdAiChabotGetBot, sendbirdAiChabotListBots, sendbirdAiChabotListGroupChannels, sendbirdAiChabotUnregisterBotWebhook, sendbirdAiChabotUpdateBot };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { sendbirdAiChabotCreateBot } from "./create-bot.mjs";
|
|
2
|
+
import { sendbirdAiChabotGetBot } from "./get-bot.mjs";
|
|
3
|
+
import { sendbirdAiChabotListBots } from "./list-bots.mjs";
|
|
4
|
+
import { sendbirdAiChabotListGroupChannels } from "./list-group-channels.mjs";
|
|
5
|
+
import { sendbirdAiChabotUnregisterBotWebhook } from "./unregister-bot-webhook.mjs";
|
|
6
|
+
import { sendbirdAiChabotUpdateBot } from "./update-bot.mjs";
|
|
7
|
+
export { sendbirdAiChabotCreateBot, sendbirdAiChabotGetBot, sendbirdAiChabotListBots, sendbirdAiChabotListGroupChannels, sendbirdAiChabotUnregisterBotWebhook, sendbirdAiChabotUpdateBot };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-bots.ts
|
|
4
|
+
const SendbirdAiChabotListBotsInput = zod.z.object({
|
|
5
|
+
limit: zod.z.number().int().describe("Number of results to return per page (1–100). Defaults to 10 if omitted.").optional(),
|
|
6
|
+
token: zod.z.string().describe("Pagination token for a paginated result.").optional(),
|
|
7
|
+
bot_id: zod.z.string().describe("Filter results by a specific bot ID.").optional()
|
|
8
|
+
});
|
|
9
|
+
const SendbirdAiChabotListBots_BotInfoSchema = zod.z.object({
|
|
10
|
+
bot_type: zod.z.string().describe("Type of the bot (e.g., 'AI', 'DEFAULT', 'marketer').").nullable().optional(),
|
|
11
|
+
bot_token: zod.z.string().describe("Authentication token for the bot.").nullable().optional(),
|
|
12
|
+
bot_userid: zod.z.string().describe("The user ID for the bot."),
|
|
13
|
+
bot_metadata: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Custom metadata object for the bot.").nullable().optional(),
|
|
14
|
+
bot_nickname: zod.z.string().describe("Nickname (display name) of the bot."),
|
|
15
|
+
bot_profile_url: zod.z.string().describe("URL for the bot's profile image.").nullable().optional()
|
|
16
|
+
}).describe("Inner bot information object.");
|
|
17
|
+
const SendbirdAiChabotListBots_BotSchema = zod.z.object({
|
|
18
|
+
bot: SendbirdAiChabotListBots_BotInfoSchema.nullable(),
|
|
19
|
+
show_member: zod.z.boolean().describe("Whether the bot is shown as a channel member.").nullable().optional(),
|
|
20
|
+
is_privacy_mode: zod.z.boolean().describe("Whether the bot is in privacy mode.").nullable().optional(),
|
|
21
|
+
bot_callback_url: zod.z.string().describe("Callback URL of the bot.").nullable().optional(),
|
|
22
|
+
enable_mark_as_read: zod.z.boolean().describe("Whether the bot marks messages as read automatically.").nullable().optional(),
|
|
23
|
+
channel_invitation_preference: zod.z.number().int().describe("Channel invitation preference setting.").nullable().optional()
|
|
24
|
+
}).describe("Bot object returned in the list bots response.");
|
|
25
|
+
const SendbirdAiChabotListBotsOutput = zod.z.object({
|
|
26
|
+
bots: zod.z.array(SendbirdAiChabotListBots_BotSchema).describe("List of bot objects."),
|
|
27
|
+
next: zod.z.string().describe("Pagination token for the next page; null if no further pages.").nullable().optional()
|
|
28
|
+
});
|
|
29
|
+
const sendbirdAiChabotListBots = require_action.action("SENDBIRD_AI_CHABOT_LIST_BOTS", {
|
|
30
|
+
slug: "sendbird_ai_chabot-list-bots",
|
|
31
|
+
name: "List Bots",
|
|
32
|
+
description: "Tool to list all bots in the Sendbird application. Use when you need to fetch bot details with optional filters and pagination.",
|
|
33
|
+
input: SendbirdAiChabotListBotsInput,
|
|
34
|
+
output: SendbirdAiChabotListBotsOutput
|
|
35
|
+
});
|
|
36
|
+
//#endregion
|
|
37
|
+
exports.sendbirdAiChabotListBots = sendbirdAiChabotListBots;
|
|
38
|
+
|
|
39
|
+
//# sourceMappingURL=list-bots.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-bots.cjs","names":["z","action"],"sources":["../../src/actions/list-bots.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotListBotsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of results to return per page (1–100). Defaults to 10 if omitted.\").optional(),\n token: z.string().describe(\"Pagination token for a paginated result.\").optional(),\n bot_id: z.string().describe(\"Filter results by a specific bot ID.\").optional(),\n});\nconst SendbirdAiChabotListBots_BotInfoSchema: z.ZodTypeAny = z.object({\n bot_type: z.string().describe(\"Type of the bot (e.g., 'AI', 'DEFAULT', 'marketer').\").nullable().optional(),\n bot_token: z.string().describe(\"Authentication token for the bot.\").nullable().optional(),\n bot_userid: z.string().describe(\"The user ID for the bot.\"),\n bot_metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata object for the bot.\").nullable().optional(),\n bot_nickname: z.string().describe(\"Nickname (display name) of the bot.\"),\n bot_profile_url: z.string().describe(\"URL for the bot's profile image.\").nullable().optional(),\n}).describe(\"Inner bot information object.\");\nconst SendbirdAiChabotListBots_BotSchema: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotListBots_BotInfoSchema.nullable(),\n show_member: z.boolean().describe(\"Whether the bot is shown as a channel member.\").nullable().optional(),\n is_privacy_mode: z.boolean().describe(\"Whether the bot is in privacy mode.\").nullable().optional(),\n bot_callback_url: z.string().describe(\"Callback URL of the bot.\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether the bot marks messages as read automatically.\").nullable().optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation preference setting.\").nullable().optional(),\n}).describe(\"Bot object returned in the list bots response.\");\nexport const SendbirdAiChabotListBotsOutput: z.ZodTypeAny = z.object({\n bots: z.array(SendbirdAiChabotListBots_BotSchema).describe(\"List of bot objects.\"),\n next: z.string().describe(\"Pagination token for the next page; null if no further pages.\").nullable().optional(),\n});\n\nexport const sendbirdAiChabotListBots = action(\"SENDBIRD_AI_CHABOT_LIST_BOTS\", {\n slug: \"sendbird_ai_chabot-list-bots\",\n name: \"List Bots\",\n description: \"Tool to list all bots in the Sendbird application. Use when you need to fetch bot details with optional filters and pagination.\",\n input: SendbirdAiChabotListBotsInput,\n output: SendbirdAiChabotListBotsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8CA,IAAAA,EAAE,OAAO;CAClE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACtH,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAChF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AAC/E,CAAC;AACD,MAAM,yCAAuDA,IAAAA,EAAE,OAAO;CACpE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CAC1D,cAAcA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CACvE,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,+BAA+B;AAC3C,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,KAAK,uCAAuC,SAAS;CACrD,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,qBAAqBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACzH,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAC5D,MAAa,iCAA+CA,IAAAA,EAAE,OAAO;CACnE,MAAMA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,sBAAsB;CACjF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC;AAED,MAAa,2BAA2BC,eAAAA,OAAO,gCAAgC;CAC7E,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-bots.d.ts
|
|
4
|
+
declare const SendbirdAiChabotListBotsInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotListBotsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotListBots: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotListBots };
|
|
9
|
+
//# sourceMappingURL=list-bots.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-bots.d.cts","names":[],"sources":["../../src/actions/list-bots.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAI5C;AAAA,cAiBW,8BAAA,EAAgC,CAAA,CAAE,UAG7C;AAAA,cAEW,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-bots.d.ts
|
|
4
|
+
declare const SendbirdAiChabotListBotsInput: z.ZodTypeAny;
|
|
5
|
+
declare const SendbirdAiChabotListBotsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const sendbirdAiChabotListBots: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { sendbirdAiChabotListBots };
|
|
9
|
+
//# sourceMappingURL=list-bots.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-bots.d.mts","names":[],"sources":["../../src/actions/list-bots.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAI5C;AAAA,cAiBW,8BAAA,EAAgC,CAAA,CAAE,UAG7C;AAAA,cAEW,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/list-bots.ts
|
|
4
|
+
const SendbirdAiChabotListBotsInput = z.object({
|
|
5
|
+
limit: z.number().int().describe("Number of results to return per page (1–100). Defaults to 10 if omitted.").optional(),
|
|
6
|
+
token: z.string().describe("Pagination token for a paginated result.").optional(),
|
|
7
|
+
bot_id: z.string().describe("Filter results by a specific bot ID.").optional()
|
|
8
|
+
});
|
|
9
|
+
const SendbirdAiChabotListBots_BotInfoSchema = z.object({
|
|
10
|
+
bot_type: z.string().describe("Type of the bot (e.g., 'AI', 'DEFAULT', 'marketer').").nullable().optional(),
|
|
11
|
+
bot_token: z.string().describe("Authentication token for the bot.").nullable().optional(),
|
|
12
|
+
bot_userid: z.string().describe("The user ID for the bot."),
|
|
13
|
+
bot_metadata: z.record(z.string(), z.unknown()).describe("Custom metadata object for the bot.").nullable().optional(),
|
|
14
|
+
bot_nickname: z.string().describe("Nickname (display name) of the bot."),
|
|
15
|
+
bot_profile_url: z.string().describe("URL for the bot's profile image.").nullable().optional()
|
|
16
|
+
}).describe("Inner bot information object.");
|
|
17
|
+
const SendbirdAiChabotListBots_BotSchema = z.object({
|
|
18
|
+
bot: SendbirdAiChabotListBots_BotInfoSchema.nullable(),
|
|
19
|
+
show_member: z.boolean().describe("Whether the bot is shown as a channel member.").nullable().optional(),
|
|
20
|
+
is_privacy_mode: z.boolean().describe("Whether the bot is in privacy mode.").nullable().optional(),
|
|
21
|
+
bot_callback_url: z.string().describe("Callback URL of the bot.").nullable().optional(),
|
|
22
|
+
enable_mark_as_read: z.boolean().describe("Whether the bot marks messages as read automatically.").nullable().optional(),
|
|
23
|
+
channel_invitation_preference: z.number().int().describe("Channel invitation preference setting.").nullable().optional()
|
|
24
|
+
}).describe("Bot object returned in the list bots response.");
|
|
25
|
+
const sendbirdAiChabotListBots = action("SENDBIRD_AI_CHABOT_LIST_BOTS", {
|
|
26
|
+
slug: "sendbird_ai_chabot-list-bots",
|
|
27
|
+
name: "List Bots",
|
|
28
|
+
description: "Tool to list all bots in the Sendbird application. Use when you need to fetch bot details with optional filters and pagination.",
|
|
29
|
+
input: SendbirdAiChabotListBotsInput,
|
|
30
|
+
output: z.object({
|
|
31
|
+
bots: z.array(SendbirdAiChabotListBots_BotSchema).describe("List of bot objects."),
|
|
32
|
+
next: z.string().describe("Pagination token for the next page; null if no further pages.").nullable().optional()
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
//#endregion
|
|
36
|
+
export { sendbirdAiChabotListBots };
|
|
37
|
+
|
|
38
|
+
//# sourceMappingURL=list-bots.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-bots.mjs","names":[],"sources":["../../src/actions/list-bots.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotListBotsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of results to return per page (1–100). Defaults to 10 if omitted.\").optional(),\n token: z.string().describe(\"Pagination token for a paginated result.\").optional(),\n bot_id: z.string().describe(\"Filter results by a specific bot ID.\").optional(),\n});\nconst SendbirdAiChabotListBots_BotInfoSchema: z.ZodTypeAny = z.object({\n bot_type: z.string().describe(\"Type of the bot (e.g., 'AI', 'DEFAULT', 'marketer').\").nullable().optional(),\n bot_token: z.string().describe(\"Authentication token for the bot.\").nullable().optional(),\n bot_userid: z.string().describe(\"The user ID for the bot.\"),\n bot_metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata object for the bot.\").nullable().optional(),\n bot_nickname: z.string().describe(\"Nickname (display name) of the bot.\"),\n bot_profile_url: z.string().describe(\"URL for the bot's profile image.\").nullable().optional(),\n}).describe(\"Inner bot information object.\");\nconst SendbirdAiChabotListBots_BotSchema: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotListBots_BotInfoSchema.nullable(),\n show_member: z.boolean().describe(\"Whether the bot is shown as a channel member.\").nullable().optional(),\n is_privacy_mode: z.boolean().describe(\"Whether the bot is in privacy mode.\").nullable().optional(),\n bot_callback_url: z.string().describe(\"Callback URL of the bot.\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether the bot marks messages as read automatically.\").nullable().optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation preference setting.\").nullable().optional(),\n}).describe(\"Bot object returned in the list bots response.\");\nexport const SendbirdAiChabotListBotsOutput: z.ZodTypeAny = z.object({\n bots: z.array(SendbirdAiChabotListBots_BotSchema).describe(\"List of bot objects.\"),\n next: z.string().describe(\"Pagination token for the next page; null if no further pages.\").nullable().optional(),\n});\n\nexport const sendbirdAiChabotListBots = action(\"SENDBIRD_AI_CHABOT_LIST_BOTS\", {\n slug: \"sendbird_ai_chabot-list-bots\",\n name: \"List Bots\",\n description: \"Tool to list all bots in the Sendbird application. Use when you need to fetch bot details with optional filters and pagination.\",\n input: SendbirdAiChabotListBotsInput,\n output: SendbirdAiChabotListBotsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8C,EAAE,OAAO;CAClE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACtH,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAChF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AAC/E,CAAC;AACD,MAAM,yCAAuD,EAAE,OAAO;CACpE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CAC1D,cAAc,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CACvE,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,+BAA+B;AAC3C,MAAM,qCAAmD,EAAE,OAAO;CAChE,KAAK,uCAAuC,SAAS;CACrD,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,+BAA+B,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACzH,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAM5D,MAAa,2BAA2B,OAAO,gCAAgC;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV0D,EAAE,OAAO;EACnE,MAAM,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,sBAAsB;EACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,CAOU;AACV,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-group-channels.ts
|
|
4
|
+
const SendbirdAiChabotListGroupChannelsInput = zod.z.object({
|
|
5
|
+
url: zod.z.string().describe("Filter by channel URL.").optional(),
|
|
6
|
+
name: zod.z.string().describe("Filter by exact channel name.").optional(),
|
|
7
|
+
limit: zod.z.number().int().describe("Number of results to return per page (1-100).").optional(),
|
|
8
|
+
token: zod.z.string().describe("Pagination token for the next page.").optional(),
|
|
9
|
+
query_type: zod.z.enum(["AND", "OR"]).describe("Query type to combine member_user_ids: AND or OR.").optional(),
|
|
10
|
+
show_empty: zod.z.boolean().describe("Include channels with no messages.").optional(),
|
|
11
|
+
super_mode: zod.z.enum([
|
|
12
|
+
"all",
|
|
13
|
+
"super",
|
|
14
|
+
"nonsuper"
|
|
15
|
+
]).describe("Filter by super channel mode: all, super, or nonsuper.").optional(),
|
|
16
|
+
custom_type: zod.z.string().describe("Filter by a specific custom type.").optional(),
|
|
17
|
+
public_mode: zod.z.enum([
|
|
18
|
+
"all",
|
|
19
|
+
"public",
|
|
20
|
+
"private"
|
|
21
|
+
]).describe("Filter by public mode: all, public, or private.").optional(),
|
|
22
|
+
channel_urls: zod.z.array(zod.z.string()).describe("Filter by specific channel URLs.").optional(),
|
|
23
|
+
custom_types: zod.z.array(zod.z.string()).describe("Filter by multiple custom types.").optional(),
|
|
24
|
+
created_after: zod.z.number().int().describe("Filter channels created after this timestamp (ms since epoch).").optional(),
|
|
25
|
+
distinct_mode: zod.z.enum([
|
|
26
|
+
"all",
|
|
27
|
+
"distinct",
|
|
28
|
+
"nondistinct"
|
|
29
|
+
]).describe("Filter by distinct mode: all, distinct, or nondistinct.").optional(),
|
|
30
|
+
name_contains: zod.z.string().describe("Filter by partial channel name match.").optional(),
|
|
31
|
+
created_before: zod.z.number().int().describe("Filter channels created before this timestamp (ms since epoch).").optional(),
|
|
32
|
+
member_user_ids: zod.z.array(zod.z.string()).describe("Filter by members' user IDs.").optional(),
|
|
33
|
+
members_nickname: zod.z.string().describe("Filter by members' nickname.").optional(),
|
|
34
|
+
members_exactly_in: zod.z.array(zod.z.string()).describe("Filter channels where exactly these user IDs are members.").optional(),
|
|
35
|
+
members_include_in: zod.z.array(zod.z.string()).describe("Filter channels including any of these user IDs.").optional(),
|
|
36
|
+
members_nickname_prefix: zod.z.string().describe("Filter by members' nickname prefix.").optional()
|
|
37
|
+
}).describe("Request model for retrieving a list of group channels with optional filters and pagination.");
|
|
38
|
+
const SendbirdAiChabotListGroupChannels_UserModelSchema = zod.z.object({
|
|
39
|
+
user_id: zod.z.string().describe("User ID.").nullable().optional(),
|
|
40
|
+
nickname: zod.z.string().describe("User nickname.").nullable().optional(),
|
|
41
|
+
profile_url: zod.z.string().describe("User profile URL.").nullable().optional()
|
|
42
|
+
}).passthrough();
|
|
43
|
+
const SendbirdAiChabotListGroupChannels_GroupChannelSchema = zod.z.object({
|
|
44
|
+
data: zod.z.string().describe("Custom data of the channel.").nullable().optional(),
|
|
45
|
+
name: zod.z.string().describe("Name of the group channel.").nullable().optional(),
|
|
46
|
+
freeze: zod.z.boolean().describe("Whether the channel is frozen.").nullable().optional(),
|
|
47
|
+
members: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("List of channel members.").nullable().optional(),
|
|
48
|
+
is_super: zod.z.boolean().describe("Whether the channel is a super channel.").nullable().optional(),
|
|
49
|
+
cover_url: zod.z.string().describe("Cover image URL of the group channel.").nullable().optional(),
|
|
50
|
+
is_hidden: zod.z.boolean().describe("Whether the channel is hidden.").nullable().optional(),
|
|
51
|
+
is_public: zod.z.boolean().describe("Whether the channel is public.").nullable().optional(),
|
|
52
|
+
created_at: zod.z.number().int().describe("Creation timestamp of the channel (ms since epoch).").nullable().optional(),
|
|
53
|
+
created_by: SendbirdAiChabotListGroupChannels_UserModelSchema.nullable().optional(),
|
|
54
|
+
channel_url: zod.z.string().describe("URL identifier of the group channel."),
|
|
55
|
+
custom_type: zod.z.string().describe("Custom type of the channel.").nullable().optional(),
|
|
56
|
+
is_distinct: zod.z.boolean().describe("Whether the channel is distinct.").nullable().optional(),
|
|
57
|
+
is_ephemeral: zod.z.boolean().describe("Whether the channel is ephemeral.").nullable().optional(),
|
|
58
|
+
last_message: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Details of the last message in the channel.").nullable().optional(),
|
|
59
|
+
member_count: zod.z.number().int().describe("Total members in the channel.").nullable().optional(),
|
|
60
|
+
max_length_message: zod.z.number().int().describe("Maximum length of messages in the channel.").nullable().optional(),
|
|
61
|
+
joined_member_count: zod.z.number().int().describe("Number of joined members in the channel.").nullable().optional(),
|
|
62
|
+
unread_mention_count: zod.z.number().int().describe("Number of unread mentions.").nullable().optional(),
|
|
63
|
+
unread_message_count: zod.z.number().int().describe("Number of unread messages.").nullable().optional()
|
|
64
|
+
}).passthrough();
|
|
65
|
+
const SendbirdAiChabotListGroupChannelsOutput = zod.z.object({
|
|
66
|
+
next: zod.z.string().describe("Pagination token for the next page; null if no more results.").nullable().optional(),
|
|
67
|
+
channels: zod.z.array(SendbirdAiChabotListGroupChannels_GroupChannelSchema).describe("List of group channel objects.")
|
|
68
|
+
});
|
|
69
|
+
const sendbirdAiChabotListGroupChannels = require_action.action("SENDBIRD_AI_CHABOT_LIST_GROUP_CHANNELS", {
|
|
70
|
+
slug: "sendbird_ai_chabot-list-group-channels",
|
|
71
|
+
name: "List Group Channels",
|
|
72
|
+
description: "Tool to list group channels. Use when you need to fetch available group channels with filters and pagination.",
|
|
73
|
+
input: SendbirdAiChabotListGroupChannelsInput,
|
|
74
|
+
output: SendbirdAiChabotListGroupChannelsOutput
|
|
75
|
+
});
|
|
76
|
+
//#endregion
|
|
77
|
+
exports.sendbirdAiChabotListGroupChannels = sendbirdAiChabotListGroupChannels;
|
|
78
|
+
|
|
79
|
+
//# sourceMappingURL=list-group-channels.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-group-channels.cjs","names":["z","action"],"sources":["../../src/actions/list-group-channels.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotListGroupChannelsInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"Filter by channel URL.\").optional(),\n name: z.string().describe(\"Filter by exact channel name.\").optional(),\n limit: z.number().int().describe(\"Number of results to return per page (1-100).\").optional(),\n token: z.string().describe(\"Pagination token for the next page.\").optional(),\n query_type: z.enum([\"AND\", \"OR\"]).describe(\"Query type to combine member_user_ids: AND or OR.\").optional(),\n show_empty: z.boolean().describe(\"Include channels with no messages.\").optional(),\n super_mode: z.enum([\"all\", \"super\", \"nonsuper\"]).describe(\"Filter by super channel mode: all, super, or nonsuper.\").optional(),\n custom_type: z.string().describe(\"Filter by a specific custom type.\").optional(),\n public_mode: z.enum([\"all\", \"public\", \"private\"]).describe(\"Filter by public mode: all, public, or private.\").optional(),\n channel_urls: z.array(z.string()).describe(\"Filter by specific channel URLs.\").optional(),\n custom_types: z.array(z.string()).describe(\"Filter by multiple custom types.\").optional(),\n created_after: z.number().int().describe(\"Filter channels created after this timestamp (ms since epoch).\").optional(),\n distinct_mode: z.enum([\"all\", \"distinct\", \"nondistinct\"]).describe(\"Filter by distinct mode: all, distinct, or nondistinct.\").optional(),\n name_contains: z.string().describe(\"Filter by partial channel name match.\").optional(),\n created_before: z.number().int().describe(\"Filter channels created before this timestamp (ms since epoch).\").optional(),\n member_user_ids: z.array(z.string()).describe(\"Filter by members' user IDs.\").optional(),\n members_nickname: z.string().describe(\"Filter by members' nickname.\").optional(),\n members_exactly_in: z.array(z.string()).describe(\"Filter channels where exactly these user IDs are members.\").optional(),\n members_include_in: z.array(z.string()).describe(\"Filter channels including any of these user IDs.\").optional(),\n members_nickname_prefix: z.string().describe(\"Filter by members' nickname prefix.\").optional(),\n}).describe(\"Request model for retrieving a list of group channels with optional filters and pagination.\");\nconst SendbirdAiChabotListGroupChannels_UserModelSchema: z.ZodTypeAny = z.object({\n user_id: z.string().describe(\"User ID.\").nullable().optional(),\n nickname: z.string().describe(\"User nickname.\").nullable().optional(),\n profile_url: z.string().describe(\"User profile URL.\").nullable().optional(),\n}).passthrough();\nconst SendbirdAiChabotListGroupChannels_GroupChannelSchema: z.ZodTypeAny = z.object({\n data: z.string().describe(\"Custom data of the channel.\").nullable().optional(),\n name: z.string().describe(\"Name of the group channel.\").nullable().optional(),\n freeze: z.boolean().describe(\"Whether the channel is frozen.\").nullable().optional(),\n members: z.array(z.record(z.string(), z.unknown())).describe(\"List of channel members.\").nullable().optional(),\n is_super: z.boolean().describe(\"Whether the channel is a super channel.\").nullable().optional(),\n cover_url: z.string().describe(\"Cover image URL of the group channel.\").nullable().optional(),\n is_hidden: z.boolean().describe(\"Whether the channel is hidden.\").nullable().optional(),\n is_public: z.boolean().describe(\"Whether the channel is public.\").nullable().optional(),\n created_at: z.number().int().describe(\"Creation timestamp of the channel (ms since epoch).\").nullable().optional(),\n created_by: SendbirdAiChabotListGroupChannels_UserModelSchema.nullable().optional(),\n channel_url: z.string().describe(\"URL identifier of the group channel.\"),\n custom_type: z.string().describe(\"Custom type of the channel.\").nullable().optional(),\n is_distinct: z.boolean().describe(\"Whether the channel is distinct.\").nullable().optional(),\n is_ephemeral: z.boolean().describe(\"Whether the channel is ephemeral.\").nullable().optional(),\n last_message: z.record(z.string(), z.unknown()).describe(\"Details of the last message in the channel.\").nullable().optional(),\n member_count: z.number().int().describe(\"Total members in the channel.\").nullable().optional(),\n max_length_message: z.number().int().describe(\"Maximum length of messages in the channel.\").nullable().optional(),\n joined_member_count: z.number().int().describe(\"Number of joined members in the channel.\").nullable().optional(),\n unread_mention_count: z.number().int().describe(\"Number of unread mentions.\").nullable().optional(),\n unread_message_count: z.number().int().describe(\"Number of unread messages.\").nullable().optional(),\n}).passthrough();\nexport const SendbirdAiChabotListGroupChannelsOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for the next page; null if no more results.\").nullable().optional(),\n channels: z.array(SendbirdAiChabotListGroupChannels_GroupChannelSchema).describe(\"List of group channel objects.\"),\n});\n\nexport const sendbirdAiChabotListGroupChannels = action(\"SENDBIRD_AI_CHABOT_LIST_GROUP_CHANNELS\", {\n slug: \"sendbird_ai_chabot-list-group-channels\",\n name: \"List Group Channels\",\n description: \"Tool to list group channels. Use when you need to fetch available group channels with filters and pagination.\",\n input: SendbirdAiChabotListGroupChannelsInput,\n output: SendbirdAiChabotListGroupChannelsOutput,\n});\n"],"mappings":"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"}
|