@keystrokehq/sendbird_ai_chabot 0.1.0 → 0.1.3

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 (57) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/create-bot.cjs +8 -8
  4. package/dist/actions/create-bot.cjs.map +1 -1
  5. package/dist/actions/create-bot.d.cts +40 -3
  6. package/dist/actions/create-bot.d.cts.map +1 -1
  7. package/dist/actions/create-bot.d.mts +40 -3
  8. package/dist/actions/create-bot.d.mts.map +1 -1
  9. package/dist/actions/create-bot.mjs +8 -8
  10. package/dist/actions/create-bot.mjs.map +1 -1
  11. package/dist/actions/get-bot.cjs +6 -6
  12. package/dist/actions/get-bot.cjs.map +1 -1
  13. package/dist/actions/get-bot.d.cts +19 -3
  14. package/dist/actions/get-bot.d.cts.map +1 -1
  15. package/dist/actions/get-bot.d.mts +19 -3
  16. package/dist/actions/get-bot.d.mts.map +1 -1
  17. package/dist/actions/get-bot.mjs +6 -6
  18. package/dist/actions/get-bot.mjs.map +1 -1
  19. package/dist/actions/list-bots.cjs +5 -5
  20. package/dist/actions/list-bots.cjs.map +1 -1
  21. package/dist/actions/list-bots.d.cts +28 -3
  22. package/dist/actions/list-bots.d.cts.map +1 -1
  23. package/dist/actions/list-bots.d.mts +28 -3
  24. package/dist/actions/list-bots.d.mts.map +1 -1
  25. package/dist/actions/list-bots.mjs +5 -5
  26. package/dist/actions/list-bots.mjs.map +1 -1
  27. package/dist/actions/list-group-channels.cjs +2 -2
  28. package/dist/actions/list-group-channels.cjs.map +1 -1
  29. package/dist/actions/list-group-channels.d.cts +88 -3
  30. package/dist/actions/list-group-channels.d.cts.map +1 -1
  31. package/dist/actions/list-group-channels.d.mts +88 -3
  32. package/dist/actions/list-group-channels.d.mts.map +1 -1
  33. package/dist/actions/list-group-channels.mjs +2 -2
  34. package/dist/actions/list-group-channels.mjs.map +1 -1
  35. package/dist/actions/unregister-bot-webhook.cjs +2 -2
  36. package/dist/actions/unregister-bot-webhook.cjs.map +1 -1
  37. package/dist/actions/unregister-bot-webhook.d.cts +10 -3
  38. package/dist/actions/unregister-bot-webhook.d.cts.map +1 -1
  39. package/dist/actions/unregister-bot-webhook.d.mts +10 -3
  40. package/dist/actions/unregister-bot-webhook.d.mts.map +1 -1
  41. package/dist/actions/unregister-bot-webhook.mjs +2 -2
  42. package/dist/actions/unregister-bot-webhook.mjs.map +1 -1
  43. package/dist/actions/update-bot.cjs +4 -4
  44. package/dist/actions/update-bot.cjs.map +1 -1
  45. package/dist/actions/update-bot.d.cts +32 -3
  46. package/dist/actions/update-bot.d.cts.map +1 -1
  47. package/dist/actions/update-bot.d.mts +32 -3
  48. package/dist/actions/update-bot.d.mts.map +1 -1
  49. package/dist/actions/update-bot.mjs +4 -4
  50. package/dist/actions/update-bot.mjs.map +1 -1
  51. package/dist/catalog.cjs +13 -1
  52. package/dist/catalog.cjs.map +1 -1
  53. package/dist/catalog.d.cts +12 -0
  54. package/dist/catalog.d.mts +12 -0
  55. package/dist/catalog.mjs +13 -1
  56. package/dist/catalog.mjs.map +1 -1
  57. package/package.json +2 -2
