@aws-sdk/client-s3 3.577.0 → 3.583.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.
@@ -160,28 +160,28 @@ declare const DeleteObjectCommand_base: {
160
160
  * <p>Base exception class for all service exceptions from S3 service.</p>
161
161
  *
162
162
  * @public
163
- * @example To delete an object
163
+ * @example To delete an object (from a non-versioned bucket)
164
164
  * ```javascript
165
- * // The following example deletes an object from an S3 bucket.
165
+ * // The following example deletes an object from a non-versioned bucket.
166
166
  * const input = {
167
- * "Bucket": "examplebucket",
168
- * "Key": "objectkey.jpg"
167
+ * "Bucket": "ExampleBucket",
168
+ * "Key": "HappyFace.jpg"
169
169
  * };
170
170
  * const command = new DeleteObjectCommand(input);
171
171
  * await client.send(command);
172
- * // example id: to-delete-an-object-1472850136595
172
+ * // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
173
173
  * ```
174
174
  *
175
- * @example To delete an object (from a non-versioned bucket)
175
+ * @example To delete an object
176
176
  * ```javascript
177
- * // The following example deletes an object from a non-versioned bucket.
177
+ * // The following example deletes an object from an S3 bucket.
178
178
  * const input = {
179
- * "Bucket": "ExampleBucket",
180
- * "Key": "HappyFace.jpg"
179
+ * "Bucket": "examplebucket",
180
+ * "Key": "objectkey.jpg"
181
181
  * };
182
182
  * const command = new DeleteObjectCommand(input);
183
183
  * await client.send(command);
184
- * // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
184
+ * // example id: to-delete-an-object-1472850136595
185
185
  * ```
186
186
  *
187
187
  */
@@ -209,20 +209,18 @@ declare const DeleteObjectsCommand_base: {
209
209
  * <p>Base exception class for all service exceptions from S3 service.</p>
210
210
  *
211
211
  * @public
212
- * @example To delete multiple object versions from a versioned bucket
212
+ * @example To delete multiple objects from a versioned bucket
213
213
  * ```javascript
214
- * // The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.
214
+ * // The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.
215
215
  * const input = {
216
216
  * "Bucket": "examplebucket",
217
217
  * "Delete": {
218
218
  * "Objects": [
219
219
  * {
220
- * "Key": "HappyFace.jpg",
221
- * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
220
+ * "Key": "objectkey1"
222
221
  * },
223
222
  * {
224
- * "Key": "HappyFace.jpg",
225
- * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
223
+ * "Key": "objectkey2"
226
224
  * }
227
225
  * ],
228
226
  * "Quiet": false
@@ -234,31 +232,35 @@ declare const DeleteObjectsCommand_base: {
234
232
  * {
235
233
  * "Deleted": [
236
234
  * {
237
- * "Key": "HappyFace.jpg",
238
- * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
235
+ * "DeleteMarker": "true",
236
+ * "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
237
+ * "Key": "objectkey1"
239
238
  * },
240
239
  * {
241
- * "Key": "HappyFace.jpg",
242
- * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
240
+ * "DeleteMarker": "true",
241
+ * "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
242
+ * "Key": "objectkey2"
243
243
  * }
244
244
  * ]
245
245
  * }
246
246
  * *\/
247
- * // example id: to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737
247
+ * // example id: to-delete-multiple-objects-from-a-versioned-bucket-1483146248805
248
248
  * ```
249
249
  *
250
- * @example To delete multiple objects from a versioned bucket
250
+ * @example To delete multiple object versions from a versioned bucket
251
251
  * ```javascript
252
- * // The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.
252
+ * // The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.
253
253
  * const input = {
254
254
  * "Bucket": "examplebucket",
255
255
  * "Delete": {
256
256
  * "Objects": [
257
257
  * {
258
- * "Key": "objectkey1"
258
+ * "Key": "HappyFace.jpg",
259
+ * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
259
260
  * },
260
261
  * {
261
- * "Key": "objectkey2"
262
+ * "Key": "HappyFace.jpg",
263
+ * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
262
264
  * }
263
265
  * ],
264
266
  * "Quiet": false
@@ -270,19 +272,17 @@ declare const DeleteObjectsCommand_base: {
270
272
  * {
271
273
  * "Deleted": [
272
274
  * {
273
- * "DeleteMarker": "true",
274
- * "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
275
- * "Key": "objectkey1"
275
+ * "Key": "HappyFace.jpg",
276
+ * "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
276
277
  * },
277
278
  * {
278
- * "DeleteMarker": "true",
279
- * "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
280
- * "Key": "objectkey2"
279
+ * "Key": "HappyFace.jpg",
280
+ * "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
281
281
  * }
282
282
  * ]
283
283
  * }
284
284
  * *\/
285
- * // example id: to-delete-multiple-objects-from-a-versioned-bucket-1483146248805
285
+ * // example id: to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737
286
286
  * ```
287
287
  *
288
288
  */
@@ -95,13 +95,12 @@ declare const GetObjectTaggingCommand_base: {
95
95
  * <p>Base exception class for all service exceptions from S3 service.</p>
96
96
  *
97
97
  * @public
98
- * @example To retrieve tag set of a specific object version
98
+ * @example To retrieve tag set of an object
99
99
  * ```javascript
100
- * // The following example retrieves tag set of an object. The request specifies object version.
100
+ * // The following example retrieves tag set of an object.
101
101
  * const input = {
102
102
  * "Bucket": "examplebucket",
103
- * "Key": "exampleobject",
104
- * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
103
+ * "Key": "HappyFace.jpg"
105
104
  * };
106
105
  * const command = new GetObjectTaggingCommand(input);
107
106
  * const response = await client.send(command);
@@ -109,22 +108,27 @@ declare const GetObjectTaggingCommand_base: {
109
108
  * {
110
109
  * "TagSet": [
111
110
  * {
112
- * "Key": "Key1",
113
- * "Value": "Value1"
111
+ * "Key": "Key4",
112
+ * "Value": "Value4"
113
+ * },
114
+ * {
115
+ * "Key": "Key3",
116
+ * "Value": "Value3"
114
117
  * }
115
118
  * ],
116
- * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
119
+ * "VersionId": "null"
117
120
  * }
118
121
  * *\/
119
- * // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663
122
+ * // example id: to-retrieve-tag-set-of-an-object-1481833847896
120
123
  * ```
121
124
  *
122
- * @example To retrieve tag set of an object
125
+ * @example To retrieve tag set of a specific object version
123
126
  * ```javascript
124
- * // The following example retrieves tag set of an object.
127
+ * // The following example retrieves tag set of an object. The request specifies object version.
125
128
  * const input = {
126
129
  * "Bucket": "examplebucket",
127
- * "Key": "HappyFace.jpg"
130
+ * "Key": "exampleobject",
131
+ * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
128
132
  * };
129
133
  * const command = new GetObjectTaggingCommand(input);
130
134
  * const response = await client.send(command);
@@ -132,18 +136,14 @@ declare const GetObjectTaggingCommand_base: {
132
136
  * {
133
137
  * "TagSet": [
134
138
  * {
135
- * "Key": "Key4",
136
- * "Value": "Value4"
137
- * },
138
- * {
139
- * "Key": "Key3",
140
- * "Value": "Value3"
139
+ * "Key": "Key1",
140
+ * "Value": "Value1"
141
141
  * }
142
142
  * ],
143
- * "VersionId": "null"
143
+ * "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
144
144
  * }
145
145
  * *\/
146
- * // example id: to-retrieve-tag-set-of-an-object-1481833847896
146
+ * // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663
147
147
  * ```
148
148
  *
149
149
  */
@@ -233,23 +233,27 @@ declare const PutObjectCommand_base: {
233
233
  * <p>Base exception class for all service exceptions from S3 service.</p>
234
234
  *
235
235
  * @public
236
- * @example To upload an object
236
+ * @example To upload object and specify user-defined metadata
237
237
  * ```javascript
238
- * // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.
238
+ * // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
239
239
  * const input = {
240
- * "Body": "HappyFace.jpg",
240
+ * "Body": "filetoupload",
241
241
  * "Bucket": "examplebucket",
242
- * "Key": "HappyFace.jpg"
242
+ * "Key": "exampleobject",
243
+ * "Metadata": {
244
+ * "metadata1": "value1",
245
+ * "metadata2": "value2"
246
+ * }
243
247
  * };
244
248
  * const command = new PutObjectCommand(input);
245
249
  * const response = await client.send(command);
246
250
  * /* response ==
247
251
  * {
248
252
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
249
- * "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
253
+ * "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
250
254
  * }
251
255
  * *\/
252
- * // example id: to-upload-an-object-1481760101010
256
+ * // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
253
257
  * ```
254
258
  *
255
259
  * @example To upload an object (specify optional headers)
@@ -274,97 +278,92 @@ declare const PutObjectCommand_base: {
274
278
  * // example id: to-upload-an-object-(specify-optional-headers)
275
279
  * ```
276
280
  *
277
- * @example To upload object and specify user-defined metadata
281
+ * @example To upload an object and specify optional tags
278
282
  * ```javascript
279
- * // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
283
+ * // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.
280
284
  * const input = {
281
- * "Body": "filetoupload",
285
+ * "Body": "c:\\HappyFace.jpg",
282
286
  * "Bucket": "examplebucket",
283
- * "Key": "exampleobject",
284
- * "Metadata": {
285
- * "metadata1": "value1",
286
- * "metadata2": "value2"
287
- * }
287
+ * "Key": "HappyFace.jpg",
288
+ * "Tagging": "key1=value1&key2=value2"
288
289
  * };
289
290
  * const command = new PutObjectCommand(input);
290
291
  * const response = await client.send(command);
291
292
  * /* response ==
292
293
  * {
293
294
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
294
- * "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
295
+ * "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
295
296
  * }
296
297
  * *\/
297
- * // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
298
+ * // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
298
299
  * ```
299
300
  *
300
- * @example To upload an object and specify canned ACL.
301
+ * @example To create an object.
301
302
  * ```javascript
302
- * // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
303
+ * // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
303
304
  * const input = {
304
- * "ACL": "authenticated-read",
305
305
  * "Body": "filetoupload",
306
306
  * "Bucket": "examplebucket",
307
- * "Key": "exampleobject"
307
+ * "Key": "objectkey"
308
308
  * };
309
309
  * const command = new PutObjectCommand(input);
310
310
  * const response = await client.send(command);
311
311
  * /* response ==
312
312
  * {
313
313
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
314
- * "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
314
+ * "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
315
315
  * }
316
316
  * *\/
317
- * // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
317
+ * // example id: to-create-an-object-1483147613675
318
318
  * ```
319
319
  *
320
- * @example To create an object.
320
+ * @example To upload an object
321
321
  * ```javascript
322
- * // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
322
+ * // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.
323
323
  * const input = {
324
- * "Body": "filetoupload",
324
+ * "Body": "HappyFace.jpg",
325
325
  * "Bucket": "examplebucket",
326
- * "Key": "objectkey"
326
+ * "Key": "HappyFace.jpg"
327
327
  * };
328
328
  * const command = new PutObjectCommand(input);
329
329
  * const response = await client.send(command);
330
330
  * /* response ==
331
331
  * {
332
332
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
333
- * "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
333
+ * "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
334
334
  * }
335
335
  * *\/
336
- * // example id: to-create-an-object-1483147613675
336
+ * // example id: to-upload-an-object-1481760101010
337
337
  * ```
338
338
  *
339
- * @example To upload an object and specify server-side encryption and object tags
339
+ * @example To upload an object and specify canned ACL.
340
340
  * ```javascript
341
- * // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
341
+ * // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
342
342
  * const input = {
343
+ * "ACL": "authenticated-read",
343
344
  * "Body": "filetoupload",
344
345
  * "Bucket": "examplebucket",
345
- * "Key": "exampleobject",
346
- * "ServerSideEncryption": "AES256",
347
- * "Tagging": "key1=value1&key2=value2"
346
+ * "Key": "exampleobject"
348
347
  * };
349
348
  * const command = new PutObjectCommand(input);
350
349
  * const response = await client.send(command);
351
350
  * /* response ==
352
351
  * {
353
352
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
354
- * "ServerSideEncryption": "AES256",
355
- * "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
353
+ * "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
356
354
  * }
357
355
  * *\/
358
- * // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
356
+ * // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
359
357
  * ```
360
358
  *
361
- * @example To upload an object and specify optional tags
359
+ * @example To upload an object and specify server-side encryption and object tags
362
360
  * ```javascript
363
- * // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.
361
+ * // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
364
362
  * const input = {
365
- * "Body": "c:\\HappyFace.jpg",
363
+ * "Body": "filetoupload",
366
364
  * "Bucket": "examplebucket",
367
- * "Key": "HappyFace.jpg",
365
+ * "Key": "exampleobject",
366
+ * "ServerSideEncryption": "AES256",
368
367
  * "Tagging": "key1=value1&key2=value2"
369
368
  * };
370
369
  * const command = new PutObjectCommand(input);
@@ -372,10 +371,11 @@ declare const PutObjectCommand_base: {
372
371
  * /* response ==
373
372
  * {
374
373
  * "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
375
- * "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
374
+ * "ServerSideEncryption": "AES256",
375
+ * "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
376
376
  * }
377
377
  * *\/
378
- * // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
378
+ * // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
379
379
  * ```
380
380
  *
381
381
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3",
3
3
  "description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
4
- "version": "3.577.0",
4
+ "version": "3.583.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-s3",
@@ -26,10 +26,10 @@
26
26
  "@aws-crypto/sha1-browser": "3.0.0",
27
27
  "@aws-crypto/sha256-browser": "3.0.0",
28
28
  "@aws-crypto/sha256-js": "3.0.0",
29
- "@aws-sdk/client-sso-oidc": "3.577.0",
30
- "@aws-sdk/client-sts": "3.577.0",
31
- "@aws-sdk/core": "3.576.0",
32
- "@aws-sdk/credential-provider-node": "3.577.0",
29
+ "@aws-sdk/client-sso-oidc": "3.583.0",
30
+ "@aws-sdk/client-sts": "3.583.0",
31
+ "@aws-sdk/core": "3.582.0",
32
+ "@aws-sdk/credential-provider-node": "3.583.0",
33
33
  "@aws-sdk/middleware-bucket-endpoint": "3.577.0",
34
34
  "@aws-sdk/middleware-expect-continue": "3.577.0",
35
35
  "@aws-sdk/middleware-flexible-checksums": "3.577.0",
@@ -37,23 +37,23 @@
37
37
  "@aws-sdk/middleware-location-constraint": "3.577.0",
38
38
  "@aws-sdk/middleware-logger": "3.577.0",
39
39
  "@aws-sdk/middleware-recursion-detection": "3.577.0",
40
- "@aws-sdk/middleware-sdk-s3": "3.577.0",
40
+ "@aws-sdk/middleware-sdk-s3": "3.582.0",
41
41
  "@aws-sdk/middleware-signing": "3.577.0",
42
42
  "@aws-sdk/middleware-ssec": "3.577.0",
43
- "@aws-sdk/middleware-user-agent": "3.577.0",
43
+ "@aws-sdk/middleware-user-agent": "3.583.0",
44
44
  "@aws-sdk/region-config-resolver": "3.577.0",
45
- "@aws-sdk/signature-v4-multi-region": "3.577.0",
45
+ "@aws-sdk/signature-v4-multi-region": "3.582.0",
46
46
  "@aws-sdk/types": "3.577.0",
47
- "@aws-sdk/util-endpoints": "3.577.0",
47
+ "@aws-sdk/util-endpoints": "3.583.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.577.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.577.0",
50
50
  "@aws-sdk/xml-builder": "3.575.0",
51
51
  "@smithy/config-resolver": "^3.0.0",
52
- "@smithy/core": "^2.0.0",
52
+ "@smithy/core": "^2.0.1",
53
53
  "@smithy/eventstream-serde-browser": "^3.0.0",
54
54
  "@smithy/eventstream-serde-config-resolver": "^3.0.0",
55
55
  "@smithy/eventstream-serde-node": "^3.0.0",
56
- "@smithy/fetch-http-handler": "^3.0.0",
56
+ "@smithy/fetch-http-handler": "^3.0.1",
57
57
  "@smithy/hash-blob-browser": "^3.0.0",
58
58
  "@smithy/hash-node": "^3.0.0",
59
59
  "@smithy/hash-stream-node": "^3.0.0",
@@ -61,29 +61,29 @@
61
61
  "@smithy/md5-js": "^3.0.0",
62
62
  "@smithy/middleware-content-length": "^3.0.0",
63
63
  "@smithy/middleware-endpoint": "^3.0.0",
64
- "@smithy/middleware-retry": "^3.0.0",
64
+ "@smithy/middleware-retry": "^3.0.1",
65
65
  "@smithy/middleware-serde": "^3.0.0",
66
66
  "@smithy/middleware-stack": "^3.0.0",
67
67
  "@smithy/node-config-provider": "^3.0.0",
68
68
  "@smithy/node-http-handler": "^3.0.0",
69
69
  "@smithy/protocol-http": "^4.0.0",
70
- "@smithy/smithy-client": "^3.0.0",
70
+ "@smithy/smithy-client": "^3.0.1",
71
71
  "@smithy/types": "^3.0.0",
72
72
  "@smithy/url-parser": "^3.0.0",
73
73
  "@smithy/util-base64": "^3.0.0",
74
74
  "@smithy/util-body-length-browser": "^3.0.0",
75
75
  "@smithy/util-body-length-node": "^3.0.0",
76
- "@smithy/util-defaults-mode-browser": "^3.0.0",
77
- "@smithy/util-defaults-mode-node": "^3.0.0",
76
+ "@smithy/util-defaults-mode-browser": "^3.0.1",
77
+ "@smithy/util-defaults-mode-node": "^3.0.1",
78
78
  "@smithy/util-endpoints": "^2.0.0",
79
79
  "@smithy/util-retry": "^3.0.0",
80
- "@smithy/util-stream": "^3.0.0",
80
+ "@smithy/util-stream": "^3.0.1",
81
81
  "@smithy/util-utf8": "^3.0.0",
82
82
  "@smithy/util-waiter": "^3.0.0",
83
83
  "tslib": "^2.6.2"
84
84
  },
85
85
  "devDependencies": {
86
- "@aws-sdk/signature-v4-crt": "3.577.0",
86
+ "@aws-sdk/signature-v4-crt": "3.582.0",
87
87
  "@tsconfig/node16": "16.1.3",
88
88
  "@types/chai": "^4.2.11",
89
89
  "@types/mocha": "^8.0.4",