@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,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ChatbotServiceException as __BaseException } from "./ChatbotServiceException";
|
|
1
|
+
import { CustomActionAttachmentCriteriaOperator } from "./enums";
|
|
3
2
|
export interface AccountPreferences {
|
|
4
3
|
UserAuthorizationRequired?: boolean | undefined;
|
|
5
4
|
TrainingDataCollectionEnabled?: boolean | undefined;
|
|
@@ -9,28 +8,6 @@ export interface AssociateToConfigurationRequest {
|
|
|
9
8
|
ChatConfiguration: string | undefined;
|
|
10
9
|
}
|
|
11
10
|
export interface AssociateToConfigurationResult {}
|
|
12
|
-
export declare class InternalServiceError extends __BaseException {
|
|
13
|
-
readonly name: "InternalServiceError";
|
|
14
|
-
readonly $fault: "server";
|
|
15
|
-
Message?: string | undefined;
|
|
16
|
-
constructor(
|
|
17
|
-
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
18
|
-
);
|
|
19
|
-
}
|
|
20
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
21
|
-
readonly name: "InvalidRequestException";
|
|
22
|
-
readonly $fault: "client";
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
28
|
-
readonly name: "UnauthorizedException";
|
|
29
|
-
readonly $fault: "client";
|
|
30
|
-
constructor(
|
|
31
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
32
|
-
);
|
|
33
|
-
}
|
|
34
11
|
export interface AssociationListing {
|
|
35
12
|
Resource: string | undefined;
|
|
36
13
|
}
|
|
@@ -56,22 +33,6 @@ export interface ConfiguredTeam {
|
|
|
56
33
|
State?: string | undefined;
|
|
57
34
|
StateReason?: string | undefined;
|
|
58
35
|
}
|
|
59
|
-
export declare class ConflictException extends __BaseException {
|
|
60
|
-
readonly name: "ConflictException";
|
|
61
|
-
readonly $fault: "client";
|
|
62
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
63
|
-
}
|
|
64
|
-
export declare class CreateChimeWebhookConfigurationException extends __BaseException {
|
|
65
|
-
readonly name: "CreateChimeWebhookConfigurationException";
|
|
66
|
-
readonly $fault: "server";
|
|
67
|
-
Message?: string | undefined;
|
|
68
|
-
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<
|
|
70
|
-
CreateChimeWebhookConfigurationException,
|
|
71
|
-
__BaseException
|
|
72
|
-
>
|
|
73
|
-
);
|
|
74
|
-
}
|
|
75
36
|
export interface CreateChimeWebhookConfigurationRequest {
|
|
76
37
|
WebhookDescription: string | undefined;
|
|
77
38
|
WebhookUrl: string | undefined;
|
|
@@ -84,26 +45,6 @@ export interface CreateChimeWebhookConfigurationRequest {
|
|
|
84
45
|
export interface CreateChimeWebhookConfigurationResult {
|
|
85
46
|
WebhookConfiguration?: ChimeWebhookConfiguration | undefined;
|
|
86
47
|
}
|
|
87
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
88
|
-
readonly name: "InvalidParameterException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
export declare class LimitExceededException extends __BaseException {
|
|
95
|
-
readonly name: "LimitExceededException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
constructor(
|
|
98
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
|
-
export declare const CustomActionAttachmentCriteriaOperator: {
|
|
102
|
-
readonly EQUALS: "EQUALS";
|
|
103
|
-
readonly HAS_VALUE: "HAS_VALUE";
|
|
104
|
-
};
|
|
105
|
-
export type CustomActionAttachmentCriteriaOperator =
|
|
106
|
-
(typeof CustomActionAttachmentCriteriaOperator)[keyof typeof CustomActionAttachmentCriteriaOperator];
|
|
107
48
|
export interface CustomActionAttachmentCriteria {
|
|
108
49
|
Operator: CustomActionAttachmentCriteriaOperator | undefined;
|
|
109
50
|
VariableName: string | undefined;
|
|
@@ -129,17 +70,6 @@ export interface CreateCustomActionRequest {
|
|
|
129
70
|
export interface CreateCustomActionResult {
|
|
130
71
|
CustomActionArn: string | undefined;
|
|
131
72
|
}
|
|
132
|
-
export declare class CreateTeamsChannelConfigurationException extends __BaseException {
|
|
133
|
-
readonly name: "CreateTeamsChannelConfigurationException";
|
|
134
|
-
readonly $fault: "server";
|
|
135
|
-
Message?: string | undefined;
|
|
136
|
-
constructor(
|
|
137
|
-
opts: __ExceptionOptionType<
|
|
138
|
-
CreateTeamsChannelConfigurationException,
|
|
139
|
-
__BaseException
|
|
140
|
-
>
|
|
141
|
-
);
|
|
142
|
-
}
|
|
143
73
|
export interface CreateTeamsChannelConfigurationRequest {
|
|
144
74
|
ChannelId: string | undefined;
|
|
145
75
|
ChannelName?: string | undefined;
|
|
@@ -174,17 +104,6 @@ export interface TeamsChannelConfiguration {
|
|
|
174
104
|
export interface CreateTeamsChannelConfigurationResult {
|
|
175
105
|
ChannelConfiguration?: TeamsChannelConfiguration | undefined;
|
|
176
106
|
}
|
|
177
|
-
export declare class CreateSlackChannelConfigurationException extends __BaseException {
|
|
178
|
-
readonly name: "CreateSlackChannelConfigurationException";
|
|
179
|
-
readonly $fault: "server";
|
|
180
|
-
Message?: string | undefined;
|
|
181
|
-
constructor(
|
|
182
|
-
opts: __ExceptionOptionType<
|
|
183
|
-
CreateSlackChannelConfigurationException,
|
|
184
|
-
__BaseException
|
|
185
|
-
>
|
|
186
|
-
);
|
|
187
|
-
}
|
|
188
107
|
export interface CreateSlackChannelConfigurationRequest {
|
|
189
108
|
SlackTeamId: string | undefined;
|
|
190
109
|
SlackChannelId: string | undefined;
|
|
@@ -227,14 +146,6 @@ export interface DeleteCustomActionRequest {
|
|
|
227
146
|
CustomActionArn: string | undefined;
|
|
228
147
|
}
|
|
229
148
|
export interface DeleteCustomActionResult {}
|
|
230
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
231
|
-
readonly name: "ResourceNotFoundException";
|
|
232
|
-
readonly $fault: "client";
|
|
233
|
-
Message?: string | undefined;
|
|
234
|
-
constructor(
|
|
235
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
236
|
-
);
|
|
237
|
-
}
|
|
238
149
|
export interface GetCustomActionRequest {
|
|
239
150
|
CustomActionArn: string | undefined;
|
|
240
151
|
}
|
|
@@ -258,125 +169,37 @@ export interface UpdateCustomActionRequest {
|
|
|
258
169
|
export interface UpdateCustomActionResult {
|
|
259
170
|
CustomActionArn: string | undefined;
|
|
260
171
|
}
|
|
261
|
-
export declare class DeleteChimeWebhookConfigurationException extends __BaseException {
|
|
262
|
-
readonly name: "DeleteChimeWebhookConfigurationException";
|
|
263
|
-
readonly $fault: "server";
|
|
264
|
-
Message?: string | undefined;
|
|
265
|
-
constructor(
|
|
266
|
-
opts: __ExceptionOptionType<
|
|
267
|
-
DeleteChimeWebhookConfigurationException,
|
|
268
|
-
__BaseException
|
|
269
|
-
>
|
|
270
|
-
);
|
|
271
|
-
}
|
|
272
172
|
export interface DeleteChimeWebhookConfigurationRequest {
|
|
273
173
|
ChatConfigurationArn: string | undefined;
|
|
274
174
|
}
|
|
275
175
|
export interface DeleteChimeWebhookConfigurationResult {}
|
|
276
|
-
export declare class DeleteTeamsChannelConfigurationException extends __BaseException {
|
|
277
|
-
readonly name: "DeleteTeamsChannelConfigurationException";
|
|
278
|
-
readonly $fault: "server";
|
|
279
|
-
Message?: string | undefined;
|
|
280
|
-
constructor(
|
|
281
|
-
opts: __ExceptionOptionType<
|
|
282
|
-
DeleteTeamsChannelConfigurationException,
|
|
283
|
-
__BaseException
|
|
284
|
-
>
|
|
285
|
-
);
|
|
286
|
-
}
|
|
287
176
|
export interface DeleteTeamsChannelConfigurationRequest {
|
|
288
177
|
ChatConfigurationArn: string | undefined;
|
|
289
178
|
}
|
|
290
179
|
export interface DeleteTeamsChannelConfigurationResult {}
|
|
291
|
-
export declare class DeleteTeamsConfiguredTeamException extends __BaseException {
|
|
292
|
-
readonly name: "DeleteTeamsConfiguredTeamException";
|
|
293
|
-
readonly $fault: "server";
|
|
294
|
-
Message?: string | undefined;
|
|
295
|
-
constructor(
|
|
296
|
-
opts: __ExceptionOptionType<
|
|
297
|
-
DeleteTeamsConfiguredTeamException,
|
|
298
|
-
__BaseException
|
|
299
|
-
>
|
|
300
|
-
);
|
|
301
|
-
}
|
|
302
180
|
export interface DeleteTeamsConfiguredTeamRequest {
|
|
303
181
|
TeamId: string | undefined;
|
|
304
182
|
}
|
|
305
183
|
export interface DeleteTeamsConfiguredTeamResult {}
|
|
306
|
-
export declare class DeleteMicrosoftTeamsUserIdentityException extends __BaseException {
|
|
307
|
-
readonly name: "DeleteMicrosoftTeamsUserIdentityException";
|
|
308
|
-
readonly $fault: "server";
|
|
309
|
-
Message?: string | undefined;
|
|
310
|
-
constructor(
|
|
311
|
-
opts: __ExceptionOptionType<
|
|
312
|
-
DeleteMicrosoftTeamsUserIdentityException,
|
|
313
|
-
__BaseException
|
|
314
|
-
>
|
|
315
|
-
);
|
|
316
|
-
}
|
|
317
184
|
export interface DeleteMicrosoftTeamsUserIdentityRequest {
|
|
318
185
|
ChatConfigurationArn: string | undefined;
|
|
319
186
|
UserId: string | undefined;
|
|
320
187
|
}
|
|
321
188
|
export interface DeleteMicrosoftTeamsUserIdentityResult {}
|
|
322
|
-
export declare class DeleteSlackChannelConfigurationException extends __BaseException {
|
|
323
|
-
readonly name: "DeleteSlackChannelConfigurationException";
|
|
324
|
-
readonly $fault: "server";
|
|
325
|
-
Message?: string | undefined;
|
|
326
|
-
constructor(
|
|
327
|
-
opts: __ExceptionOptionType<
|
|
328
|
-
DeleteSlackChannelConfigurationException,
|
|
329
|
-
__BaseException
|
|
330
|
-
>
|
|
331
|
-
);
|
|
332
|
-
}
|
|
333
189
|
export interface DeleteSlackChannelConfigurationRequest {
|
|
334
190
|
ChatConfigurationArn: string | undefined;
|
|
335
191
|
}
|
|
336
192
|
export interface DeleteSlackChannelConfigurationResult {}
|
|
337
|
-
export declare class DeleteSlackUserIdentityException extends __BaseException {
|
|
338
|
-
readonly name: "DeleteSlackUserIdentityException";
|
|
339
|
-
readonly $fault: "server";
|
|
340
|
-
Message?: string | undefined;
|
|
341
|
-
constructor(
|
|
342
|
-
opts: __ExceptionOptionType<
|
|
343
|
-
DeleteSlackUserIdentityException,
|
|
344
|
-
__BaseException
|
|
345
|
-
>
|
|
346
|
-
);
|
|
347
|
-
}
|
|
348
193
|
export interface DeleteSlackUserIdentityRequest {
|
|
349
194
|
ChatConfigurationArn: string | undefined;
|
|
350
195
|
SlackTeamId: string | undefined;
|
|
351
196
|
SlackUserId: string | undefined;
|
|
352
197
|
}
|
|
353
198
|
export interface DeleteSlackUserIdentityResult {}
|
|
354
|
-
export declare class DeleteSlackWorkspaceAuthorizationFault extends __BaseException {
|
|
355
|
-
readonly name: "DeleteSlackWorkspaceAuthorizationFault";
|
|
356
|
-
readonly $fault: "server";
|
|
357
|
-
Message?: string | undefined;
|
|
358
|
-
constructor(
|
|
359
|
-
opts: __ExceptionOptionType<
|
|
360
|
-
DeleteSlackWorkspaceAuthorizationFault,
|
|
361
|
-
__BaseException
|
|
362
|
-
>
|
|
363
|
-
);
|
|
364
|
-
}
|
|
365
199
|
export interface DeleteSlackWorkspaceAuthorizationRequest {
|
|
366
200
|
SlackTeamId: string | undefined;
|
|
367
201
|
}
|
|
368
202
|
export interface DeleteSlackWorkspaceAuthorizationResult {}
|
|
369
|
-
export declare class DescribeChimeWebhookConfigurationsException extends __BaseException {
|
|
370
|
-
readonly name: "DescribeChimeWebhookConfigurationsException";
|
|
371
|
-
readonly $fault: "server";
|
|
372
|
-
Message?: string | undefined;
|
|
373
|
-
constructor(
|
|
374
|
-
opts: __ExceptionOptionType<
|
|
375
|
-
DescribeChimeWebhookConfigurationsException,
|
|
376
|
-
__BaseException
|
|
377
|
-
>
|
|
378
|
-
);
|
|
379
|
-
}
|
|
380
203
|
export interface DescribeChimeWebhookConfigurationsRequest {
|
|
381
204
|
MaxResults?: number | undefined;
|
|
382
205
|
NextToken?: string | undefined;
|
|
@@ -386,17 +209,6 @@ export interface DescribeChimeWebhookConfigurationsResult {
|
|
|
386
209
|
NextToken?: string | undefined;
|
|
387
210
|
WebhookConfigurations?: ChimeWebhookConfiguration[] | undefined;
|
|
388
211
|
}
|
|
389
|
-
export declare class DescribeSlackChannelConfigurationsException extends __BaseException {
|
|
390
|
-
readonly name: "DescribeSlackChannelConfigurationsException";
|
|
391
|
-
readonly $fault: "server";
|
|
392
|
-
Message?: string | undefined;
|
|
393
|
-
constructor(
|
|
394
|
-
opts: __ExceptionOptionType<
|
|
395
|
-
DescribeSlackChannelConfigurationsException,
|
|
396
|
-
__BaseException
|
|
397
|
-
>
|
|
398
|
-
);
|
|
399
|
-
}
|
|
400
212
|
export interface DescribeSlackChannelConfigurationsRequest {
|
|
401
213
|
MaxResults?: number | undefined;
|
|
402
214
|
NextToken?: string | undefined;
|
|
@@ -406,17 +218,6 @@ export interface DescribeSlackChannelConfigurationsResult {
|
|
|
406
218
|
NextToken?: string | undefined;
|
|
407
219
|
SlackChannelConfigurations?: SlackChannelConfiguration[] | undefined;
|
|
408
220
|
}
|
|
409
|
-
export declare class DescribeSlackUserIdentitiesException extends __BaseException {
|
|
410
|
-
readonly name: "DescribeSlackUserIdentitiesException";
|
|
411
|
-
readonly $fault: "server";
|
|
412
|
-
Message?: string | undefined;
|
|
413
|
-
constructor(
|
|
414
|
-
opts: __ExceptionOptionType<
|
|
415
|
-
DescribeSlackUserIdentitiesException,
|
|
416
|
-
__BaseException
|
|
417
|
-
>
|
|
418
|
-
);
|
|
419
|
-
}
|
|
420
221
|
export interface DescribeSlackUserIdentitiesRequest {
|
|
421
222
|
ChatConfigurationArn?: string | undefined;
|
|
422
223
|
NextToken?: string | undefined;
|
|
@@ -433,17 +234,6 @@ export interface DescribeSlackUserIdentitiesResult {
|
|
|
433
234
|
SlackUserIdentities?: SlackUserIdentity[] | undefined;
|
|
434
235
|
NextToken?: string | undefined;
|
|
435
236
|
}
|
|
436
|
-
export declare class DescribeSlackWorkspacesException extends __BaseException {
|
|
437
|
-
readonly name: "DescribeSlackWorkspacesException";
|
|
438
|
-
readonly $fault: "server";
|
|
439
|
-
Message?: string | undefined;
|
|
440
|
-
constructor(
|
|
441
|
-
opts: __ExceptionOptionType<
|
|
442
|
-
DescribeSlackWorkspacesException,
|
|
443
|
-
__BaseException
|
|
444
|
-
>
|
|
445
|
-
);
|
|
446
|
-
}
|
|
447
237
|
export interface DescribeSlackWorkspacesRequest {
|
|
448
238
|
MaxResults?: number | undefined;
|
|
449
239
|
NextToken?: string | undefined;
|
|
@@ -463,29 +253,10 @@ export interface DisassociateFromConfigurationRequest {
|
|
|
463
253
|
ChatConfiguration: string | undefined;
|
|
464
254
|
}
|
|
465
255
|
export interface DisassociateFromConfigurationResult {}
|
|
466
|
-
export declare class GetAccountPreferencesException extends __BaseException {
|
|
467
|
-
readonly name: "GetAccountPreferencesException";
|
|
468
|
-
readonly $fault: "server";
|
|
469
|
-
Message?: string | undefined;
|
|
470
|
-
constructor(
|
|
471
|
-
opts: __ExceptionOptionType<GetAccountPreferencesException, __BaseException>
|
|
472
|
-
);
|
|
473
|
-
}
|
|
474
256
|
export interface GetAccountPreferencesRequest {}
|
|
475
257
|
export interface GetAccountPreferencesResult {
|
|
476
258
|
AccountPreferences?: AccountPreferences | undefined;
|
|
477
259
|
}
|
|
478
|
-
export declare class GetTeamsChannelConfigurationException extends __BaseException {
|
|
479
|
-
readonly name: "GetTeamsChannelConfigurationException";
|
|
480
|
-
readonly $fault: "server";
|
|
481
|
-
Message?: string | undefined;
|
|
482
|
-
constructor(
|
|
483
|
-
opts: __ExceptionOptionType<
|
|
484
|
-
GetTeamsChannelConfigurationException,
|
|
485
|
-
__BaseException
|
|
486
|
-
>
|
|
487
|
-
);
|
|
488
|
-
}
|
|
489
260
|
export interface GetTeamsChannelConfigurationRequest {
|
|
490
261
|
ChatConfigurationArn: string | undefined;
|
|
491
262
|
}
|
|
@@ -501,17 +272,6 @@ export interface ListAssociationsResult {
|
|
|
501
272
|
Associations: AssociationListing[] | undefined;
|
|
502
273
|
NextToken?: string | undefined;
|
|
503
274
|
}
|
|
504
|
-
export declare class ListTeamsChannelConfigurationsException extends __BaseException {
|
|
505
|
-
readonly name: "ListTeamsChannelConfigurationsException";
|
|
506
|
-
readonly $fault: "server";
|
|
507
|
-
Message?: string | undefined;
|
|
508
|
-
constructor(
|
|
509
|
-
opts: __ExceptionOptionType<
|
|
510
|
-
ListTeamsChannelConfigurationsException,
|
|
511
|
-
__BaseException
|
|
512
|
-
>
|
|
513
|
-
);
|
|
514
|
-
}
|
|
515
275
|
export interface ListTeamsChannelConfigurationsRequest {
|
|
516
276
|
MaxResults?: number | undefined;
|
|
517
277
|
NextToken?: string | undefined;
|
|
@@ -521,17 +281,6 @@ export interface ListTeamsChannelConfigurationsResult {
|
|
|
521
281
|
NextToken?: string | undefined;
|
|
522
282
|
TeamChannelConfigurations?: TeamsChannelConfiguration[] | undefined;
|
|
523
283
|
}
|
|
524
|
-
export declare class ListMicrosoftTeamsConfiguredTeamsException extends __BaseException {
|
|
525
|
-
readonly name: "ListMicrosoftTeamsConfiguredTeamsException";
|
|
526
|
-
readonly $fault: "server";
|
|
527
|
-
Message?: string | undefined;
|
|
528
|
-
constructor(
|
|
529
|
-
opts: __ExceptionOptionType<
|
|
530
|
-
ListMicrosoftTeamsConfiguredTeamsException,
|
|
531
|
-
__BaseException
|
|
532
|
-
>
|
|
533
|
-
);
|
|
534
|
-
}
|
|
535
284
|
export interface ListMicrosoftTeamsConfiguredTeamsRequest {
|
|
536
285
|
MaxResults?: number | undefined;
|
|
537
286
|
NextToken?: string | undefined;
|
|
@@ -540,17 +289,6 @@ export interface ListMicrosoftTeamsConfiguredTeamsResult {
|
|
|
540
289
|
ConfiguredTeams?: ConfiguredTeam[] | undefined;
|
|
541
290
|
NextToken?: string | undefined;
|
|
542
291
|
}
|
|
543
|
-
export declare class ListMicrosoftTeamsUserIdentitiesException extends __BaseException {
|
|
544
|
-
readonly name: "ListMicrosoftTeamsUserIdentitiesException";
|
|
545
|
-
readonly $fault: "server";
|
|
546
|
-
Message?: string | undefined;
|
|
547
|
-
constructor(
|
|
548
|
-
opts: __ExceptionOptionType<
|
|
549
|
-
ListMicrosoftTeamsUserIdentitiesException,
|
|
550
|
-
__BaseException
|
|
551
|
-
>
|
|
552
|
-
);
|
|
553
|
-
}
|
|
554
292
|
export interface ListMicrosoftTeamsUserIdentitiesRequest {
|
|
555
293
|
ChatConfigurationArn?: string | undefined;
|
|
556
294
|
NextToken?: string | undefined;
|
|
@@ -575,41 +313,16 @@ export interface ListTagsForResourceRequest {
|
|
|
575
313
|
export interface ListTagsForResourceResponse {
|
|
576
314
|
Tags?: Tag[] | undefined;
|
|
577
315
|
}
|
|
578
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
579
|
-
readonly name: "ServiceUnavailableException";
|
|
580
|
-
readonly $fault: "client";
|
|
581
|
-
constructor(
|
|
582
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
583
|
-
);
|
|
584
|
-
}
|
|
585
316
|
export interface TagResourceRequest {
|
|
586
317
|
ResourceARN: string | undefined;
|
|
587
318
|
Tags: Tag[] | undefined;
|
|
588
319
|
}
|
|
589
320
|
export interface TagResourceResponse {}
|
|
590
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
591
|
-
readonly name: "TooManyTagsException";
|
|
592
|
-
readonly $fault: "client";
|
|
593
|
-
constructor(
|
|
594
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
595
|
-
);
|
|
596
|
-
}
|
|
597
321
|
export interface UntagResourceRequest {
|
|
598
322
|
ResourceARN: string | undefined;
|
|
599
323
|
TagKeys: string[] | undefined;
|
|
600
324
|
}
|
|
601
325
|
export interface UntagResourceResponse {}
|
|
602
|
-
export declare class UpdateAccountPreferencesException extends __BaseException {
|
|
603
|
-
readonly name: "UpdateAccountPreferencesException";
|
|
604
|
-
readonly $fault: "server";
|
|
605
|
-
Message?: string | undefined;
|
|
606
|
-
constructor(
|
|
607
|
-
opts: __ExceptionOptionType<
|
|
608
|
-
UpdateAccountPreferencesException,
|
|
609
|
-
__BaseException
|
|
610
|
-
>
|
|
611
|
-
);
|
|
612
|
-
}
|
|
613
326
|
export interface UpdateAccountPreferencesRequest {
|
|
614
327
|
UserAuthorizationRequired?: boolean | undefined;
|
|
615
328
|
TrainingDataCollectionEnabled?: boolean | undefined;
|
|
@@ -617,17 +330,6 @@ export interface UpdateAccountPreferencesRequest {
|
|
|
617
330
|
export interface UpdateAccountPreferencesResult {
|
|
618
331
|
AccountPreferences?: AccountPreferences | undefined;
|
|
619
332
|
}
|
|
620
|
-
export declare class UpdateChimeWebhookConfigurationException extends __BaseException {
|
|
621
|
-
readonly name: "UpdateChimeWebhookConfigurationException";
|
|
622
|
-
readonly $fault: "server";
|
|
623
|
-
Message?: string | undefined;
|
|
624
|
-
constructor(
|
|
625
|
-
opts: __ExceptionOptionType<
|
|
626
|
-
UpdateChimeWebhookConfigurationException,
|
|
627
|
-
__BaseException
|
|
628
|
-
>
|
|
629
|
-
);
|
|
630
|
-
}
|
|
631
333
|
export interface UpdateChimeWebhookConfigurationRequest {
|
|
632
334
|
ChatConfigurationArn: string | undefined;
|
|
633
335
|
WebhookDescription?: string | undefined;
|
|
@@ -639,17 +341,6 @@ export interface UpdateChimeWebhookConfigurationRequest {
|
|
|
639
341
|
export interface UpdateChimeWebhookConfigurationResult {
|
|
640
342
|
WebhookConfiguration?: ChimeWebhookConfiguration | undefined;
|
|
641
343
|
}
|
|
642
|
-
export declare class UpdateTeamsChannelConfigurationException extends __BaseException {
|
|
643
|
-
readonly name: "UpdateTeamsChannelConfigurationException";
|
|
644
|
-
readonly $fault: "server";
|
|
645
|
-
Message?: string | undefined;
|
|
646
|
-
constructor(
|
|
647
|
-
opts: __ExceptionOptionType<
|
|
648
|
-
UpdateTeamsChannelConfigurationException,
|
|
649
|
-
__BaseException
|
|
650
|
-
>
|
|
651
|
-
);
|
|
652
|
-
}
|
|
653
344
|
export interface UpdateTeamsChannelConfigurationRequest {
|
|
654
345
|
ChatConfigurationArn: string | undefined;
|
|
655
346
|
ChannelId: string | undefined;
|
|
@@ -663,17 +354,6 @@ export interface UpdateTeamsChannelConfigurationRequest {
|
|
|
663
354
|
export interface UpdateTeamsChannelConfigurationResult {
|
|
664
355
|
ChannelConfiguration?: TeamsChannelConfiguration | undefined;
|
|
665
356
|
}
|
|
666
|
-
export declare class UpdateSlackChannelConfigurationException extends __BaseException {
|
|
667
|
-
readonly name: "UpdateSlackChannelConfigurationException";
|
|
668
|
-
readonly $fault: "server";
|
|
669
|
-
Message?: string | undefined;
|
|
670
|
-
constructor(
|
|
671
|
-
opts: __ExceptionOptionType<
|
|
672
|
-
UpdateSlackChannelConfigurationException,
|
|
673
|
-
__BaseException
|
|
674
|
-
>
|
|
675
|
-
);
|
|
676
|
-
}
|
|
677
357
|
export interface UpdateSlackChannelConfigurationRequest {
|
|
678
358
|
ChatConfigurationArn: string | undefined;
|
|
679
359
|
SlackChannelId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chatbot",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chatbot Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-chatbot",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|