@aws-sdk/client-kinesis 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.
@@ -8,9 +8,9 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  );
9
9
  }
10
10
  export interface AddTagsToStreamInput {
11
- StreamName?: string;
11
+ StreamName?: string | undefined;
12
12
  Tags: Record<string, string> | undefined;
13
- StreamARN?: string;
13
+ StreamARN?: string | undefined;
14
14
  }
15
15
  export declare class InvalidArgumentException extends __BaseException {
16
16
  readonly name: "InvalidArgumentException";
@@ -79,27 +79,27 @@ export interface StreamModeDetails {
79
79
  }
80
80
  export interface CreateStreamInput {
81
81
  StreamName: string | undefined;
82
- ShardCount?: number;
83
- StreamModeDetails?: StreamModeDetails;
84
- Tags?: Record<string, string>;
82
+ ShardCount?: number | undefined;
83
+ StreamModeDetails?: StreamModeDetails | undefined;
84
+ Tags?: Record<string, string> | undefined;
85
85
  }
86
86
  export interface DecreaseStreamRetentionPeriodInput {
87
- StreamName?: string;
87
+ StreamName?: string | undefined;
88
88
  RetentionPeriodHours: number | undefined;
89
- StreamARN?: string;
89
+ StreamARN?: string | undefined;
90
90
  }
91
91
  export interface DeleteResourcePolicyInput {
92
92
  ResourceARN: string | undefined;
93
93
  }
94
94
  export interface DeleteStreamInput {
95
- StreamName?: string;
96
- EnforceConsumerDeletion?: boolean;
97
- StreamARN?: string;
95
+ StreamName?: string | undefined;
96
+ EnforceConsumerDeletion?: boolean | undefined;
97
+ StreamARN?: string | undefined;
98
98
  }
99
99
  export interface DeregisterStreamConsumerInput {
100
- StreamARN?: string;
101
- ConsumerName?: string;
102
- ConsumerARN?: string;
100
+ StreamARN?: string | undefined;
101
+ ConsumerName?: string | undefined;
102
+ ConsumerARN?: string | undefined;
103
103
  }
104
104
  export interface DescribeLimitsInput {}
105
105
  export interface DescribeLimitsOutput {
@@ -109,10 +109,10 @@ export interface DescribeLimitsOutput {
109
109
  OnDemandStreamCountLimit: number | undefined;
110
110
  }
111
111
  export interface DescribeStreamInput {
112
- StreamName?: string;
113
- Limit?: number;
114
- ExclusiveStartShardId?: string;
115
- StreamARN?: string;
112
+ StreamName?: string | undefined;
113
+ Limit?: number | undefined;
114
+ ExclusiveStartShardId?: string | undefined;
115
+ StreamARN?: string | undefined;
116
116
  }
117
117
  export declare const EncryptionType: {
118
118
  readonly KMS: "KMS";
@@ -132,16 +132,16 @@ export declare const MetricsName: {
132
132
  };
133
133
  export type MetricsName = (typeof MetricsName)[keyof typeof MetricsName];
134
134
  export interface EnhancedMetrics {
135
- ShardLevelMetrics?: MetricsName[];
135
+ ShardLevelMetrics?: MetricsName[] | undefined;
136
136
  }
137
137
  export interface SequenceNumberRange {
138
138
  StartingSequenceNumber: string | undefined;
139
- EndingSequenceNumber?: string;
139
+ EndingSequenceNumber?: string | undefined;
140
140
  }
141
141
  export interface Shard {
142
142
  ShardId: string | undefined;
143
- ParentShardId?: string;
144
- AdjacentParentShardId?: string;
143
+ ParentShardId?: string | undefined;
144
+ AdjacentParentShardId?: string | undefined;
145
145
  HashKeyRange: HashKeyRange | undefined;
146
146
  SequenceNumberRange: SequenceNumberRange | undefined;
147
147
  }
@@ -156,61 +156,61 @@ export interface StreamDescription {
156
156
  StreamName: string | undefined;
157
157
  StreamARN: string | undefined;
158
158
  StreamStatus: StreamStatus | undefined;
159
- StreamModeDetails?: StreamModeDetails;
159
+ StreamModeDetails?: StreamModeDetails | undefined;
160
160
  Shards: Shard[] | undefined;
161
161
  HasMoreShards: boolean | undefined;
162
162
  RetentionPeriodHours: number | undefined;
163
163
  StreamCreationTimestamp: Date | undefined;
164
164
  EnhancedMonitoring: EnhancedMetrics[] | undefined;
165
- EncryptionType?: EncryptionType;
166
- KeyId?: string;
165
+ EncryptionType?: EncryptionType | undefined;
166
+ KeyId?: string | undefined;
167
167
  }
168
168
  export interface DescribeStreamOutput {
169
169
  StreamDescription: StreamDescription | undefined;
170
170
  }
171
171
  export interface DescribeStreamConsumerInput {
172
- StreamARN?: string;
173
- ConsumerName?: string;
174
- ConsumerARN?: string;
172
+ StreamARN?: string | undefined;
173
+ ConsumerName?: string | undefined;
174
+ ConsumerARN?: string | undefined;
175
175
  }
176
176
  export interface DescribeStreamConsumerOutput {
177
177
  ConsumerDescription: ConsumerDescription | undefined;
178
178
  }
179
179
  export interface DescribeStreamSummaryInput {
180
- StreamName?: string;
181
- StreamARN?: string;
180
+ StreamName?: string | undefined;
181
+ StreamARN?: string | undefined;
182
182
  }
183
183
  export interface StreamDescriptionSummary {
184
184
  StreamName: string | undefined;
185
185
  StreamARN: string | undefined;
186
186
  StreamStatus: StreamStatus | undefined;
187
- StreamModeDetails?: StreamModeDetails;
187
+ StreamModeDetails?: StreamModeDetails | undefined;
188
188
  RetentionPeriodHours: number | undefined;
189
189
  StreamCreationTimestamp: Date | undefined;
190
190
  EnhancedMonitoring: EnhancedMetrics[] | undefined;
191
- EncryptionType?: EncryptionType;
192
- KeyId?: string;
191
+ EncryptionType?: EncryptionType | undefined;
192
+ KeyId?: string | undefined;
193
193
  OpenShardCount: number | undefined;
194
- ConsumerCount?: number;
194
+ ConsumerCount?: number | undefined;
195
195
  }
196
196
  export interface DescribeStreamSummaryOutput {
197
197
  StreamDescriptionSummary: StreamDescriptionSummary | undefined;
198
198
  }
199
199
  export interface DisableEnhancedMonitoringInput {
200
- StreamName?: string;
200
+ StreamName?: string | undefined;
201
201
  ShardLevelMetrics: MetricsName[] | undefined;
202
- StreamARN?: string;
202
+ StreamARN?: string | undefined;
203
203
  }
204
204
  export interface EnhancedMonitoringOutput {
205
- StreamName?: string;
206
- CurrentShardLevelMetrics?: MetricsName[];
207
- DesiredShardLevelMetrics?: MetricsName[];
208
- StreamARN?: string;
205
+ StreamName?: string | undefined;
206
+ CurrentShardLevelMetrics?: MetricsName[] | undefined;
207
+ DesiredShardLevelMetrics?: MetricsName[] | undefined;
208
+ StreamARN?: string | undefined;
209
209
  }
210
210
  export interface EnableEnhancedMonitoringInput {
211
- StreamName?: string;
211
+ StreamName?: string | undefined;
212
212
  ShardLevelMetrics: MetricsName[] | undefined;
213
- StreamARN?: string;
213
+ StreamARN?: string | undefined;
214
214
  }
215
215
  export declare class ExpiredIteratorException extends __BaseException {
216
216
  readonly name: "ExpiredIteratorException";
@@ -228,21 +228,21 @@ export declare class ExpiredNextTokenException extends __BaseException {
228
228
  }
229
229
  export interface GetRecordsInput {
230
230
  ShardIterator: string | undefined;
231
- Limit?: number;
232
- StreamARN?: string;
231
+ Limit?: number | undefined;
232
+ StreamARN?: string | undefined;
233
233
  }
234
234
  export interface _Record {
235
235
  SequenceNumber: string | undefined;
236
- ApproximateArrivalTimestamp?: Date;
236
+ ApproximateArrivalTimestamp?: Date | undefined;
237
237
  Data: Uint8Array | undefined;
238
238
  PartitionKey: string | undefined;
239
- EncryptionType?: EncryptionType;
239
+ EncryptionType?: EncryptionType | undefined;
240
240
  }
241
241
  export interface GetRecordsOutput {
242
242
  Records: _Record[] | undefined;
243
- NextShardIterator?: string;
244
- MillisBehindLatest?: number;
245
- ChildShards?: ChildShard[];
243
+ NextShardIterator?: string | undefined;
244
+ MillisBehindLatest?: number | undefined;
245
+ ChildShards?: ChildShard[] | undefined;
246
246
  }
247
247
  export declare class KMSAccessDeniedException extends __BaseException {
248
248
  readonly name: "KMSAccessDeniedException";
@@ -310,20 +310,20 @@ export declare const ShardIteratorType: {
310
310
  export type ShardIteratorType =
311
311
  (typeof ShardIteratorType)[keyof typeof ShardIteratorType];
312
312
  export interface GetShardIteratorInput {
313
- StreamName?: string;
313
+ StreamName?: string | undefined;
314
314
  ShardId: string | undefined;
315
315
  ShardIteratorType: ShardIteratorType | undefined;
316
- StartingSequenceNumber?: string;
317
- Timestamp?: Date;
318
- StreamARN?: string;
316
+ StartingSequenceNumber?: string | undefined;
317
+ Timestamp?: Date | undefined;
318
+ StreamARN?: string | undefined;
319
319
  }
320
320
  export interface GetShardIteratorOutput {
321
- ShardIterator?: string;
321
+ ShardIterator?: string | undefined;
322
322
  }
323
323
  export interface IncreaseStreamRetentionPeriodInput {
324
- StreamName?: string;
324
+ StreamName?: string | undefined;
325
325
  RetentionPeriodHours: number | undefined;
326
- StreamARN?: string;
326
+ StreamARN?: string | undefined;
327
327
  }
328
328
  export declare class InternalFailureException extends __BaseException {
329
329
  readonly name: "InternalFailureException";
@@ -344,69 +344,69 @@ export type ShardFilterType =
344
344
  (typeof ShardFilterType)[keyof typeof ShardFilterType];
345
345
  export interface ShardFilter {
346
346
  Type: ShardFilterType | undefined;
347
- ShardId?: string;
348
- Timestamp?: Date;
347
+ ShardId?: string | undefined;
348
+ Timestamp?: Date | undefined;
349
349
  }
350
350
  export interface ListShardsInput {
351
- StreamName?: string;
352
- NextToken?: string;
353
- ExclusiveStartShardId?: string;
354
- MaxResults?: number;
355
- StreamCreationTimestamp?: Date;
356
- ShardFilter?: ShardFilter;
357
- StreamARN?: string;
351
+ StreamName?: string | undefined;
352
+ NextToken?: string | undefined;
353
+ ExclusiveStartShardId?: string | undefined;
354
+ MaxResults?: number | undefined;
355
+ StreamCreationTimestamp?: Date | undefined;
356
+ ShardFilter?: ShardFilter | undefined;
357
+ StreamARN?: string | undefined;
358
358
  }
359
359
  export interface ListShardsOutput {
360
- Shards?: Shard[];
361
- NextToken?: string;
360
+ Shards?: Shard[] | undefined;
361
+ NextToken?: string | undefined;
362
362
  }
363
363
  export interface ListStreamConsumersInput {
364
364
  StreamARN: string | undefined;
365
- NextToken?: string;
366
- MaxResults?: number;
367
- StreamCreationTimestamp?: Date;
365
+ NextToken?: string | undefined;
366
+ MaxResults?: number | undefined;
367
+ StreamCreationTimestamp?: Date | undefined;
368
368
  }
369
369
  export interface ListStreamConsumersOutput {
370
- Consumers?: Consumer[];
371
- NextToken?: string;
370
+ Consumers?: Consumer[] | undefined;
371
+ NextToken?: string | undefined;
372
372
  }
373
373
  export interface ListStreamsInput {
374
- Limit?: number;
375
- ExclusiveStartStreamName?: string;
376
- NextToken?: string;
374
+ Limit?: number | undefined;
375
+ ExclusiveStartStreamName?: string | undefined;
376
+ NextToken?: string | undefined;
377
377
  }
378
378
  export interface StreamSummary {
379
379
  StreamName: string | undefined;
380
380
  StreamARN: string | undefined;
381
381
  StreamStatus: StreamStatus | undefined;
382
- StreamModeDetails?: StreamModeDetails;
383
- StreamCreationTimestamp?: Date;
382
+ StreamModeDetails?: StreamModeDetails | undefined;
383
+ StreamCreationTimestamp?: Date | undefined;
384
384
  }
385
385
  export interface ListStreamsOutput {
386
386
  StreamNames: string[] | undefined;
387
387
  HasMoreStreams: boolean | undefined;
388
- NextToken?: string;
389
- StreamSummaries?: StreamSummary[];
388
+ NextToken?: string | undefined;
389
+ StreamSummaries?: StreamSummary[] | undefined;
390
390
  }
391
391
  export interface ListTagsForStreamInput {
392
- StreamName?: string;
393
- ExclusiveStartTagKey?: string;
394
- Limit?: number;
395
- StreamARN?: string;
392
+ StreamName?: string | undefined;
393
+ ExclusiveStartTagKey?: string | undefined;
394
+ Limit?: number | undefined;
395
+ StreamARN?: string | undefined;
396
396
  }
397
397
  export interface Tag {
398
398
  Key: string | undefined;
399
- Value?: string;
399
+ Value?: string | undefined;
400
400
  }
401
401
  export interface ListTagsForStreamOutput {
402
402
  Tags: Tag[] | undefined;
403
403
  HasMoreTags: boolean | undefined;
404
404
  }
405
405
  export interface MergeShardsInput {
406
- StreamName?: string;
406
+ StreamName?: string | undefined;
407
407
  ShardToMerge: string | undefined;
408
408
  AdjacentShardToMerge: string | undefined;
409
- StreamARN?: string;
409
+ StreamARN?: string | undefined;
410
410
  }
411
411
  export declare class ValidationException extends __BaseException {
412
412
  readonly name: "ValidationException";
@@ -416,38 +416,38 @@ export declare class ValidationException extends __BaseException {
416
416
  );
417
417
  }
418
418
  export interface PutRecordInput {
419
- StreamName?: string;
419
+ StreamName?: string | undefined;
420
420
  Data: Uint8Array | undefined;
421
421
  PartitionKey: string | undefined;
422
- ExplicitHashKey?: string;
423
- SequenceNumberForOrdering?: string;
424
- StreamARN?: string;
422
+ ExplicitHashKey?: string | undefined;
423
+ SequenceNumberForOrdering?: string | undefined;
424
+ StreamARN?: string | undefined;
425
425
  }
426
426
  export interface PutRecordOutput {
427
427
  ShardId: string | undefined;
428
428
  SequenceNumber: string | undefined;
429
- EncryptionType?: EncryptionType;
429
+ EncryptionType?: EncryptionType | undefined;
430
430
  }
431
431
  export interface PutRecordsRequestEntry {
432
432
  Data: Uint8Array | undefined;
433
- ExplicitHashKey?: string;
433
+ ExplicitHashKey?: string | undefined;
434
434
  PartitionKey: string | undefined;
435
435
  }
436
436
  export interface PutRecordsInput {
437
437
  Records: PutRecordsRequestEntry[] | undefined;
438
- StreamName?: string;
439
- StreamARN?: string;
438
+ StreamName?: string | undefined;
439
+ StreamARN?: string | undefined;
440
440
  }
441
441
  export interface PutRecordsResultEntry {
442
- SequenceNumber?: string;
443
- ShardId?: string;
444
- ErrorCode?: string;
445
- ErrorMessage?: string;
442
+ SequenceNumber?: string | undefined;
443
+ ShardId?: string | undefined;
444
+ ErrorCode?: string | undefined;
445
+ ErrorMessage?: string | undefined;
446
446
  }
447
447
  export interface PutRecordsOutput {
448
- FailedRecordCount?: number;
448
+ FailedRecordCount?: number | undefined;
449
449
  Records: PutRecordsResultEntry[] | undefined;
450
- EncryptionType?: EncryptionType;
450
+ EncryptionType?: EncryptionType | undefined;
451
451
  }
452
452
  export interface PutResourcePolicyInput {
453
453
  ResourceARN: string | undefined;
@@ -461,32 +461,32 @@ export interface RegisterStreamConsumerOutput {
461
461
  Consumer: Consumer | undefined;
462
462
  }
463
463
  export interface RemoveTagsFromStreamInput {
464
- StreamName?: string;
464
+ StreamName?: string | undefined;
465
465
  TagKeys: string[] | undefined;
466
- StreamARN?: string;
466
+ StreamARN?: string | undefined;
467
467
  }
468
468
  export interface SplitShardInput {
469
- StreamName?: string;
469
+ StreamName?: string | undefined;
470
470
  ShardToSplit: string | undefined;
471
471
  NewStartingHashKey: string | undefined;
472
- StreamARN?: string;
472
+ StreamARN?: string | undefined;
473
473
  }
474
474
  export interface StartStreamEncryptionInput {
475
- StreamName?: string;
475
+ StreamName?: string | undefined;
476
476
  EncryptionType: EncryptionType | undefined;
477
477
  KeyId: string | undefined;
478
- StreamARN?: string;
478
+ StreamARN?: string | undefined;
479
479
  }
480
480
  export interface StopStreamEncryptionInput {
481
- StreamName?: string;
481
+ StreamName?: string | undefined;
482
482
  EncryptionType: EncryptionType | undefined;
483
483
  KeyId: string | undefined;
484
- StreamARN?: string;
484
+ StreamARN?: string | undefined;
485
485
  }
486
486
  export interface StartingPosition {
487
487
  Type: ShardIteratorType | undefined;
488
- SequenceNumber?: string;
489
- Timestamp?: Date;
488
+ SequenceNumber?: string | undefined;
489
+ Timestamp?: Date | undefined;
490
490
  }
491
491
  export interface SubscribeToShardInput {
492
492
  ConsumerARN: string | undefined;
@@ -497,7 +497,7 @@ export interface SubscribeToShardEvent {
497
497
  Records: _Record[] | undefined;
498
498
  ContinuationSequenceNumber: string | undefined;
499
499
  MillisBehindLatest: number | undefined;
500
- ChildShards?: ChildShard[];
500
+ ChildShards?: ChildShard[] | undefined;
501
501
  }
502
502
  export type SubscribeToShardEventStream =
503
503
  | SubscribeToShardEventStream.InternalFailureExceptionMember
@@ -681,16 +681,16 @@ export declare const ScalingType: {
681
681
  };
682
682
  export type ScalingType = (typeof ScalingType)[keyof typeof ScalingType];
683
683
  export interface UpdateShardCountInput {
684
- StreamName?: string;
684
+ StreamName?: string | undefined;
685
685
  TargetShardCount: number | undefined;
686
686
  ScalingType: ScalingType | undefined;
687
- StreamARN?: string;
687
+ StreamARN?: string | undefined;
688
688
  }
689
689
  export interface UpdateShardCountOutput {
690
- StreamName?: string;
691
- CurrentShardCount?: number;
692
- TargetShardCount?: number;
693
- StreamARN?: string;
690
+ StreamName?: string | undefined;
691
+ CurrentShardCount?: number | undefined;
692
+ TargetShardCount?: number | undefined;
693
+ StreamARN?: string | undefined;
694
694
  }
695
695
  export interface UpdateStreamModeInput {
696
696
  StreamARN: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis",
3
3
  "description": "AWS SDK for JavaScript Kinesis 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-kinesis",
@@ -22,48 +22,48 @@
22
22
  "dependencies": {
23
23
  "@aws-crypto/sha256-browser": "5.2.0",
24
24
  "@aws-crypto/sha256-js": "5.2.0",
25
- "@aws-sdk/client-sso-oidc": "3.687.0",
26
- "@aws-sdk/client-sts": "3.687.0",
27
- "@aws-sdk/core": "3.686.0",
28
- "@aws-sdk/credential-provider-node": "3.687.0",
29
- "@aws-sdk/middleware-host-header": "3.686.0",
30
- "@aws-sdk/middleware-logger": "3.686.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
32
- "@aws-sdk/middleware-user-agent": "3.687.0",
33
- "@aws-sdk/region-config-resolver": "3.686.0",
34
- "@aws-sdk/types": "3.686.0",
35
- "@aws-sdk/util-endpoints": "3.686.0",
36
- "@aws-sdk/util-user-agent-browser": "3.686.0",
37
- "@aws-sdk/util-user-agent-node": "3.687.0",
38
- "@smithy/config-resolver": "^3.0.10",
39
- "@smithy/core": "^2.5.1",
40
- "@smithy/eventstream-serde-browser": "^3.0.11",
41
- "@smithy/eventstream-serde-config-resolver": "^3.0.8",
42
- "@smithy/eventstream-serde-node": "^3.0.10",
43
- "@smithy/fetch-http-handler": "^4.0.0",
44
- "@smithy/hash-node": "^3.0.8",
45
- "@smithy/invalid-dependency": "^3.0.8",
46
- "@smithy/middleware-content-length": "^3.0.10",
47
- "@smithy/middleware-endpoint": "^3.2.1",
48
- "@smithy/middleware-retry": "^3.0.25",
49
- "@smithy/middleware-serde": "^3.0.8",
50
- "@smithy/middleware-stack": "^3.0.8",
51
- "@smithy/node-config-provider": "^3.1.9",
52
- "@smithy/node-http-handler": "^3.2.5",
53
- "@smithy/protocol-http": "^4.1.5",
54
- "@smithy/smithy-client": "^3.4.2",
55
- "@smithy/types": "^3.6.0",
56
- "@smithy/url-parser": "^3.0.8",
25
+ "@aws-sdk/client-sso-oidc": "3.692.0",
26
+ "@aws-sdk/client-sts": "3.692.0",
27
+ "@aws-sdk/core": "3.692.0",
28
+ "@aws-sdk/credential-provider-node": "3.692.0",
29
+ "@aws-sdk/middleware-host-header": "3.692.0",
30
+ "@aws-sdk/middleware-logger": "3.692.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
32
+ "@aws-sdk/middleware-user-agent": "3.692.0",
33
+ "@aws-sdk/region-config-resolver": "3.692.0",
34
+ "@aws-sdk/types": "3.692.0",
35
+ "@aws-sdk/util-endpoints": "3.692.0",
36
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
37
+ "@aws-sdk/util-user-agent-node": "3.692.0",
38
+ "@smithy/config-resolver": "^3.0.11",
39
+ "@smithy/core": "^2.5.2",
40
+ "@smithy/eventstream-serde-browser": "^3.0.12",
41
+ "@smithy/eventstream-serde-config-resolver": "^3.0.9",
42
+ "@smithy/eventstream-serde-node": "^3.0.11",
43
+ "@smithy/fetch-http-handler": "^4.1.0",
44
+ "@smithy/hash-node": "^3.0.9",
45
+ "@smithy/invalid-dependency": "^3.0.9",
46
+ "@smithy/middleware-content-length": "^3.0.11",
47
+ "@smithy/middleware-endpoint": "^3.2.2",
48
+ "@smithy/middleware-retry": "^3.0.26",
49
+ "@smithy/middleware-serde": "^3.0.9",
50
+ "@smithy/middleware-stack": "^3.0.9",
51
+ "@smithy/node-config-provider": "^3.1.10",
52
+ "@smithy/node-http-handler": "^3.3.0",
53
+ "@smithy/protocol-http": "^4.1.6",
54
+ "@smithy/smithy-client": "^3.4.3",
55
+ "@smithy/types": "^3.7.0",
56
+ "@smithy/url-parser": "^3.0.9",
57
57
  "@smithy/util-base64": "^3.0.0",
58
58
  "@smithy/util-body-length-browser": "^3.0.0",
59
59
  "@smithy/util-body-length-node": "^3.0.0",
60
- "@smithy/util-defaults-mode-browser": "^3.0.25",
61
- "@smithy/util-defaults-mode-node": "^3.0.25",
62
- "@smithy/util-endpoints": "^2.1.4",
63
- "@smithy/util-middleware": "^3.0.8",
64
- "@smithy/util-retry": "^3.0.8",
60
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
61
+ "@smithy/util-defaults-mode-node": "^3.0.26",
62
+ "@smithy/util-endpoints": "^2.1.5",
63
+ "@smithy/util-middleware": "^3.0.9",
64
+ "@smithy/util-retry": "^3.0.9",
65
65
  "@smithy/util-utf8": "^3.0.0",
66
- "@smithy/util-waiter": "^3.1.7",
66
+ "@smithy/util-waiter": "^3.1.8",
67
67
  "tslib": "^2.6.2"
68
68
  },
69
69
  "devDependencies": {