@aws-sdk/client-cloudfront-keyvaluestore 3.774.0 → 3.777.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.
@@ -120,8 +120,6 @@ exports.defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider = createEndpointRul
120
120
  const resolveHttpAuthSchemeConfig = (config) => {
121
121
  const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
122
122
  const config_1 = (0, core_1.resolveAwsSdkSigV4AConfig)(config_0);
123
- return {
124
- ...config_1,
125
- };
123
+ return Object.assign(config_1, {});
126
124
  };
127
125
  exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
package/dist-cjs/index.js CHANGED
@@ -62,11 +62,10 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
62
62
 
63
63
  // src/endpoint/EndpointParameters.ts
64
64
  var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
65
- return {
66
- ...options,
65
+ return Object.assign(options, {
67
66
  useFipsEndpoint: options.useFipsEndpoint ?? false,
68
67
  defaultSigningName: "cloudfront-keyvaluestore"
69
- };
68
+ });
70
69
  }, "resolveClientEndpointParameters");
71
70
  var commonParams = {
72
71
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -122,22 +121,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
122
121
  }, "resolveHttpAuthRuntimeConfig");
123
122
 
124
123
  // src/runtimeExtensions.ts
125
- var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
126
124
  var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
127
- const extensionConfiguration = {
128
- ...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
129
- ...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
130
- ...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
131
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
132
- };
125
+ const extensionConfiguration = Object.assign(
126
+ (0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
127
+ (0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
128
+ (0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
129
+ getHttpAuthExtensionConfiguration(runtimeConfig)
130
+ );
133
131
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
134
- return {
135
- ...runtimeConfig,
136
- ...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
137
- ...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
138
- ...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
139
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration)
140
- };
132
+ return Object.assign(
133
+ runtimeConfig,
134
+ (0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
135
+ (0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
136
+ (0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
137
+ resolveHttpAuthRuntimeConfig(extensionConfiguration)
138
+ );
141
139
  }, "resolveRuntimeExtensions");
142
140
 
143
141
  // src/CloudFrontKeyValueStoreClient.ts
@@ -151,6 +149,8 @@ var CloudFrontKeyValueStoreClient = class extends import_smithy_client.Client {
151
149
  config;
152
150
  constructor(...[configuration]) {
153
151
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
152
+ super(_config_0);
153
+ this.initConfig = _config_0;
154
154
  const _config_1 = resolveClientEndpointParameters(_config_0);
155
155
  const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
156
156
  const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
@@ -159,7 +159,6 @@ var CloudFrontKeyValueStoreClient = class extends import_smithy_client.Client {
159
159
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
160
160
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
161
161
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
162
- super(_config_8);
163
162
  this.config = _config_8;
164
163
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
165
164
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
@@ -17,6 +17,8 @@ export class CloudFrontKeyValueStoreClient extends __Client {
17
17
  config;
18
18
  constructor(...[configuration]) {
19
19
  const _config_0 = __getRuntimeConfig(configuration || {});
20
+ super(_config_0);
21
+ this.initConfig = _config_0;
20
22
  const _config_1 = resolveClientEndpointParameters(_config_0);
21
23
  const _config_2 = resolveUserAgentConfig(_config_1);
22
24
  const _config_3 = resolveRetryConfig(_config_2);
@@ -25,7 +27,6 @@ export class CloudFrontKeyValueStoreClient extends __Client {
25
27
  const _config_6 = resolveEndpointConfig(_config_5);
26
28
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
27
29
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
28
- super(_config_8);
29
30
  this.config = _config_8;
30
31
  this.middlewareStack.use(getUserAgentPlugin(this.config));
31
32
  this.middlewareStack.use(getRetryPlugin(this.config));
@@ -117,7 +117,5 @@ export const defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider = createEndpoi
117
117
  export const resolveHttpAuthSchemeConfig = (config) => {
118
118
  const config_0 = resolveAwsSdkSigV4Config(config);
119
119
  const config_1 = resolveAwsSdkSigV4AConfig(config_0);
120
- return {
121
- ...config_1,
122
- };
120
+ return Object.assign(config_1, {});
123
121
  };
@@ -1,9 +1,8 @@
1
1
  export const resolveClientEndpointParameters = (options) => {
2
- return {
3
- ...options,
2
+ return Object.assign(options, {
4
3
  useFipsEndpoint: options.useFipsEndpoint ?? false,
5
4
  defaultSigningName: "cloudfront-keyvaluestore",
6
- };
5
+ });
7
6
  };
8
7
  export const commonParams = {
9
8
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
2
2
  import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
3
  import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
- const asPartial = (t) => t;
6
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
7
- const extensionConfiguration = {
8
- ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
9
- ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
10
- ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
11
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
12
- };
6
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
13
7
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
14
- return {
15
- ...runtimeConfig,
16
- ...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
17
- ...resolveDefaultRuntimeConfig(extensionConfiguration),
18
- ...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
19
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration),
20
- };
8
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
21
9
  };
@@ -24,7 +24,7 @@ export interface DeleteKeyCommandOutput extends DeleteKeyResponse, __MetadataBea
24
24
  declare const DeleteKeyCommand_base: {
25
25
  new (input: DeleteKeyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteKeyCommandInput, DeleteKeyCommandOutput, CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
26
  new (__0_0: DeleteKeyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteKeyCommandInput, DeleteKeyCommandOutput, CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; /** @internal type navigation helper, not in runtime. */
28
28
  };
29
29
  /**
30
30
  * <p>Deletes the key value pair specified by the key.</p>
@@ -76,6 +76,26 @@ declare const DeleteKeyCommand_base: {
76
76
  * @throws {@link CloudFrontKeyValueStoreServiceException}
77
77
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
78
78
  *
79
+ *
80
+ * @example Delete 'key1' from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
81
+ * ```javascript
82
+ * //
83
+ * const input = {
84
+ * IfMatch: "KV0AB12C3DEF456",
85
+ * Key: "key1",
86
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58"
87
+ * };
88
+ * const command = new DeleteKeyCommand(input);
89
+ * const response = await client.send(command);
90
+ * /* response is
91
+ * {
92
+ * ETag: "KV7XY89Z0ABC012",
93
+ * ItemCount: 3,
94
+ * TotalSizeInBytes: 5
95
+ * }
96
+ * *\/
97
+ * ```
98
+ *
79
99
  * @public
80
100
  */
81
101
  export declare class DeleteKeyCommand extends DeleteKeyCommand_base {
@@ -73,6 +73,50 @@ declare const DescribeKeyValueStoreCommand_base: {
73
73
  * @throws {@link CloudFrontKeyValueStoreServiceException}
74
74
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
75
75
  *
76
+ *
77
+ * @example Describe the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
78
+ * ```javascript
79
+ * //
80
+ * const input = {
81
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58"
82
+ * };
83
+ * const command = new DescribeKeyValueStoreCommand(input);
84
+ * const response = await client.send(command);
85
+ * /* response is
86
+ * {
87
+ * Created: "2023-11-01T22:18:46Z",
88
+ * ETag: "KV7XY89Z0ABC012",
89
+ * FailureReason: "Datasource size exceeds the allowed limit",
90
+ * ItemCount: 0,
91
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
92
+ * LastModified: "2023-11-01T14:28:17Z",
93
+ * Status: "IMPORT_FAILURE",
94
+ * TotalSizeInBytes: 0
95
+ * }
96
+ * *\/
97
+ * ```
98
+ *
99
+ * @example Describe the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678'
100
+ * ```javascript
101
+ * //
102
+ * const input = {
103
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678"
104
+ * };
105
+ * const command = new DescribeKeyValueStoreCommand(input);
106
+ * const response = await client.send(command);
107
+ * /* response is
108
+ * {
109
+ * Created: "2023-11-01T22:18:46Z",
110
+ * ETag: "KV7XY89Z0ABC012",
111
+ * ItemCount: 4,
112
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-1234a9d35678",
113
+ * LastModified: "2023-11-01T14:28:17Z",
114
+ * Status: "READY",
115
+ * TotalSizeInBytes: 15
116
+ * }
117
+ * *\/
118
+ * ```
119
+ *
76
120
  * @public
77
121
  */
78
122
  export declare class DescribeKeyValueStoreCommand extends DescribeKeyValueStoreCommand_base {
@@ -70,6 +70,26 @@ declare const GetKeyCommand_base: {
70
70
  * @throws {@link CloudFrontKeyValueStoreServiceException}
71
71
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
72
72
  *
73
+ *
74
+ * @example Get 'key1' from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
75
+ * ```javascript
76
+ * //
77
+ * const input = {
78
+ * Key: "key1",
79
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58"
80
+ * };
81
+ * const command = new GetKeyCommand(input);
82
+ * const response = await client.send(command);
83
+ * /* response is
84
+ * {
85
+ * ItemCount: 4,
86
+ * Key: "key1",
87
+ * TotalSizeInBytes: 15,
88
+ * Value: "value1"
89
+ * }
90
+ * *\/
91
+ * ```
92
+ *
73
93
  * @public
74
94
  */
75
95
  export declare class GetKeyCommand extends GetKeyCommand_base {
@@ -77,6 +77,68 @@ declare const ListKeysCommand_base: {
77
77
  * @throws {@link CloudFrontKeyValueStoreServiceException}
78
78
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
79
79
  *
80
+ *
81
+ * @example List keys in the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
82
+ * ```javascript
83
+ * //
84
+ * const input = {
85
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
86
+ * MaxResults: 3
87
+ * };
88
+ * const command = new ListKeysCommand(input);
89
+ * const response = await client.send(command);
90
+ * /* response is
91
+ * {
92
+ * Items: [
93
+ * {
94
+ * Key: "key1",
95
+ * Value: "value1"
96
+ * },
97
+ * {
98
+ * Key: "key2",
99
+ * Value: "value2"
100
+ * },
101
+ * {
102
+ * Key: "key3",
103
+ * Value: "value3"
104
+ * }
105
+ * ],
106
+ * NextToken: "hVTTZndkpBZ0VRZ0R1RF"
107
+ * }
108
+ * *\/
109
+ * ```
110
+ *
111
+ * @example List the next page in the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
112
+ * ```javascript
113
+ * //
114
+ * const input = {
115
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
116
+ * MaxResults: 3,
117
+ * NextToken: "hVTTZndkpBZ0VRZ0R1RF"
118
+ * };
119
+ * const command = new ListKeysCommand(input);
120
+ * const response = await client.send(command);
121
+ * /* response is
122
+ * {
123
+ * Items: [
124
+ * {
125
+ * Key: "key4",
126
+ * Value: "value4"
127
+ * },
128
+ * {
129
+ * Key: "key5",
130
+ * Value: "value5"
131
+ * },
132
+ * {
133
+ * Key: "key6",
134
+ * Value: "value6"
135
+ * }
136
+ * ],
137
+ * NextToken: "hQTlB5YmM5UFNoFQvMk"
138
+ * }
139
+ * *\/
140
+ * ```
141
+ *
80
142
  * @public
81
143
  */
82
144
  export declare class ListKeysCommand extends ListKeysCommand_base {
@@ -77,6 +77,27 @@ declare const PutKeyCommand_base: {
77
77
  * @throws {@link CloudFrontKeyValueStoreServiceException}
78
78
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
79
79
  *
80
+ *
81
+ * @example Put 'key1' with 'value1' into the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
82
+ * ```javascript
83
+ * //
84
+ * const input = {
85
+ * IfMatch: "KV0AB12C3DEF456",
86
+ * Key: "key1",
87
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
88
+ * Value: "value1"
89
+ * };
90
+ * const command = new PutKeyCommand(input);
91
+ * const response = await client.send(command);
92
+ * /* response is
93
+ * {
94
+ * ETag: "KV7XY89Z0ABC012",
95
+ * ItemCount: 4,
96
+ * TotalSizeInBytes: 15
97
+ * }
98
+ * *\/
99
+ * ```
100
+ *
80
101
  * @public
81
102
  */
82
103
  export declare class PutKeyCommand extends PutKeyCommand_base {
@@ -86,6 +86,97 @@ declare const UpdateKeysCommand_base: {
86
86
  * @throws {@link CloudFrontKeyValueStoreServiceException}
87
87
  * <p>Base exception class for all service exceptions from CloudFrontKeyValueStore service.</p>
88
88
  *
89
+ *
90
+ * @example Put 2 keys into the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
91
+ * ```javascript
92
+ * //
93
+ * const input = {
94
+ * IfMatch: "KV0AB12C3DEF456",
95
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
96
+ * Puts: [
97
+ * {
98
+ * Key: "key1",
99
+ * Value: "value1"
100
+ * },
101
+ * {
102
+ * Key: "key2",
103
+ * Value: "value2"
104
+ * }
105
+ * ]
106
+ * };
107
+ * const command = new UpdateKeysCommand(input);
108
+ * const response = await client.send(command);
109
+ * /* response is
110
+ * {
111
+ * ETag: "KV7XY89Z0ABC012",
112
+ * ItemCount: 4,
113
+ * TotalSizeInBytes: 15
114
+ * }
115
+ * *\/
116
+ * ```
117
+ *
118
+ * @example Delete 2 keys from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
119
+ * ```javascript
120
+ * //
121
+ * const input = {
122
+ * Deletes: [
123
+ * {
124
+ * Key: "key1"
125
+ * },
126
+ * {
127
+ * Key: "key2"
128
+ * }
129
+ * ],
130
+ * IfMatch: "KV0AB12C3DEF456",
131
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58"
132
+ * };
133
+ * const command = new UpdateKeysCommand(input);
134
+ * const response = await client.send(command);
135
+ * /* response is
136
+ * {
137
+ * ETag: "KV7XY89Z0ABC012",
138
+ * ItemCount: 4,
139
+ * TotalSizeInBytes: 15
140
+ * }
141
+ * *\/
142
+ * ```
143
+ *
144
+ * @example Put 2 keys into and delete 1 key from the key value store with ARN 'arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58'
145
+ * ```javascript
146
+ * //
147
+ * const input = {
148
+ * Deletes: [
149
+ * {
150
+ * Key: "key3"
151
+ * },
152
+ * {
153
+ * Key: "key4"
154
+ * }
155
+ * ],
156
+ * IfMatch: "KV0AB12C3DEF456",
157
+ * KvsARN: "arn:aws:cloudfront::123456789012:key-value-store/327284aa-bcd5-499f-a3ff-26b9a9d31b58",
158
+ * Puts: [
159
+ * {
160
+ * Key: "key1",
161
+ * Value: "value1"
162
+ * },
163
+ * {
164
+ * Key: "key2",
165
+ * Value: "value2"
166
+ * }
167
+ * ]
168
+ * };
169
+ * const command = new UpdateKeysCommand(input);
170
+ * const response = await client.send(command);
171
+ * /* response is
172
+ * {
173
+ * ETag: "KV7XY89Z0ABC012",
174
+ * ItemCount: 4,
175
+ * TotalSizeInBytes: 15
176
+ * }
177
+ * *\/
178
+ * ```
179
+ *
89
180
  * @public
90
181
  */
91
182
  export declare class UpdateKeysCommand extends UpdateKeysCommand_base {
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.774.0",
4
+ "version": "3.777.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/core": "3.774.0",
24
- "@aws-sdk/credential-provider-node": "3.774.0",
25
- "@aws-sdk/middleware-host-header": "3.774.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.774.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/signature-v4-multi-region": "3.774.0",
31
- "@aws-sdk/types": "3.734.0",
32
- "@aws-sdk/util-endpoints": "3.743.0",
33
- "@aws-sdk/util-user-agent-browser": "3.734.0",
34
- "@aws-sdk/util-user-agent-node": "3.774.0",
35
- "@smithy/config-resolver": "^4.0.1",
36
- "@smithy/core": "^3.1.5",
37
- "@smithy/fetch-http-handler": "^5.0.1",
38
- "@smithy/hash-node": "^4.0.1",
39
- "@smithy/invalid-dependency": "^4.0.1",
40
- "@smithy/middleware-content-length": "^4.0.1",
41
- "@smithy/middleware-endpoint": "^4.0.6",
42
- "@smithy/middleware-retry": "^4.0.7",
43
- "@smithy/middleware-serde": "^4.0.2",
44
- "@smithy/middleware-stack": "^4.0.1",
45
- "@smithy/node-config-provider": "^4.0.1",
46
- "@smithy/node-http-handler": "^4.0.3",
47
- "@smithy/protocol-http": "^5.0.1",
48
- "@smithy/smithy-client": "^4.1.6",
49
- "@smithy/types": "^4.1.0",
50
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.777.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/signature-v4-multi-region": "3.775.0",
31
+ "@aws-sdk/types": "3.775.0",
32
+ "@aws-sdk/util-endpoints": "3.775.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
34
+ "@aws-sdk/util-user-agent-node": "3.775.0",
35
+ "@smithy/config-resolver": "^4.1.0",
36
+ "@smithy/core": "^3.2.0",
37
+ "@smithy/fetch-http-handler": "^5.0.2",
38
+ "@smithy/hash-node": "^4.0.2",
39
+ "@smithy/invalid-dependency": "^4.0.2",
40
+ "@smithy/middleware-content-length": "^4.0.2",
41
+ "@smithy/middleware-endpoint": "^4.1.0",
42
+ "@smithy/middleware-retry": "^4.1.0",
43
+ "@smithy/middleware-serde": "^4.0.3",
44
+ "@smithy/middleware-stack": "^4.0.2",
45
+ "@smithy/node-config-provider": "^4.0.2",
46
+ "@smithy/node-http-handler": "^4.0.4",
47
+ "@smithy/protocol-http": "^5.1.0",
48
+ "@smithy/smithy-client": "^4.2.0",
49
+ "@smithy/types": "^4.2.0",
50
+ "@smithy/url-parser": "^4.0.2",
51
51
  "@smithy/util-base64": "^4.0.0",
52
52
  "@smithy/util-body-length-browser": "^4.0.0",
53
53
  "@smithy/util-body-length-node": "^4.0.0",
54
- "@smithy/util-defaults-mode-browser": "^4.0.7",
55
- "@smithy/util-defaults-mode-node": "^4.0.7",
56
- "@smithy/util-endpoints": "^3.0.1",
57
- "@smithy/util-middleware": "^4.0.1",
58
- "@smithy/util-retry": "^4.0.1",
54
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
55
+ "@smithy/util-defaults-mode-node": "^4.0.8",
56
+ "@smithy/util-endpoints": "^3.0.2",
57
+ "@smithy/util-middleware": "^4.0.2",
58
+ "@smithy/util-retry": "^4.0.2",
59
59
  "@smithy/util-utf8": "^4.0.0",
60
60
  "tslib": "^2.6.2"
61
61
  },