@wildix/xbees-users-client 1.0.31 → 1.0.33

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 (32) hide show
  1. package/dist-cjs/Users.js +2 -12
  2. package/dist-cjs/commands/{GetUserEmailNotificationsSettingsCommand.js → IntelligenceSearchCommand.js} +7 -7
  3. package/dist-cjs/commands/index.js +1 -6
  4. package/dist-cjs/protocols/Aws_restJson1.js +30 -176
  5. package/dist-es/Users.js +2 -12
  6. package/dist-es/commands/IntelligenceSearchCommand.js +17 -0
  7. package/dist-es/commands/index.js +1 -6
  8. package/dist-es/protocols/Aws_restJson1.js +23 -159
  9. package/dist-types/Users.d.ts +7 -42
  10. package/dist-types/UsersClient.d.ts +3 -8
  11. package/dist-types/commands/IntelligenceSearchCommand.d.ts +73 -0
  12. package/dist-types/commands/index.d.ts +1 -6
  13. package/dist-types/models/models_0.d.ts +30 -130
  14. package/dist-types/protocols/Aws_restJson1.d.ts +9 -54
  15. package/package.json +1 -1
  16. package/dist-cjs/commands/BatchGetUsersEmailNotificationsSettingsCommand.js +0 -21
  17. package/dist-cjs/commands/PartialUpdateUserEmailNotificationsSettingsCommand.js +0 -21
  18. package/dist-cjs/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.js +0 -21
  19. package/dist-cjs/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.js +0 -21
  20. package/dist-cjs/commands/UpdateUserEmailNotificationsSettingsCommand.js +0 -21
  21. package/dist-es/commands/BatchGetUsersEmailNotificationsSettingsCommand.js +0 -17
  22. package/dist-es/commands/GetUserEmailNotificationsSettingsCommand.js +0 -17
  23. package/dist-es/commands/PartialUpdateUserEmailNotificationsSettingsCommand.js +0 -17
  24. package/dist-es/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.js +0 -17
  25. package/dist-es/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.js +0 -17
  26. package/dist-es/commands/UpdateUserEmailNotificationsSettingsCommand.js +0 -17
  27. package/dist-types/commands/BatchGetUsersEmailNotificationsSettingsCommand.d.ts +0 -71
  28. package/dist-types/commands/GetUserEmailNotificationsSettingsCommand.d.ts +0 -69
  29. package/dist-types/commands/PartialUpdateUserEmailNotificationsSettingsCommand.d.ts +0 -69
  30. package/dist-types/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.d.ts +0 -63
  31. package/dist-types/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.d.ts +0 -63
  32. package/dist-types/commands/UpdateUserEmailNotificationsSettingsCommand.d.ts +0 -69
@@ -214,37 +214,6 @@ 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
- }
248
217
  /**
249
218
  * @public
250
219
  */
