@aws-sdk/client-s3 3.216.0 → 3.222.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.
@@ -22,7 +22,7 @@ const serializeAws_restXmlAbortMultipartUploadCommand = async (input, context) =
22
22
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
23
23
  const query = map({
24
24
  "x-id": [, "AbortMultipartUpload"],
25
- uploadId: [, input.UploadId],
25
+ uploadId: [, (0, smithy_client_1.expectNonNull)(input.UploadId, `UploadId`)],
26
26
  });
27
27
  let body;
28
28
  return new protocol_http_1.HttpRequest({
@@ -56,7 +56,7 @@ const serializeAws_restXmlCompleteMultipartUploadCommand = async (input, context
56
56
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
57
57
  const query = map({
58
58
  "x-id": [, "CompleteMultipartUpload"],
59
- uploadId: [, input.UploadId],
59
+ uploadId: [, (0, smithy_client_1.expectNonNull)(input.UploadId, `UploadId`)],
60
60
  });
61
61
  let body;
62
62
  if (input.MultipartUpload !== undefined) {
@@ -290,7 +290,7 @@ const serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand = async (inp
290
290
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
291
291
  const query = map({
292
292
  analytics: [, ""],
293
- id: [, input.Id],
293
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
294
294
  });
295
295
  let body;
296
296
  return new protocol_http_1.HttpRequest({
@@ -358,7 +358,7 @@ const serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand = a
358
358
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
359
359
  const query = map({
360
360
  "intelligent-tiering": [, ""],
361
- id: [, input.Id],
361
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
362
362
  });
363
363
  let body;
364
364
  return new protocol_http_1.HttpRequest({
@@ -382,7 +382,7 @@ const serializeAws_restXmlDeleteBucketInventoryConfigurationCommand = async (inp
382
382
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
383
383
  const query = map({
384
384
  inventory: [, ""],
385
- id: [, input.Id],
385
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
386
386
  });
387
387
  let body;
388
388
  return new protocol_http_1.HttpRequest({
@@ -429,7 +429,7 @@ const serializeAws_restXmlDeleteBucketMetricsConfigurationCommand = async (input
429
429
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
430
430
  const query = map({
431
431
  metrics: [, ""],
432
- id: [, input.Id],
432
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
433
433
  });
434
434
  let body;
435
435
  return new protocol_http_1.HttpRequest({
@@ -736,7 +736,7 @@ const serializeAws_restXmlGetBucketAnalyticsConfigurationCommand = async (input,
736
736
  const query = map({
737
737
  analytics: [, ""],
738
738
  "x-id": [, "GetBucketAnalyticsConfiguration"],
739
- id: [, input.Id],
739
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
740
740
  });
741
741
  let body;
742
742
  return new protocol_http_1.HttpRequest({
@@ -805,7 +805,7 @@ const serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand = asyn
805
805
  const query = map({
806
806
  "intelligent-tiering": [, ""],
807
807
  "x-id": [, "GetBucketIntelligentTieringConfiguration"],
808
- id: [, input.Id],
808
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
809
809
  });
810
810
  let body;
811
811
  return new protocol_http_1.HttpRequest({
@@ -830,7 +830,7 @@ const serializeAws_restXmlGetBucketInventoryConfigurationCommand = async (input,
830
830
  const query = map({
831
831
  inventory: [, ""],
832
832
  "x-id": [, "GetBucketInventoryConfiguration"],
833
- id: [, input.Id],
833
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
834
834
  });
835
835
  let body;
836
836
  return new protocol_http_1.HttpRequest({
@@ -924,7 +924,7 @@ const serializeAws_restXmlGetBucketMetricsConfigurationCommand = async (input, c
924
924
  const query = map({
925
925
  metrics: [, ""],
926
926
  "x-id": [, "GetBucketMetricsConfiguration"],
927
- id: [, input.Id],
927
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
928
928
  });
929
929
  let body;
930
930
  return new protocol_http_1.HttpRequest({
@@ -1717,7 +1717,7 @@ const serializeAws_restXmlListPartsCommand = async (input, context) => {
1717
1717
  "x-id": [, "ListParts"],
1718
1718
  "max-parts": [() => input.MaxParts !== void 0, () => input.MaxParts.toString()],
1719
1719
  "part-number-marker": [, input.PartNumberMarker],
1720
- uploadId: [, input.UploadId],
1720
+ uploadId: [, (0, smithy_client_1.expectNonNull)(input.UploadId, `UploadId`)],
1721
1721
  });
1722
1722
  let body;
1723
1723
  return new protocol_http_1.HttpRequest({
@@ -1819,7 +1819,7 @@ const serializeAws_restXmlPutBucketAnalyticsConfigurationCommand = async (input,
1819
1819
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1820
1820
  const query = map({
1821
1821
  analytics: [, ""],
1822
- id: [, input.Id],
1822
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
1823
1823
  });
1824
1824
  let body;
1825
1825
  if (input.AnalyticsConfiguration !== undefined) {
@@ -1925,7 +1925,7 @@ const serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand = asyn
1925
1925
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1926
1926
  const query = map({
1927
1927
  "intelligent-tiering": [, ""],
1928
- id: [, input.Id],
1928
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
1929
1929
  });
1930
1930
  let body;
1931
1931
  if (input.IntelligentTieringConfiguration !== undefined) {
@@ -1960,7 +1960,7 @@ const serializeAws_restXmlPutBucketInventoryConfigurationCommand = async (input,
1960
1960
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1961
1961
  const query = map({
1962
1962
  inventory: [, ""],
1963
- id: [, input.Id],
1963
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
1964
1964
  });
1965
1965
  let body;
1966
1966
  if (input.InventoryConfiguration !== undefined) {
@@ -2067,7 +2067,7 @@ const serializeAws_restXmlPutBucketMetricsConfigurationCommand = async (input, c
2067
2067
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
2068
2068
  const query = map({
2069
2069
  metrics: [, ""],
2070
- id: [, input.Id],
2070
+ id: [, (0, smithy_client_1.expectNonNull)(input.Id, `Id`)],
2071
2071
  });
2072
2072
  let body;
2073
2073
  if (input.MetricsConfiguration !== undefined) {
@@ -2821,8 +2821,8 @@ const serializeAws_restXmlUploadPartCommand = async (input, context) => {
2821
2821
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
2822
2822
  const query = map({
2823
2823
  "x-id": [, "UploadPart"],
2824
- partNumber: [() => input.PartNumber !== void 0, () => input.PartNumber.toString()],
2825
- uploadId: [, input.UploadId],
2824
+ partNumber: [(0, smithy_client_1.expectNonNull)(input.PartNumber, `PartNumber`) != null, () => input.PartNumber.toString()],
2825
+ uploadId: [, (0, smithy_client_1.expectNonNull)(input.UploadId, `UploadId`)],
2826
2826
  });
2827
2827
  let body;
2828
2828
  if (input.Body !== undefined) {
@@ -2875,8 +2875,8 @@ const serializeAws_restXmlUploadPartCopyCommand = async (input, context) => {
2875
2875
  resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
2876
2876
  const query = map({
2877
2877
  "x-id": [, "UploadPartCopy"],
2878
- partNumber: [() => input.PartNumber !== void 0, () => input.PartNumber.toString()],
2879
- uploadId: [, input.UploadId],
2878
+ partNumber: [(0, smithy_client_1.expectNonNull)(input.PartNumber, `PartNumber`) != null, () => input.PartNumber.toString()],
2879
+ uploadId: [, (0, smithy_client_1.expectNonNull)(input.UploadId, `UploadId`)],
2880
2880
  });
2881
2881
  let body;
2882
2882
  return new protocol_http_1.HttpRequest({
@@ -16,7 +16,7 @@ export const serializeAws_restXmlAbortMultipartUploadCommand = async (input, con
16
16
  resolvedPath = __resolvedPath(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
17
17
  const query = map({
18
18
  "x-id": [, "AbortMultipartUpload"],
19
- uploadId: [, input.UploadId],
19
+ uploadId: [, __expectNonNull(input.UploadId, `UploadId`)],
20
20
  });
21
21
  let body;
22
22
  return new __HttpRequest({
@@ -49,7 +49,7 @@ export const serializeAws_restXmlCompleteMultipartUploadCommand = async (input,
49
49
  resolvedPath = __resolvedPath(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
50
50
  const query = map({
51
51
  "x-id": [, "CompleteMultipartUpload"],
52
- uploadId: [, input.UploadId],
52
+ uploadId: [, __expectNonNull(input.UploadId, `UploadId`)],
53
53
  });
54
54
  let body;
55
55
  if (input.MultipartUpload !== undefined) {
@@ -278,7 +278,7 @@ export const serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand = asy
278
278
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
279
279
  const query = map({
280
280
  analytics: [, ""],
281
- id: [, input.Id],
281
+ id: [, __expectNonNull(input.Id, `Id`)],
282
282
  });
283
283
  let body;
284
284
  return new __HttpRequest({
@@ -343,7 +343,7 @@ export const serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationComm
343
343
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
344
344
  const query = map({
345
345
  "intelligent-tiering": [, ""],
346
- id: [, input.Id],
346
+ id: [, __expectNonNull(input.Id, `Id`)],
347
347
  });
348
348
  let body;
349
349
  return new __HttpRequest({
@@ -366,7 +366,7 @@ export const serializeAws_restXmlDeleteBucketInventoryConfigurationCommand = asy
366
366
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
367
367
  const query = map({
368
368
  inventory: [, ""],
369
- id: [, input.Id],
369
+ id: [, __expectNonNull(input.Id, `Id`)],
370
370
  });
371
371
  let body;
372
372
  return new __HttpRequest({
@@ -411,7 +411,7 @@ export const serializeAws_restXmlDeleteBucketMetricsConfigurationCommand = async
411
411
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
412
412
  const query = map({
413
413
  metrics: [, ""],
414
- id: [, input.Id],
414
+ id: [, __expectNonNull(input.Id, `Id`)],
415
415
  });
416
416
  let body;
417
417
  return new __HttpRequest({
@@ -706,7 +706,7 @@ export const serializeAws_restXmlGetBucketAnalyticsConfigurationCommand = async
706
706
  const query = map({
707
707
  analytics: [, ""],
708
708
  "x-id": [, "GetBucketAnalyticsConfiguration"],
709
- id: [, input.Id],
709
+ id: [, __expectNonNull(input.Id, `Id`)],
710
710
  });
711
711
  let body;
712
712
  return new __HttpRequest({
@@ -772,7 +772,7 @@ export const serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand
772
772
  const query = map({
773
773
  "intelligent-tiering": [, ""],
774
774
  "x-id": [, "GetBucketIntelligentTieringConfiguration"],
775
- id: [, input.Id],
775
+ id: [, __expectNonNull(input.Id, `Id`)],
776
776
  });
777
777
  let body;
778
778
  return new __HttpRequest({
@@ -796,7 +796,7 @@ export const serializeAws_restXmlGetBucketInventoryConfigurationCommand = async
796
796
  const query = map({
797
797
  inventory: [, ""],
798
798
  "x-id": [, "GetBucketInventoryConfiguration"],
799
- id: [, input.Id],
799
+ id: [, __expectNonNull(input.Id, `Id`)],
800
800
  });
801
801
  let body;
802
802
  return new __HttpRequest({
@@ -886,7 +886,7 @@ export const serializeAws_restXmlGetBucketMetricsConfigurationCommand = async (i
886
886
  const query = map({
887
887
  metrics: [, ""],
888
888
  "x-id": [, "GetBucketMetricsConfiguration"],
889
- id: [, input.Id],
889
+ id: [, __expectNonNull(input.Id, `Id`)],
890
890
  });
891
891
  let body;
892
892
  return new __HttpRequest({
@@ -1649,7 +1649,7 @@ export const serializeAws_restXmlListPartsCommand = async (input, context) => {
1649
1649
  "x-id": [, "ListParts"],
1650
1650
  "max-parts": [() => input.MaxParts !== void 0, () => input.MaxParts.toString()],
1651
1651
  "part-number-marker": [, input.PartNumberMarker],
1652
- uploadId: [, input.UploadId],
1652
+ uploadId: [, __expectNonNull(input.UploadId, `UploadId`)],
1653
1653
  });
1654
1654
  let body;
1655
1655
  return new __HttpRequest({
@@ -1748,7 +1748,7 @@ export const serializeAws_restXmlPutBucketAnalyticsConfigurationCommand = async
1748
1748
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1749
1749
  const query = map({
1750
1750
  analytics: [, ""],
1751
- id: [, input.Id],
1751
+ id: [, __expectNonNull(input.Id, `Id`)],
1752
1752
  });
1753
1753
  let body;
1754
1754
  if (input.AnalyticsConfiguration !== undefined) {
@@ -1851,7 +1851,7 @@ export const serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand
1851
1851
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1852
1852
  const query = map({
1853
1853
  "intelligent-tiering": [, ""],
1854
- id: [, input.Id],
1854
+ id: [, __expectNonNull(input.Id, `Id`)],
1855
1855
  });
1856
1856
  let body;
1857
1857
  if (input.IntelligentTieringConfiguration !== undefined) {
@@ -1885,7 +1885,7 @@ export const serializeAws_restXmlPutBucketInventoryConfigurationCommand = async
1885
1885
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1886
1886
  const query = map({
1887
1887
  inventory: [, ""],
1888
- id: [, input.Id],
1888
+ id: [, __expectNonNull(input.Id, `Id`)],
1889
1889
  });
1890
1890
  let body;
1891
1891
  if (input.InventoryConfiguration !== undefined) {
@@ -1989,7 +1989,7 @@ export const serializeAws_restXmlPutBucketMetricsConfigurationCommand = async (i
1989
1989
  resolvedPath = __resolvedPath(resolvedPath, input, "Bucket", () => input.Bucket, "{Bucket}", false);
1990
1990
  const query = map({
1991
1991
  metrics: [, ""],
1992
- id: [, input.Id],
1992
+ id: [, __expectNonNull(input.Id, `Id`)],
1993
1993
  });
1994
1994
  let body;
1995
1995
  if (input.MetricsConfiguration !== undefined) {
@@ -2725,8 +2725,8 @@ export const serializeAws_restXmlUploadPartCommand = async (input, context) => {
2725
2725
  resolvedPath = __resolvedPath(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
2726
2726
  const query = map({
2727
2727
  "x-id": [, "UploadPart"],
2728
- partNumber: [() => input.PartNumber !== void 0, () => input.PartNumber.toString()],
2729
- uploadId: [, input.UploadId],
2728
+ partNumber: [__expectNonNull(input.PartNumber, `PartNumber`) != null, () => input.PartNumber.toString()],
2729
+ uploadId: [, __expectNonNull(input.UploadId, `UploadId`)],
2730
2730
  });
2731
2731
  let body;
2732
2732
  if (input.Body !== undefined) {
@@ -2778,8 +2778,8 @@ export const serializeAws_restXmlUploadPartCopyCommand = async (input, context)
2778
2778
  resolvedPath = __resolvedPath(resolvedPath, input, "Key", () => input.Key, "{Key+}", true);
2779
2779
  const query = map({
2780
2780
  "x-id": [, "UploadPartCopy"],
2781
- partNumber: [() => input.PartNumber !== void 0, () => input.PartNumber.toString()],
2782
- uploadId: [, input.UploadId],
2781
+ partNumber: [__expectNonNull(input.PartNumber, `PartNumber`) != null, () => input.PartNumber.toString()],
2782
+ uploadId: [, __expectNonNull(input.UploadId, `UploadId`)],
2783
2783
  });
2784
2784
  let body;
2785
2785
  return new __HttpRequest({
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.216.0",
4
+ "version": "3.222.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -23,54 +23,55 @@
23
23
  "@aws-crypto/sha1-browser": "2.0.0",
24
24
  "@aws-crypto/sha256-browser": "2.0.0",
25
25
  "@aws-crypto/sha256-js": "2.0.0",
26
- "@aws-sdk/client-sts": "3.216.0",
27
- "@aws-sdk/config-resolver": "3.215.0",
28
- "@aws-sdk/credential-provider-node": "3.216.0",
29
- "@aws-sdk/eventstream-serde-browser": "3.215.0",
30
- "@aws-sdk/eventstream-serde-config-resolver": "3.215.0",
31
- "@aws-sdk/eventstream-serde-node": "3.215.0",
32
- "@aws-sdk/fetch-http-handler": "3.215.0",
33
- "@aws-sdk/hash-blob-browser": "3.215.0",
34
- "@aws-sdk/hash-node": "3.215.0",
35
- "@aws-sdk/hash-stream-node": "3.215.0",
36
- "@aws-sdk/invalid-dependency": "3.215.0",
37
- "@aws-sdk/md5-js": "3.215.0",
38
- "@aws-sdk/middleware-bucket-endpoint": "3.215.0",
39
- "@aws-sdk/middleware-content-length": "3.215.0",
40
- "@aws-sdk/middleware-endpoint": "3.215.0",
41
- "@aws-sdk/middleware-expect-continue": "3.215.0",
42
- "@aws-sdk/middleware-flexible-checksums": "3.215.0",
43
- "@aws-sdk/middleware-host-header": "3.215.0",
44
- "@aws-sdk/middleware-location-constraint": "3.215.0",
45
- "@aws-sdk/middleware-logger": "3.215.0",
46
- "@aws-sdk/middleware-recursion-detection": "3.215.0",
47
- "@aws-sdk/middleware-retry": "3.215.0",
48
- "@aws-sdk/middleware-sdk-s3": "3.215.0",
49
- "@aws-sdk/middleware-serde": "3.215.0",
50
- "@aws-sdk/middleware-signing": "3.215.0",
51
- "@aws-sdk/middleware-ssec": "3.215.0",
52
- "@aws-sdk/middleware-stack": "3.215.0",
53
- "@aws-sdk/middleware-user-agent": "3.215.0",
54
- "@aws-sdk/node-config-provider": "3.215.0",
55
- "@aws-sdk/node-http-handler": "3.215.0",
56
- "@aws-sdk/protocol-http": "3.215.0",
57
- "@aws-sdk/signature-v4-multi-region": "3.215.0",
58
- "@aws-sdk/smithy-client": "3.215.0",
59
- "@aws-sdk/types": "3.215.0",
60
- "@aws-sdk/url-parser": "3.215.0",
26
+ "@aws-sdk/client-sts": "3.222.0",
27
+ "@aws-sdk/config-resolver": "3.222.0",
28
+ "@aws-sdk/credential-provider-node": "3.222.0",
29
+ "@aws-sdk/eventstream-serde-browser": "3.222.0",
30
+ "@aws-sdk/eventstream-serde-config-resolver": "3.222.0",
31
+ "@aws-sdk/eventstream-serde-node": "3.222.0",
32
+ "@aws-sdk/fetch-http-handler": "3.222.0",
33
+ "@aws-sdk/hash-blob-browser": "3.222.0",
34
+ "@aws-sdk/hash-node": "3.222.0",
35
+ "@aws-sdk/hash-stream-node": "3.222.0",
36
+ "@aws-sdk/invalid-dependency": "3.222.0",
37
+ "@aws-sdk/md5-js": "3.222.0",
38
+ "@aws-sdk/middleware-bucket-endpoint": "3.222.0",
39
+ "@aws-sdk/middleware-content-length": "3.222.0",
40
+ "@aws-sdk/middleware-endpoint": "3.222.0",
41
+ "@aws-sdk/middleware-expect-continue": "3.222.0",
42
+ "@aws-sdk/middleware-flexible-checksums": "3.222.0",
43
+ "@aws-sdk/middleware-host-header": "3.222.0",
44
+ "@aws-sdk/middleware-location-constraint": "3.222.0",
45
+ "@aws-sdk/middleware-logger": "3.222.0",
46
+ "@aws-sdk/middleware-recursion-detection": "3.222.0",
47
+ "@aws-sdk/middleware-retry": "3.222.0",
48
+ "@aws-sdk/middleware-sdk-s3": "3.222.0",
49
+ "@aws-sdk/middleware-serde": "3.222.0",
50
+ "@aws-sdk/middleware-signing": "3.222.0",
51
+ "@aws-sdk/middleware-ssec": "3.222.0",
52
+ "@aws-sdk/middleware-stack": "3.222.0",
53
+ "@aws-sdk/middleware-user-agent": "3.222.0",
54
+ "@aws-sdk/node-config-provider": "3.222.0",
55
+ "@aws-sdk/node-http-handler": "3.222.0",
56
+ "@aws-sdk/protocol-http": "3.222.0",
57
+ "@aws-sdk/signature-v4-multi-region": "3.222.0",
58
+ "@aws-sdk/smithy-client": "3.222.0",
59
+ "@aws-sdk/types": "3.222.0",
60
+ "@aws-sdk/url-parser": "3.222.0",
61
61
  "@aws-sdk/util-base64": "3.208.0",
62
62
  "@aws-sdk/util-body-length-browser": "3.188.0",
63
63
  "@aws-sdk/util-body-length-node": "3.208.0",
64
- "@aws-sdk/util-defaults-mode-browser": "3.215.0",
65
- "@aws-sdk/util-defaults-mode-node": "3.215.0",
66
- "@aws-sdk/util-endpoints": "3.216.0",
67
- "@aws-sdk/util-stream-browser": "3.215.0",
68
- "@aws-sdk/util-stream-node": "3.215.0",
69
- "@aws-sdk/util-user-agent-browser": "3.215.0",
70
- "@aws-sdk/util-user-agent-node": "3.215.0",
64
+ "@aws-sdk/util-defaults-mode-browser": "3.222.0",
65
+ "@aws-sdk/util-defaults-mode-node": "3.222.0",
66
+ "@aws-sdk/util-endpoints": "3.222.0",
67
+ "@aws-sdk/util-retry": "3.222.0",
68
+ "@aws-sdk/util-stream-browser": "3.222.0",
69
+ "@aws-sdk/util-stream-node": "3.222.0",
70
+ "@aws-sdk/util-user-agent-browser": "3.222.0",
71
+ "@aws-sdk/util-user-agent-node": "3.222.0",
71
72
  "@aws-sdk/util-utf8-browser": "3.188.0",
72
73
  "@aws-sdk/util-utf8-node": "3.208.0",
73
- "@aws-sdk/util-waiter": "3.215.0",
74
+ "@aws-sdk/util-waiter": "3.222.0",
74
75
  "@aws-sdk/xml-builder": "3.201.0",
75
76
  "fast-xml-parser": "4.0.11",
76
77
  "tslib": "^2.3.1"