@aws-sdk/client-chime-sdk-meetings 3.687.0 → 3.692.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.
@@ -14,13 +14,13 @@ export interface AttendeeCapabilities {
14
14
  Content: MediaCapabilities | undefined;
15
15
  }
16
16
  export interface Attendee {
17
- ExternalUserId?: string;
18
- AttendeeId?: string;
19
- JoinToken?: string;
20
- Capabilities?: AttendeeCapabilities;
17
+ ExternalUserId?: string | undefined;
18
+ AttendeeId?: string | undefined;
19
+ JoinToken?: string | undefined;
20
+ Capabilities?: AttendeeCapabilities | undefined;
21
21
  }
22
22
  export interface AttendeeFeatures {
23
- MaxCount?: number;
23
+ MaxCount?: number | undefined;
24
24
  }
25
25
  export interface AttendeeIdItem {
26
26
  AttendeeId: string | undefined;
@@ -32,49 +32,49 @@ export declare const MeetingFeatureStatus: {
32
32
  export type MeetingFeatureStatus =
33
33
  (typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
34
34
  export interface AudioFeatures {
35
- EchoReduction?: MeetingFeatureStatus;
35
+ EchoReduction?: MeetingFeatureStatus | undefined;
36
36
  }
37
37
  export declare class BadRequestException extends __BaseException {
38
38
  readonly name: "BadRequestException";
39
39
  readonly $fault: "client";
40
- Code?: string;
41
- Message?: string;
42
- RequestId?: string;
40
+ Code?: string | undefined;
41
+ Message?: string | undefined;
42
+ RequestId?: string | undefined;
43
43
  constructor(
44
44
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
45
45
  );
46
46
  }
47
47
  export interface CreateAttendeeRequestItem {
48
48
  ExternalUserId: string | undefined;
49
- Capabilities?: AttendeeCapabilities;
49
+ Capabilities?: AttendeeCapabilities | undefined;
50
50
  }
51
51
  export interface BatchCreateAttendeeRequest {
52
52
  MeetingId: string | undefined;
53
53
  Attendees: CreateAttendeeRequestItem[] | undefined;
54
54
  }
55
55
  export interface CreateAttendeeError {
56
- ExternalUserId?: string;
57
- ErrorCode?: string;
58
- ErrorMessage?: string;
56
+ ExternalUserId?: string | undefined;
57
+ ErrorCode?: string | undefined;
58
+ ErrorMessage?: string | undefined;
59
59
  }
60
60
  export interface BatchCreateAttendeeResponse {
61
- Attendees?: Attendee[];
62
- Errors?: CreateAttendeeError[];
61
+ Attendees?: Attendee[] | undefined;
62
+ Errors?: CreateAttendeeError[] | undefined;
63
63
  }
64
64
  export declare class ForbiddenException extends __BaseException {
65
65
  readonly name: "ForbiddenException";
66
66
  readonly $fault: "client";
67
- Code?: string;
68
- Message?: string;
69
- RequestId?: string;
67
+ Code?: string | undefined;
68
+ Message?: string | undefined;
69
+ RequestId?: string | undefined;
70
70
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
71
71
  }
72
72
  export declare class LimitExceededException extends __BaseException {
73
73
  readonly name: "LimitExceededException";
74
74
  readonly $fault: "client";
75
- Code?: string;
76
- Message?: string;
77
- RequestId?: string;
75
+ Code?: string | undefined;
76
+ Message?: string | undefined;
77
+ RequestId?: string | undefined;
78
78
  constructor(
79
79
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
80
80
  );
@@ -82,17 +82,17 @@ export declare class LimitExceededException extends __BaseException {
82
82
  export declare class NotFoundException extends __BaseException {
83
83
  readonly name: "NotFoundException";
84
84
  readonly $fault: "client";
85
- Code?: string;
86
- Message?: string;
87
- RequestId?: string;
85
+ Code?: string | undefined;
86
+ Message?: string | undefined;
87
+ RequestId?: string | undefined;
88
88
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
89
89
  }
90
90
  export declare class ServiceFailureException extends __BaseException {
91
91
  readonly name: "ServiceFailureException";
92
92
  readonly $fault: "server";
93
- Code?: string;
94
- Message?: string;
95
- RequestId?: string;
93
+ Code?: string | undefined;
94
+ Message?: string | undefined;
95
+ RequestId?: string | undefined;
96
96
  constructor(
97
97
  opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
98
98
  );
@@ -100,10 +100,10 @@ export declare class ServiceFailureException extends __BaseException {
100
100
  export declare class ServiceUnavailableException extends __BaseException {
101
101
  readonly name: "ServiceUnavailableException";
102
102
  readonly $fault: "server";
103
- Code?: string;
104
- Message?: string;
105
- RequestId?: string;
106
- RetryAfterSeconds?: string;
103
+ Code?: string | undefined;
104
+ Message?: string | undefined;
105
+ RequestId?: string | undefined;
106
+ RetryAfterSeconds?: string | undefined;
107
107
  constructor(
108
108
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
109
109
  );
@@ -111,9 +111,9 @@ export declare class ServiceUnavailableException extends __BaseException {
111
111
  export declare class ThrottlingException extends __BaseException {
112
112
  readonly name: "ThrottlingException";
113
113
  readonly $fault: "client";
114
- Code?: string;
115
- Message?: string;
116
- RequestId?: string;
114
+ Code?: string | undefined;
115
+ Message?: string | undefined;
116
+ RequestId?: string | undefined;
117
117
  constructor(
118
118
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
119
119
  );
@@ -121,9 +121,9 @@ export declare class ThrottlingException extends __BaseException {
121
121
  export declare class UnauthorizedException extends __BaseException {
122
122
  readonly name: "UnauthorizedException";
123
123
  readonly $fault: "client";
124
- Code?: string;
125
- Message?: string;
126
- RequestId?: string;
124
+ Code?: string | undefined;
125
+ Message?: string | undefined;
126
+ RequestId?: string | undefined;
127
127
  constructor(
128
128
  opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
129
129
  );
@@ -131,9 +131,9 @@ export declare class UnauthorizedException extends __BaseException {
131
131
  export declare class UnprocessableEntityException extends __BaseException {
132
132
  readonly name: "UnprocessableEntityException";
133
133
  readonly $fault: "client";
134
- Code?: string;
135
- Message?: string;
136
- RequestId?: string;
134
+ Code?: string | undefined;
135
+ Message?: string | undefined;
136
+ RequestId?: string | undefined;
137
137
  constructor(
138
138
  opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
139
139
  );
@@ -146,18 +146,18 @@ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
146
146
  export declare class ConflictException extends __BaseException {
147
147
  readonly name: "ConflictException";
148
148
  readonly $fault: "client";
149
- Code?: string;
150
- Message?: string;
151
- RequestId?: string;
149
+ Code?: string | undefined;
150
+ Message?: string | undefined;
151
+ RequestId?: string | undefined;
152
152
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
153
153
  }
154
154
  export interface CreateAttendeeRequest {
155
155
  MeetingId: string | undefined;
156
156
  ExternalUserId: string | undefined;
157
- Capabilities?: AttendeeCapabilities;
157
+ Capabilities?: AttendeeCapabilities | undefined;
158
158
  }
159
159
  export interface CreateAttendeeResponse {
160
- Attendee?: Attendee;
160
+ Attendee?: Attendee | undefined;
161
161
  }
162
162
  export declare const ContentResolution: {
163
163
  readonly FHD: "FHD";
@@ -167,7 +167,7 @@ export declare const ContentResolution: {
167
167
  export type ContentResolution =
168
168
  (typeof ContentResolution)[keyof typeof ContentResolution];
169
169
  export interface ContentFeatures {
170
- MaxResolution?: ContentResolution;
170
+ MaxResolution?: ContentResolution | undefined;
171
171
  }
172
172
  export declare const VideoResolution: {
173
173
  readonly FHD: "FHD";
@@ -177,74 +177,74 @@ export declare const VideoResolution: {
177
177
  export type VideoResolution =
178
178
  (typeof VideoResolution)[keyof typeof VideoResolution];
179
179
  export interface VideoFeatures {
180
- MaxResolution?: VideoResolution;
180
+ MaxResolution?: VideoResolution | undefined;
181
181
  }
182
182
  export interface MeetingFeaturesConfiguration {
183
- Audio?: AudioFeatures;
184
- Video?: VideoFeatures;
185
- Content?: ContentFeatures;
186
- Attendee?: AttendeeFeatures;
183
+ Audio?: AudioFeatures | undefined;
184
+ Video?: VideoFeatures | undefined;
185
+ Content?: ContentFeatures | undefined;
186
+ Attendee?: AttendeeFeatures | undefined;
187
187
  }
188
188
  export interface NotificationsConfiguration {
189
- LambdaFunctionArn?: string;
190
- SnsTopicArn?: string;
191
- SqsQueueArn?: string;
189
+ LambdaFunctionArn?: string | undefined;
190
+ SnsTopicArn?: string | undefined;
191
+ SqsQueueArn?: string | undefined;
192
192
  }
193
193
  export interface Tag {
194
194
  Key: string | undefined;
195
195
  Value: string | undefined;
196
196
  }
197
197
  export interface CreateMeetingRequest {
198
- ClientRequestToken?: string;
198
+ ClientRequestToken?: string | undefined;
199
199
  MediaRegion: string | undefined;
200
- MeetingHostId?: string;
200
+ MeetingHostId?: string | undefined;
201
201
  ExternalMeetingId: string | undefined;
202
- NotificationsConfiguration?: NotificationsConfiguration;
203
- MeetingFeatures?: MeetingFeaturesConfiguration;
204
- PrimaryMeetingId?: string;
205
- TenantIds?: string[];
206
- Tags?: Tag[];
202
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
203
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
204
+ PrimaryMeetingId?: string | undefined;
205
+ TenantIds?: string[] | undefined;
206
+ Tags?: Tag[] | undefined;
207
207
  }
208
208
  export interface MediaPlacement {
209
- AudioHostUrl?: string;
210
- AudioFallbackUrl?: string;
211
- SignalingUrl?: string;
212
- TurnControlUrl?: string;
213
- ScreenDataUrl?: string;
214
- ScreenViewingUrl?: string;
215
- ScreenSharingUrl?: string;
216
- EventIngestionUrl?: string;
209
+ AudioHostUrl?: string | undefined;
210
+ AudioFallbackUrl?: string | undefined;
211
+ SignalingUrl?: string | undefined;
212
+ TurnControlUrl?: string | undefined;
213
+ ScreenDataUrl?: string | undefined;
214
+ ScreenViewingUrl?: string | undefined;
215
+ ScreenSharingUrl?: string | undefined;
216
+ EventIngestionUrl?: string | undefined;
217
217
  }
218
218
  export interface Meeting {
219
- MeetingId?: string;
220
- MeetingHostId?: string;
221
- ExternalMeetingId?: string;
222
- MediaRegion?: string;
223
- MediaPlacement?: MediaPlacement;
224
- MeetingFeatures?: MeetingFeaturesConfiguration;
225
- PrimaryMeetingId?: string;
226
- TenantIds?: string[];
227
- MeetingArn?: string;
219
+ MeetingId?: string | undefined;
220
+ MeetingHostId?: string | undefined;
221
+ ExternalMeetingId?: string | undefined;
222
+ MediaRegion?: string | undefined;
223
+ MediaPlacement?: MediaPlacement | undefined;
224
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
225
+ PrimaryMeetingId?: string | undefined;
226
+ TenantIds?: string[] | undefined;
227
+ MeetingArn?: string | undefined;
228
228
  }
229
229
  export interface CreateMeetingResponse {
230
- Meeting?: Meeting;
230
+ Meeting?: Meeting | undefined;
231
231
  }
232
232
  export interface CreateMeetingWithAttendeesRequest {
233
- ClientRequestToken?: string;
233
+ ClientRequestToken?: string | undefined;
234
234
  MediaRegion: string | undefined;
235
- MeetingHostId?: string;
235
+ MeetingHostId?: string | undefined;
236
236
  ExternalMeetingId: string | undefined;
237
- MeetingFeatures?: MeetingFeaturesConfiguration;
238
- NotificationsConfiguration?: NotificationsConfiguration;
237
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
238
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
239
239
  Attendees: CreateAttendeeRequestItem[] | undefined;
240
- PrimaryMeetingId?: string;
241
- TenantIds?: string[];
242
- Tags?: Tag[];
240
+ PrimaryMeetingId?: string | undefined;
241
+ TenantIds?: string[] | undefined;
242
+ Tags?: Tag[] | undefined;
243
243
  }
244
244
  export interface CreateMeetingWithAttendeesResponse {
245
- Meeting?: Meeting;
246
- Attendees?: Attendee[];
247
- Errors?: CreateAttendeeError[];
245
+ Meeting?: Meeting | undefined;
246
+ Attendees?: Attendee[] | undefined;
247
+ Errors?: CreateAttendeeError[] | undefined;
248
248
  }
249
249
  export interface DeleteAttendeeRequest {
250
250
  MeetingId: string | undefined;
@@ -258,36 +258,36 @@ export interface GetAttendeeRequest {
258
258
  AttendeeId: string | undefined;
259
259
  }
260
260
  export interface GetAttendeeResponse {
261
- Attendee?: Attendee;
261
+ Attendee?: Attendee | undefined;
262
262
  }
263
263
  export interface GetMeetingRequest {
264
264
  MeetingId: string | undefined;
265
265
  }
266
266
  export interface GetMeetingResponse {
267
- Meeting?: Meeting;
267
+ Meeting?: Meeting | undefined;
268
268
  }
269
269
  export interface ListAttendeesRequest {
270
270
  MeetingId: string | undefined;
271
- NextToken?: string;
272
- MaxResults?: number;
271
+ NextToken?: string | undefined;
272
+ MaxResults?: number | undefined;
273
273
  }
274
274
  export interface ListAttendeesResponse {
275
- Attendees?: Attendee[];
276
- NextToken?: string;
275
+ Attendees?: Attendee[] | undefined;
276
+ NextToken?: string | undefined;
277
277
  }
278
278
  export interface ListTagsForResourceRequest {
279
279
  ResourceARN: string | undefined;
280
280
  }
281
281
  export interface ListTagsForResourceResponse {
282
- Tags?: Tag[];
282
+ Tags?: Tag[] | undefined;
283
283
  }
284
284
  export declare class ResourceNotFoundException extends __BaseException {
285
285
  readonly name: "ResourceNotFoundException";
286
286
  readonly $fault: "client";
287
- Code?: string;
288
- Message?: string;
289
- RequestId?: string;
290
- ResourceName?: string;
287
+ Code?: string | undefined;
288
+ Message?: string | undefined;
289
+ RequestId?: string | undefined;
290
+ ResourceName?: string | undefined;
291
291
  constructor(
292
292
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
293
293
  );
@@ -333,9 +333,11 @@ export interface EngineTranscribeMedicalSettings {
333
333
  LanguageCode: TranscribeMedicalLanguageCode | undefined;
334
334
  Specialty: TranscribeMedicalSpecialty | undefined;
335
335
  Type: TranscribeMedicalType | undefined;
336
- VocabularyName?: string;
337
- Region?: TranscribeMedicalRegion;
338
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
336
+ VocabularyName?: string | undefined;
337
+ Region?: TranscribeMedicalRegion | undefined;
338
+ ContentIdentificationType?:
339
+ | TranscribeMedicalContentIdentificationType
340
+ | undefined;
339
341
  }
340
342
  export declare const TranscribeContentIdentificationType: {
341
343
  readonly PII: "PII";
@@ -397,26 +399,26 @@ export declare const TranscribeVocabularyFilterMethod: {
397
399
  export type TranscribeVocabularyFilterMethod =
398
400
  (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
399
401
  export interface EngineTranscribeSettings {
400
- LanguageCode?: TranscribeLanguageCode;
401
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
402
- VocabularyFilterName?: string;
403
- VocabularyName?: string;
404
- Region?: TranscribeRegion;
405
- EnablePartialResultsStabilization?: boolean;
406
- PartialResultsStability?: TranscribePartialResultsStability;
407
- ContentIdentificationType?: TranscribeContentIdentificationType;
408
- ContentRedactionType?: TranscribeContentRedactionType;
409
- PiiEntityTypes?: string;
410
- LanguageModelName?: string;
411
- IdentifyLanguage?: boolean;
412
- LanguageOptions?: string;
413
- PreferredLanguage?: TranscribeLanguageCode;
414
- VocabularyNames?: string;
415
- VocabularyFilterNames?: string;
402
+ LanguageCode?: TranscribeLanguageCode | undefined;
403
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
404
+ VocabularyFilterName?: string | undefined;
405
+ VocabularyName?: string | undefined;
406
+ Region?: TranscribeRegion | undefined;
407
+ EnablePartialResultsStabilization?: boolean | undefined;
408
+ PartialResultsStability?: TranscribePartialResultsStability | undefined;
409
+ ContentIdentificationType?: TranscribeContentIdentificationType | undefined;
410
+ ContentRedactionType?: TranscribeContentRedactionType | undefined;
411
+ PiiEntityTypes?: string | undefined;
412
+ LanguageModelName?: string | undefined;
413
+ IdentifyLanguage?: boolean | undefined;
414
+ LanguageOptions?: string | undefined;
415
+ PreferredLanguage?: TranscribeLanguageCode | undefined;
416
+ VocabularyNames?: string | undefined;
417
+ VocabularyFilterNames?: string | undefined;
416
418
  }
417
419
  export interface TranscriptionConfiguration {
418
- EngineTranscribeSettings?: EngineTranscribeSettings;
419
- EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
420
+ EngineTranscribeSettings?: EngineTranscribeSettings | undefined;
421
+ EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings | undefined;
420
422
  }
421
423
  export interface StartMeetingTranscriptionRequest {
422
424
  MeetingId: string | undefined;
@@ -433,10 +435,10 @@ export interface TagResourceResponse {}
433
435
  export declare class TooManyTagsException extends __BaseException {
434
436
  readonly name: "TooManyTagsException";
435
437
  readonly $fault: "client";
436
- Code?: string;
437
- Message?: string;
438
- RequestId?: string;
439
- ResourceName?: string;
438
+ Code?: string | undefined;
439
+ Message?: string | undefined;
440
+ RequestId?: string | undefined;
441
+ ResourceName?: string | undefined;
440
442
  constructor(
441
443
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
442
444
  );
@@ -452,7 +454,7 @@ export interface UpdateAttendeeCapabilitiesRequest {
452
454
  Capabilities: AttendeeCapabilities | undefined;
453
455
  }
454
456
  export interface UpdateAttendeeCapabilitiesResponse {
455
- Attendee?: Attendee;
457
+ Attendee?: Attendee | undefined;
456
458
  }
457
459
  export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
458
460
  export declare const CreateAttendeeRequestItemFilterSensitiveLog: (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-meetings",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.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-chime-sdk-meetings",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",