@aws-sdk/client-chatbot 3.934.0 → 3.935.0
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/index.js +5 -4
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +4 -0
- package/dist-es/models/errors.js +435 -0
- package/dist-es/models/models_0.js +1 -439
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/errors.d.ts +411 -0
- package/dist-types/models/models_0.d.ts +1 -423
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/errors.d.ts +315 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -321
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,439 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class InternalServiceError extends __BaseException {
|
|
3
|
-
name = "InternalServiceError";
|
|
4
|
-
$fault = "server";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "InternalServiceError",
|
|
9
|
-
$fault: "server",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export class InvalidRequestException extends __BaseException {
|
|
17
|
-
name = "InvalidRequestException";
|
|
18
|
-
$fault = "client";
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "InvalidRequestException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
export class UnauthorizedException extends __BaseException {
|
|
29
|
-
name = "UnauthorizedException";
|
|
30
|
-
$fault = "client";
|
|
31
|
-
constructor(opts) {
|
|
32
|
-
super({
|
|
33
|
-
name: "UnauthorizedException",
|
|
34
|
-
$fault: "client",
|
|
35
|
-
...opts,
|
|
36
|
-
});
|
|
37
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
export class ConflictException extends __BaseException {
|
|
41
|
-
name = "ConflictException";
|
|
42
|
-
$fault = "client";
|
|
43
|
-
constructor(opts) {
|
|
44
|
-
super({
|
|
45
|
-
name: "ConflictException",
|
|
46
|
-
$fault: "client",
|
|
47
|
-
...opts,
|
|
48
|
-
});
|
|
49
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
export class CreateChimeWebhookConfigurationException extends __BaseException {
|
|
53
|
-
name = "CreateChimeWebhookConfigurationException";
|
|
54
|
-
$fault = "server";
|
|
55
|
-
Message;
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "CreateChimeWebhookConfigurationException",
|
|
59
|
-
$fault: "server",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
|
|
63
|
-
this.Message = opts.Message;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
export class InvalidParameterException extends __BaseException {
|
|
67
|
-
name = "InvalidParameterException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "InvalidParameterException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
export class LimitExceededException extends __BaseException {
|
|
79
|
-
name = "LimitExceededException";
|
|
80
|
-
$fault = "client";
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "LimitExceededException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
export const CustomActionAttachmentCriteriaOperator = {
|
|
91
|
-
EQUALS: "EQUALS",
|
|
92
|
-
HAS_VALUE: "HAS_VALUE",
|
|
93
|
-
};
|
|
94
|
-
export class CreateTeamsChannelConfigurationException extends __BaseException {
|
|
95
|
-
name = "CreateTeamsChannelConfigurationException";
|
|
96
|
-
$fault = "server";
|
|
97
|
-
Message;
|
|
98
|
-
constructor(opts) {
|
|
99
|
-
super({
|
|
100
|
-
name: "CreateTeamsChannelConfigurationException",
|
|
101
|
-
$fault: "server",
|
|
102
|
-
...opts,
|
|
103
|
-
});
|
|
104
|
-
Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
|
|
105
|
-
this.Message = opts.Message;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
export class CreateSlackChannelConfigurationException extends __BaseException {
|
|
109
|
-
name = "CreateSlackChannelConfigurationException";
|
|
110
|
-
$fault = "server";
|
|
111
|
-
Message;
|
|
112
|
-
constructor(opts) {
|
|
113
|
-
super({
|
|
114
|
-
name: "CreateSlackChannelConfigurationException",
|
|
115
|
-
$fault: "server",
|
|
116
|
-
...opts,
|
|
117
|
-
});
|
|
118
|
-
Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
|
|
119
|
-
this.Message = opts.Message;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
123
|
-
name = "ResourceNotFoundException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
Message;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "ResourceNotFoundException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
133
|
-
this.Message = opts.Message;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
export class DeleteChimeWebhookConfigurationException extends __BaseException {
|
|
137
|
-
name = "DeleteChimeWebhookConfigurationException";
|
|
138
|
-
$fault = "server";
|
|
139
|
-
Message;
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "DeleteChimeWebhookConfigurationException",
|
|
143
|
-
$fault: "server",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
|
|
147
|
-
this.Message = opts.Message;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
export class DeleteTeamsChannelConfigurationException extends __BaseException {
|
|
151
|
-
name = "DeleteTeamsChannelConfigurationException";
|
|
152
|
-
$fault = "server";
|
|
153
|
-
Message;
|
|
154
|
-
constructor(opts) {
|
|
155
|
-
super({
|
|
156
|
-
name: "DeleteTeamsChannelConfigurationException",
|
|
157
|
-
$fault: "server",
|
|
158
|
-
...opts,
|
|
159
|
-
});
|
|
160
|
-
Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
|
|
161
|
-
this.Message = opts.Message;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
export class DeleteTeamsConfiguredTeamException extends __BaseException {
|
|
165
|
-
name = "DeleteTeamsConfiguredTeamException";
|
|
166
|
-
$fault = "server";
|
|
167
|
-
Message;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "DeleteTeamsConfiguredTeamException",
|
|
171
|
-
$fault: "server",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
|
|
175
|
-
this.Message = opts.Message;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
export class DeleteMicrosoftTeamsUserIdentityException extends __BaseException {
|
|
179
|
-
name = "DeleteMicrosoftTeamsUserIdentityException";
|
|
180
|
-
$fault = "server";
|
|
181
|
-
Message;
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "DeleteMicrosoftTeamsUserIdentityException",
|
|
185
|
-
$fault: "server",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
|
|
189
|
-
this.Message = opts.Message;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
export class DeleteSlackChannelConfigurationException extends __BaseException {
|
|
193
|
-
name = "DeleteSlackChannelConfigurationException";
|
|
194
|
-
$fault = "server";
|
|
195
|
-
Message;
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "DeleteSlackChannelConfigurationException",
|
|
199
|
-
$fault: "server",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
|
|
203
|
-
this.Message = opts.Message;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
export class DeleteSlackUserIdentityException extends __BaseException {
|
|
207
|
-
name = "DeleteSlackUserIdentityException";
|
|
208
|
-
$fault = "server";
|
|
209
|
-
Message;
|
|
210
|
-
constructor(opts) {
|
|
211
|
-
super({
|
|
212
|
-
name: "DeleteSlackUserIdentityException",
|
|
213
|
-
$fault: "server",
|
|
214
|
-
...opts,
|
|
215
|
-
});
|
|
216
|
-
Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
|
|
217
|
-
this.Message = opts.Message;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
export class DeleteSlackWorkspaceAuthorizationFault extends __BaseException {
|
|
221
|
-
name = "DeleteSlackWorkspaceAuthorizationFault";
|
|
222
|
-
$fault = "server";
|
|
223
|
-
Message;
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "DeleteSlackWorkspaceAuthorizationFault",
|
|
227
|
-
$fault: "server",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
|
|
231
|
-
this.Message = opts.Message;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
export class DescribeChimeWebhookConfigurationsException extends __BaseException {
|
|
235
|
-
name = "DescribeChimeWebhookConfigurationsException";
|
|
236
|
-
$fault = "server";
|
|
237
|
-
Message;
|
|
238
|
-
constructor(opts) {
|
|
239
|
-
super({
|
|
240
|
-
name: "DescribeChimeWebhookConfigurationsException",
|
|
241
|
-
$fault: "server",
|
|
242
|
-
...opts,
|
|
243
|
-
});
|
|
244
|
-
Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
|
|
245
|
-
this.Message = opts.Message;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
export class DescribeSlackChannelConfigurationsException extends __BaseException {
|
|
249
|
-
name = "DescribeSlackChannelConfigurationsException";
|
|
250
|
-
$fault = "server";
|
|
251
|
-
Message;
|
|
252
|
-
constructor(opts) {
|
|
253
|
-
super({
|
|
254
|
-
name: "DescribeSlackChannelConfigurationsException",
|
|
255
|
-
$fault: "server",
|
|
256
|
-
...opts,
|
|
257
|
-
});
|
|
258
|
-
Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
|
|
259
|
-
this.Message = opts.Message;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
export class DescribeSlackUserIdentitiesException extends __BaseException {
|
|
263
|
-
name = "DescribeSlackUserIdentitiesException";
|
|
264
|
-
$fault = "server";
|
|
265
|
-
Message;
|
|
266
|
-
constructor(opts) {
|
|
267
|
-
super({
|
|
268
|
-
name: "DescribeSlackUserIdentitiesException",
|
|
269
|
-
$fault: "server",
|
|
270
|
-
...opts,
|
|
271
|
-
});
|
|
272
|
-
Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
|
|
273
|
-
this.Message = opts.Message;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
export class DescribeSlackWorkspacesException extends __BaseException {
|
|
277
|
-
name = "DescribeSlackWorkspacesException";
|
|
278
|
-
$fault = "server";
|
|
279
|
-
Message;
|
|
280
|
-
constructor(opts) {
|
|
281
|
-
super({
|
|
282
|
-
name: "DescribeSlackWorkspacesException",
|
|
283
|
-
$fault: "server",
|
|
284
|
-
...opts,
|
|
285
|
-
});
|
|
286
|
-
Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
|
|
287
|
-
this.Message = opts.Message;
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
export class GetAccountPreferencesException extends __BaseException {
|
|
291
|
-
name = "GetAccountPreferencesException";
|
|
292
|
-
$fault = "server";
|
|
293
|
-
Message;
|
|
294
|
-
constructor(opts) {
|
|
295
|
-
super({
|
|
296
|
-
name: "GetAccountPreferencesException",
|
|
297
|
-
$fault: "server",
|
|
298
|
-
...opts,
|
|
299
|
-
});
|
|
300
|
-
Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
|
|
301
|
-
this.Message = opts.Message;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
export class GetTeamsChannelConfigurationException extends __BaseException {
|
|
305
|
-
name = "GetTeamsChannelConfigurationException";
|
|
306
|
-
$fault = "server";
|
|
307
|
-
Message;
|
|
308
|
-
constructor(opts) {
|
|
309
|
-
super({
|
|
310
|
-
name: "GetTeamsChannelConfigurationException",
|
|
311
|
-
$fault: "server",
|
|
312
|
-
...opts,
|
|
313
|
-
});
|
|
314
|
-
Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
|
|
315
|
-
this.Message = opts.Message;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
export class ListTeamsChannelConfigurationsException extends __BaseException {
|
|
319
|
-
name = "ListTeamsChannelConfigurationsException";
|
|
320
|
-
$fault = "server";
|
|
321
|
-
Message;
|
|
322
|
-
constructor(opts) {
|
|
323
|
-
super({
|
|
324
|
-
name: "ListTeamsChannelConfigurationsException",
|
|
325
|
-
$fault: "server",
|
|
326
|
-
...opts,
|
|
327
|
-
});
|
|
328
|
-
Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
|
|
329
|
-
this.Message = opts.Message;
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
export class ListMicrosoftTeamsConfiguredTeamsException extends __BaseException {
|
|
333
|
-
name = "ListMicrosoftTeamsConfiguredTeamsException";
|
|
334
|
-
$fault = "server";
|
|
335
|
-
Message;
|
|
336
|
-
constructor(opts) {
|
|
337
|
-
super({
|
|
338
|
-
name: "ListMicrosoftTeamsConfiguredTeamsException",
|
|
339
|
-
$fault: "server",
|
|
340
|
-
...opts,
|
|
341
|
-
});
|
|
342
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
|
|
343
|
-
this.Message = opts.Message;
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
export class ListMicrosoftTeamsUserIdentitiesException extends __BaseException {
|
|
347
|
-
name = "ListMicrosoftTeamsUserIdentitiesException";
|
|
348
|
-
$fault = "server";
|
|
349
|
-
Message;
|
|
350
|
-
constructor(opts) {
|
|
351
|
-
super({
|
|
352
|
-
name: "ListMicrosoftTeamsUserIdentitiesException",
|
|
353
|
-
$fault: "server",
|
|
354
|
-
...opts,
|
|
355
|
-
});
|
|
356
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
|
|
357
|
-
this.Message = opts.Message;
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
361
|
-
name = "ServiceUnavailableException";
|
|
362
|
-
$fault = "client";
|
|
363
|
-
constructor(opts) {
|
|
364
|
-
super({
|
|
365
|
-
name: "ServiceUnavailableException",
|
|
366
|
-
$fault: "client",
|
|
367
|
-
...opts,
|
|
368
|
-
});
|
|
369
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
export class TooManyTagsException extends __BaseException {
|
|
373
|
-
name = "TooManyTagsException";
|
|
374
|
-
$fault = "client";
|
|
375
|
-
constructor(opts) {
|
|
376
|
-
super({
|
|
377
|
-
name: "TooManyTagsException",
|
|
378
|
-
$fault: "client",
|
|
379
|
-
...opts,
|
|
380
|
-
});
|
|
381
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
export class UpdateAccountPreferencesException extends __BaseException {
|
|
385
|
-
name = "UpdateAccountPreferencesException";
|
|
386
|
-
$fault = "server";
|
|
387
|
-
Message;
|
|
388
|
-
constructor(opts) {
|
|
389
|
-
super({
|
|
390
|
-
name: "UpdateAccountPreferencesException",
|
|
391
|
-
$fault: "server",
|
|
392
|
-
...opts,
|
|
393
|
-
});
|
|
394
|
-
Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
|
|
395
|
-
this.Message = opts.Message;
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
export class UpdateChimeWebhookConfigurationException extends __BaseException {
|
|
399
|
-
name = "UpdateChimeWebhookConfigurationException";
|
|
400
|
-
$fault = "server";
|
|
401
|
-
Message;
|
|
402
|
-
constructor(opts) {
|
|
403
|
-
super({
|
|
404
|
-
name: "UpdateChimeWebhookConfigurationException",
|
|
405
|
-
$fault: "server",
|
|
406
|
-
...opts,
|
|
407
|
-
});
|
|
408
|
-
Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
|
|
409
|
-
this.Message = opts.Message;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
export class UpdateTeamsChannelConfigurationException extends __BaseException {
|
|
413
|
-
name = "UpdateTeamsChannelConfigurationException";
|
|
414
|
-
$fault = "server";
|
|
415
|
-
Message;
|
|
416
|
-
constructor(opts) {
|
|
417
|
-
super({
|
|
418
|
-
name: "UpdateTeamsChannelConfigurationException",
|
|
419
|
-
$fault: "server",
|
|
420
|
-
...opts,
|
|
421
|
-
});
|
|
422
|
-
Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
|
|
423
|
-
this.Message = opts.Message;
|
|
424
|
-
}
|
|
425
|
-
}
|
|
426
|
-
export class UpdateSlackChannelConfigurationException extends __BaseException {
|
|
427
|
-
name = "UpdateSlackChannelConfigurationException";
|
|
428
|
-
$fault = "server";
|
|
429
|
-
Message;
|
|
430
|
-
constructor(opts) {
|
|
431
|
-
super({
|
|
432
|
-
name: "UpdateSlackChannelConfigurationException",
|
|
433
|
-
$fault: "server",
|
|
434
|
-
...opts,
|
|
435
|
-
});
|
|
436
|
-
Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
|
|
437
|
-
this.Message = opts.Message;
|
|
438
|
-
}
|
|
439
|
-
}
|
|
1
|
+
export {};
|
|
@@ -232,7 +232,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chatbot";
|
|
|
232
232
|
const n0 = "com.amazonaws.chatbot";
|
|
233
233
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
234
234
|
import { ChatbotServiceException as __ChatbotServiceException } from "../models/ChatbotServiceException";
|
|
235
|
-
import { ConflictException as __ConflictException, CreateChimeWebhookConfigurationException as __CreateChimeWebhookConfigurationException, CreateSlackChannelConfigurationException as __CreateSlackChannelConfigurationException, CreateTeamsChannelConfigurationException as __CreateTeamsChannelConfigurationException, DeleteChimeWebhookConfigurationException as __DeleteChimeWebhookConfigurationException, DeleteMicrosoftTeamsUserIdentityException as __DeleteMicrosoftTeamsUserIdentityException, DeleteSlackChannelConfigurationException as __DeleteSlackChannelConfigurationException, DeleteSlackUserIdentityException as __DeleteSlackUserIdentityException, DeleteSlackWorkspaceAuthorizationFault as __DeleteSlackWorkspaceAuthorizationFault, DeleteTeamsChannelConfigurationException as __DeleteTeamsChannelConfigurationException, DeleteTeamsConfiguredTeamException as __DeleteTeamsConfiguredTeamException, DescribeChimeWebhookConfigurationsException as __DescribeChimeWebhookConfigurationsException, DescribeSlackChannelConfigurationsException as __DescribeSlackChannelConfigurationsException, DescribeSlackUserIdentitiesException as __DescribeSlackUserIdentitiesException, DescribeSlackWorkspacesException as __DescribeSlackWorkspacesException, GetAccountPreferencesException as __GetAccountPreferencesException, GetTeamsChannelConfigurationException as __GetTeamsChannelConfigurationException, InternalServiceError as __InternalServiceError, InvalidParameterException as __InvalidParameterException, InvalidRequestException as __InvalidRequestException, LimitExceededException as __LimitExceededException, ListMicrosoftTeamsConfiguredTeamsException as __ListMicrosoftTeamsConfiguredTeamsException, ListMicrosoftTeamsUserIdentitiesException as __ListMicrosoftTeamsUserIdentitiesException, ListTeamsChannelConfigurationsException as __ListTeamsChannelConfigurationsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, TooManyTagsException as __TooManyTagsException, UnauthorizedException as __UnauthorizedException, UpdateAccountPreferencesException as __UpdateAccountPreferencesException, UpdateChimeWebhookConfigurationException as __UpdateChimeWebhookConfigurationException, UpdateSlackChannelConfigurationException as __UpdateSlackChannelConfigurationException, UpdateTeamsChannelConfigurationException as __UpdateTeamsChannelConfigurationException, } from "../models/
|
|
235
|
+
import { ConflictException as __ConflictException, CreateChimeWebhookConfigurationException as __CreateChimeWebhookConfigurationException, CreateSlackChannelConfigurationException as __CreateSlackChannelConfigurationException, CreateTeamsChannelConfigurationException as __CreateTeamsChannelConfigurationException, DeleteChimeWebhookConfigurationException as __DeleteChimeWebhookConfigurationException, DeleteMicrosoftTeamsUserIdentityException as __DeleteMicrosoftTeamsUserIdentityException, DeleteSlackChannelConfigurationException as __DeleteSlackChannelConfigurationException, DeleteSlackUserIdentityException as __DeleteSlackUserIdentityException, DeleteSlackWorkspaceAuthorizationFault as __DeleteSlackWorkspaceAuthorizationFault, DeleteTeamsChannelConfigurationException as __DeleteTeamsChannelConfigurationException, DeleteTeamsConfiguredTeamException as __DeleteTeamsConfiguredTeamException, DescribeChimeWebhookConfigurationsException as __DescribeChimeWebhookConfigurationsException, DescribeSlackChannelConfigurationsException as __DescribeSlackChannelConfigurationsException, DescribeSlackUserIdentitiesException as __DescribeSlackUserIdentitiesException, DescribeSlackWorkspacesException as __DescribeSlackWorkspacesException, GetAccountPreferencesException as __GetAccountPreferencesException, GetTeamsChannelConfigurationException as __GetTeamsChannelConfigurationException, InternalServiceError as __InternalServiceError, InvalidParameterException as __InvalidParameterException, InvalidRequestException as __InvalidRequestException, LimitExceededException as __LimitExceededException, ListMicrosoftTeamsConfiguredTeamsException as __ListMicrosoftTeamsConfiguredTeamsException, ListMicrosoftTeamsUserIdentitiesException as __ListMicrosoftTeamsUserIdentitiesException, ListTeamsChannelConfigurationsException as __ListTeamsChannelConfigurationsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, TooManyTagsException as __TooManyTagsException, UnauthorizedException as __UnauthorizedException, UpdateAccountPreferencesException as __UpdateAccountPreferencesException, UpdateChimeWebhookConfigurationException as __UpdateChimeWebhookConfigurationException, UpdateSlackChannelConfigurationException as __UpdateSlackChannelConfigurationException, UpdateTeamsChannelConfigurationException as __UpdateTeamsChannelConfigurationException, } from "../models/errors";
|
|
236
236
|
export var ChimeWebhookDescription = [0, n0, _CWD, 8, 0];
|
|
237
237
|
export var ChimeWebhookUrl = [0, n0, _CWU, 8, 0];
|
|
238
238
|
export var SlackChannelDisplayName = [0, n0, _SCDN, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -33,5 +33,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
33
33
|
export type { ChatbotExtensionConfiguration } from "./extensionConfiguration";
|
|
34
34
|
export * from "./commands";
|
|
35
35
|
export * from "./pagination";
|
|
36
|
-
export * from "./models";
|
|
36
|
+
export * from "./models/enums";
|
|
37
|
+
export * from "./models/errors";
|
|
38
|
+
export type * from "./models/models_0";
|
|
37
39
|
export { ChatbotServiceException } from "./models/ChatbotServiceException";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const CustomActionAttachmentCriteriaOperator: {
|
|
6
|
+
readonly EQUALS: "EQUALS";
|
|
7
|
+
readonly HAS_VALUE: "HAS_VALUE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type CustomActionAttachmentCriteriaOperator = (typeof CustomActionAttachmentCriteriaOperator)[keyof typeof CustomActionAttachmentCriteriaOperator];
|