@wildix/xbees-users-client 1.0.48 → 1.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/CreateBotApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/CreateBotCommand.d.ts +2 -1
- package/dist-types/commands/GetBotCommand.d.ts +1 -1
- package/dist-types/commands/ListBotsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBotCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +15 -5
- package/package.json +1 -1
|
@@ -101,6 +101,7 @@ const se_CreateBotCommand = async (input, context) => {
|
|
|
101
101
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
102
102
|
'access': [],
|
|
103
103
|
'callback': _ => se_BotCallback(_, context),
|
|
104
|
+
'category': [],
|
|
104
105
|
'name': [],
|
|
105
106
|
'picture': [],
|
|
106
107
|
'searchable': [],
|
|
@@ -453,6 +454,7 @@ const se_UpdateBotCommand = async (input, context) => {
|
|
|
453
454
|
let body;
|
|
454
455
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
455
456
|
'access': [],
|
|
457
|
+
'category': [],
|
|
456
458
|
'name': [],
|
|
457
459
|
'picture': [],
|
|
458
460
|
'searchable': [],
|
|
@@ -92,6 +92,7 @@ export const se_CreateBotCommand = async (input, context) => {
|
|
|
92
92
|
body = JSON.stringify(take(input, {
|
|
93
93
|
'access': [],
|
|
94
94
|
'callback': _ => se_BotCallback(_, context),
|
|
95
|
+
'category': [],
|
|
95
96
|
'name': [],
|
|
96
97
|
'picture': [],
|
|
97
98
|
'searchable': [],
|
|
@@ -423,6 +424,7 @@ export const se_UpdateBotCommand = async (input, context) => {
|
|
|
423
424
|
let body;
|
|
424
425
|
body = JSON.stringify(take(input, {
|
|
425
426
|
'access': [],
|
|
427
|
+
'category': [],
|
|
426
428
|
'name': [],
|
|
427
429
|
'picture': [],
|
|
428
430
|
'searchable': [],
|
|
@@ -44,11 +44,11 @@ declare const CreateBotApiKeyCommand_base: {
|
|
|
44
44
|
* // { // CreateBotApiKeyOutput
|
|
45
45
|
* // bot: { // Bot
|
|
46
46
|
* // name: "STRING_VALUE", // required
|
|
47
|
+
* // category: "STRING_VALUE",
|
|
47
48
|
* // picture: "STRING_VALUE",
|
|
48
49
|
* // searchable: true || false,
|
|
49
50
|
* // access: "EVERYBODY" || "ORGANIZATION",
|
|
50
51
|
* // id: "STRING_VALUE", // required
|
|
51
|
-
* // category: "STRING_VALUE",
|
|
52
52
|
* // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
|
|
53
53
|
* // integrationApiKeysCount: Number("int"), // required
|
|
54
54
|
* // createdAt: "STRING_VALUE", // required
|
|
@@ -36,6 +36,7 @@ declare const CreateBotCommand_base: {
|
|
|
36
36
|
* const client = new UsersClient(config);
|
|
37
37
|
* const input = { // CreateBotInput
|
|
38
38
|
* name: "STRING_VALUE", // required
|
|
39
|
+
* category: "STRING_VALUE",
|
|
39
40
|
* picture: "STRING_VALUE",
|
|
40
41
|
* searchable: true || false,
|
|
41
42
|
* access: "EVERYBODY" || "ORGANIZATION",
|
|
@@ -145,11 +146,11 @@ declare const CreateBotCommand_base: {
|
|
|
145
146
|
* // { // CreateBotOutput
|
|
146
147
|
* // bot: { // Bot
|
|
147
148
|
* // name: "STRING_VALUE", // required
|
|
149
|
+
* // category: "STRING_VALUE",
|
|
148
150
|
* // picture: "STRING_VALUE",
|
|
149
151
|
* // searchable: true || false,
|
|
150
152
|
* // access: "EVERYBODY" || "ORGANIZATION",
|
|
151
153
|
* // id: "STRING_VALUE", // required
|
|
152
|
-
* // category: "STRING_VALUE",
|
|
153
154
|
* // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
|
|
154
155
|
* // integrationApiKeysCount: Number("int"), // required
|
|
155
156
|
* // createdAt: "STRING_VALUE", // required
|
|
@@ -43,11 +43,11 @@ declare const GetBotCommand_base: {
|
|
|
43
43
|
* // { // GetBotOutput
|
|
44
44
|
* // bot: { // Bot
|
|
45
45
|
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // category: "STRING_VALUE",
|
|
46
47
|
* // picture: "STRING_VALUE",
|
|
47
48
|
* // searchable: true || false,
|
|
48
49
|
* // access: "EVERYBODY" || "ORGANIZATION",
|
|
49
50
|
* // id: "STRING_VALUE", // required
|
|
50
|
-
* // category: "STRING_VALUE",
|
|
51
51
|
* // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
|
|
52
52
|
* // integrationApiKeysCount: Number("int"), // required
|
|
53
53
|
* // createdAt: "STRING_VALUE", // required
|
|
@@ -43,11 +43,11 @@ declare const ListBotsCommand_base: {
|
|
|
43
43
|
* // bots: [ // BotList // required
|
|
44
44
|
* // { // Bot
|
|
45
45
|
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // category: "STRING_VALUE",
|
|
46
47
|
* // picture: "STRING_VALUE",
|
|
47
48
|
* // searchable: true || false,
|
|
48
49
|
* // access: "EVERYBODY" || "ORGANIZATION",
|
|
49
50
|
* // id: "STRING_VALUE", // required
|
|
50
|
-
* // category: "STRING_VALUE",
|
|
51
51
|
* // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
|
|
52
52
|
* // integrationApiKeysCount: Number("int"), // required
|
|
53
53
|
* // createdAt: "STRING_VALUE", // required
|
|
@@ -36,6 +36,7 @@ declare const UpdateBotCommand_base: {
|
|
|
36
36
|
* const client = new UsersClient(config);
|
|
37
37
|
* const input = { // UpdateBotInput
|
|
38
38
|
* name: "STRING_VALUE", // required
|
|
39
|
+
* category: "STRING_VALUE",
|
|
39
40
|
* picture: "STRING_VALUE",
|
|
40
41
|
* searchable: true || false,
|
|
41
42
|
* access: "EVERYBODY" || "ORGANIZATION",
|
|
@@ -47,11 +48,11 @@ declare const UpdateBotCommand_base: {
|
|
|
47
48
|
* // { // UpdateBotOutput
|
|
48
49
|
* // bot: { // Bot
|
|
49
50
|
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // category: "STRING_VALUE",
|
|
50
52
|
* // picture: "STRING_VALUE",
|
|
51
53
|
* // searchable: true || false,
|
|
52
54
|
* // access: "EVERYBODY" || "ORGANIZATION",
|
|
53
55
|
* // id: "STRING_VALUE", // required
|
|
54
|
-
* // category: "STRING_VALUE",
|
|
55
56
|
* // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
|
|
56
57
|
* // integrationApiKeysCount: Number("int"), // required
|
|
57
58
|
* // createdAt: "STRING_VALUE", // required
|
|
@@ -554,6 +554,11 @@ export type BotIntegrationType = typeof BotIntegrationType[keyof typeof BotInteg
|
|
|
554
554
|
*/
|
|
555
555
|
export interface Bot {
|
|
556
556
|
name: string;
|
|
557
|
+
/**
|
|
558
|
+
* Category of the bot
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
category?: string | undefined;
|
|
557
562
|
/**
|
|
558
563
|
* A link to the bot picture.
|
|
559
564
|
* @public
|
|
@@ -570,11 +575,6 @@ export interface Bot {
|
|
|
570
575
|
*/
|
|
571
576
|
access?: BotAccess | undefined;
|
|
572
577
|
id: string;
|
|
573
|
-
/**
|
|
574
|
-
* Category of the bot
|
|
575
|
-
* @public
|
|
576
|
-
*/
|
|
577
|
-
category?: string | undefined;
|
|
578
578
|
integrationType: BotIntegrationType;
|
|
579
579
|
integrationApiKeysCount: number;
|
|
580
580
|
createdAt: string;
|
|
@@ -1103,6 +1103,11 @@ export declare class UserNotFoundException extends __BaseException {
|
|
|
1103
1103
|
*/
|
|
1104
1104
|
export interface CreateBotInput {
|
|
1105
1105
|
name: string;
|
|
1106
|
+
/**
|
|
1107
|
+
* Category of the bot
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
1110
|
+
category?: string | undefined;
|
|
1106
1111
|
/**
|
|
1107
1112
|
* A link to the bot picture.
|
|
1108
1113
|
* @public
|
|
@@ -1607,6 +1612,11 @@ export interface ToggleUnreadEmailNotificationsSubscriptionOutput {
|
|
|
1607
1612
|
*/
|
|
1608
1613
|
export interface UpdateBotInput {
|
|
1609
1614
|
name: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* Category of the bot
|
|
1617
|
+
* @public
|
|
1618
|
+
*/
|
|
1619
|
+
category?: string | undefined;
|
|
1610
1620
|
/**
|
|
1611
1621
|
* A link to the bot picture.
|
|
1612
1622
|
* @public
|
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.
|
|
4
|
+
"version": "1.0.49",
|
|
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",
|