@@ -1,9 +1,38 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/update-bot.d.ts
4
- declare const SendbirdAiChabotUpdateBotInput: z.ZodTypeAny;
5
- declare const SendbirdAiChabotUpdateBotOutput: z.ZodTypeAny;
6
- declare const sendbirdAiChabotUpdateBot: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SendbirdAiChabotUpdateBotInput: z.ZodObject<{
5
+ bot_id: z.ZodString;
6
+ bot_userid: z.ZodOptional<z.ZodString>;
7
+ bot_nickname: z.ZodOptional<z.ZodString>;
8
+ bot_profile_url: z.ZodOptional<z.ZodString>;
9
+ is_privacy_mode: z.ZodOptional<z.ZodBoolean>;
10
+ enable_mark_as_read: z.ZodOptional<z.ZodBoolean>;
11
+ }, z.core.$strip>;
12
+ declare const SendbirdAiChabotUpdateBotOutput: z.ZodObject<{
13
+ bot: z.ZodNullable<z.ZodObject<{
14
+ bot_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ bot_token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ bot_userid: z.ZodNullable<z.ZodString>;
17
+ bot_metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
18
+ bot_nickname: z.ZodNullable<z.ZodString>;
19
+ bot_profile_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ }, z.core.$loose>>;
21
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22
+ show_member: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
23
+ is_privacy_mode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
24
+ bot_callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
+ enable_mark_as_read: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
26
+ channel_invitation_preference: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
27
+ }, z.core.$loose>;
28
+ declare const sendbirdAiChabotUpdateBot: import("@keystrokehq/action").WorkflowActionDefinition<{
29
+ bot_id: string;
30
+ bot_userid?: string | undefined;
31
+ bot_nickname?: string | undefined;
32
+ bot_profile_url?: string | undefined;
33
+ is_privacy_mode?: boolean | undefined;
34
+ enable_mark_as_read?: boolean | undefined;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
36
  //#endregion
8
37
  export { sendbirdAiChabotUpdateBot };
9
38
  //# sourceMappingURL=update-bot.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-bot.d.mts","names":[],"sources":["../../src/actions/update-bot.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAOW;AAAA,cAS7C,+BAAA,EAAiC,CAAA,CAAE,UAQK;AAAA,cAExC,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"update-bot.d.mts","names":[],"sources":["../../src/actions/update-bot.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;cAgB9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA"}
@@ -12,11 +12,11 @@ const SendbirdAiChabotUpdateBotInput = z.object({
12
12
  const SendbirdAiChabotUpdateBot_BotInfoSchema = z.object({
13
13
  bot_type: z.string().describe("The type of the bot").nullable().optional(),
14
14
  bot_token: z.string().describe("Access token for the bot").nullable().optional(),
15
- bot_userid: z.string().describe("The user ID of the bot"),
15
+ bot_userid: z.string().describe("The user ID of the bot").nullable(),
16
16
  bot_metadata: z.record(z.string(), z.unknown()).describe("Custom metadata object for the bot").nullable().optional(),
17
- bot_nickname: z.string().describe("The nickname of the bot"),
17
+ bot_nickname: z.string().describe("The nickname of the bot").nullable(),
18
18
  bot_profile_url: z.string().describe("The profile image URL of the bot").nullable().optional()
19
- }).describe("Inner bot information object.");
19
+ }).passthrough().describe("Inner bot information object.");
20
20
  const sendbirdAiChabotUpdateBot = action("SENDBIRD_AI_CHABOT_UPDATE_BOT", {
21
21
  slug: "sendbird_ai_chabot-update-bot",
22
22
  name: "Update Bot",
@@ -30,7 +30,7 @@ const sendbirdAiChabotUpdateBot = action("SENDBIRD_AI_CHABOT_UPDATE_BOT", {
30
30
  bot_callback_url: z.string().describe("The callback URL of the bot").nullable().optional(),
31
31
  enable_mark_as_read: z.boolean().describe("Whether mark as read is enabled").nullable().optional(),
32
32
  channel_invitation_preference: z.number().int().describe("Channel invitation preference setting").nullable().optional()
33
- }).describe("Response structure for update bot API.")
33
+ }).passthrough().describe("Response structure for update bot API.")
34
34
  });
35
35
  //#endregion
36
36
  export { sendbirdAiChabotUpdateBot };
@@ -1 +1 @@
1
- {"version":3,"file":"update-bot.mjs","names":[],"sources":["../../src/actions/update-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotUpdateBotInput: z.ZodTypeAny = z.object({\n bot_id: z.string().describe(\"The unique ID of the bot to update\"),\n bot_userid: z.string().describe(\"Specifies a new user ID for the bot\").optional(),\n bot_nickname: z.string().describe(\"Specifies a new nickname for the bot\").optional(),\n bot_profile_url: z.string().describe(\"Specifies a new profile image URL for the bot\").optional(),\n is_privacy_mode: z.boolean().describe(\"Determines bot privacy mode\").optional(),\n enable_mark_as_read: z.boolean().describe(\"Determines whether the bot marks messages as read\").optional(),\n}).describe(\"Request schema for updating a Sendbird bot.\");\nconst SendbirdAiChabotUpdateBot_BotInfoSchema: z.ZodTypeAny = z.object({\n bot_type: z.string().describe(\"The type of the bot\").nullable().optional(),\n bot_token: z.string().describe(\"Access token for the bot\").nullable().optional(),\n bot_userid: z.string().describe(\"The user ID of 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(\"The nickname of the bot\"),\n bot_profile_url: z.string().describe(\"The profile image URL of the bot\").nullable().optional(),\n}).describe(\"Inner bot information object.\");\nexport const SendbirdAiChabotUpdateBotOutput: z.ZodTypeAny = z.object({\n bot: SendbirdAiChabotUpdateBot_BotInfoSchema.nullable(),\n created_at: z.number().int().describe(\"Creation timestamp in UNIX epoch\").nullable().optional(),\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 privacy mode is enabled\").nullable().optional(),\n bot_callback_url: z.string().describe(\"The callback URL of the bot\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether mark as read is enabled\").nullable().optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation preference setting\").nullable().optional(),\n}).describe(\"Response structure for update bot API.\");\n\nexport const sendbirdAiChabotUpdateBot = action(\"SENDBIRD_AI_CHABOT_UPDATE_BOT\", {\n slug: \"sendbird_ai_chabot-update-bot\",\n name: \"Update Bot\",\n description: \"Tool to update information on an existing bot. Use when you need to change a bot's user ID, nickname, profile image URL, or toggle read-receipt or privacy settings after creation. Run after confirming the bot ID.\",\n input: SendbirdAiChabotUpdateBotInput,\n output: SendbirdAiChabotUpdateBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+C,EAAE,OAAO;CACnE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACnF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC/F,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAC9E,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,0CAAwD,EAAE,OAAO;CACrE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACxD,cAAc,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CAC3D,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,+BAA+B;AAW3C,MAAa,4BAA4B,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAf2D,EAAE,OAAO;EACpE,KAAK,wCAAwC,SAAS;EACtD,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtG,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzF,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,+BAA+B,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,CAAC,CAAC,CAAC,SAAS,wCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"update-bot.mjs","names":[],"sources":["../../src/actions/update-bot.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendbirdAiChabotUpdateBotInput = z.object({\n bot_id: z.string().describe(\"The unique ID of the bot to update\"),\n bot_userid: z.string().describe(\"Specifies a new user ID for the bot\").optional(),\n bot_nickname: z.string().describe(\"Specifies a new nickname for the bot\").optional(),\n bot_profile_url: z.string().describe(\"Specifies a new profile image URL for the bot\").optional(),\n is_privacy_mode: z.boolean().describe(\"Determines bot privacy mode\").optional(),\n enable_mark_as_read: z.boolean().describe(\"Determines whether the bot marks messages as read\").optional(),\n}).describe(\"Request schema for updating a Sendbird bot.\");\nconst SendbirdAiChabotUpdateBot_BotInfoSchema = z.object({\n bot_type: z.string().describe(\"The type of the bot\").nullable().optional(),\n bot_token: z.string().describe(\"Access token for the bot\").nullable().optional(),\n bot_userid: z.string().describe(\"The user ID of the bot\").nullable(),\n bot_metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata object for the bot\").nullable().optional(),\n bot_nickname: z.string().describe(\"The nickname of the bot\").nullable(),\n bot_profile_url: z.string().describe(\"The profile image URL of the bot\").nullable().optional(),\n}).passthrough().describe(\"Inner bot information object.\");\nexport const SendbirdAiChabotUpdateBotOutput = z.object({\n bot: SendbirdAiChabotUpdateBot_BotInfoSchema.nullable(),\n created_at: z.number().int().describe(\"Creation timestamp in UNIX epoch\").nullable().optional(),\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 privacy mode is enabled\").nullable().optional(),\n bot_callback_url: z.string().describe(\"The callback URL of the bot\").nullable().optional(),\n enable_mark_as_read: z.boolean().describe(\"Whether mark as read is enabled\").nullable().optional(),\n channel_invitation_preference: z.number().int().describe(\"Channel invitation preference setting\").nullable().optional(),\n}).passthrough().describe(\"Response structure for update bot API.\");\n\nexport const sendbirdAiChabotUpdateBot = action(\"SENDBIRD_AI_CHABOT_UPDATE_BOT\", {\n slug: \"sendbird_ai_chabot-update-bot\",\n name: \"Update Bot\",\n description: \"Tool to update information on an existing bot. Use when you need to change a bot's user ID, nickname, profile image URL, or toggle read-receipt or privacy settings after creation. Run after confirming the bot ID.\",\n input: SendbirdAiChabotUpdateBotInput,\n output: SendbirdAiChabotUpdateBotOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO;CACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACnF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC/F,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAC9E,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,0CAA0C,EAAE,OAAO;CACvD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACnE,cAAc,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CACtE,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+BAA+B;AAWzD,MAAa,4BAA4B,OAAO,iCAAiC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAf6C,EAAE,OAAO;EACtD,KAAK,wCAAwC,SAAS;EACtD,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtG,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzF,qBAAqB,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,+BAA+B,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,19 @@ const sendbirdAiChabotCatalog = {
7
7
  "category": "AI Chatbots",
8
8
  "logo": "https://logos.composio.dev/api/sendbird_ai_chabot",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "subdomain": {
13
+ "label": "Application ID",
14
+ "description": "The unique identifier for your Sendbird application."
15
+ },
16
+ "api_key": {
17
+ "label": "Sendbird API Token",
18
+ "secret": true,
19
+ "description": "The API token for authenticating requests to the Sendbird AI Chatbot API."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  exports.sendbirdAiChabotCatalog = sendbirdAiChabotCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendbirdAiChabotCatalog = {\n \"slug\": \"sendbird_ai_chabot\",\n \"name\": \"Sendbird AI Chatbot\",\n \"description\": \"Sendbird's AI Chatbot enables businesses to integrate intelligent, automated conversational agents into their applications, enhancing customer engagement and support.\",\n \"category\": \"AI Chatbots\",\n \"logo\": \"https://logos.composio.dev/api/sendbird_ai_chabot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,0BAA0B;CACrC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendbirdAiChabotCatalog = {\n \"slug\": \"sendbird_ai_chabot\",\n \"name\": \"Sendbird AI Chatbot\",\n \"description\": \"Sendbird's AI Chatbot enables businesses to integrate intelligent, automated conversational agents into their applications, enhancing customer engagement and support.\",\n \"category\": \"AI Chatbots\",\n \"logo\": \"https://logos.composio.dev/api/sendbird_ai_chabot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Application ID\",\n \"description\": \"The unique identifier for your Sendbird application.\"\n },\n \"api_key\": {\n \"label\": \"Sendbird API Token\",\n \"secret\": true,\n \"description\": \"The API token for authenticating requests to the Sendbird AI Chatbot API.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,0BAA0B;CACrC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,18 @@ declare const sendbirdAiChabotCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/sendbird_ai_chabot";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly subdomain: {
13
+ readonly label: "Application ID";
14
+ readonly description: "The unique identifier for your Sendbird application.";
15
+ };
16
+ readonly api_key: {
17
+ readonly label: "Sendbird API Token";
18
+ readonly secret: true;
19
+ readonly description: "The API token for authenticating requests to the Sendbird AI Chatbot API.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { sendbirdAiChabotCatalog };
@@ -8,6 +8,18 @@ declare const sendbirdAiChabotCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/sendbird_ai_chabot";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly subdomain: {
13
+ readonly label: "Application ID";
14
+ readonly description: "The unique identifier for your Sendbird application.";
15
+ };
16
+ readonly api_key: {
17
+ readonly label: "Sendbird API Token";
18
+ readonly secret: true;
19
+ readonly description: "The API token for authenticating requests to the Sendbird AI Chatbot API.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { sendbirdAiChabotCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,19 @@ const sendbirdAiChabotCatalog = {
7
7
  "category": "AI Chatbots",
8
8
  "logo": "https://logos.composio.dev/api/sendbird_ai_chabot",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "subdomain": {
13
+ "label": "Application ID",
14
+ "description": "The unique identifier for your Sendbird application."
15
+ },
16
+ "api_key": {
17
+ "label": "Sendbird API Token",
18
+ "secret": true,
19
+ "description": "The API token for authenticating requests to the Sendbird AI Chatbot API."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  export { sendbirdAiChabotCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendbirdAiChabotCatalog = {\n \"slug\": \"sendbird_ai_chabot\",\n \"name\": \"Sendbird AI Chatbot\",\n \"description\": \"Sendbird's AI Chatbot enables businesses to integrate intelligent, automated conversational agents into their applications, enhancing customer engagement and support.\",\n \"category\": \"AI Chatbots\",\n \"logo\": \"https://logos.composio.dev/api/sendbird_ai_chabot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,0BAA0B;CACrC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendbirdAiChabotCatalog = {\n \"slug\": \"sendbird_ai_chabot\",\n \"name\": \"Sendbird AI Chatbot\",\n \"description\": \"Sendbird's AI Chatbot enables businesses to integrate intelligent, automated conversational agents into their applications, enhancing customer engagement and support.\",\n \"category\": \"AI Chatbots\",\n \"logo\": \"https://logos.composio.dev/api/sendbird_ai_chabot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Application ID\",\n \"description\": \"The unique identifier for your Sendbird application.\"\n },\n \"api_key\": {\n \"label\": \"Sendbird API Token\",\n \"secret\": true,\n \"description\": \"The API token for authenticating requests to the Sendbird AI Chatbot API.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,0BAA0B;CACrC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/sendbird_ai_chabot",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {