@aws-sdk/client-s3 3.363.0 → 3.369.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 +1 -1
- package/dist-types/runtimeConfig.d.ts +38 -37
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +56 -53
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/package.json +23 -23
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
32
32
|
serviceId: string;
|
|
33
33
|
signingEscapePath: boolean;
|
|
34
34
|
useArnRegion: boolean | import("@smithy/types").Provider<boolean>;
|
|
35
|
-
getAwsChunkedEncodingStream: import("@
|
|
35
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | import("@smithy/types").GetAwsChunkedEncodingStream<import("stream").Readable>;
|
|
36
36
|
logger: import("@smithy/types").Logger;
|
|
37
37
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
38
38
|
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;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
2
3
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
3
4
|
import { S3ClientConfig } from "./S3Client";
|
|
4
5
|
/**
|
|
@@ -6,49 +7,49 @@ import { S3ClientConfig } from "./S3Client";
|
|
|
6
7
|
*/
|
|
7
8
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
8
9
|
runtime: string;
|
|
9
|
-
defaultsMode: import("@
|
|
10
|
-
bodyLengthChecker: import("@
|
|
11
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
12
|
-
defaultUserAgentProvider: import("@
|
|
13
|
-
eventStreamSerdeProvider: import("@
|
|
14
|
-
maxAttempts: number | import("@
|
|
15
|
-
md5:
|
|
16
|
-
region: string | import("@
|
|
17
|
-
requestHandler: (import("@
|
|
18
|
-
retryMode: string | import("@
|
|
19
|
-
sha1:
|
|
20
|
-
sha256:
|
|
21
|
-
streamCollector: import("@
|
|
22
|
-
streamHasher: import("@
|
|
23
|
-
useArnRegion: boolean | import("@
|
|
24
|
-
useDualstackEndpoint: boolean | import("@
|
|
25
|
-
useFipsEndpoint: boolean | import("@
|
|
10
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
15
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
16
|
+
md5: __HashConstructor;
|
|
17
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
sha1: __HashConstructor;
|
|
21
|
+
sha256: __HashConstructor;
|
|
22
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
23
|
+
streamHasher: import("@aws-sdk/types").StreamHasher<import("stream").Readable> | import("@aws-sdk/types").StreamHasher<Blob>;
|
|
24
|
+
useArnRegion: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
26
27
|
apiVersion: string;
|
|
27
|
-
urlParser: import("@
|
|
28
|
-
base64Decoder: import("@
|
|
29
|
-
base64Encoder: import("@
|
|
30
|
-
utf8Decoder: import("@
|
|
31
|
-
utf8Encoder: import("@
|
|
28
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
29
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
30
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
31
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
32
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
32
33
|
disableHostPrefix: boolean;
|
|
33
34
|
serviceId: string;
|
|
34
35
|
signingEscapePath: boolean;
|
|
35
|
-
getAwsChunkedEncodingStream: import("@aws-sdk/types").GetAwsChunkedEncodingStream<any> | import("@
|
|
36
|
-
logger: import("@
|
|
37
|
-
sdkStreamMixin: import("@
|
|
38
|
-
endpoint?: ((string | import("@
|
|
36
|
+
getAwsChunkedEncodingStream: import("@aws-sdk/types").GetAwsChunkedEncodingStream<any> | import("@aws-sdk/types").GetAwsChunkedEncodingStream<import("stream").Readable>;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
39
|
+
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;
|
|
39
40
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
40
|
-
logger?: import("@
|
|
41
|
-
}) => import("@
|
|
41
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
42
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
42
43
|
tls?: boolean | undefined;
|
|
43
|
-
retryStrategy?: import("@
|
|
44
|
-
credentials?: import("@
|
|
45
|
-
signer?: import("@
|
|
44
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
45
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
46
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
46
47
|
systemClockOffset?: number | undefined;
|
|
47
48
|
signingRegion?: string | undefined;
|
|
48
|
-
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@
|
|
49
|
-
forcePathStyle?: (boolean & (boolean | import("@
|
|
50
|
-
useAccelerateEndpoint?: (boolean & (boolean | import("@
|
|
51
|
-
disableMultiregionAccessPoints?: (boolean & (boolean | import("@
|
|
52
|
-
customUserAgent?: string | import("@
|
|
53
|
-
useGlobalEndpoint?: boolean | import("@
|
|
49
|
+
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
50
|
+
forcePathStyle?: (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>)) | undefined;
|
|
51
|
+
useAccelerateEndpoint?: (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>)) | undefined;
|
|
52
|
+
disableMultiregionAccessPoints?: (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>)) | undefined;
|
|
53
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
54
|
+
useGlobalEndpoint?: boolean | import("@aws-sdk/types").Provider<boolean> | undefined;
|
|
54
55
|
};
|
|
@@ -27,7 +27,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
27
27
|
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
28
28
|
md5: import("@smithy/types").HashConstructor;
|
|
29
29
|
sha1: import("@smithy/types").HashConstructor;
|
|
30
|
-
getAwsChunkedEncodingStream: import("@
|
|
30
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | import("@smithy/types").GetAwsChunkedEncodingStream<import("stream").Readable>;
|
|
31
31
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
12
12
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
13
13
|
logger?: import("@smithy/types").Logger | undefined;
|
|
14
14
|
}) => import("@smithy/types").EndpointV2;
|
|
15
|
-
getAwsChunkedEncodingStream: import("@
|
|
15
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | import("@smithy/types").GetAwsChunkedEncodingStream<import("stream").Readable>;
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
17
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
18
|
serviceId: string;
|
|
@@ -44,7 +44,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
44
44
|
signingEscapePath: boolean;
|
|
45
45
|
useArnRegion: boolean | import("@smithy/types").Provider<boolean>;
|
|
46
46
|
getAwsChunkedEncodingStream:
|
|
47
|
-
| import("@
|
|
47
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
48
48
|
| import("@smithy/types").GetAwsChunkedEncodingStream<
|
|
49
49
|
import("stream").Readable
|
|
50
50
|
>;
|
|
@@ -1,94 +1,97 @@
|
|
|
1
|
+
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
1
2
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
3
|
import { S3ClientConfig } from "./S3Client";
|
|
3
4
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
4
5
|
runtime: string;
|
|
5
|
-
defaultsMode: import("@
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
7
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
8
|
>;
|
|
8
|
-
bodyLengthChecker: import("@
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
10
|
credentialDefaultProvider: (
|
|
10
11
|
input: any
|
|
11
|
-
) => import("@
|
|
12
|
-
defaultUserAgentProvider: import("@
|
|
13
|
-
import("@
|
|
12
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
14
|
+
import("@aws-sdk/types").UserAgent
|
|
14
15
|
>;
|
|
15
|
-
eventStreamSerdeProvider: import("@
|
|
16
|
-
maxAttempts: number | import("@
|
|
17
|
-
md5:
|
|
18
|
-
region: string | import("@
|
|
16
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
md5: __HashConstructor;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
20
|
requestHandler:
|
|
20
|
-
| (import("@
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
22
|
any,
|
|
22
23
|
any,
|
|
23
|
-
import("@
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
25
|
> &
|
|
25
26
|
import("@smithy/protocol-http").HttpHandler)
|
|
26
27
|
| RequestHandler;
|
|
27
|
-
retryMode: string | import("@
|
|
28
|
-
sha1:
|
|
29
|
-
sha256:
|
|
30
|
-
streamCollector: import("@
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha1: __HashConstructor;
|
|
30
|
+
sha256: __HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
32
|
streamHasher:
|
|
32
|
-
| import("@
|
|
33
|
-
| import("@
|
|
34
|
-
useArnRegion: boolean | import("@
|
|
35
|
-
useDualstackEndpoint: boolean | import("@
|
|
36
|
-
useFipsEndpoint: boolean | import("@
|
|
33
|
+
| import("@aws-sdk/types").StreamHasher<import("stream").Readable>
|
|
34
|
+
| import("@aws-sdk/types").StreamHasher<Blob>;
|
|
35
|
+
useArnRegion: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
36
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
37
38
|
apiVersion: string;
|
|
38
|
-
urlParser: import("@
|
|
39
|
-
base64Decoder: import("@
|
|
40
|
-
base64Encoder: import("@
|
|
41
|
-
utf8Decoder: import("@
|
|
42
|
-
utf8Encoder: import("@
|
|
39
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
40
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
41
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
42
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
43
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
43
44
|
disableHostPrefix: boolean;
|
|
44
45
|
serviceId: string;
|
|
45
46
|
signingEscapePath: boolean;
|
|
46
47
|
getAwsChunkedEncodingStream:
|
|
47
48
|
| import("@aws-sdk/types").GetAwsChunkedEncodingStream<any>
|
|
48
|
-
| import("@
|
|
49
|
+
| import("@aws-sdk/types").GetAwsChunkedEncodingStream<
|
|
49
50
|
import("stream").Readable
|
|
50
51
|
>;
|
|
51
|
-
logger: import("@
|
|
52
|
-
sdkStreamMixin: import("@
|
|
52
|
+
logger: import("@aws-sdk/types").Logger;
|
|
53
|
+
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
53
54
|
endpoint?:
|
|
54
55
|
| ((
|
|
55
56
|
| string
|
|
56
|
-
| import("@
|
|
57
|
-
| import("@
|
|
58
|
-
| import("@
|
|
59
|
-
| import("@
|
|
57
|
+
| import("@aws-sdk/types").Endpoint
|
|
58
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
59
|
+
| import("@aws-sdk/types").EndpointV2
|
|
60
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
60
61
|
) &
|
|
61
62
|
(
|
|
62
63
|
| string
|
|
63
|
-
| import("@
|
|
64
|
-
| import("@
|
|
65
|
-
| import("@
|
|
66
|
-
| import("@
|
|
67
|
-
| import("@
|
|
64
|
+
| import("@aws-sdk/types").Provider<string>
|
|
65
|
+
| import("@aws-sdk/types").Endpoint
|
|
66
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
67
|
+
| import("@aws-sdk/types").EndpointV2
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").EndpointV2
|
|
70
|
+
>
|
|
68
71
|
))
|
|
69
72
|
| undefined;
|
|
70
73
|
endpointProvider: (
|
|
71
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
72
75
|
context?: {
|
|
73
|
-
logger?: import("@
|
|
76
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
74
77
|
}
|
|
75
|
-
) => import("@
|
|
78
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
76
79
|
tls?: boolean | undefined;
|
|
77
80
|
retryStrategy?:
|
|
78
|
-
| import("@
|
|
79
|
-
| import("@
|
|
81
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
82
|
+
| import("@aws-sdk/types").RetryStrategyV2
|
|
80
83
|
| undefined;
|
|
81
84
|
credentials?:
|
|
82
|
-
| import("@
|
|
83
|
-
| import("@
|
|
84
|
-
import("@
|
|
85
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
86
|
+
| import("@aws-sdk/types").Provider<
|
|
87
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
85
88
|
>
|
|
86
89
|
| undefined;
|
|
87
90
|
signer?:
|
|
88
|
-
| import("@
|
|
91
|
+
| import("@aws-sdk/types").RequestSigner
|
|
89
92
|
| ((
|
|
90
|
-
authScheme?: import("@
|
|
91
|
-
) => Promise<import("@
|
|
93
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
94
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
92
95
|
| undefined;
|
|
93
96
|
systemClockOffset?: number | undefined;
|
|
94
97
|
signingRegion?: string | undefined;
|
|
@@ -96,20 +99,20 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
96
99
|
| (new (
|
|
97
100
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
98
101
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
99
|
-
) => import("@
|
|
102
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
100
103
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
101
104
|
forcePathStyle?:
|
|
102
|
-
| (boolean & (boolean | import("@
|
|
105
|
+
| (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>))
|
|
103
106
|
| undefined;
|
|
104
107
|
useAccelerateEndpoint?:
|
|
105
|
-
| (boolean & (boolean | import("@
|
|
108
|
+
| (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>))
|
|
106
109
|
| undefined;
|
|
107
110
|
disableMultiregionAccessPoints?:
|
|
108
|
-
| (boolean & (boolean | import("@
|
|
111
|
+
| (boolean & (boolean | import("@aws-sdk/types").Provider<boolean>))
|
|
109
112
|
| undefined;
|
|
110
|
-
customUserAgent?: string | import("@
|
|
113
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
111
114
|
useGlobalEndpoint?:
|
|
112
115
|
| boolean
|
|
113
|
-
| import("@
|
|
116
|
+
| import("@aws-sdk/types").Provider<boolean>
|
|
114
117
|
| undefined;
|
|
115
118
|
};
|
|
@@ -37,7 +37,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
37
37
|
md5: import("@smithy/types").HashConstructor;
|
|
38
38
|
sha1: import("@smithy/types").HashConstructor;
|
|
39
39
|
getAwsChunkedEncodingStream:
|
|
40
|
-
| import("@
|
|
40
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
41
41
|
| import("@smithy/types").GetAwsChunkedEncodingStream<
|
|
42
42
|
import("stream").Readable
|
|
43
43
|
>;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
12
12
|
}
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
getAwsChunkedEncodingStream:
|
|
15
|
-
| import("@
|
|
15
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
16
16
|
| import("@smithy/types").GetAwsChunkedEncodingStream<
|
|
17
17
|
import("stream").Readable
|
|
18
18
|
>;
|
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.369.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",
|
|
@@ -25,27 +25,27 @@
|
|
|
25
25
|
"@aws-crypto/sha1-browser": "3.0.0",
|
|
26
26
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
28
|
-
"@aws-sdk/client-sts": "3.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
30
|
-
"@aws-sdk/hash-blob-browser": "3.
|
|
31
|
-
"@aws-sdk/hash-stream-node": "3.
|
|
32
|
-
"@aws-sdk/md5-js": "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.
|
|
37
|
-
"@aws-sdk/middleware-location-constraint": "3.
|
|
38
|
-
"@aws-sdk/middleware-logger": "3.
|
|
39
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
40
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
41
|
-
"@aws-sdk/middleware-signing": "3.
|
|
42
|
-
"@aws-sdk/middleware-ssec": "3.
|
|
43
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
44
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/util-endpoints": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
28
|
+
"@aws-sdk/client-sts": "3.369.0",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "3.369.0",
|
|
30
|
+
"@aws-sdk/hash-blob-browser": "3.369.0",
|
|
31
|
+
"@aws-sdk/hash-stream-node": "3.369.0",
|
|
32
|
+
"@aws-sdk/md5-js": "3.369.0",
|
|
33
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.369.0",
|
|
34
|
+
"@aws-sdk/middleware-expect-continue": "3.369.0",
|
|
35
|
+
"@aws-sdk/middleware-flexible-checksums": "3.369.0",
|
|
36
|
+
"@aws-sdk/middleware-host-header": "3.369.0",
|
|
37
|
+
"@aws-sdk/middleware-location-constraint": "3.369.0",
|
|
38
|
+
"@aws-sdk/middleware-logger": "3.369.0",
|
|
39
|
+
"@aws-sdk/middleware-recursion-detection": "3.369.0",
|
|
40
|
+
"@aws-sdk/middleware-sdk-s3": "3.369.0",
|
|
41
|
+
"@aws-sdk/middleware-signing": "3.369.0",
|
|
42
|
+
"@aws-sdk/middleware-ssec": "3.369.0",
|
|
43
|
+
"@aws-sdk/middleware-user-agent": "3.369.0",
|
|
44
|
+
"@aws-sdk/signature-v4-multi-region": "3.369.0",
|
|
45
|
+
"@aws-sdk/types": "3.369.0",
|
|
46
|
+
"@aws-sdk/util-endpoints": "3.369.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.369.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.369.0",
|
|
49
49
|
"@aws-sdk/xml-builder": "3.310.0",
|
|
50
50
|
"@smithy/config-resolver": "^1.0.1",
|
|
51
51
|
"@smithy/eventstream-serde-browser": "^1.0.1",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@smithy/node-http-handler": "^1.0.2",
|
|
64
64
|
"@smithy/protocol-http": "^1.0.1",
|
|
65
65
|
"@smithy/smithy-client": "^1.0.3",
|
|
66
|
-
"@smithy/types": "^1.
|
|
66
|
+
"@smithy/types": "^1.1.0",
|
|
67
67
|
"@smithy/url-parser": "^1.0.1",
|
|
68
68
|
"@smithy/util-base64": "^1.0.1",
|
|
69
69
|
"@smithy/util-body-length-browser": "^1.0.1",
|