@aws-sdk/client-cloudfront-keyvaluestore 3.620.1 → 3.622.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 +9 -9
- package/dist-es/CloudFrontKeyValueStoreClient.js +9 -9
- package/dist-types/CloudFrontKeyValueStoreClient.d.ts +6 -6
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/CloudFrontKeyValueStoreClient.d.ts +7 -7
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -101,22 +101,22 @@ var _CloudFrontKeyValueStoreClient = class _CloudFrontKeyValueStoreClient extend
|
|
|
101
101
|
constructor(...[configuration]) {
|
|
102
102
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
103
103
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
104
|
-
const _config_2 = (0,
|
|
105
|
-
const _config_3 = (0,
|
|
106
|
-
const _config_4 = (0,
|
|
107
|
-
const _config_5 = (0,
|
|
108
|
-
const _config_6 = (0,
|
|
109
|
-
const _config_7 = (0,
|
|
104
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
105
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
106
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
107
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
108
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
109
|
+
const _config_7 = (0, import_middleware_signing.resolveAwsAuthConfig)(_config_6);
|
|
110
110
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
111
111
|
super(_config_8);
|
|
112
112
|
this.config = _config_8;
|
|
113
|
+
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
114
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
115
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
113
116
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
114
117
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
115
118
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
116
119
|
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
117
|
-
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
118
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
119
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
122
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -16,22 +16,22 @@ export class CloudFrontKeyValueStoreClient extends __Client {
|
|
|
16
16
|
constructor(...[configuration]) {
|
|
17
17
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
18
18
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
19
|
-
const _config_2 =
|
|
20
|
-
const _config_3 =
|
|
21
|
-
const _config_4 =
|
|
22
|
-
const _config_5 =
|
|
23
|
-
const _config_6 =
|
|
24
|
-
const _config_7 =
|
|
19
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
20
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
21
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
22
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
23
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
24
|
+
const _config_7 = resolveAwsAuthConfig(_config_6);
|
|
25
25
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
26
26
|
super(_config_8);
|
|
27
27
|
this.config = _config_8;
|
|
28
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
29
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
30
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
28
31
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
29
32
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
30
33
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
31
34
|
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
32
|
-
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
35
35
|
}
|
|
36
36
|
destroy() {
|
|
37
37
|
super.destroy();
|
|
@@ -102,15 +102,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
102
102
|
*/
|
|
103
103
|
region?: string | __Provider<string>;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
106
106
|
* @internal
|
|
107
107
|
*/
|
|
108
|
-
|
|
108
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
109
109
|
/**
|
|
110
|
-
*
|
|
110
|
+
* Default credentials provider; Not available in browser runtime.
|
|
111
111
|
* @internal
|
|
112
112
|
*/
|
|
113
|
-
|
|
113
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
114
114
|
/**
|
|
115
115
|
* Value for how many times a request will be made at most in case of retry.
|
|
116
116
|
*/
|
|
@@ -137,7 +137,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
137
137
|
/**
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
export type CloudFrontKeyValueStoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
140
|
+
export type CloudFrontKeyValueStoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & AwsAuthInputConfig & ClientInputEndpointParameters;
|
|
141
141
|
/**
|
|
142
142
|
* @public
|
|
143
143
|
*
|
|
@@ -148,7 +148,7 @@ export interface CloudFrontKeyValueStoreClientConfig extends CloudFrontKeyValueS
|
|
|
148
148
|
/**
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
export type CloudFrontKeyValueStoreClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
151
|
+
export type CloudFrontKeyValueStoreClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & AwsAuthResolvedConfig & ClientResolvedEndpointParameters;
|
|
152
152
|
/**
|
|
153
153
|
* @public
|
|
154
154
|
*
|
|
@@ -27,6 +27,8 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
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;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -38,6 +40,4 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
38
40
|
systemClockOffset?: number | undefined;
|
|
39
41
|
signingRegion?: string | undefined;
|
|
40
42
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
43
43
|
};
|
|
@@ -27,6 +27,8 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
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;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -38,6 +40,4 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
38
40
|
systemClockOffset?: number | undefined;
|
|
39
41
|
signingRegion?: string | undefined;
|
|
40
42
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
43
43
|
};
|
|
@@ -19,13 +19,15 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
22
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
logger: import("@smithy/types").Logger;
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
30
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
29
31
|
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> | undefined;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -37,6 +39,4 @@ export declare const getRuntimeConfig: (config: CloudFrontKeyValueStoreClientCon
|
|
|
37
39
|
systemClockOffset?: number | undefined;
|
|
38
40
|
signingRegion?: string | undefined;
|
|
39
41
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
42
42
|
};
|
|
@@ -107,8 +107,8 @@ export interface ClientDefaults
|
|
|
107
107
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
108
108
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
109
109
|
region?: string | __Provider<string>;
|
|
110
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
111
110
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
111
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
112
112
|
maxAttempts?: number | __Provider<number>;
|
|
113
113
|
retryMode?: string | __Provider<string>;
|
|
114
114
|
logger?: __Logger;
|
|
@@ -119,12 +119,12 @@ export type CloudFrontKeyValueStoreClientConfigType = Partial<
|
|
|
119
119
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
120
120
|
> &
|
|
121
121
|
ClientDefaults &
|
|
122
|
+
UserAgentInputConfig &
|
|
123
|
+
RetryInputConfig &
|
|
122
124
|
RegionInputConfig &
|
|
123
|
-
EndpointInputConfig<EndpointParameters> &
|
|
124
125
|
HostHeaderInputConfig &
|
|
126
|
+
EndpointInputConfig<EndpointParameters> &
|
|
125
127
|
AwsAuthInputConfig &
|
|
126
|
-
UserAgentInputConfig &
|
|
127
|
-
RetryInputConfig &
|
|
128
128
|
ClientInputEndpointParameters;
|
|
129
129
|
export interface CloudFrontKeyValueStoreClientConfig
|
|
130
130
|
extends CloudFrontKeyValueStoreClientConfigType {}
|
|
@@ -132,12 +132,12 @@ export type CloudFrontKeyValueStoreClientResolvedConfigType =
|
|
|
132
132
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
133
133
|
Required<ClientDefaults> &
|
|
134
134
|
RuntimeExtensionsConfig &
|
|
135
|
+
UserAgentResolvedConfig &
|
|
136
|
+
RetryResolvedConfig &
|
|
135
137
|
RegionResolvedConfig &
|
|
136
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
137
138
|
HostHeaderResolvedConfig &
|
|
139
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
138
140
|
AwsAuthResolvedConfig &
|
|
139
|
-
UserAgentResolvedConfig &
|
|
140
|
-
RetryResolvedConfig &
|
|
141
141
|
ClientResolvedEndpointParameters;
|
|
142
142
|
export interface CloudFrontKeyValueStoreClientResolvedConfig
|
|
143
143
|
extends CloudFrontKeyValueStoreClientResolvedConfigType {}
|
|
@@ -34,6 +34,11 @@ export declare const getRuntimeConfig: (
|
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
36
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
38
|
+
retryStrategy?:
|
|
39
|
+
| import("@smithy/types").RetryStrategy
|
|
40
|
+
| import("@smithy/types").RetryStrategyV2
|
|
41
|
+
| undefined;
|
|
37
42
|
endpoint?:
|
|
38
43
|
| ((
|
|
39
44
|
| string
|
|
@@ -79,9 +84,4 @@ export declare const getRuntimeConfig: (
|
|
|
79
84
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
80
85
|
) => import("@smithy/types").RequestSigner)
|
|
81
86
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
82
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
83
|
-
retryStrategy?:
|
|
84
|
-
| import("@smithy/types").RetryStrategy
|
|
85
|
-
| import("@smithy/types").RetryStrategyV2
|
|
86
|
-
| undefined;
|
|
87
87
|
};
|
|
@@ -38,6 +38,11 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
serviceId: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
+
retryStrategy?:
|
|
43
|
+
| import("@smithy/types").RetryStrategy
|
|
44
|
+
| import("@smithy/types").RetryStrategyV2
|
|
45
|
+
| undefined;
|
|
41
46
|
endpoint?:
|
|
42
47
|
| ((
|
|
43
48
|
| string
|
|
@@ -83,9 +88,4 @@ export declare const getRuntimeConfig: (
|
|
|
83
88
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
84
89
|
) => import("@smithy/types").RequestSigner)
|
|
85
90
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
86
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
87
|
-
retryStrategy?:
|
|
88
|
-
| import("@smithy/types").RetryStrategy
|
|
89
|
-
| import("@smithy/types").RetryStrategyV2
|
|
90
|
-
| undefined;
|
|
91
91
|
};
|
|
@@ -23,12 +23,12 @@ export declare const getRuntimeConfig: (
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
region: string | import("@smithy/types").Provider<any>;
|
|
26
|
-
credentialDefaultProvider: (
|
|
27
|
-
input: any
|
|
28
|
-
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
29
26
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
30
27
|
import("@smithy/types").UserAgent
|
|
31
28
|
>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
32
32
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
33
33
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
@@ -38,6 +38,11 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
| import("@smithy/types").Provider<
|
|
39
39
|
import("@smithy/smithy-client").DefaultsMode
|
|
40
40
|
>;
|
|
41
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
42
|
+
retryStrategy?:
|
|
43
|
+
| import("@smithy/types").RetryStrategy
|
|
44
|
+
| import("@smithy/types").RetryStrategyV2
|
|
45
|
+
| undefined;
|
|
41
46
|
endpoint?:
|
|
42
47
|
| string
|
|
43
48
|
| import("@smithy/types").Endpoint
|
|
@@ -73,9 +78,4 @@ export declare const getRuntimeConfig: (
|
|
|
73
78
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
74
79
|
) => import("@smithy/types").RequestSigner)
|
|
75
80
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
76
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
77
|
-
retryStrategy?:
|
|
78
|
-
| import("@smithy/types").RetryStrategy
|
|
79
|
-
| import("@smithy/types").RetryStrategyV2
|
|
80
|
-
| undefined;
|
|
81
81
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront-keyvaluestore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Keyvaluestore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.622.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-cloudfront-keyvaluestore",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.622.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.622.0",
|
|
25
|
+
"@aws-sdk/core": "3.622.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.622.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
30
|
"@aws-sdk/middleware-signing": "3.620.0",
|
|
31
31
|
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
33
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
33
|
+
"@aws-sdk/signature-v4-multi-region": "3.622.0",
|
|
34
34
|
"@aws-sdk/types": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
37
37
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
38
38
|
"@smithy/config-resolver": "^3.0.5",
|
|
39
|
-
"@smithy/core": "^2.3.
|
|
40
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
+
"@smithy/core": "^2.3.2",
|
|
40
|
+
"@smithy/fetch-http-handler": "^3.2.4",
|
|
41
41
|
"@smithy/hash-node": "^3.0.3",
|
|
42
42
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
43
43
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
44
44
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
45
|
-
"@smithy/middleware-retry": "^3.0.
|
|
45
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
46
46
|
"@smithy/middleware-serde": "^3.0.3",
|
|
47
47
|
"@smithy/middleware-stack": "^3.0.3",
|
|
48
48
|
"@smithy/node-config-provider": "^3.1.4",
|
|
49
49
|
"@smithy/node-http-handler": "^3.1.4",
|
|
50
50
|
"@smithy/protocol-http": "^4.1.0",
|
|
51
|
-
"@smithy/smithy-client": "^3.1.
|
|
51
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
52
52
|
"@smithy/types": "^3.3.0",
|
|
53
53
|
"@smithy/url-parser": "^3.0.3",
|
|
54
54
|
"@smithy/util-base64": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
56
56
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
59
59
|
"@smithy/util-endpoints": "^2.0.5",
|
|
60
60
|
"@smithy/util-retry": "^3.0.3",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|