@aws-sdk/client-s3 3.997.0 → 3.998.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-types/runtimeConfig.browser.d.ts +9 -0
- package/dist-types/runtimeConfig.d.ts +10 -1
- package/dist-types/runtimeConfig.native.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +13 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -0
- package/package.json +49 -49
|
@@ -47,6 +47,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
47
47
|
requestChecksumCalculation?: import("@aws-sdk/middleware-flexible-checksums").RequestChecksumCalculation | import("@smithy/types").Provider<import("@aws-sdk/middleware-flexible-checksums").RequestChecksumCalculation>;
|
|
48
48
|
responseChecksumValidation?: import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation | import("@smithy/types").Provider<import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation>;
|
|
49
49
|
requestStreamBufferSize?: number | false;
|
|
50
|
+
checksumAlgorithms?: {
|
|
51
|
+
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
52
|
+
CRC32C?: import("@smithy/types").ChecksumConstructor;
|
|
53
|
+
CRC64NVME?: import("@smithy/types").ChecksumConstructor;
|
|
54
|
+
SHA1?: import("@smithy/types").ChecksumConstructor;
|
|
55
|
+
SHA256?: import("@smithy/types").ChecksumConstructor;
|
|
56
|
+
} & {
|
|
57
|
+
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
58
|
+
};
|
|
50
59
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
51
60
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
52
61
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
1
|
+
import { ChecksumConstructor as __ChecksumConstructor, HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
2
2
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
3
3
|
import type { S3ClientConfig } from "./S3Client";
|
|
4
4
|
/**
|
|
@@ -51,6 +51,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
51
51
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
52
52
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent;
|
|
53
53
|
requestStreamBufferSize?: number | false;
|
|
54
|
+
checksumAlgorithms?: {
|
|
55
|
+
CRC32?: __ChecksumConstructor;
|
|
56
|
+
CRC32C?: __ChecksumConstructor;
|
|
57
|
+
CRC64NVME?: __ChecksumConstructor;
|
|
58
|
+
SHA1?: __ChecksumConstructor;
|
|
59
|
+
SHA256?: __ChecksumConstructor;
|
|
60
|
+
} & {
|
|
61
|
+
[algorithmId: string]: __ChecksumConstructor;
|
|
62
|
+
};
|
|
54
63
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2;
|
|
55
64
|
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
56
65
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -46,6 +46,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
46
46
|
requestChecksumCalculation?: import("@aws-sdk/middleware-flexible-checksums").RequestChecksumCalculation | import("@smithy/types").Provider<import("@aws-sdk/middleware-flexible-checksums").RequestChecksumCalculation>;
|
|
47
47
|
responseChecksumValidation?: import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation | import("@smithy/types").Provider<import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation>;
|
|
48
48
|
requestStreamBufferSize?: number | false;
|
|
49
|
+
checksumAlgorithms?: {
|
|
50
|
+
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
51
|
+
CRC32C?: import("@smithy/types").ChecksumConstructor;
|
|
52
|
+
CRC64NVME?: import("@smithy/types").ChecksumConstructor;
|
|
53
|
+
SHA1?: import("@smithy/types").ChecksumConstructor;
|
|
54
|
+
SHA256?: import("@smithy/types").ChecksumConstructor;
|
|
55
|
+
} & {
|
|
56
|
+
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
57
|
+
};
|
|
49
58
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
59
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
51
60
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
@@ -77,6 +77,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
77
77
|
import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation
|
|
78
78
|
>;
|
|
79
79
|
requestStreamBufferSize?: number | false;
|
|
80
|
+
checksumAlgorithms?: {
|
|
81
|
+
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
82
|
+
CRC32C?: import("@smithy/types").ChecksumConstructor;
|
|
83
|
+
CRC64NVME?: import("@smithy/types").ChecksumConstructor;
|
|
84
|
+
SHA1?: import("@smithy/types").ChecksumConstructor;
|
|
85
|
+
SHA256?: import("@smithy/types").ChecksumConstructor;
|
|
86
|
+
} & {
|
|
87
|
+
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
88
|
+
};
|
|
80
89
|
retryStrategy?:
|
|
81
90
|
| import("@smithy/types").RetryStrategy
|
|
82
91
|
| import("@smithy/types").RetryStrategyV2;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
3
|
+
HashConstructor as __HashConstructor,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
2
5
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
3
6
|
import { S3ClientConfig } from "./S3Client";
|
|
4
7
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
@@ -81,6 +84,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
81
84
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
82
85
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent;
|
|
83
86
|
requestStreamBufferSize?: number | false;
|
|
87
|
+
checksumAlgorithms?: {
|
|
88
|
+
CRC32?: __ChecksumConstructor;
|
|
89
|
+
CRC32C?: __ChecksumConstructor;
|
|
90
|
+
CRC64NVME?: __ChecksumConstructor;
|
|
91
|
+
SHA1?: __ChecksumConstructor;
|
|
92
|
+
SHA256?: __ChecksumConstructor;
|
|
93
|
+
} & {
|
|
94
|
+
[algorithmId: string]: __ChecksumConstructor;
|
|
95
|
+
};
|
|
84
96
|
retryStrategy?:
|
|
85
97
|
| import("@aws-sdk/types").RetryStrategy
|
|
86
98
|
| import("@aws-sdk/types").RetryStrategyV2;
|
|
@@ -81,6 +81,15 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
81
81
|
import("@aws-sdk/middleware-flexible-checksums").ResponseChecksumValidation
|
|
82
82
|
>;
|
|
83
83
|
requestStreamBufferSize?: number | false;
|
|
84
|
+
checksumAlgorithms?: {
|
|
85
|
+
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
86
|
+
CRC32C?: import("@smithy/types").ChecksumConstructor;
|
|
87
|
+
CRC64NVME?: import("@smithy/types").ChecksumConstructor;
|
|
88
|
+
SHA1?: import("@smithy/types").ChecksumConstructor;
|
|
89
|
+
SHA256?: import("@smithy/types").ChecksumConstructor;
|
|
90
|
+
} & {
|
|
91
|
+
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
92
|
+
};
|
|
84
93
|
retryStrategy?:
|
|
85
94
|
| import("@smithy/types").RetryStrategy
|
|
86
95
|
| import("@smithy/types").RetryStrategyV2;
|
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.998.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -30,61 +30,61 @@
|
|
|
30
30
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
|
-
"@aws-sdk/core": "^3.973.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-bucket-endpoint": "^3.972.
|
|
36
|
-
"@aws-sdk/middleware-expect-continue": "^3.972.
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.
|
|
38
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
39
|
-
"@aws-sdk/middleware-location-constraint": "^3.972.
|
|
40
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
41
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
42
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
43
|
-
"@aws-sdk/middleware-ssec": "^3.972.
|
|
44
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
45
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
46
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
47
|
-
"@aws-sdk/types": "^3.973.
|
|
48
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
51
|
-
"@smithy/config-resolver": "^4.4.
|
|
52
|
-
"@smithy/core": "^3.23.
|
|
53
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
54
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
55
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
56
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
57
|
-
"@smithy/hash-blob-browser": "^4.2.
|
|
58
|
-
"@smithy/hash-node": "^4.2.
|
|
59
|
-
"@smithy/hash-stream-node": "^4.2.
|
|
60
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
61
|
-
"@smithy/md5-js": "^4.2.
|
|
62
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
63
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
64
|
-
"@smithy/middleware-retry": "^4.4.
|
|
65
|
-
"@smithy/middleware-serde": "^4.2.
|
|
66
|
-
"@smithy/middleware-stack": "^4.2.
|
|
67
|
-
"@smithy/node-config-provider": "^4.3.
|
|
68
|
-
"@smithy/node-http-handler": "^4.4.
|
|
69
|
-
"@smithy/protocol-http": "^5.3.
|
|
70
|
-
"@smithy/smithy-client": "^4.
|
|
71
|
-
"@smithy/types": "^4.
|
|
72
|
-
"@smithy/url-parser": "^4.2.
|
|
33
|
+
"@aws-sdk/core": "^3.973.14",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.13",
|
|
35
|
+
"@aws-sdk/middleware-bucket-endpoint": "^3.972.5",
|
|
36
|
+
"@aws-sdk/middleware-expect-continue": "^3.972.5",
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.973.0",
|
|
38
|
+
"@aws-sdk/middleware-host-header": "^3.972.5",
|
|
39
|
+
"@aws-sdk/middleware-location-constraint": "^3.972.5",
|
|
40
|
+
"@aws-sdk/middleware-logger": "^3.972.5",
|
|
41
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.5",
|
|
42
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.14",
|
|
43
|
+
"@aws-sdk/middleware-ssec": "^3.972.5",
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "^3.972.14",
|
|
45
|
+
"@aws-sdk/region-config-resolver": "^3.972.5",
|
|
46
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.2",
|
|
47
|
+
"@aws-sdk/types": "^3.973.3",
|
|
48
|
+
"@aws-sdk/util-endpoints": "^3.996.2",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.5",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "^3.972.13",
|
|
51
|
+
"@smithy/config-resolver": "^4.4.9",
|
|
52
|
+
"@smithy/core": "^3.23.6",
|
|
53
|
+
"@smithy/eventstream-serde-browser": "^4.2.10",
|
|
54
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.10",
|
|
55
|
+
"@smithy/eventstream-serde-node": "^4.2.10",
|
|
56
|
+
"@smithy/fetch-http-handler": "^5.3.11",
|
|
57
|
+
"@smithy/hash-blob-browser": "^4.2.11",
|
|
58
|
+
"@smithy/hash-node": "^4.2.10",
|
|
59
|
+
"@smithy/hash-stream-node": "^4.2.10",
|
|
60
|
+
"@smithy/invalid-dependency": "^4.2.10",
|
|
61
|
+
"@smithy/md5-js": "^4.2.10",
|
|
62
|
+
"@smithy/middleware-content-length": "^4.2.10",
|
|
63
|
+
"@smithy/middleware-endpoint": "^4.4.20",
|
|
64
|
+
"@smithy/middleware-retry": "^4.4.37",
|
|
65
|
+
"@smithy/middleware-serde": "^4.2.11",
|
|
66
|
+
"@smithy/middleware-stack": "^4.2.10",
|
|
67
|
+
"@smithy/node-config-provider": "^4.3.10",
|
|
68
|
+
"@smithy/node-http-handler": "^4.4.12",
|
|
69
|
+
"@smithy/protocol-http": "^5.3.10",
|
|
70
|
+
"@smithy/smithy-client": "^4.12.0",
|
|
71
|
+
"@smithy/types": "^4.13.0",
|
|
72
|
+
"@smithy/url-parser": "^4.2.10",
|
|
73
73
|
"@smithy/util-base64": "^4.3.1",
|
|
74
74
|
"@smithy/util-body-length-browser": "^4.2.1",
|
|
75
75
|
"@smithy/util-body-length-node": "^4.2.2",
|
|
76
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
78
|
-
"@smithy/util-endpoints": "^3.
|
|
79
|
-
"@smithy/util-middleware": "^4.2.
|
|
80
|
-
"@smithy/util-retry": "^4.2.
|
|
81
|
-
"@smithy/util-stream": "^4.5.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^4.3.36",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^4.2.39",
|
|
78
|
+
"@smithy/util-endpoints": "^3.3.1",
|
|
79
|
+
"@smithy/util-middleware": "^4.2.10",
|
|
80
|
+
"@smithy/util-retry": "^4.2.10",
|
|
81
|
+
"@smithy/util-stream": "^4.5.15",
|
|
82
82
|
"@smithy/util-utf8": "^4.2.1",
|
|
83
|
-
"@smithy/util-waiter": "^4.2.
|
|
83
|
+
"@smithy/util-waiter": "^4.2.10",
|
|
84
84
|
"tslib": "^2.6.2"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
87
|
+
"@aws-sdk/signature-v4-crt": "3.998.0",
|
|
88
88
|
"@tsconfig/node20": "20.1.8",
|
|
89
89
|
"@types/node": "^20.14.8",
|
|
90
90
|
"concurrently": "7.0.0",
|