@aws-sdk/client-s3 3.259.0 → 3.262.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.
|
@@ -4319,7 +4319,7 @@ const deserializeAws_restXmlGetObjectCommand = async (output, context) => {
|
|
|
4319
4319
|
ObjectLockMode: [, output.headers["x-amz-object-lock-mode"]],
|
|
4320
4320
|
ObjectLockRetainUntilDate: [
|
|
4321
4321
|
() => void 0 !== output.headers["x-amz-object-lock-retain-until-date"],
|
|
4322
|
-
() => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
4322
|
+
() => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.headers["x-amz-object-lock-retain-until-date"])),
|
|
4323
4323
|
],
|
|
4324
4324
|
ObjectLockLegalHoldStatus: [, output.headers["x-amz-object-lock-legal-hold"]],
|
|
4325
4325
|
Metadata: [
|
|
@@ -4713,7 +4713,7 @@ const deserializeAws_restXmlHeadObjectCommand = async (output, context) => {
|
|
|
4713
4713
|
ObjectLockMode: [, output.headers["x-amz-object-lock-mode"]],
|
|
4714
4714
|
ObjectLockRetainUntilDate: [
|
|
4715
4715
|
() => void 0 !== output.headers["x-amz-object-lock-retain-until-date"],
|
|
4716
|
-
() => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
4716
|
+
() => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.headers["x-amz-object-lock-retain-until-date"])),
|
|
4717
4717
|
],
|
|
4718
4718
|
ObjectLockLegalHoldStatus: [, output.headers["x-amz-object-lock-legal-hold"]],
|
|
4719
4719
|
Metadata: [
|
|
@@ -8258,7 +8258,7 @@ const deserializeAws_restXmlBucket = (output, context) => {
|
|
|
8258
8258
|
contents.Name = (0, smithy_client_1.expectString)(output["Name"]);
|
|
8259
8259
|
}
|
|
8260
8260
|
if (output["CreationDate"] !== undefined) {
|
|
8261
|
-
contents.CreationDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
8261
|
+
contents.CreationDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["CreationDate"]));
|
|
8262
8262
|
}
|
|
8263
8263
|
return contents;
|
|
8264
8264
|
};
|
|
@@ -8343,7 +8343,7 @@ const deserializeAws_restXmlCopyObjectResult = (output, context) => {
|
|
|
8343
8343
|
contents.ETag = (0, smithy_client_1.expectString)(output["ETag"]);
|
|
8344
8344
|
}
|
|
8345
8345
|
if (output["LastModified"] !== undefined) {
|
|
8346
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
8346
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
8347
8347
|
}
|
|
8348
8348
|
if (output["ChecksumCRC32"] !== undefined) {
|
|
8349
8349
|
contents.ChecksumCRC32 = (0, smithy_client_1.expectString)(output["ChecksumCRC32"]);
|
|
@@ -8372,7 +8372,7 @@ const deserializeAws_restXmlCopyPartResult = (output, context) => {
|
|
|
8372
8372
|
contents.ETag = (0, smithy_client_1.expectString)(output["ETag"]);
|
|
8373
8373
|
}
|
|
8374
8374
|
if (output["LastModified"] !== undefined) {
|
|
8375
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
8375
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
8376
8376
|
}
|
|
8377
8377
|
if (output["ChecksumCRC32"] !== undefined) {
|
|
8378
8378
|
contents.ChecksumCRC32 = (0, smithy_client_1.expectString)(output["ChecksumCRC32"]);
|
|
@@ -8502,7 +8502,7 @@ const deserializeAws_restXmlDeleteMarkerEntry = (output, context) => {
|
|
|
8502
8502
|
contents.IsLatest = (0, smithy_client_1.parseBoolean)(output["IsLatest"]);
|
|
8503
8503
|
}
|
|
8504
8504
|
if (output["LastModified"] !== undefined) {
|
|
8505
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
8505
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
8506
8506
|
}
|
|
8507
8507
|
return contents;
|
|
8508
8508
|
};
|
|
@@ -8968,7 +8968,7 @@ const deserializeAws_restXmlLifecycleExpiration = (output, context) => {
|
|
|
8968
8968
|
ExpiredObjectDeleteMarker: undefined,
|
|
8969
8969
|
};
|
|
8970
8970
|
if (output["Date"] !== undefined) {
|
|
8971
|
-
contents.Date = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
8971
|
+
contents.Date = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["Date"]));
|
|
8972
8972
|
}
|
|
8973
8973
|
if (output["Days"] !== undefined) {
|
|
8974
8974
|
contents.Days = (0, smithy_client_1.strictParseInt32)(output["Days"]);
|
|
@@ -9201,7 +9201,7 @@ const deserializeAws_restXmlMultipartUpload = (output, context) => {
|
|
|
9201
9201
|
contents.Key = (0, smithy_client_1.expectString)(output["Key"]);
|
|
9202
9202
|
}
|
|
9203
9203
|
if (output["Initiated"] !== undefined) {
|
|
9204
|
-
contents.Initiated = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
9204
|
+
contents.Initiated = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["Initiated"]));
|
|
9205
9205
|
}
|
|
9206
9206
|
if (output["StorageClass"] !== undefined) {
|
|
9207
9207
|
contents.StorageClass = (0, smithy_client_1.expectString)(output["StorageClass"]);
|
|
@@ -9284,7 +9284,7 @@ const deserializeAws_restXml_Object = (output, context) => {
|
|
|
9284
9284
|
contents.Key = (0, smithy_client_1.expectString)(output["Key"]);
|
|
9285
9285
|
}
|
|
9286
9286
|
if (output["LastModified"] !== undefined) {
|
|
9287
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
9287
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
9288
9288
|
}
|
|
9289
9289
|
if (output["ETag"] !== undefined) {
|
|
9290
9290
|
contents.ETag = (0, smithy_client_1.expectString)(output["ETag"]);
|
|
@@ -9344,7 +9344,7 @@ const deserializeAws_restXmlObjectLockRetention = (output, context) => {
|
|
|
9344
9344
|
contents.Mode = (0, smithy_client_1.expectString)(output["Mode"]);
|
|
9345
9345
|
}
|
|
9346
9346
|
if (output["RetainUntilDate"] !== undefined) {
|
|
9347
|
-
contents.RetainUntilDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
9347
|
+
contents.RetainUntilDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["RetainUntilDate"]));
|
|
9348
9348
|
}
|
|
9349
9349
|
return contents;
|
|
9350
9350
|
};
|
|
@@ -9423,7 +9423,7 @@ const deserializeAws_restXmlObjectVersion = (output, context) => {
|
|
|
9423
9423
|
contents.IsLatest = (0, smithy_client_1.parseBoolean)(output["IsLatest"]);
|
|
9424
9424
|
}
|
|
9425
9425
|
if (output["LastModified"] !== undefined) {
|
|
9426
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
9426
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
9427
9427
|
}
|
|
9428
9428
|
if (output["Owner"] !== undefined) {
|
|
9429
9429
|
contents.Owner = deserializeAws_restXmlOwner(output["Owner"], context);
|
|
@@ -9493,7 +9493,7 @@ const deserializeAws_restXmlPart = (output, context) => {
|
|
|
9493
9493
|
contents.PartNumber = (0, smithy_client_1.strictParseInt32)(output["PartNumber"]);
|
|
9494
9494
|
}
|
|
9495
9495
|
if (output["LastModified"] !== undefined) {
|
|
9496
|
-
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
9496
|
+
contents.LastModified = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModified"]));
|
|
9497
9497
|
}
|
|
9498
9498
|
if (output["ETag"] !== undefined) {
|
|
9499
9499
|
contents.ETag = (0, smithy_client_1.expectString)(output["ETag"]);
|
|
@@ -10025,7 +10025,7 @@ const deserializeAws_restXmlTransition = (output, context) => {
|
|
|
10025
10025
|
StorageClass: undefined,
|
|
10026
10026
|
};
|
|
10027
10027
|
if (output["Date"] !== undefined) {
|
|
10028
|
-
contents.Date = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
10028
|
+
contents.Date = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["Date"]));
|
|
10029
10029
|
}
|
|
10030
10030
|
if (output["Days"] !== undefined) {
|
|
10031
10031
|
contents.Days = (0, smithy_client_1.strictParseInt32)(output["Days"]);
|
|
@@ -10093,7 +10093,7 @@ const parseErrorBody = async (errorBody, context) => {
|
|
|
10093
10093
|
return value;
|
|
10094
10094
|
};
|
|
10095
10095
|
const loadRestXmlErrorCode = (output, data) => {
|
|
10096
|
-
if (data
|
|
10096
|
+
if (data?.Code !== undefined) {
|
|
10097
10097
|
return data.Code;
|
|
10098
10098
|
}
|
|
10099
10099
|
if (output.statusCode == 404) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, isValidHostname as __isValidHostname, } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { dateToUtcString as __dateToUtcString, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, map as __map, parseBoolean as __parseBoolean,
|
|
2
|
+
import { dateToUtcString as __dateToUtcString, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, map as __map, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, parseRfc7231DateTime as __parseRfc7231DateTime, resolvedPath as __resolvedPath, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { XmlNode as __XmlNode, XmlText as __XmlText } from "@aws-sdk/xml-builder";
|
|
4
4
|
import { XMLParser } from "fast-xml-parser";
|
|
5
5
|
import { AnalyticsFilter, BucketAlreadyExists, BucketAlreadyOwnedByYou, InvalidObjectState, LifecycleRuleFilter, MetricsFilter, NoSuchBucket, NoSuchKey, NoSuchUpload, NotFound, ObjectNotInActiveTierError, ReplicationRuleFilter, } from "../models/models_0";
|
|
@@ -4178,7 +4178,7 @@ export const deserializeAws_restXmlGetObjectCommand = async (output, context) =>
|
|
|
4178
4178
|
ObjectLockMode: [, output.headers["x-amz-object-lock-mode"]],
|
|
4179
4179
|
ObjectLockRetainUntilDate: [
|
|
4180
4180
|
() => void 0 !== output.headers["x-amz-object-lock-retain-until-date"],
|
|
4181
|
-
() => __expectNonNull(
|
|
4181
|
+
() => __expectNonNull(__parseRfc3339DateTimeWithOffset(output.headers["x-amz-object-lock-retain-until-date"])),
|
|
4182
4182
|
],
|
|
4183
4183
|
ObjectLockLegalHoldStatus: [, output.headers["x-amz-object-lock-legal-hold"]],
|
|
4184
4184
|
Metadata: [
|
|
@@ -4562,7 +4562,7 @@ export const deserializeAws_restXmlHeadObjectCommand = async (output, context) =
|
|
|
4562
4562
|
ObjectLockMode: [, output.headers["x-amz-object-lock-mode"]],
|
|
4563
4563
|
ObjectLockRetainUntilDate: [
|
|
4564
4564
|
() => void 0 !== output.headers["x-amz-object-lock-retain-until-date"],
|
|
4565
|
-
() => __expectNonNull(
|
|
4565
|
+
() => __expectNonNull(__parseRfc3339DateTimeWithOffset(output.headers["x-amz-object-lock-retain-until-date"])),
|
|
4566
4566
|
],
|
|
4567
4567
|
ObjectLockLegalHoldStatus: [, output.headers["x-amz-object-lock-legal-hold"]],
|
|
4568
4568
|
Metadata: [
|
|
@@ -8066,7 +8066,7 @@ const deserializeAws_restXmlBucket = (output, context) => {
|
|
|
8066
8066
|
contents.Name = __expectString(output["Name"]);
|
|
8067
8067
|
}
|
|
8068
8068
|
if (output["CreationDate"] !== undefined) {
|
|
8069
|
-
contents.CreationDate = __expectNonNull(
|
|
8069
|
+
contents.CreationDate = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["CreationDate"]));
|
|
8070
8070
|
}
|
|
8071
8071
|
return contents;
|
|
8072
8072
|
};
|
|
@@ -8151,7 +8151,7 @@ const deserializeAws_restXmlCopyObjectResult = (output, context) => {
|
|
|
8151
8151
|
contents.ETag = __expectString(output["ETag"]);
|
|
8152
8152
|
}
|
|
8153
8153
|
if (output["LastModified"] !== undefined) {
|
|
8154
|
-
contents.LastModified = __expectNonNull(
|
|
8154
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
8155
8155
|
}
|
|
8156
8156
|
if (output["ChecksumCRC32"] !== undefined) {
|
|
8157
8157
|
contents.ChecksumCRC32 = __expectString(output["ChecksumCRC32"]);
|
|
@@ -8180,7 +8180,7 @@ const deserializeAws_restXmlCopyPartResult = (output, context) => {
|
|
|
8180
8180
|
contents.ETag = __expectString(output["ETag"]);
|
|
8181
8181
|
}
|
|
8182
8182
|
if (output["LastModified"] !== undefined) {
|
|
8183
|
-
contents.LastModified = __expectNonNull(
|
|
8183
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
8184
8184
|
}
|
|
8185
8185
|
if (output["ChecksumCRC32"] !== undefined) {
|
|
8186
8186
|
contents.ChecksumCRC32 = __expectString(output["ChecksumCRC32"]);
|
|
@@ -8310,7 +8310,7 @@ const deserializeAws_restXmlDeleteMarkerEntry = (output, context) => {
|
|
|
8310
8310
|
contents.IsLatest = __parseBoolean(output["IsLatest"]);
|
|
8311
8311
|
}
|
|
8312
8312
|
if (output["LastModified"] !== undefined) {
|
|
8313
|
-
contents.LastModified = __expectNonNull(
|
|
8313
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
8314
8314
|
}
|
|
8315
8315
|
return contents;
|
|
8316
8316
|
};
|
|
@@ -8776,7 +8776,7 @@ const deserializeAws_restXmlLifecycleExpiration = (output, context) => {
|
|
|
8776
8776
|
ExpiredObjectDeleteMarker: undefined,
|
|
8777
8777
|
};
|
|
8778
8778
|
if (output["Date"] !== undefined) {
|
|
8779
|
-
contents.Date = __expectNonNull(
|
|
8779
|
+
contents.Date = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["Date"]));
|
|
8780
8780
|
}
|
|
8781
8781
|
if (output["Days"] !== undefined) {
|
|
8782
8782
|
contents.Days = __strictParseInt32(output["Days"]);
|
|
@@ -9009,7 +9009,7 @@ const deserializeAws_restXmlMultipartUpload = (output, context) => {
|
|
|
9009
9009
|
contents.Key = __expectString(output["Key"]);
|
|
9010
9010
|
}
|
|
9011
9011
|
if (output["Initiated"] !== undefined) {
|
|
9012
|
-
contents.Initiated = __expectNonNull(
|
|
9012
|
+
contents.Initiated = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["Initiated"]));
|
|
9013
9013
|
}
|
|
9014
9014
|
if (output["StorageClass"] !== undefined) {
|
|
9015
9015
|
contents.StorageClass = __expectString(output["StorageClass"]);
|
|
@@ -9092,7 +9092,7 @@ const deserializeAws_restXml_Object = (output, context) => {
|
|
|
9092
9092
|
contents.Key = __expectString(output["Key"]);
|
|
9093
9093
|
}
|
|
9094
9094
|
if (output["LastModified"] !== undefined) {
|
|
9095
|
-
contents.LastModified = __expectNonNull(
|
|
9095
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
9096
9096
|
}
|
|
9097
9097
|
if (output["ETag"] !== undefined) {
|
|
9098
9098
|
contents.ETag = __expectString(output["ETag"]);
|
|
@@ -9152,7 +9152,7 @@ const deserializeAws_restXmlObjectLockRetention = (output, context) => {
|
|
|
9152
9152
|
contents.Mode = __expectString(output["Mode"]);
|
|
9153
9153
|
}
|
|
9154
9154
|
if (output["RetainUntilDate"] !== undefined) {
|
|
9155
|
-
contents.RetainUntilDate = __expectNonNull(
|
|
9155
|
+
contents.RetainUntilDate = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["RetainUntilDate"]));
|
|
9156
9156
|
}
|
|
9157
9157
|
return contents;
|
|
9158
9158
|
};
|
|
@@ -9231,7 +9231,7 @@ const deserializeAws_restXmlObjectVersion = (output, context) => {
|
|
|
9231
9231
|
contents.IsLatest = __parseBoolean(output["IsLatest"]);
|
|
9232
9232
|
}
|
|
9233
9233
|
if (output["LastModified"] !== undefined) {
|
|
9234
|
-
contents.LastModified = __expectNonNull(
|
|
9234
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
9235
9235
|
}
|
|
9236
9236
|
if (output["Owner"] !== undefined) {
|
|
9237
9237
|
contents.Owner = deserializeAws_restXmlOwner(output["Owner"], context);
|
|
@@ -9301,7 +9301,7 @@ const deserializeAws_restXmlPart = (output, context) => {
|
|
|
9301
9301
|
contents.PartNumber = __strictParseInt32(output["PartNumber"]);
|
|
9302
9302
|
}
|
|
9303
9303
|
if (output["LastModified"] !== undefined) {
|
|
9304
|
-
contents.LastModified = __expectNonNull(
|
|
9304
|
+
contents.LastModified = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModified"]));
|
|
9305
9305
|
}
|
|
9306
9306
|
if (output["ETag"] !== undefined) {
|
|
9307
9307
|
contents.ETag = __expectString(output["ETag"]);
|
|
@@ -9833,7 +9833,7 @@ const deserializeAws_restXmlTransition = (output, context) => {
|
|
|
9833
9833
|
StorageClass: undefined,
|
|
9834
9834
|
};
|
|
9835
9835
|
if (output["Date"] !== undefined) {
|
|
9836
|
-
contents.Date = __expectNonNull(
|
|
9836
|
+
contents.Date = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["Date"]));
|
|
9837
9837
|
}
|
|
9838
9838
|
if (output["Days"] !== undefined) {
|
|
9839
9839
|
contents.Days = __strictParseInt32(output["Days"]);
|
|
@@ -9901,7 +9901,7 @@ const parseErrorBody = async (errorBody, context) => {
|
|
|
9901
9901
|
return value;
|
|
9902
9902
|
};
|
|
9903
9903
|
const loadRestXmlErrorCode = (output, data) => {
|
|
9904
|
-
if (data
|
|
9904
|
+
if (data?.Code !== undefined) {
|
|
9905
9905
|
return data.Code;
|
|
9906
9906
|
}
|
|
9907
9907
|
if (output.statusCode == 404) {
|
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.
|
|
4
|
+
"version": "3.262.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",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@aws-crypto/sha1-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
26
26
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
27
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
+
"@aws-sdk/client-sts": "3.262.0",
|
|
28
28
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
29
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
29
|
+
"@aws-sdk/credential-provider-node": "3.261.0",
|
|
30
30
|
"@aws-sdk/eventstream-serde-browser": "3.258.0",
|
|
31
31
|
"@aws-sdk/eventstream-serde-config-resolver": "3.257.0",
|
|
32
32
|
"@aws-sdk/eventstream-serde-node": "3.258.0",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"@aws-sdk/node-http-handler": "3.257.0",
|
|
57
57
|
"@aws-sdk/protocol-http": "3.257.0",
|
|
58
58
|
"@aws-sdk/signature-v4-multi-region": "3.257.0",
|
|
59
|
-
"@aws-sdk/smithy-client": "3.
|
|
59
|
+
"@aws-sdk/smithy-client": "3.261.0",
|
|
60
60
|
"@aws-sdk/types": "3.257.0",
|
|
61
61
|
"@aws-sdk/url-parser": "3.257.0",
|
|
62
62
|
"@aws-sdk/util-base64": "3.208.0",
|
|
63
63
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
64
64
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
65
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
66
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
65
|
+
"@aws-sdk/util-defaults-mode-browser": "3.261.0",
|
|
66
|
+
"@aws-sdk/util-defaults-mode-node": "3.261.0",
|
|
67
67
|
"@aws-sdk/util-endpoints": "3.257.0",
|
|
68
68
|
"@aws-sdk/util-retry": "3.257.0",
|
|
69
69
|
"@aws-sdk/util-stream-browser": "3.258.0",
|