@@ -782,6 +751,15 @@ export interface DeleteBotApiKeyInput {
782
751
  */
783
752
  export interface DeleteBotApiKeyOutput {
784
753
  }
754
+ /**
755
+ * @public
756
+ */
757
+ export interface DirectoryItem {
758
+ extension?: string;
759
+ name?: string;
760
+ department?: string;
761
+ group?: string;
762
+ }
785
763
  /**
786
764
  * @public
787
765
  */
@@ -824,22 +802,6 @@ export interface GetUserInput {
824
802
  export interface GetUserOutput {
825
803
  user: User;
826
804
  }
827
- /**
828
- * @public
829
- */
830
- export interface GetUserEmailNotificationsSettingsInput {
831
- /**
832
- * The unique identifier of the user (Cloud ID, not ID of the user on PBX).
833
- * @public
834
- */
835
- userId: string;
836
- }
837
- /**
838
- * @public
839
- */
840
- export interface GetUserEmailNotificationsSettingsOutput {
841
- notifications: UserEmailNotificationsSettings;
842
- }
843
805
  /**
844
806
  * @public
845
807
  */
@@ -914,53 +876,49 @@ export interface GetUserPbxLinkSuggestionV1Output {
914
876
  /**
915
877
  * @public
916
878
  */
917
- export interface ListBotApiKeysInput {
879
+ export interface IntelligenceSearchInput {
880
+ /**
881
+ * The unique identifier of the tenant when a service token is used. Only for s2s auth
882
+ * @public
883
+ */
918
884
  company?: string;
919
- botId: string;
885
+ search: string;
886
+ /**
887
+ * Optional extension to exclude from search results. Used to prevent returning the caller's own record when searching.
888
+ * @public
889
+ */
890
+ excludeExtension?: string;
920
891
  }
921
892
  /**
922
893
  * @public
923
894
  */
924
- export interface ListBotApiKeysOutput {
925
- keys: (BotApiKey)[];
895
+ export interface IntelligenceSearchOutput {
896
+ items: (DirectoryItem)[];
926
897
  }
927
898
  /**
928
899
  * @public
929
900
  */
930
- export interface ListBotsInput {
901
+ export interface ListBotApiKeysInput {
931
902
  company?: string;
903
+ botId: string;
932
904
  }
933
905
  /**
934
906
  * @public
935
907
  */
936
- export interface ListBotsOutput {
937
- bots: (Bot)[];
908
+ export interface ListBotApiKeysOutput {
909
+ keys: (BotApiKey)[];
938
910
  }
939
911
  /**
940
912
  * @public
941
913
  */
942
- export interface PartialUpdateUserEmailNotificationsSettingsInput {
943
- /**
944
- * A flag that indicates whether the system should send email notifications about unread messages.
945
- * @public
946
- */
947
- unread?: boolean;
948
- /**
949
- * A flag that indicates whether the system should send email notifications about AI transcription.
950
- * @public
951
- */
952
- transcription?: boolean;
953
- /**
954
- * The unique identifier of the user (Cloud ID, not ID of the user on PBX).
955
- * @public
956
- */
957
- userId: string;
914
+ export interface ListBotsInput {
915
+ company?: string;
958
916
  }
959
917
  /**
960
918
  * @public
961
919
  */
962
- export interface PartialUpdateUserEmailNotificationsSettingsOutput {
963
- notifications: UserEmailNotificationsSettings;
920
+ export interface ListBotsOutput {
921
+ bots: (Bot)[];
964
922
  }
965
923
  /**
966
924
  * @public
@@ -1127,38 +1085,6 @@ export interface QueryUsersOutput {
1127
1085
  */
1128
1086
  users: (User)[];
1129
1087
  }
1130
- /**
1131
- * @public
1132
- */
1133
- export interface ToggleTranscriptionEmailNotificationsSubscriptionInput {
1134
- unsubscribeToken: string;
1135
- /**
1136
- * A flag that indicates whether the system should send email notifications about AI transcription.
1137
- * @public
1138
- */
1139
- subscribe: boolean;
1140
- }
1141
- /**
1142
- * @public
1143
- */
1144
- export interface ToggleTranscriptionEmailNotificationsSubscriptionOutput {
1145
- }
1146
- /**
1147
- * @public
1148
- */
1149
- export interface ToggleUnreadEmailNotificationsSubscriptionInput {
1150
- unsubscribeToken: string;
1151
- /**
1152
- * A flag that indicates whether the system should send email notifications about unread messages.
1153
- * @public
1154
- */
1155
- subscribe: boolean;
1156
- }
1157
- /**
1158
- * @public
1159
- */
1160
- export interface ToggleUnreadEmailNotificationsSubscriptionOutput {
1161
- }
1162
1088
  /**
1163
1089
  * @public
1164
1090
  */
@@ -1189,32 +1115,6 @@ export interface UpdateBotCallbackInput {
1189
1115
  export interface UpdateBotCallbackOutput {
1190
1116
  callback: BotCallback;
1191
1117
  }
1192
- /**
1193
- * @public
1194
- */
1195
- export interface UpdateUserEmailNotificationsSettingsInput {
1196
- /**
1197
- * A flag that indicates whether the system should send email notifications about unread messages.
1198
- * @public
1199
- */
1200
- unread?: boolean;
1201
- /**
1202
- * A flag that indicates whether the system should send email notifications about AI transcription.
1203
- * @public
1204
- */
1205
- transcription?: boolean;
1206
- /**
1207
- * The unique identifier of the user (Cloud ID, not ID of the user on PBX).
1208
- * @public
1209
- */
1210
- userId: string;
1211
- }
1212
- /**
1213
- * @public
1214
- */
1215
- export interface UpdateUserEmailNotificationsSettingsOutput {
1216
- notifications: UserEmailNotificationsSettings;
1217
- }
1218
1118
  /**
1219
1119
  * @public
1220
1120
  */
@@ -1,5 +1,4 @@
1
1
  import { BatchGetUsersCommandInput, BatchGetUsersCommandOutput } from "../commands/BatchGetUsersCommand";
2
- import { BatchGetUsersEmailNotificationsSettingsCommandInput, BatchGetUsersEmailNotificationsSettingsCommandOutput } from "../commands/BatchGetUsersEmailNotificationsSettingsCommand";
3
2
  import { BatchGetUsersPbxLinkDataCommandInput, BatchGetUsersPbxLinkDataCommandOutput } from "../commands/BatchGetUsersPbxLinkDataCommand";
4
3
  import { BatchGetUsersPbxLinkDataV1CommandInput, BatchGetUsersPbxLinkDataV1CommandOutput } from "../commands/BatchGetUsersPbxLinkDataV1Command";
5
4
  import { ChangeUserEmailCommandInput, ChangeUserEmailCommandOutput } from "../commands/ChangeUserEmailCommand";
@@ -11,21 +10,17 @@ import { DeleteBotCommandInput, DeleteBotCommandOutput } from "../commands/Delet
11
10
  import { GetBotCallbackCommandInput, GetBotCallbackCommandOutput } from "../commands/GetBotCallbackCommand";
12
11
  import { GetBotCommandInput, GetBotCommandOutput } from "../commands/GetBotCommand";
13
12
  import { GetUserCommandInput, GetUserCommandOutput } from "../commands/GetUserCommand";
14
- import { GetUserEmailNotificationsSettingsCommandInput, GetUserEmailNotificationsSettingsCommandOutput } from "../commands/GetUserEmailNotificationsSettingsCommand";
15
13
  import { GetUserPbxLinkDataCommandInput, GetUserPbxLinkDataCommandOutput } from "../commands/GetUserPbxLinkDataCommand";
16
14
  import { GetUserPbxLinkSuggestionCommandInput, GetUserPbxLinkSuggestionCommandOutput } from "../commands/GetUserPbxLinkSuggestionCommand";
17
15
  import { GetUserPbxLinkSuggestionV1CommandInput, GetUserPbxLinkSuggestionV1CommandOutput } from "../commands/GetUserPbxLinkSuggestionV1Command";
16
+ import { IntelligenceSearchCommandInput, IntelligenceSearchCommandOutput } from "../commands/IntelligenceSearchCommand";
18
17
  import { ListBotApiKeysCommandInput, ListBotApiKeysCommandOutput } from "../commands/ListBotApiKeysCommand";
19
18
  import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
20
- import { PartialUpdateUserEmailNotificationsSettingsCommandInput, PartialUpdateUserEmailNotificationsSettingsCommandOutput } from "../commands/PartialUpdateUserEmailNotificationsSettingsCommand";
21
19
  import { QueryColleaguesCommandInput, QueryColleaguesCommandOutput } from "../commands/QueryColleaguesCommand";
22
20
  import { QueryUserCommandInput, QueryUserCommandOutput } from "../commands/QueryUserCommand";
23
21
  import { QueryUsersCommandInput, QueryUsersCommandOutput } from "../commands/QueryUsersCommand";
24
- import { ToggleTranscriptionEmailNotificationsSubscriptionCommandInput, ToggleTranscriptionEmailNotificationsSubscriptionCommandOutput } from "../commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand";
25
- import { ToggleUnreadEmailNotificationsSubscriptionCommandInput, ToggleUnreadEmailNotificationsSubscriptionCommandOutput } from "../commands/ToggleUnreadEmailNotificationsSubscriptionCommand";
26
22
  import { UpdateBotCallbackCommandInput, UpdateBotCallbackCommandOutput } from "../commands/UpdateBotCallbackCommand";
27
23
  import { UpdateBotCommandInput, UpdateBotCommandOutput } from "../commands/UpdateBotCommand";
28
- import { UpdateUserEmailNotificationsSettingsCommandInput, UpdateUserEmailNotificationsSettingsCommandOutput } from "../commands/UpdateUserEmailNotificationsSettingsCommand";
29
24
  import { UploadPictureCommandInput, UploadPictureCommandOutput } from "../commands/UploadPictureCommand";
30
25
  import { UploadPictureV1CommandInput, UploadPictureV1CommandOutput } from "../commands/UploadPictureV1Command";
31
26
  import { VerifyBotSecretKeyCommandInput, VerifyBotSecretKeyCommandOutput } from "../commands/VerifyBotSecretKeyCommand";
@@ -36,10 +31,6 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
36
31
  * serializeAws_restJson1BatchGetUsersCommand
37
32
  */
38
33
  export declare const se_BatchGetUsersCommand: (input: BatchGetUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- /**
40
- * serializeAws_restJson1BatchGetUsersEmailNotificationsSettingsCommand
41
- */
42
- export declare const se_BatchGetUsersEmailNotificationsSettingsCommand: (input: BatchGetUsersEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
34
  /**
44
35
  * serializeAws_restJson1BatchGetUsersPbxLinkDataCommand
45
36
  */
@@ -84,10 +75,6 @@ export declare const se_GetBotCallbackCommand: (input: GetBotCallbackCommandInpu
84
75
  * serializeAws_restJson1GetUserCommand
85
76
  */
86
77
  export declare const se_GetUserCommand: (input: GetUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
- /**
88
- * serializeAws_restJson1GetUserEmailNotificationsSettingsCommand
89
- */
90
- export declare const se_GetUserEmailNotificationsSettingsCommand: (input: GetUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
78
  /**
92
79
  * serializeAws_restJson1GetUserPbxLinkDataCommand
93
80
  */
@@ -100,6 +87,10 @@ export declare const se_GetUserPbxLinkSuggestionCommand: (input: GetUserPbxLinkS
100
87
  * serializeAws_restJson1GetUserPbxLinkSuggestionV1Command
101
88
  */
102
89
  export declare const se_GetUserPbxLinkSuggestionV1Command: (input: GetUserPbxLinkSuggestionV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_restJson1IntelligenceSearchCommand
92
+ */
93
+ export declare const se_IntelligenceSearchCommand: (input: IntelligenceSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
94
  /**
104
95
  * serializeAws_restJson1ListBotApiKeysCommand
105
96
  */
@@ -108,10 +99,6 @@ export declare const se_ListBotApiKeysCommand: (input: ListBotApiKeysCommandInpu
108
99
  * serializeAws_restJson1ListBotsCommand
109
100
  */
110
101
  export declare const se_ListBotsCommand: (input: ListBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
- /**
112
- * serializeAws_restJson1PartialUpdateUserEmailNotificationsSettingsCommand
113
- */
114
- export declare const se_PartialUpdateUserEmailNotificationsSettingsCommand: (input: PartialUpdateUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
102
  /**
116
103
  * serializeAws_restJson1QueryColleaguesCommand
117
104
  */
@@ -124,14 +111,6 @@ export declare const se_QueryUserCommand: (input: QueryUserCommandInput, context
124
111
  * serializeAws_restJson1QueryUsersCommand
125
112
  */
126
113
  export declare const se_QueryUsersCommand: (input: QueryUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
- /**
128
- * serializeAws_restJson1ToggleTranscriptionEmailNotificationsSubscriptionCommand
129
- */
130
- export declare const se_ToggleTranscriptionEmailNotificationsSubscriptionCommand: (input: ToggleTranscriptionEmailNotificationsSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
131
- /**
132
- * serializeAws_restJson1ToggleUnreadEmailNotificationsSubscriptionCommand
133
- */
134
- export declare const se_ToggleUnreadEmailNotificationsSubscriptionCommand: (input: ToggleUnreadEmailNotificationsSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
114
  /**
136
115
  * serializeAws_restJson1UpdateBotCommand
137
116
  */
@@ -140,10 +119,6 @@ export declare const se_UpdateBotCommand: (input: UpdateBotCommandInput, context
140
119
  * serializeAws_restJson1UpdateBotCallbackCommand
141
120
  */
142
121
  export declare const se_UpdateBotCallbackCommand: (input: UpdateBotCallbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
- /**
144
- * serializeAws_restJson1UpdateUserEmailNotificationsSettingsCommand
145
- */
146
- export declare const se_UpdateUserEmailNotificationsSettingsCommand: (input: UpdateUserEmailNotificationsSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
122
  /**
148
123
  * serializeAws_restJson1UploadPictureCommand
149
124
  */
@@ -164,10 +139,6 @@ export declare const se_VerifyBotSecretKeyV1Command: (input: VerifyBotSecretKeyV
164
139
  * deserializeAws_restJson1BatchGetUsersCommand
165
140
  */
166
141
  export declare const de_BatchGetUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersCommandOutput>;
167
- /**
168
- * deserializeAws_restJson1BatchGetUsersEmailNotificationsSettingsCommand
169
- */
170
- export declare const de_BatchGetUsersEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersEmailNotificationsSettingsCommandOutput>;
171
142
  /**
172
143
  * deserializeAws_restJson1BatchGetUsersPbxLinkDataCommand
173
144
  */
@@ -212,10 +183,6 @@ export declare const de_GetBotCallbackCommand: (output: __HttpResponse, context:
212
183
  * deserializeAws_restJson1GetUserCommand
213
184
  */
214
185
  export declare const de_GetUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserCommandOutput>;
215
- /**
216
- * deserializeAws_restJson1GetUserEmailNotificationsSettingsCommand
217
- */
218
- export declare const de_GetUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserEmailNotificationsSettingsCommandOutput>;
219
186
  /**
220
187
  * deserializeAws_restJson1GetUserPbxLinkDataCommand
221
188
  */
@@ -228,6 +195,10 @@ export declare const de_GetUserPbxLinkSuggestionCommand: (output: __HttpResponse
228
195
  * deserializeAws_restJson1GetUserPbxLinkSuggestionV1Command
229
196
  */
230
197
  export declare const de_GetUserPbxLinkSuggestionV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserPbxLinkSuggestionV1CommandOutput>;
198
+ /**
199
+ * deserializeAws_restJson1IntelligenceSearchCommand
200
+ */
201
+ export declare const de_IntelligenceSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IntelligenceSearchCommandOutput>;
231
202
  /**
232
203
  * deserializeAws_restJson1ListBotApiKeysCommand
233
204
  */
@@ -236,10 +207,6 @@ export declare const de_ListBotApiKeysCommand: (output: __HttpResponse, context:
236
207
  * deserializeAws_restJson1ListBotsCommand
237
208
  */
238
209
  export declare const de_ListBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBotsCommandOutput>;
239
- /**
240
- * deserializeAws_restJson1PartialUpdateUserEmailNotificationsSettingsCommand
241
- */
242
- export declare const de_PartialUpdateUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PartialUpdateUserEmailNotificationsSettingsCommandOutput>;
243
210
  /**
244
211
  * deserializeAws_restJson1QueryColleaguesCommand
245
212
  */
@@ -252,14 +219,6 @@ export declare const de_QueryUserCommand: (output: __HttpResponse, context: __Se
252
219
  * deserializeAws_restJson1QueryUsersCommand
253
220
  */
254
221
  export declare const de_QueryUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryUsersCommandOutput>;
255
- /**
256
- * deserializeAws_restJson1ToggleTranscriptionEmailNotificationsSubscriptionCommand
257
- */
258
- export declare const de_ToggleTranscriptionEmailNotificationsSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ToggleTranscriptionEmailNotificationsSubscriptionCommandOutput>;
259
- /**
260
- * deserializeAws_restJson1ToggleUnreadEmailNotificationsSubscriptionCommand
261
- */
262
- export declare const de_ToggleUnreadEmailNotificationsSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ToggleUnreadEmailNotificationsSubscriptionCommandOutput>;
263
222
  /**
264
223
  * deserializeAws_restJson1UpdateBotCommand
265
224
  */
@@ -268,10 +227,6 @@ export declare const de_UpdateBotCommand: (output: __HttpResponse, context: __Se
268
227
  * deserializeAws_restJson1UpdateBotCallbackCommand
269
228
  */
270
229
  export declare const de_UpdateBotCallbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBotCallbackCommandOutput>;
271
- /**
272
- * deserializeAws_restJson1UpdateUserEmailNotificationsSettingsCommand
273
- */
274
- export declare const de_UpdateUserEmailNotificationsSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserEmailNotificationsSettingsCommandOutput>;
275
230
  /**
276
231
  * deserializeAws_restJson1UploadPictureCommand
277
232
  */
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.31",
4
+ "version": "1.0.33",
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",
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BatchGetUsersEmailNotificationsSettingsCommand = exports.$Command = void 0;
4
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- class BatchGetUsersEmailNotificationsSettingsCommand extends smithy_client_1.Command.classBuilder()
9
- .m(function (Command, cs, config, o) {
10
- return [
11
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
- ];
13
- })
14
- .s("Users", "BatchGetUsersEmailNotificationsSettings", {})
15
- .n("UsersClient", "BatchGetUsersEmailNotificationsSettingsCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_BatchGetUsersEmailNotificationsSettingsCommand)
18
- .de(Aws_restJson1_1.de_BatchGetUsersEmailNotificationsSettingsCommand)
19
- .build() {
20
- }
21
- exports.BatchGetUsersEmailNotificationsSettingsCommand = BatchGetUsersEmailNotificationsSettingsCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PartialUpdateUserEmailNotificationsSettingsCommand = exports.$Command = void 0;
4
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- class PartialUpdateUserEmailNotificationsSettingsCommand extends smithy_client_1.Command.classBuilder()
9
- .m(function (Command, cs, config, o) {
10
- return [
11
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
- ];
13
- })
14
- .s("Users", "PartialUpdateUserEmailNotificationsSettings", {})
15
- .n("UsersClient", "PartialUpdateUserEmailNotificationsSettingsCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_PartialUpdateUserEmailNotificationsSettingsCommand)
18
- .de(Aws_restJson1_1.de_PartialUpdateUserEmailNotificationsSettingsCommand)
19
- .build() {
20
- }
21
- exports.PartialUpdateUserEmailNotificationsSettingsCommand = PartialUpdateUserEmailNotificationsSettingsCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ToggleTranscriptionEmailNotificationsSubscriptionCommand = exports.$Command = void 0;
4
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- class ToggleTranscriptionEmailNotificationsSubscriptionCommand extends smithy_client_1.Command.classBuilder()
9
- .m(function (Command, cs, config, o) {
10
- return [
11
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
- ];
13
- })
14
- .s("Users", "ToggleTranscriptionEmailNotificationsSubscription", {})
15
- .n("UsersClient", "ToggleTranscriptionEmailNotificationsSubscriptionCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_ToggleTranscriptionEmailNotificationsSubscriptionCommand)
18
- .de(Aws_restJson1_1.de_ToggleTranscriptionEmailNotificationsSubscriptionCommand)
19
- .build() {
20
- }
21
- exports.ToggleTranscriptionEmailNotificationsSubscriptionCommand = ToggleTranscriptionEmailNotificationsSubscriptionCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ToggleUnreadEmailNotificationsSubscriptionCommand = exports.$Command = void 0;
4
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- class ToggleUnreadEmailNotificationsSubscriptionCommand extends smithy_client_1.Command.classBuilder()
9
- .m(function (Command, cs, config, o) {
10
- return [
11
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
- ];
13
- })
14
- .s("Users", "ToggleUnreadEmailNotificationsSubscription", {})
15
- .n("UsersClient", "ToggleUnreadEmailNotificationsSubscriptionCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_ToggleUnreadEmailNotificationsSubscriptionCommand)
18
- .de(Aws_restJson1_1.de_ToggleUnreadEmailNotificationsSubscriptionCommand)
19
- .build() {
20
- }
21
- exports.ToggleUnreadEmailNotificationsSubscriptionCommand = ToggleUnreadEmailNotificationsSubscriptionCommand;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateUserEmailNotificationsSettingsCommand = exports.$Command = void 0;
4
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- class UpdateUserEmailNotificationsSettingsCommand extends smithy_client_1.Command.classBuilder()
9
- .m(function (Command, cs, config, o) {
10
- return [
11
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
- ];
13
- })
14
- .s("Users", "UpdateUserEmailNotificationsSettings", {})
15
- .n("UsersClient", "UpdateUserEmailNotificationsSettingsCommand")
16
- .f(void 0, void 0)
17
- .ser(Aws_restJson1_1.se_UpdateUserEmailNotificationsSettingsCommand)
18
- .de(Aws_restJson1_1.de_UpdateUserEmailNotificationsSettingsCommand)
19
- .build() {
20
- }
21
- exports.UpdateUserEmailNotificationsSettingsCommand = UpdateUserEmailNotificationsSettingsCommand;
@@ -1,17 +0,0 @@
1
- import { de_BatchGetUsersEmailNotificationsSettingsCommand, se_BatchGetUsersEmailNotificationsSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class BatchGetUsersEmailNotificationsSettingsCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "BatchGetUsersEmailNotificationsSettings", {})
12
- .n("UsersClient", "BatchGetUsersEmailNotificationsSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_BatchGetUsersEmailNotificationsSettingsCommand)
15
- .de(de_BatchGetUsersEmailNotificationsSettingsCommand)
16
- .build() {
17
- }
@@ -1,17 +0,0 @@
1
- import { de_GetUserEmailNotificationsSettingsCommand, se_GetUserEmailNotificationsSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class GetUserEmailNotificationsSettingsCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "GetUserEmailNotificationsSettings", {})
12
- .n("UsersClient", "GetUserEmailNotificationsSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_GetUserEmailNotificationsSettingsCommand)
15
- .de(de_GetUserEmailNotificationsSettingsCommand)
16
- .build() {
17
- }
@@ -1,17 +0,0 @@
1
- import { de_PartialUpdateUserEmailNotificationsSettingsCommand, se_PartialUpdateUserEmailNotificationsSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class PartialUpdateUserEmailNotificationsSettingsCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "PartialUpdateUserEmailNotificationsSettings", {})
12
- .n("UsersClient", "PartialUpdateUserEmailNotificationsSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_PartialUpdateUserEmailNotificationsSettingsCommand)
15
- .de(de_PartialUpdateUserEmailNotificationsSettingsCommand)
16
- .build() {
17
- }
@@ -1,17 +0,0 @@
1
- import { de_ToggleTranscriptionEmailNotificationsSubscriptionCommand, se_ToggleTranscriptionEmailNotificationsSubscriptionCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class ToggleTranscriptionEmailNotificationsSubscriptionCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "ToggleTranscriptionEmailNotificationsSubscription", {})
12
- .n("UsersClient", "ToggleTranscriptionEmailNotificationsSubscriptionCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ToggleTranscriptionEmailNotificationsSubscriptionCommand)
15
- .de(de_ToggleTranscriptionEmailNotificationsSubscriptionCommand)
16
- .build() {
17
- }
@@ -1,17 +0,0 @@
1
- import { de_ToggleUnreadEmailNotificationsSubscriptionCommand, se_ToggleUnreadEmailNotificationsSubscriptionCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class ToggleUnreadEmailNotificationsSubscriptionCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "ToggleUnreadEmailNotificationsSubscription", {})
12
- .n("UsersClient", "ToggleUnreadEmailNotificationsSubscriptionCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ToggleUnreadEmailNotificationsSubscriptionCommand)
15
- .de(de_ToggleUnreadEmailNotificationsSubscriptionCommand)
16
- .build() {
17
- }
@@ -1,17 +0,0 @@
1
- import { de_UpdateUserEmailNotificationsSettingsCommand, se_UpdateUserEmailNotificationsSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- export { $Command };
5
- export class UpdateUserEmailNotificationsSettingsCommand extends $Command.classBuilder()
6
- .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
- })
11
- .s("Users", "UpdateUserEmailNotificationsSettings", {})
12
- .n("UsersClient", "UpdateUserEmailNotificationsSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_UpdateUserEmailNotificationsSettingsCommand)
15
- .de(de_UpdateUserEmailNotificationsSettingsCommand)
16
- .build() {
17
- }