@aws-sdk/client-s3 3.614.0 → 3.617.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.
- package/dist-cjs/index.js +174 -64
- package/dist-es/S3Client.js +7 -7
- package/dist-es/commands/AbortMultipartUploadCommand.js +2 -0
- package/dist-es/commands/CreateBucketCommand.js +2 -0
- package/dist-es/commands/CreateMultipartUploadCommand.js +2 -0
- package/dist-es/commands/CreateSessionCommand.js +2 -0
- package/dist-es/commands/DeleteObjectCommand.js +2 -0
- package/dist-es/commands/DeleteObjectTaggingCommand.js +2 -0
- package/dist-es/commands/DeleteObjectsCommand.js +2 -0
- package/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketAclCommand.js +2 -0
- package/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketCorsCommand.js +2 -0
- package/dist-es/commands/GetBucketEncryptionCommand.js +2 -0
- package/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketLocationCommand.js +2 -0
- package/dist-es/commands/GetBucketLoggingCommand.js +2 -0
- package/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -0
- package/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -0
- package/dist-es/commands/GetBucketPolicyCommand.js +2 -0
- package/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -0
- package/dist-es/commands/GetBucketReplicationCommand.js +2 -0
- package/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -0
- package/dist-es/commands/GetBucketTaggingCommand.js +2 -0
- package/dist-es/commands/GetBucketVersioningCommand.js +2 -0
- package/dist-es/commands/GetBucketWebsiteCommand.js +2 -0
- package/dist-es/commands/GetObjectAclCommand.js +2 -0
- package/dist-es/commands/GetObjectAttributesCommand.js +2 -0
- package/dist-es/commands/GetObjectLegalHoldCommand.js +2 -0
- package/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -0
- package/dist-es/commands/GetObjectRetentionCommand.js +2 -0
- package/dist-es/commands/GetObjectTaggingCommand.js +2 -0
- package/dist-es/commands/GetPublicAccessBlockCommand.js +2 -0
- package/dist-es/commands/HeadBucketCommand.js +2 -0
- package/dist-es/commands/HeadObjectCommand.js +2 -1
- package/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -0
- package/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -0
- package/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -0
- package/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -0
- package/dist-es/commands/ListBucketsCommand.js +2 -0
- package/dist-es/commands/ListDirectoryBucketsCommand.js +2 -0
- package/dist-es/commands/ListMultipartUploadsCommand.js +2 -0
- package/dist-es/commands/ListObjectVersionsCommand.js +2 -0
- package/dist-es/commands/ListObjectsCommand.js +2 -0
- package/dist-es/commands/ListObjectsV2Command.js +2 -0
- package/dist-es/commands/ListPartsCommand.js +2 -0
- package/dist-es/commands/PutObjectAclCommand.js +2 -0
- package/dist-es/commands/PutObjectCommand.js +2 -1
- package/dist-es/commands/PutObjectLegalHoldCommand.js +2 -0
- package/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -0
- package/dist-es/commands/PutObjectRetentionCommand.js +2 -0
- package/dist-es/commands/PutObjectTaggingCommand.js +2 -0
- package/dist-es/commands/RestoreObjectCommand.js +2 -0
- package/dist-es/commands/SelectObjectContentCommand.js +2 -0
- package/dist-es/commands/UploadPartCommand.js +2 -0
- package/dist-types/S3Client.d.ts +2 -2
- package/dist-types/commands/DeleteObjectTaggingCommand.d.ts +11 -11
- package/dist-types/commands/DeleteObjectsCommand.d.ts +22 -22
- package/dist-types/commands/GetObjectCommand.d.ts +19 -19
- package/dist-types/commands/PutObjectCommand.d.ts +50 -50
- package/dist-types/commands/UploadPartCopyCommand.d.ts +13 -13
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/S3Client.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
- package/package.json +25 -25
|
@@ -266,15 +266,14 @@ declare const UploadPartCopyCommand_base: {
|
|
|
266
266
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
267
267
|
*
|
|
268
268
|
* @public
|
|
269
|
-
* @example To upload a part by copying
|
|
269
|
+
* @example To upload a part by copying data from an existing object as data source
|
|
270
270
|
* ```javascript
|
|
271
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
271
|
+
* // The following example uploads a part of a multipart upload by copying data from an existing object as data source.
|
|
272
272
|
* const input = {
|
|
273
273
|
* "Bucket": "examplebucket",
|
|
274
274
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
275
|
-
* "CopySourceRange": "bytes=1-100000",
|
|
276
275
|
* "Key": "examplelargeobject",
|
|
277
|
-
* "PartNumber": "
|
|
276
|
+
* "PartNumber": "1",
|
|
278
277
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
279
278
|
* };
|
|
280
279
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -282,22 +281,23 @@ declare const UploadPartCopyCommand_base: {
|
|
|
282
281
|
* /* response ==
|
|
283
282
|
* {
|
|
284
283
|
* "CopyPartResult": {
|
|
285
|
-
* "ETag": "\"
|
|
286
|
-
* "LastModified": "2016-12-29T21:
|
|
284
|
+
* "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
|
|
285
|
+
* "LastModified": "2016-12-29T21:24:43.000Z"
|
|
287
286
|
* }
|
|
288
287
|
* }
|
|
289
288
|
* *\/
|
|
290
|
-
* // example id: to-upload-a-part-by-copying-
|
|
289
|
+
* // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348
|
|
291
290
|
* ```
|
|
292
291
|
*
|
|
293
|
-
* @example To upload a part by copying
|
|
292
|
+
* @example To upload a part by copying byte range from an existing object as data source
|
|
294
293
|
* ```javascript
|
|
295
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
294
|
+
* // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.
|
|
296
295
|
* const input = {
|
|
297
296
|
* "Bucket": "examplebucket",
|
|
298
297
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
298
|
+
* "CopySourceRange": "bytes=1-100000",
|
|
299
299
|
* "Key": "examplelargeobject",
|
|
300
|
-
* "PartNumber": "
|
|
300
|
+
* "PartNumber": "2",
|
|
301
301
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
302
302
|
* };
|
|
303
303
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -305,12 +305,12 @@ declare const UploadPartCopyCommand_base: {
|
|
|
305
305
|
* /* response ==
|
|
306
306
|
* {
|
|
307
307
|
* "CopyPartResult": {
|
|
308
|
-
* "ETag": "\"
|
|
309
|
-
* "LastModified": "2016-12-29T21:
|
|
308
|
+
* "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
|
|
309
|
+
* "LastModified": "2016-12-29T21:44:28.000Z"
|
|
310
310
|
* }
|
|
311
311
|
* }
|
|
312
312
|
* *\/
|
|
313
|
-
* // example id: to-upload-a-part-by-copying-
|
|
313
|
+
* // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594
|
|
314
314
|
* ```
|
|
315
315
|
*
|
|
316
316
|
*/
|
|
@@ -41,7 +41,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger | undefined;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean | undefined;
|
|
44
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
45
44
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
46
45
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
47
46
|
systemClockOffset?: number | undefined;
|
|
@@ -54,6 +53,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
54
53
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3").S3ExpressIdentityProvider | undefined;
|
|
55
54
|
bucketEndpoint?: boolean | undefined;
|
|
56
55
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
56
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
57
57
|
useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
58
58
|
disableS3ExpressSessionAuth?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
59
59
|
};
|
|
@@ -43,7 +43,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
43
43
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
44
44
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
45
45
|
tls?: boolean | undefined;
|
|
46
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
47
46
|
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
48
47
|
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
49
48
|
systemClockOffset?: number | undefined;
|
|
@@ -56,5 +55,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
56
55
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3").S3ExpressIdentityProvider | undefined;
|
|
57
56
|
bucketEndpoint?: boolean | undefined;
|
|
58
57
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
58
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
59
59
|
useGlobalEndpoint?: boolean | import("@aws-sdk/types").Provider<boolean> | undefined;
|
|
60
60
|
};
|
|
@@ -40,7 +40,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
40
40
|
logger?: import("@smithy/types").Logger | undefined;
|
|
41
41
|
}) => import("@smithy/types").EndpointV2;
|
|
42
42
|
tls?: boolean | undefined;
|
|
43
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
44
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
45
44
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
46
45
|
systemClockOffset?: number | undefined;
|
|
@@ -53,6 +52,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
53
52
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3").S3ExpressIdentityProvider | undefined;
|
|
54
53
|
bucketEndpoint?: boolean | undefined;
|
|
55
54
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
55
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
56
56
|
useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
57
57
|
disableS3ExpressSessionAuth?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
58
58
|
};
|
|
@@ -675,11 +675,11 @@ export type S3ClientConfigType = Partial<
|
|
|
675
675
|
ClientDefaults &
|
|
676
676
|
RegionInputConfig &
|
|
677
677
|
EndpointInputConfig<EndpointParameters> &
|
|
678
|
-
RetryInputConfig &
|
|
679
678
|
HostHeaderInputConfig &
|
|
680
679
|
AwsAuthInputConfig &
|
|
681
680
|
S3InputConfig &
|
|
682
681
|
UserAgentInputConfig &
|
|
682
|
+
RetryInputConfig &
|
|
683
683
|
EventStreamSerdeInputConfig &
|
|
684
684
|
ClientInputEndpointParameters;
|
|
685
685
|
export interface S3ClientConfig extends S3ClientConfigType {}
|
|
@@ -689,11 +689,11 @@ export type S3ClientResolvedConfigType =
|
|
|
689
689
|
RuntimeExtensionsConfig &
|
|
690
690
|
RegionResolvedConfig &
|
|
691
691
|
EndpointResolvedConfig<EndpointParameters> &
|
|
692
|
-
RetryResolvedConfig &
|
|
693
692
|
HostHeaderResolvedConfig &
|
|
694
693
|
AwsAuthResolvedConfig &
|
|
695
694
|
S3ResolvedConfig &
|
|
696
695
|
UserAgentResolvedConfig &
|
|
696
|
+
RetryResolvedConfig &
|
|
697
697
|
EventStreamSerdeResolvedConfig &
|
|
698
698
|
ClientResolvedEndpointParameters;
|
|
699
699
|
export interface S3ClientResolvedConfig extends S3ClientResolvedConfigType {}
|
|
@@ -70,10 +70,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
70
70
|
}
|
|
71
71
|
) => import("@smithy/types").EndpointV2;
|
|
72
72
|
tls?: boolean | undefined;
|
|
73
|
-
retryStrategy?:
|
|
74
|
-
| import("@smithy/types").RetryStrategy
|
|
75
|
-
| import("@smithy/types").RetryStrategyV2
|
|
76
|
-
| undefined;
|
|
77
73
|
credentials?:
|
|
78
74
|
| import("@smithy/types").AwsCredentialIdentity
|
|
79
75
|
| import("@smithy/types").Provider<
|
|
@@ -109,6 +105,10 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
109
105
|
| undefined;
|
|
110
106
|
bucketEndpoint?: boolean | undefined;
|
|
111
107
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
108
|
+
retryStrategy?:
|
|
109
|
+
| import("@smithy/types").RetryStrategy
|
|
110
|
+
| import("@smithy/types").RetryStrategyV2
|
|
111
|
+
| undefined;
|
|
112
112
|
useGlobalEndpoint?:
|
|
113
113
|
| boolean
|
|
114
114
|
| import("@smithy/types").Provider<boolean>
|
|
@@ -80,10 +80,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
80
80
|
}
|
|
81
81
|
) => import("@aws-sdk/types").EndpointV2;
|
|
82
82
|
tls?: boolean | undefined;
|
|
83
|
-
retryStrategy?:
|
|
84
|
-
| import("@aws-sdk/types").RetryStrategy
|
|
85
|
-
| import("@aws-sdk/types").RetryStrategyV2
|
|
86
|
-
| undefined;
|
|
87
83
|
credentials?:
|
|
88
84
|
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
89
85
|
| import("@aws-sdk/types").Provider<
|
|
@@ -119,6 +115,10 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
119
115
|
| undefined;
|
|
120
116
|
bucketEndpoint?: boolean | undefined;
|
|
121
117
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
118
|
+
retryStrategy?:
|
|
119
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
120
|
+
| import("@aws-sdk/types").RetryStrategyV2
|
|
121
|
+
| undefined;
|
|
122
122
|
useGlobalEndpoint?:
|
|
123
123
|
| boolean
|
|
124
124
|
| import("@aws-sdk/types").Provider<boolean>
|
|
@@ -64,10 +64,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
64
64
|
}
|
|
65
65
|
) => import("@smithy/types").EndpointV2;
|
|
66
66
|
tls?: boolean | undefined;
|
|
67
|
-
retryStrategy?:
|
|
68
|
-
| import("@smithy/types").RetryStrategy
|
|
69
|
-
| import("@smithy/types").RetryStrategyV2
|
|
70
|
-
| undefined;
|
|
71
67
|
credentials?:
|
|
72
68
|
| import("@smithy/types").AwsCredentialIdentity
|
|
73
69
|
| import("@smithy/types").Provider<
|
|
@@ -97,6 +93,10 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
97
93
|
| undefined;
|
|
98
94
|
bucketEndpoint?: boolean | undefined;
|
|
99
95
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
96
|
+
retryStrategy?:
|
|
97
|
+
| import("@smithy/types").RetryStrategy
|
|
98
|
+
| import("@smithy/types").RetryStrategyV2
|
|
99
|
+
| undefined;
|
|
100
100
|
useGlobalEndpoint?:
|
|
101
101
|
| boolean
|
|
102
102
|
| import("@smithy/types").Provider<boolean>
|
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.617.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,64 +26,64 @@
|
|
|
26
26
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
28
28
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
29
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
30
|
-
"@aws-sdk/client-sts": "3.
|
|
31
|
-
"@aws-sdk/core": "3.
|
|
32
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
33
|
-
"@aws-sdk/middleware-bucket-endpoint": "3.
|
|
34
|
-
"@aws-sdk/middleware-expect-continue": "3.
|
|
35
|
-
"@aws-sdk/middleware-flexible-checksums": "3.
|
|
36
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/client-sso-oidc": "3.616.0",
|
|
30
|
+
"@aws-sdk/client-sts": "3.616.0",
|
|
31
|
+
"@aws-sdk/core": "3.616.0",
|
|
32
|
+
"@aws-sdk/credential-provider-node": "3.616.0",
|
|
33
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.616.0",
|
|
34
|
+
"@aws-sdk/middleware-expect-continue": "3.616.0",
|
|
35
|
+
"@aws-sdk/middleware-flexible-checksums": "3.616.0",
|
|
36
|
+
"@aws-sdk/middleware-host-header": "3.616.0",
|
|
37
37
|
"@aws-sdk/middleware-location-constraint": "3.609.0",
|
|
38
38
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
39
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
40
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
41
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
+
"@aws-sdk/middleware-recursion-detection": "3.616.0",
|
|
40
|
+
"@aws-sdk/middleware-sdk-s3": "3.617.0",
|
|
41
|
+
"@aws-sdk/middleware-signing": "3.616.0",
|
|
42
42
|
"@aws-sdk/middleware-ssec": "3.609.0",
|
|
43
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
43
|
+
"@aws-sdk/middleware-user-agent": "3.616.0",
|
|
44
44
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
45
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
45
|
+
"@aws-sdk/signature-v4-multi-region": "3.617.0",
|
|
46
46
|
"@aws-sdk/types": "3.609.0",
|
|
47
47
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
50
50
|
"@aws-sdk/xml-builder": "3.609.0",
|
|
51
51
|
"@smithy/config-resolver": "^3.0.5",
|
|
52
|
-
"@smithy/core": "^2.2.
|
|
52
|
+
"@smithy/core": "^2.2.7",
|
|
53
53
|
"@smithy/eventstream-serde-browser": "^3.0.4",
|
|
54
54
|
"@smithy/eventstream-serde-config-resolver": "^3.0.3",
|
|
55
55
|
"@smithy/eventstream-serde-node": "^3.0.4",
|
|
56
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
56
|
+
"@smithy/fetch-http-handler": "^3.2.2",
|
|
57
57
|
"@smithy/hash-blob-browser": "^3.1.2",
|
|
58
58
|
"@smithy/hash-node": "^3.0.3",
|
|
59
59
|
"@smithy/hash-stream-node": "^3.1.2",
|
|
60
60
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
61
61
|
"@smithy/md5-js": "^3.0.3",
|
|
62
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
62
|
+
"@smithy/middleware-content-length": "^3.0.4",
|
|
63
63
|
"@smithy/middleware-endpoint": "^3.0.5",
|
|
64
|
-
"@smithy/middleware-retry": "^3.0.
|
|
64
|
+
"@smithy/middleware-retry": "^3.0.10",
|
|
65
65
|
"@smithy/middleware-serde": "^3.0.3",
|
|
66
66
|
"@smithy/middleware-stack": "^3.0.3",
|
|
67
67
|
"@smithy/node-config-provider": "^3.1.4",
|
|
68
|
-
"@smithy/node-http-handler": "^3.1.
|
|
69
|
-
"@smithy/protocol-http": "^4.0.
|
|
70
|
-
"@smithy/smithy-client": "^3.1.
|
|
68
|
+
"@smithy/node-http-handler": "^3.1.3",
|
|
69
|
+
"@smithy/protocol-http": "^4.0.4",
|
|
70
|
+
"@smithy/smithy-client": "^3.1.8",
|
|
71
71
|
"@smithy/types": "^3.3.0",
|
|
72
72
|
"@smithy/url-parser": "^3.0.3",
|
|
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.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^3.0.10",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^3.0.10",
|
|
78
78
|
"@smithy/util-endpoints": "^2.0.5",
|
|
79
79
|
"@smithy/util-retry": "^3.0.3",
|
|
80
|
-
"@smithy/util-stream": "^3.0
|
|
80
|
+
"@smithy/util-stream": "^3.1.0",
|
|
81
81
|
"@smithy/util-utf8": "^3.0.0",
|
|
82
82
|
"@smithy/util-waiter": "^3.1.2",
|
|
83
83
|
"tslib": "^2.6.2"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
86
|
+
"@aws-sdk/signature-v4-crt": "3.617.0",
|
|
87
87
|
"@tsconfig/node16": "16.1.3",
|
|
88
88
|
"@types/chai": "^4.2.11",
|
|
89
89
|
"@types/mocha": "^8.0.4",
|