@wildix/xbees-users-client 1.0.35 → 1.0.37
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/Users.js +14 -0
- package/dist-cjs/commands/BatchGetUsersEmailNotificationsSettingsCommand.js +21 -0
- package/dist-cjs/commands/GetUserEmailNotificationsSettingsCommand.js +21 -0
- package/dist-cjs/commands/IntelligenceSearchCommand.js +21 -0
- package/dist-cjs/commands/PartialUpdateUserEmailNotificationsSettingsCommand.js +21 -0
- package/dist-cjs/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.js +21 -0
- package/dist-cjs/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.js +21 -0
- package/dist-cjs/commands/UpdateUserEmailNotificationsSettingsCommand.js +21 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +216 -2
- package/dist-es/Users.js +14 -0
- package/dist-es/commands/BatchGetUsersEmailNotificationsSettingsCommand.js +17 -0
- package/dist-es/commands/GetUserEmailNotificationsSettingsCommand.js +17 -0
- package/dist-es/commands/IntelligenceSearchCommand.js +17 -0
- package/dist-es/commands/PartialUpdateUserEmailNotificationsSettingsCommand.js +17 -0
- package/dist-es/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.js +17 -0
- package/dist-es/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.js +17 -0
- package/dist-es/commands/UpdateUserEmailNotificationsSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +200 -0
- package/dist-types/Users.d.ts +49 -0
- package/dist-types/UsersClient.d.ts +9 -2
- package/dist-types/commands/BatchGetUsersEmailNotificationsSettingsCommand.d.ts +71 -0
- package/dist-types/commands/GetUserEmailNotificationsSettingsCommand.d.ts +69 -0
- package/dist-types/commands/IntelligenceSearchCommand.d.ts +73 -0
- package/dist-types/commands/PartialUpdateUserEmailNotificationsSettingsCommand.d.ts +69 -0
- package/dist-types/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.d.ts +63 -0
- package/dist-types/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.d.ts +63 -0
- package/dist-types/commands/UpdateUserEmailNotificationsSettingsCommand.d.ts +69 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +162 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/package.json +5 -5
|
@@ -214,6 +214,37 @@ export interface BatchGetUsersOutput {
|
|
|
214
214
|
*/
|
|
215
215
|
users: (User)[];
|
|
216
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
export interface BatchGetUsersEmailNotificationsSettingsInput {
|
|
221
|
+
/**
|
|
222
|
+
* List of the unique identifier of the user
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
usersIds: (string)[];
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
export interface UserEmailNotificationsSettings {
|
|
231
|
+
/**
|
|
232
|
+
* A flag that indicates whether the system should send email notifications about unread messages.
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
unread: boolean;
|
|
236
|
+
/**
|
|
237
|
+
* A flag that indicates whether the system should send email notifications about AI transcription.
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
transcription: boolean;
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export interface BatchGetUsersEmailNotificationsSettingsOutput {
|
|
246
|
+
notifications: Record<string, UserEmailNotificationsSettings>;
|
|
247
|
+
}
|
|
217
248
|
/**
|
|
218
249
|
* @public
|
|
219
250
|
*/
|
|
@@ -967,6 +998,15 @@ export interface DeleteBotApiKeyInput {
|
|
|
967
998
|
*/
|
|
968
999
|
export interface DeleteBotApiKeyOutput {
|
|
969
1000
|
}
|
|
1001
|
+
/**
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
1004
|
+
export interface DirectoryItem {
|
|
1005
|
+
extension: string;
|
|
1006
|
+
name: string;
|
|
1007
|
+
department?: string;
|
|
1008
|
+
group?: string;
|
|
1009
|
+
}
|
|
970
1010
|
/**
|
|
971
1011
|
* @public
|
|
972
1012
|
*/
|
|
@@ -1009,6 +1049,22 @@ export interface GetUserInput {
|
|
|
1009
1049
|
export interface GetUserOutput {
|
|
1010
1050
|
user: User;
|
|
1011
1051
|
}
|
|
1052
|
+
/**
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
export interface GetUserEmailNotificationsSettingsInput {
|
|
1056
|
+
/**
|
|
1057
|
+
* The unique identifier of the user (Cloud ID, not ID of the user on PBX).
|
|
1058
|
+
* @public
|
|
1059
|
+
*/
|
|
1060
|
+
userId: string;
|
|
1061
|
+
}
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
*/
|
|
1065
|
+
export interface GetUserEmailNotificationsSettingsOutput {
|
|
1066
|
+
notifications: UserEmailNotificationsSettings;
|
|
1067
|
+
}
|
|
1012
1068
|
/**
|
|
1013
1069
|
* @public
|
|
1014
1070
|
*/
|
|
@@ -1080,6 +1136,28 @@ export interface GetUserPbxLinkSuggestionV1Output {
|
|
|
1080
1136
|
*/
|
|
1081
1137
|
suggestion?: UserPbxLinkSuggestion;
|
|
1082
1138
|
}
|
|
1139
|
+
/**
|
|
1140
|
+
* @public
|
|
1141
|
+
*/
|
|
1142
|
+
export interface IntelligenceSearchInput {
|
|
1143
|
+
/**
|
|
1144
|
+
* The unique identifier of the tenant when a service token is used. Only for s2s auth
|
|
1145
|
+
* @public
|
|
1146
|
+
*/
|
|
1147
|
+
company?: string;
|
|
1148
|
+
search: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* Optional extension to exclude from search results. Used to prevent returning the caller's own record when searching.
|
|
1151
|
+
* @public
|
|
1152
|
+
*/
|
|
1153
|
+
excludeExtension?: string;
|
|
1154
|
+
}
|
|
1155
|
+
/**
|
|
1156
|
+
* @public
|
|
1157
|
+
*/
|
|
1158
|
+
export interface IntelligenceSearchOutput {
|
|
1159
|
+
items: (DirectoryItem)[];
|
|
1160
|
+
}
|
|
1083
1161
|
/**
|
|
1084
1162
|
* @public
|
|
1085
1163
|
*/
|
|
@@ -1105,6 +1183,32 @@ export interface ListBotsInput {
|
|
|
1105
1183
|
export interface ListBotsOutput {
|
|
1106
1184
|
bots: (Bot)[];
|
|
1107
1185
|
}
|
|
1186
|
+
/**
|
|
1187
|
+
* @public
|
|
1188
|
+
*/
|
|
1189
|
+
export interface PartialUpdateUserEmailNotificationsSettingsInput {
|
|
1190
|
+
/**
|
|
1191
|
+
* A flag that indicates whether the system should send email notifications about unread messages.
|
|
1192
|
+
* @public
|
|
1193
|
+
*/
|
|
1194
|
+
unread?: boolean;
|
|
1195
|
+
/**
|
|
1196
|
+
* A flag that indicates whether the system should send email notifications about AI transcription.
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1199
|
+
transcription?: boolean;
|
|
1200
|
+
/**
|
|
1201
|
+
* The unique identifier of the user (Cloud ID, not ID of the user on PBX).
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
userId: string;
|
|
1205
|
+
}
|
|
1206
|
+
/**
|
|
1207
|
+
* @public
|
|
1208
|
+
*/
|
|
1209
|
+
export interface PartialUpdateUserEmailNotificationsSettingsOutput {
|
|
1210
|
+
notifications: UserEmailNotificationsSettings;
|
|
1211
|
+
}
|
|
1108
1212
|
/**
|
|
1109
1213
|
* @public
|
|
1110
1214
|
*/
|
|
@@ -1270,6 +1374,38 @@ export interface QueryUsersOutput {
|
|
|
1270
1374
|
*/
|
|
1271
1375
|
users: (User)[];
|
|
1272
1376
|
}
|
|
1377
|
+
/**
|
|
1378
|
+
* @public
|
|
1379
|
+
*/
|
|
1380
|
+
export interface ToggleTranscriptionEmailNotificationsSubscriptionInput {
|
|
1381
|
+
unsubscribeToken: string;
|
|
1382
|
+
/**
|
|
1383
|
+
* A flag that indicates whether the system should send email notifications about AI transcription.
|
|
1384
|
+
* @public
|
|
1385
|
+
*/
|
|
1386
|
+
subscribe: boolean;
|
|
1387
|
+
}
|
|
1388
|
+
/**
|
|
1389
|
+
* @public
|
|
1390
|
+
*/
|
|
1391
|
+
export interface ToggleTranscriptionEmailNotificationsSubscriptionOutput {
|
|
1392
|
+
}
|
|
1393
|
+
/**
|
|
1394
|
+
* @public
|
|
1395
|
+
*/
|
|
1396
|
+
export interface ToggleUnreadEmailNotificationsSubscriptionInput {
|
|
1397
|
+
unsubscribeToken: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* A flag that indicates whether the system should send email notifications about unread messages.
|
|
1400
|
+
* @public
|
|
1401
|
+
*/
|
|
1402
|
+
subscribe: boolean;
|
|
1403
|
+
}
|
|
1404
|
+
/**
|
|
1405
|
+
* @public
|
|
1406
|
+
*/
|
|
1407
|
+
export interface ToggleUnreadEmailNotificationsSubscriptionOutput {
|
|
1408
|
+
}
|
|
1273
1409
|
/**
|
|
1274
1410
|
* @public
|
|
1275
1411
|
*/
|
|
@@ -1300,6 +1436,32 @@ export interface UpdateBotCallbackInput {
|
|
|
1300
1436
|
export interface UpdateBotCallbackOutput {
|
|
1301
1437
|
callback: BotCallback;
|
|
1302
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* @public
|
|
1441
|
+
*/
|
|
1442
|
+
export interface UpdateUserEmailNotificationsSettingsInput {
|
|
1443
|
+
/**
|
|
1444
|
+
* A flag that indicates whether the system should send email notifications about unread messages.
|
|
1445
|
+
* @public
|
|
1446
|
+
*/
|
|
1447
|
+
unread?: boolean;
|
|
1448
|
+
/**
|
|
1449
|
+
* A flag that indicates whether the system should send email notifications about AI transcription.
|
|
1450
|
+
* @public
|
|
1451
|
+
*/
|
|
1452
|
+
transcription?: boolean;
|
|
1453
|
+
/**
|
|
1454
|
+
* The unique identifier of the user (Cloud ID, not ID of the user on PBX).
|
|
1455
|
+
* @public
|
|
1456
|
+
*/
|
|
1457
|
+
userId: string;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
export interface UpdateUserEmailNotificationsSettingsOutput {
|
|
1463
|
+
notifications: UserEmailNotificationsSettings;
|
|
1464
|
+
}
|
|
1303
1465
|
/**
|
|
1304
1466
|
* @public
|
|
1305
1467
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { BatchGetUsersCommandInput, BatchGetUsersCommandOutput } from "../commands/BatchGetUsersCommand";
|
|
2
|
+
import { BatchGetUsersEmailNotificationsSettingsCommandInput, BatchGetUsersEmailNotificationsSettingsCommandOutput } from "../commands/BatchGetUsersEmailNotificationsSettingsCommand";
|
|
2
3
|
import { BatchGetUsersPbxLinkDataCommandInput, BatchGetUsersPbxLinkDataCommandOutput } from "../commands/BatchGetUsersPbxLinkDataCommand";
|
|
3
4
|
import { BatchGetUsersPbxLinkDataV1CommandInput, BatchGetUsersPbxLinkDataV1CommandOutput } from "../commands/BatchGetUsersPbxLinkDataV1Command";
|
|
4
5
|
import { ChangeUserEmailCommandInput, ChangeUserEmailCommandOutput } from "../commands/ChangeUserEmailCommand";
|
|
@@ -10,16 +11,22 @@ import { DeleteBotCommandInput, DeleteBotCommandOutput } from "../commands/Delet
|
|
|
10
11
|
import { GetBotCallbackCommandInput, GetBotCallbackCommandOutput } from "../commands/GetBotCallbackCommand";
|
|
11
12
|
import { GetBotCommandInput, GetBotCommandOutput } from "../commands/GetBotCommand";
|
|
12
13
|
import { GetUserCommandInput, GetUserCommandOutput } from "../commands/GetUserCommand";
|
|
14
|
+
import { GetUserEmailNotificationsSettingsCommandInput, GetUserEmailNotificationsSettingsCommandOutput } from "../commands/GetUserEmailNotificationsSettingsCommand";
|
|
13
15
|
import { GetUserPbxLinkDataCommandInput, GetUserPbxLinkDataCommandOutput } from "../commands/GetUserPbxLinkDataCommand";
|
|
14
16
|
import { GetUserPbxLinkSuggestionCommandInput, GetUserPbxLinkSuggestionCommandOutput } from "../commands/GetUserPbxLinkSuggestionCommand";
|
|
15
17
|
import { GetUserPbxLinkSuggestionV1CommandInput, GetUserPbxLinkSuggestionV1CommandOutput } from "../commands/GetUserPbxLinkSuggestionV1Command";
|
|
18
|
+
import { IntelligenceSearchCommandInput, IntelligenceSearchCommandOutput } from "../commands/IntelligenceSearchCommand";
|
|
16
19
|
import { ListBotApiKeysCommandInput, ListBotApiKeysCommandOutput } from "../commands/ListBotApiKeysCommand";
|
|
17
20
|
import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
|
|
21
|
+
import { PartialUpdateUserEmailNotificationsSettingsCommandInput, PartialUpdateUserEmailNotificationsSettingsCommandOutput } from "../commands/PartialUpdateUserEmailNotificationsSettingsCommand";
|
|
18
22
|
import { QueryColleaguesCommandInput, QueryColleaguesCommandOutput } from "../commands/QueryColleaguesCommand";
|
|
19
23
|
import { QueryUserCommandInput, QueryUserCommandOutput } from "../commands/QueryUserCommand";
|
|
20
24
|
import { QueryUsersCommandInput, QueryUsersCommandOutput } from "../commands/QueryUsersCommand";
|
|
25
|
+
import { ToggleTranscriptionEmailNotificationsSubscriptionCommandInput, ToggleTranscriptionEmailNotificationsSubscriptionCommandOutput } from "../commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand";
|
|
26
|
+
import { ToggleUnreadEmailNotificationsSubscriptionCommandInput, ToggleUnreadEmailNotificationsSubscriptionCommandOutput } from "../commands/ToggleUnreadEmailNotificationsSubscriptionCommand";
|
|
21
27
|
import { UpdateBotCallbackCommandInput, UpdateBotCallbackCommandOutput } from "../commands/UpdateBotCallbackCommand";
|
|
22
28
|
import { UpdateBotCommandInput, UpdateBotCommandOutput } from "../commands/UpdateBotCommand";
|
|
29
|
+
import { UpdateUserEmailNotificationsSettingsCommandInput, UpdateUserEmailNotificationsSettingsCommandOutput } from "../commands/UpdateUserEmailNotificationsSettingsCommand";
|
|
23
30
|
import { UploadPictureCommandInput, UploadPictureCommandOutput } from "../commands/UploadPictureCommand";
|
|
24
31
|
import { UploadPictureV1CommandInput, UploadPictureV1CommandOutput } from "../commands/UploadPictureV1Command";
|
|
25
32
|
import { VerifyBotSecretKeyCommandInput, VerifyBotSecretKeyCommandOutput } from "../commands/VerifyBotSecretKeyCommand";
|
|
@@ -30,6 +37,10 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
|
30
37
|
* serializeAws_restJson1BatchGetUsersCommand
|
|
31
38
|
*/
|
|
32
39
|
export declare const se_BatchGetUsersCommand: (input: BatchGetUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
/**
|
|
41
|
+
* serializeAws_restJson1BatchGetUsersEmailNotificationsSettingsCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const se_BatchGetUsersEmailNotificationsSettingsCommand: (input: BatchGetUsersEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
44
|
/**
|
|
34
45
|
* serializeAws_restJson1BatchGetUsersPbxLinkDataCommand
|
|
35
46
|
*/
|
|
@@ -74,6 +85,10 @@ export declare const se_GetBotCallbackCommand: (input: GetBotCallbackCommandInpu
|
|
|
74
85
|
* serializeAws_restJson1GetUserCommand
|
|
75
86
|
*/
|
|
76
87
|
export declare const se_GetUserCommand: (input: GetUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
/**
|
|
89
|
+
* serializeAws_restJson1GetUserEmailNotificationsSettingsCommand
|
|
90
|
+
*/
|
|
91
|
+
export declare const se_GetUserEmailNotificationsSettingsCommand: (input: GetUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
92
|
/**
|
|
78
93
|
* serializeAws_restJson1GetUserPbxLinkDataCommand
|
|
79
94
|
*/
|
|
@@ -86,6 +101,10 @@ export declare const se_GetUserPbxLinkSuggestionCommand: (input: GetUserPbxLinkS
|
|
|
86
101
|
* serializeAws_restJson1GetUserPbxLinkSuggestionV1Command
|
|
87
102
|
*/
|
|
88
103
|
export declare const se_GetUserPbxLinkSuggestionV1Command: (input: GetUserPbxLinkSuggestionV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
/**
|
|
105
|
+
* serializeAws_restJson1IntelligenceSearchCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const se_IntelligenceSearchCommand: (input: IntelligenceSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
108
|
/**
|
|
90
109
|
* serializeAws_restJson1ListBotApiKeysCommand
|
|
91
110
|
*/
|
|
@@ -94,6 +113,10 @@ export declare const se_ListBotApiKeysCommand: (input: ListBotApiKeysCommandInpu
|
|
|
94
113
|
* serializeAws_restJson1ListBotsCommand
|
|
95
114
|
*/
|
|
96
115
|
export declare const se_ListBotsCommand: (input: ListBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1PartialUpdateUserEmailNotificationsSettingsCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_PartialUpdateUserEmailNotificationsSettingsCommand: (input: PartialUpdateUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
120
|
/**
|
|
98
121
|
* serializeAws_restJson1QueryColleaguesCommand
|
|
99
122
|
*/
|
|
@@ -106,6 +129,14 @@ export declare const se_QueryUserCommand: (input: QueryUserCommandInput, context
|
|
|
106
129
|
* serializeAws_restJson1QueryUsersCommand
|
|
107
130
|
*/
|
|
108
131
|
export declare const se_QueryUsersCommand: (input: QueryUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
+
/**
|
|
133
|
+
* serializeAws_restJson1ToggleTranscriptionEmailNotificationsSubscriptionCommand
|
|
134
|
+
*/
|
|
135
|
+
export declare const se_ToggleTranscriptionEmailNotificationsSubscriptionCommand: (input: ToggleTranscriptionEmailNotificationsSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
+
/**
|
|
137
|
+
* serializeAws_restJson1ToggleUnreadEmailNotificationsSubscriptionCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const se_ToggleUnreadEmailNotificationsSubscriptionCommand: (input: ToggleUnreadEmailNotificationsSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
140
|
/**
|
|
110
141
|
* serializeAws_restJson1UpdateBotCommand
|
|
111
142
|
*/
|
|
@@ -114,6 +145,10 @@ export declare const se_UpdateBotCommand: (input: UpdateBotCommandInput, context
|
|
|
114
145
|
* serializeAws_restJson1UpdateBotCallbackCommand
|
|
115
146
|
*/
|
|
116
147
|
export declare const se_UpdateBotCallbackCommand: (input: UpdateBotCallbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
+
/**
|
|
149
|
+
* serializeAws_restJson1UpdateUserEmailNotificationsSettingsCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const se_UpdateUserEmailNotificationsSettingsCommand: (input: UpdateUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
152
|
/**
|
|
118
153
|
* serializeAws_restJson1UploadPictureCommand
|
|
119
154
|
*/
|
|
@@ -134,6 +169,10 @@ export declare const se_VerifyBotSecretKeyV1Command: (input: VerifyBotSecretKeyV
|
|
|
134
169
|
* deserializeAws_restJson1BatchGetUsersCommand
|
|
135
170
|
*/
|
|
136
171
|
export declare const de_BatchGetUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersCommandOutput>;
|
|
172
|
+
/**
|
|
173
|
+
* deserializeAws_restJson1BatchGetUsersEmailNotificationsSettingsCommand
|
|
174
|
+
*/
|
|
175
|
+
export declare const de_BatchGetUsersEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersEmailNotificationsSettingsCommandOutput>;
|
|
137
176
|
/**
|
|
138
177
|
* deserializeAws_restJson1BatchGetUsersPbxLinkDataCommand
|
|
139
178
|
*/
|
|
@@ -178,6 +217,10 @@ export declare const de_GetBotCallbackCommand: (output: __HttpResponse, context:
|
|
|
178
217
|
* deserializeAws_restJson1GetUserCommand
|
|
179
218
|
*/
|
|
180
219
|
export declare const de_GetUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* deserializeAws_restJson1GetUserEmailNotificationsSettingsCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const de_GetUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserEmailNotificationsSettingsCommandOutput>;
|
|
181
224
|
/**
|
|
182
225
|
* deserializeAws_restJson1GetUserPbxLinkDataCommand
|
|
183
226
|
*/
|
|
@@ -190,6 +233,10 @@ export declare const de_GetUserPbxLinkSuggestionCommand: (output: __HttpResponse
|
|
|
190
233
|
* deserializeAws_restJson1GetUserPbxLinkSuggestionV1Command
|
|
191
234
|
*/
|
|
192
235
|
export declare const de_GetUserPbxLinkSuggestionV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserPbxLinkSuggestionV1CommandOutput>;
|
|
236
|
+
/**
|
|
237
|
+
* deserializeAws_restJson1IntelligenceSearchCommand
|
|
238
|
+
*/
|
|
239
|
+
export declare const de_IntelligenceSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IntelligenceSearchCommandOutput>;
|
|
193
240
|
/**
|
|
194
241
|
* deserializeAws_restJson1ListBotApiKeysCommand
|
|
195
242
|
*/
|
|
@@ -198,6 +245,10 @@ export declare const de_ListBotApiKeysCommand: (output: __HttpResponse, context:
|
|
|
198
245
|
* deserializeAws_restJson1ListBotsCommand
|
|
199
246
|
*/
|
|
200
247
|
export declare const de_ListBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBotsCommandOutput>;
|
|
248
|
+
/**
|
|
249
|
+
* deserializeAws_restJson1PartialUpdateUserEmailNotificationsSettingsCommand
|
|
250
|
+
*/
|
|
251
|
+
export declare const de_PartialUpdateUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PartialUpdateUserEmailNotificationsSettingsCommandOutput>;
|
|
201
252
|
/**
|
|
202
253
|
* deserializeAws_restJson1QueryColleaguesCommand
|
|
203
254
|
*/
|
|
@@ -210,6 +261,14 @@ export declare const de_QueryUserCommand: (output: __HttpResponse, context: __Se
|
|
|
210
261
|
* deserializeAws_restJson1QueryUsersCommand
|
|
211
262
|
*/
|
|
212
263
|
export declare const de_QueryUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryUsersCommandOutput>;
|
|
264
|
+
/**
|
|
265
|
+
* deserializeAws_restJson1ToggleTranscriptionEmailNotificationsSubscriptionCommand
|
|
266
|
+
*/
|
|
267
|
+
export declare const de_ToggleTranscriptionEmailNotificationsSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ToggleTranscriptionEmailNotificationsSubscriptionCommandOutput>;
|
|
268
|
+
/**
|
|
269
|
+
* deserializeAws_restJson1ToggleUnreadEmailNotificationsSubscriptionCommand
|
|
270
|
+
*/
|
|
271
|
+
export declare const de_ToggleUnreadEmailNotificationsSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ToggleUnreadEmailNotificationsSubscriptionCommandOutput>;
|
|
213
272
|
/**
|
|
214
273
|
* deserializeAws_restJson1UpdateBotCommand
|
|
215
274
|
*/
|
|
@@ -218,6 +277,10 @@ export declare const de_UpdateBotCommand: (output: __HttpResponse, context: __Se
|
|
|
218
277
|
* deserializeAws_restJson1UpdateBotCallbackCommand
|
|
219
278
|
*/
|
|
220
279
|
export declare const de_UpdateBotCallbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBotCallbackCommandOutput>;
|
|
280
|
+
/**
|
|
281
|
+
* deserializeAws_restJson1UpdateUserEmailNotificationsSettingsCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const de_UpdateUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserEmailNotificationsSettingsCommandOutput>;
|
|
221
284
|
/**
|
|
222
285
|
* deserializeAws_restJson1UploadPictureCommand
|
|
223
286
|
*/
|
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.37",
|
|
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",
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"module": "./dist-es/index.js",
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"tslib": "^2.6.2",
|
|
21
20
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
21
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
22
|
"@aws-sdk/middleware-user-agent": "3.587.0",
|
|
@@ -46,15 +45,16 @@
|
|
|
46
45
|
"@smithy/util-defaults-mode-node": "^3.0.3",
|
|
47
46
|
"@smithy/util-retry": "^3.0.0",
|
|
48
47
|
"@smithy/util-utf8": "^3.0.0",
|
|
49
|
-
"@wildix/smithy-utils": "^1.0.2"
|
|
48
|
+
"@wildix/smithy-utils": "^1.0.2",
|
|
49
|
+
"tslib": "^2.6.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@tsconfig/node16": "16.1.3",
|
|
53
|
+
"@types/node": "^16.18.96",
|
|
53
54
|
"concurrently": "7.0.0",
|
|
54
55
|
"downlevel-dts": "0.10.1",
|
|
55
56
|
"rimraf": "^3.0.0",
|
|
56
|
-
"typescript": "~4.9.5"
|
|
57
|
-
"@types/node": "^16.18.96"
|
|
57
|
+
"typescript": "~4.9.5"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=16.0.0"
|