@aws-sdk/client-direct-connect 3.774.0 → 3.776.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.
@@ -40,8 +40,6 @@ const defaultDirectConnectHttpAuthSchemeProvider = (authParameters) => {
40
40
  exports.defaultDirectConnectHttpAuthSchemeProvider = defaultDirectConnectHttpAuthSchemeProvider;
41
41
  const resolveHttpAuthSchemeConfig = (config) => {
42
42
  const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
43
- return {
44
- ...config_0,
45
- };
43
+ return Object.assign(config_0, {});
46
44
  };
47
45
  exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
package/dist-cjs/index.js CHANGED
@@ -126,12 +126,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
126
126
 
127
127
  // src/endpoint/EndpointParameters.ts
128
128
  var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
129
- return {
130
- ...options,
129
+ return Object.assign(options, {
131
130
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
132
131
  useFipsEndpoint: options.useFipsEndpoint ?? false,
133
132
  defaultSigningName: "directconnect"
134
- };
133
+ });
135
134
  }, "resolveClientEndpointParameters");
136
135
  var commonParams = {
137
136
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -188,22 +187,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
188
187
  }, "resolveHttpAuthRuntimeConfig");
189
188
 
190
189
  // src/runtimeExtensions.ts
191
- var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
192
190
  var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
193
- const extensionConfiguration = {
194
- ...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
195
- ...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
196
- ...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
197
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
198
- };
191
+ const extensionConfiguration = Object.assign(
192
+ (0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
193
+ (0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
194
+ (0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
195
+ getHttpAuthExtensionConfiguration(runtimeConfig)
196
+ );
199
197
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
200
- return {
201
- ...runtimeConfig,
202
- ...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
203
- ...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
204
- ...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
205
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration)
206
- };
198
+ return Object.assign(
199
+ runtimeConfig,
200
+ (0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
201
+ (0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
202
+ (0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
203
+ resolveHttpAuthRuntimeConfig(extensionConfiguration)
204
+ );
207
205
  }, "resolveRuntimeExtensions");
208
206
 
209
207
  // src/DirectConnectClient.ts
@@ -217,6 +215,8 @@ var DirectConnectClient = class extends import_smithy_client.Client {
217
215
  config;
218
216
  constructor(...[configuration]) {
219
217
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
218
+ super(_config_0);
219
+ this.initConfig = _config_0;
220
220
  const _config_1 = resolveClientEndpointParameters(_config_0);
221
221
  const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
222
222
  const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
@@ -225,7 +225,6 @@ var DirectConnectClient = class extends import_smithy_client.Client {
225
225
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
226
226
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
227
227
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
228
- super(_config_8);
229
228
  this.config = _config_8;
230
229
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
231
230
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
@@ -17,6 +17,8 @@ export class DirectConnectClient 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 DirectConnectClient 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));
@@ -35,7 +35,5 @@ export const defaultDirectConnectHttpAuthSchemeProvider = (authParameters) => {
35
35
  };
36
36
  export const resolveHttpAuthSchemeConfig = (config) => {
37
37
  const config_0 = resolveAwsSdkSigV4Config(config);
38
- return {
39
- ...config_0,
40
- };
38
+ return Object.assign(config_0, {});
41
39
  };
@@ -1,10 +1,9 @@
1
1
  export const resolveClientEndpointParameters = (options) => {
2
- return {
3
- ...options,
2
+ return Object.assign(options, {
4
3
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
5
4
  useFipsEndpoint: options.useFipsEndpoint ?? false,
6
5
  defaultSigningName: "directconnect",
7
- };
6
+ });
8
7
  };
9
8
  export const commonParams = {
10
9
  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
  };
@@ -41,6 +41,12 @@ declare const CreateDirectConnectGatewayCommand_base: {
41
41
  * const client = new DirectConnectClient(config);
42
42
  * const input = { // CreateDirectConnectGatewayRequest
43
43
  * directConnectGatewayName: "STRING_VALUE", // required
44
+ * tags: [ // TagList
45
+ * { // Tag
46
+ * key: "STRING_VALUE", // required
47
+ * value: "STRING_VALUE",
48
+ * },
49
+ * ],
44
50
  * amazonSideAsn: Number("long"),
45
51
  * };
46
52
  * const command = new CreateDirectConnectGatewayCommand(input);
@@ -53,6 +59,12 @@ declare const CreateDirectConnectGatewayCommand_base: {
53
59
  * // ownerAccount: "STRING_VALUE",
54
60
  * // directConnectGatewayState: "pending" || "available" || "deleting" || "deleted",
55
61
  * // stateChangeError: "STRING_VALUE",
62
+ * // tags: [ // TagList
63
+ * // { // Tag
64
+ * // key: "STRING_VALUE", // required
65
+ * // value: "STRING_VALUE",
66
+ * // },
67
+ * // ],
56
68
  * // },
57
69
  * // };
58
70
  *
@@ -49,6 +49,12 @@ declare const DeleteDirectConnectGatewayCommand_base: {
49
49
  * // ownerAccount: "STRING_VALUE",
50
50
  * // directConnectGatewayState: "pending" || "available" || "deleting" || "deleted",
51
51
  * // stateChangeError: "STRING_VALUE",
52
+ * // tags: [ // TagList
53
+ * // { // Tag
54
+ * // key: "STRING_VALUE", // required
55
+ * // value: "STRING_VALUE",
56
+ * // },
57
+ * // ],
52
58
  * // },
53
59
  * // };
54
60
  *
@@ -49,6 +49,14 @@ declare const DescribeDirectConnectGatewayAssociationsCommand_base: {
49
49
  * <p>A Direct Connect gateway and a transit gateway</p>
50
50
  * <p>The response contains the association between the Direct Connect gateway and transit gateway.</p>
51
51
  * </li>
52
+ * <li>
53
+ * <p>A Direct Connect gateway and a virtual private gateway</p>
54
+ * <p>The response contains the association between the Direct Connect gateway and virtual private gateway.</p>
55
+ * </li>
56
+ * <li>
57
+ * <p>A Direct Connect gateway association to a Cloud WAN core network</p>
58
+ * <p>The response contains the Cloud WAN core network ID that the Direct Connect gateway is associated to.</p>
59
+ * </li>
52
60
  * </ul>
53
61
  * @example
54
62
  * Use a bare-bones client and the command you need to make an API call.
@@ -50,6 +50,12 @@ declare const DescribeDirectConnectGatewaysCommand_base: {
50
50
  * // ownerAccount: "STRING_VALUE",
51
51
  * // directConnectGatewayState: "pending" || "available" || "deleting" || "deleted",
52
52
  * // stateChangeError: "STRING_VALUE",
53
+ * // tags: [ // TagList
54
+ * // { // Tag
55
+ * // key: "STRING_VALUE", // required
56
+ * // value: "STRING_VALUE",
57
+ * // },
58
+ * // ],
53
59
  * // },
54
60
  * // ],
55
61
  * // nextToken: "STRING_VALUE",
@@ -48,6 +48,12 @@ declare const UpdateDirectConnectGatewayCommand_base: {
48
48
  * // ownerAccount: "STRING_VALUE",
49
49
  * // directConnectGatewayState: "pending" || "available" || "deleting" || "deleted",
50
50
  * // stateChangeError: "STRING_VALUE",
51
+ * // tags: [ // TagList
52
+ * // { // Tag
53
+ * // key: "STRING_VALUE", // required
54
+ * // value: "STRING_VALUE",
55
+ * // },
56
+ * // ],
51
57
  * // },
52
58
  * // };
53
59
  *
@@ -39,12 +39,12 @@ export interface AcceptDirectConnectGatewayAssociationProposalRequest {
39
39
  overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
40
40
  }
41
41
  /**
42
- * <p>The Amazon Web Services Cloud WAN core network that the Direct Connect attachment is associated with.</p>
42
+ * <p>The Amazon Web Services Cloud WAN core network that the Direct Connect gateway is associated to. This is only returned when a Direct Connect gateway is associated to a Cloud WAN core network.</p>
43
43
  * @public
44
44
  */
45
45
  export interface AssociatedCoreNetwork {
46
46
  /**
47
- * <p>The ID of the Cloud WAN core network.</p>
47
+ * <p>The ID of the Cloud WAN core network that the Direct Connect gateway is associated to.</p>
48
48
  * @public
49
49
  */
50
50
  id?: string | undefined;
@@ -54,7 +54,7 @@ export interface AssociatedCoreNetwork {
54
54
  */
55
55
  ownerAccount?: string | undefined;
56
56
  /**
57
- * <p>the ID of the Direct Connect attachment</p>
57
+ * <p>the ID of the Direct Connect gateway attachment.</p>
58
58
  * @public
59
59
  */
60
60
  attachmentId?: string | undefined;
@@ -176,7 +176,7 @@ export interface DirectConnectGatewayAssociation {
176
176
  */
177
177
  allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
178
178
  /**
179
- * <p>The ID of the Cloud WAN core network associated with the Direct Connect attachment.</p>
179
+ * <p>The ID of the Cloud WAN core network associated with the Direct Connect gateway attachment.</p>
180
180
  * @public
181
181
  */
182
182
  associatedCoreNetwork?: AssociatedCoreNetwork | undefined;
@@ -917,6 +917,10 @@ export interface VirtualInterface {
917
917
  * </li>
918
918
  * <li>
919
919
  * <p>
920
+ * <code>testing</code>: A virtual interface is in this state immediately after calling <a>StartBgpFailoverTest</a> and remains in this state during the duration of the test.</p>
921
+ * </li>
922
+ * <li>
923
+ * <p>
920
924
  * <code>deleting</code>: A virtual interface is in this state immediately after calling <a>DeleteVirtualInterface</a> until it can no longer forward traffic.</p>
921
925
  * </li>
922
926
  * <li>
@@ -1378,6 +1382,10 @@ export interface ConfirmPrivateVirtualInterfaceResponse {
1378
1382
  * </li>
1379
1383
  * <li>
1380
1384
  * <p>
1385
+ * <code>testing</code>: A virtual interface is in this state immediately after calling <a>StartBgpFailoverTest</a> and remains in this state during the duration of the test.</p>
1386
+ * </li>
1387
+ * <li>
1388
+ * <p>
1381
1389
  * <code>deleting</code>: A virtual interface is in this state immediately after calling <a>DeleteVirtualInterface</a> until it can no longer forward traffic.</p>
1382
1390
  * </li>
1383
1391
  * <li>
@@ -1436,6 +1444,10 @@ export interface ConfirmPublicVirtualInterfaceResponse {
1436
1444
  * </li>
1437
1445
  * <li>
1438
1446
  * <p>
1447
+ * <code>testing</code>: A virtual interface is in this state immediately after calling <a>StartBgpFailoverTest</a> and remains in this state during the duration of the test.</p>
1448
+ * </li>
1449
+ * <li>
1450
+ * <p>
1439
1451
  * <code>deleting</code>: A virtual interface is in this state immediately after calling <a>DeleteVirtualInterface</a> until it can no longer forward traffic.</p>
1440
1452
  * </li>
1441
1453
  * <li>
@@ -1499,6 +1511,10 @@ export interface ConfirmTransitVirtualInterfaceResponse {
1499
1511
  * </li>
1500
1512
  * <li>
1501
1513
  * <p>
1514
+ * <code>testing</code>: A virtual interface is in this state immediately after calling <a>StartBgpFailoverTest</a> and remains in this state during the duration of the test.</p>
1515
+ * </li>
1516
+ * <li>
1517
+ * <p>
1502
1518
  * <code>deleting</code>: A virtual interface is in this state immediately after calling <a>DeleteVirtualInterface</a> until it can no longer forward traffic.</p>
1503
1519
  * </li>
1504
1520
  * <li>
@@ -1634,6 +1650,11 @@ export interface CreateDirectConnectGatewayRequest {
1634
1650
  * @public
1635
1651
  */
1636
1652
  directConnectGatewayName: string | undefined;
1653
+ /**
1654
+ * <p>The key-value pair tags associated with the request.</p>
1655
+ * @public
1656
+ */
1657
+ tags?: Tag[] | undefined;
1637
1658
  /**
1638
1659
  * <p>The autonomous system number (ASN) for Border Gateway Protocol (BGP) to be configured
1639
1660
  * on the Amazon side of the connection. The ASN must be in the private range of 64,512 to
@@ -1709,6 +1730,11 @@ export interface DirectConnectGateway {
1709
1730
  * @public
1710
1731
  */
1711
1732
  stateChangeError?: string | undefined;
1733
+ /**
1734
+ * <p>Information about a tag.</p>
1735
+ * @public
1736
+ */
1737
+ tags?: Tag[] | undefined;
1712
1738
  }
1713
1739
  /**
1714
1740
  * @public
@@ -2705,6 +2731,10 @@ export interface DeleteVirtualInterfaceResponse {
2705
2731
  * </li>
2706
2732
  * <li>
2707
2733
  * <p>
2734
+ * <code>testing</code>: A virtual interface is in this state immediately after calling <a>StartBgpFailoverTest</a> and remains in this state during the duration of the test.</p>
2735
+ * </li>
2736
+ * <li>
2737
+ * <p>
2708
2738
  * <code>deleting</code>: A virtual interface is in this state immediately after calling <a>DeleteVirtualInterface</a> until it can no longer forward traffic.</p>
2709
2739
  * </li>
2710
2740
  * <li>
@@ -365,6 +365,7 @@ export interface CreateConnectionRequest {
365
365
  }
366
366
  export interface CreateDirectConnectGatewayRequest {
367
367
  directConnectGatewayName: string | undefined;
368
+ tags?: Tag[] | undefined;
368
369
  amazonSideAsn?: number | undefined;
369
370
  }
370
371
  export declare const DirectConnectGatewayState: {
@@ -382,6 +383,7 @@ export interface DirectConnectGateway {
382
383
  ownerAccount?: string | undefined;
383
384
  directConnectGatewayState?: DirectConnectGatewayState | undefined;
384
385
  stateChangeError?: string | undefined;
386
+ tags?: Tag[] | undefined;
385
387
  }
386
388
  export interface CreateDirectConnectGatewayResult {
387
389
  directConnectGateway?: DirectConnectGateway | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-direct-connect",
3
3
  "description": "AWS SDK for JavaScript Direct Connect Client for Node.js, Browser and React Native",
4
- "version": "3.774.0",
4
+ "version": "3.776.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-direct-connect",
@@ -20,41 +20,41 @@
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/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.774.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.775.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/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },