@wildix/xbees-users-client 1.0.47 → 1.0.48

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.
@@ -48,6 +48,7 @@ declare const CreateBotApiKeyCommand_base: {
48
48
  * // searchable: true || false,
49
49
  * // access: "EVERYBODY" || "ORGANIZATION",
50
50
  * // id: "STRING_VALUE", // required
51
+ * // category: "STRING_VALUE",
51
52
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
52
53
  * // integrationApiKeysCount: Number("int"), // required
53
54
  * // createdAt: "STRING_VALUE", // required
@@ -149,6 +149,7 @@ declare const CreateBotCommand_base: {
149
149
  * // searchable: true || false,
150
150
  * // access: "EVERYBODY" || "ORGANIZATION",
151
151
  * // id: "STRING_VALUE", // required
152
+ * // category: "STRING_VALUE",
152
153
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
153
154
  * // integrationApiKeysCount: Number("int"), // required
154
155
  * // createdAt: "STRING_VALUE", // required
@@ -47,6 +47,7 @@ declare const GetBotCommand_base: {
47
47
  * // searchable: true || false,
48
48
  * // access: "EVERYBODY" || "ORGANIZATION",
49
49
  * // id: "STRING_VALUE", // required
50
+ * // category: "STRING_VALUE",
50
51
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
51
52
  * // integrationApiKeysCount: Number("int"), // required
52
53
  * // createdAt: "STRING_VALUE", // required
@@ -47,6 +47,7 @@ declare const ListBotsCommand_base: {
47
47
  * // searchable: true || false,
48
48
  * // access: "EVERYBODY" || "ORGANIZATION",
49
49
  * // id: "STRING_VALUE", // required
50
+ * // category: "STRING_VALUE",
50
51
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
51
52
  * // integrationApiKeysCount: Number("int"), // required
52
53
  * // createdAt: "STRING_VALUE", // required
@@ -51,6 +51,7 @@ declare const UpdateBotCommand_base: {
51
51
  * // searchable: true || false,
52
52
  * // access: "EVERYBODY" || "ORGANIZATION",
53
53
  * // id: "STRING_VALUE", // required
54
+ * // category: "STRING_VALUE",
54
55
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
55
56
  * // integrationApiKeysCount: Number("int"), // required
56
57
  * // createdAt: "STRING_VALUE", // required
@@ -570,6 +570,11 @@ export interface Bot {
570
570
  */
571
571
  access?: BotAccess | undefined;
572
572
  id: string;
573
+ /**
574
+ * Category of the bot
575
+ * @public
576
+ */
577
+ category?: string | undefined;
573
578
  integrationType: BotIntegrationType;
574
579
  integrationApiKeysCount: number;
575
580
  createdAt: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/xbees-users-client",
3
3
  "description": "@wildix/xbees-users-client client",
4
- "version": "1.0.47",
4
+ "version": "1.0.48",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",