@aws-sdk/client-codecatalyst 3.465.0 → 3.468.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.
@@ -44,8 +44,8 @@ class CodeCatalystClient extends smithy_client_1.Client {
44
44
  this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
45
45
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
46
46
  this.middlewareStack.use((0, core_1.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
47
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
48
47
  httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
48
+ identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
49
49
  }));
50
50
  this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config));
51
51
  }
@@ -12,9 +12,12 @@ exports.defaultCodeCatalystHttpAuthSchemeParametersProvider = defaultCodeCatalys
12
12
  function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
13
13
  return {
14
14
  schemeId: "smithy.api#httpBearerAuth",
15
- propertiesExtractor: (__config, context) => ({
15
+ propertiesExtractor: ({ profile, filepath, configFilepath, ignoreCache }, context) => ({
16
16
  identityProperties: {
17
- __config,
17
+ profile,
18
+ filepath,
19
+ configFilepath,
20
+ ignoreCache,
18
21
  },
19
22
  }),
20
23
  };
@@ -6,7 +6,6 @@ const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
6
  const sha256_browser_1 = require("@aws-crypto/sha256-browser");
7
7
  const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
8
8
  const config_resolver_1 = require("@smithy/config-resolver");
9
- const core_1 = require("@smithy/core");
10
9
  const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
11
10
  const util_body_length_browser_1 = require("@smithy/util-body-length-browser");
12
11
  const util_retry_1 = require("@smithy/util-retry");
@@ -25,16 +24,6 @@ const getRuntimeConfig = (config) => {
25
24
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
26
25
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
27
26
  (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
28
- httpAuthSchemes: config?.httpAuthSchemes ?? [
29
- {
30
- schemeId: "smithy.api#httpBearerAuth",
31
- identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") ||
32
- (async () => {
33
- throw new Error("`token` is missing");
34
- }),
35
- signer: new core_1.HttpBearerAuthSigner(),
36
- },
37
- ],
38
27
  maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
39
28
  requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
40
29
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
@@ -36,7 +36,7 @@ const getRuntimeConfig = (config) => {
36
36
  {
37
37
  schemeId: "smithy.api#httpBearerAuth",
38
38
  identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") ||
39
- (async (idProps) => await (0, token_providers_1.nodeProvider)(idProps?.__config || {})(idProps)),
39
+ (async (idProps) => await (0, token_providers_1.nodeProvider)(idProps)(idProps)),
40
40
  signer: new core_2.HttpBearerAuthSigner(),
41
41
  },
42
42
  ],
@@ -41,8 +41,8 @@ export class CodeCatalystClient extends __Client {
41
41
  this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
42
42
  this.middlewareStack.use(getUserAgentPlugin(this.config));
43
43
  this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
44
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
45
44
  httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
45
+ identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
46
46
  }));
47
47
  this.middlewareStack.use(getHttpSigningPlugin(this.config));
48
48
  }
@@ -8,9 +8,12 @@ export const defaultCodeCatalystHttpAuthSchemeParametersProvider = async (config
8
8
  function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
9
9
  return {
10
10
  schemeId: "smithy.api#httpBearerAuth",
11
- propertiesExtractor: (__config, context) => ({
11
+ propertiesExtractor: ({ profile, filepath, configFilepath, ignoreCache }, context) => ({
12
12
  identityProperties: {
13
- __config,
13
+ profile,
14
+ filepath,
15
+ configFilepath,
16
+ ignoreCache,
14
17
  },
15
18
  }),
16
19
  };
@@ -2,7 +2,6 @@ import packageInfo from "../package.json";
2
2
  import { Sha256 } from "@aws-crypto/sha256-browser";
3
3
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
4
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver";
5
- import { HttpBearerAuthSigner } from "@smithy/core";
6
5
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler";
7
6
  import { calculateBodyLength } from "@smithy/util-body-length-browser";
8
7
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry";
@@ -21,16 +20,6 @@ export const getRuntimeConfig = (config) => {
21
20
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
22
21
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
23
22
  defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
24
- httpAuthSchemes: config?.httpAuthSchemes ?? [
25
- {
26
- schemeId: "smithy.api#httpBearerAuth",
27
- identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") ||
28
- (async () => {
29
- throw new Error("`token` is missing");
30
- }),
31
- signer: new HttpBearerAuthSigner(),
32
- },
33
- ],
34
23
  maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
35
24
  requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
36
25
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
@@ -32,7 +32,7 @@ export const getRuntimeConfig = (config) => {
32
32
  {
33
33
  schemeId: "smithy.api#httpBearerAuth",
34
34
  identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") ||
35
- (async (idProps) => await nodeProvider(idProps?.__config || {})(idProps)),
35
+ (async (idProps) => await nodeProvider(idProps)(idProps)),
36
36
  signer: new HttpBearerAuthSigner(),
37
37
  },
38
38
  ],
@@ -64,4 +64,4 @@ export interface HttpAuthSchemeResolvedConfig {
64
64
  /**
65
65
  * @internal
66
66
  */
67
- export declare const resolveHttpAuthSchemeConfig: (config: HttpAuthSchemeInputConfig) => HttpAuthSchemeResolvedConfig;
67
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig) => T & HttpAuthSchemeResolvedConfig;
@@ -8,7 +8,6 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
12
11
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
12
  requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
14
13
  updateHttpClientConfig(key: never, value: never): void;
@@ -37,6 +36,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
37
36
  tls?: boolean | undefined;
38
37
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
38
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
39
+ httpAuthSchemes: {
40
+ schemeId: string;
41
+ identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
42
+ signer: import("@smithy/core").HttpBearerAuthSigner;
43
+ }[];
40
44
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
41
45
  token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider | undefined;
42
46
  };
@@ -1,4 +1,6 @@
1
+ import { HttpBearerAuthSigner } from "@smithy/core";
1
2
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
3
+ import { IdentityProviderConfig } from "@smithy/types";
2
4
  import { CodeCatalystClientConfig } from "./CodeCatalystClient";
3
5
  /**
4
6
  * @internal
@@ -8,7 +10,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
8
10
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
12
  defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
13
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | {
14
+ schemeId: string;
15
+ identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity>;
16
+ signer: HttpBearerAuthSigner;
17
+ }[];
12
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
19
  requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
14
20
  updateHttpClientConfig(key: never, value: never): void;
@@ -35,7 +35,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
35
35
  tls?: boolean | undefined;
36
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
37
37
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
38
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemes: {
39
+ schemeId: string;
40
+ identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
41
+ signer: import("@smithy/core").HttpBearerAuthSigner;
42
+ }[];
39
43
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
40
44
  token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider | undefined;
41
45
  };
@@ -1,3 +1,5 @@
1
+ import { HttpBearerAuthSigner } from "@smithy/core";
2
+ import { IdentityProviderConfig } from "@smithy/types";
1
3
  import { CodeCatalystClientConfig } from "./CodeCatalystClient";
2
4
  /**
3
5
  * @internal
@@ -12,7 +14,11 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
12
14
  }) => import("@smithy/types").EndpointV2;
13
15
  extensions: import("./runtimeExtensions").RuntimeExtension[];
14
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
15
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ httpAuthSchemes: {
18
+ schemeId: string;
19
+ identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
20
+ signer: HttpBearerAuthSigner;
21
+ }[];
16
22
  logger: import("@smithy/types").Logger;
17
23
  serviceId: string;
18
24
  urlParser: import("@smithy/types").UrlParser;
@@ -35,6 +35,6 @@ export interface HttpAuthSchemeResolvedConfig {
35
35
  readonly httpAuthSchemeProvider: CodeCatalystHttpAuthSchemeProvider;
36
36
  readonly token?: TokenIdentityProvider;
37
37
  }
38
- export declare const resolveHttpAuthSchemeConfig: (
39
- config: HttpAuthSchemeInputConfig
40
- ) => HttpAuthSchemeResolvedConfig;
38
+ export declare const resolveHttpAuthSchemeConfig: <T>(
39
+ config: T & HttpAuthSchemeInputConfig
40
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -9,7 +9,6 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
9
9
  defaultUserAgentProvider: import("@smithy/types").Provider<
10
10
  import("@smithy/types").UserAgent
11
11
  >;
12
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
13
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
13
  requestHandler:
15
14
  | (import("@smithy/types").RequestHandler<
@@ -71,6 +70,17 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
71
70
  | import("@smithy/types").RetryStrategyV2
72
71
  | undefined;
73
72
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
73
+ httpAuthSchemes: {
74
+ schemeId: string;
75
+ identityProvider: (
76
+ ipc: import("@smithy/types").IdentityProviderConfig
77
+ ) =>
78
+ | import("@smithy/types").IdentityProvider<
79
+ import("@smithy/types").Identity
80
+ >
81
+ | undefined;
82
+ signer: import("@smithy/core").HttpBearerAuthSigner;
83
+ }[];
74
84
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
75
85
  token?:
76
86
  | import("@smithy/types").TokenIdentity
@@ -1,4 +1,6 @@
1
+ import { HttpBearerAuthSigner } from "@smithy/core";
1
2
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
3
+ import { IdentityProviderConfig } from "@smithy/types";
2
4
  import { CodeCatalystClientConfig } from "./CodeCatalystClient";
3
5
  export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
4
6
  runtime: string;
@@ -9,7 +11,17 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
9
11
  defaultUserAgentProvider: import("@smithy/types").Provider<
10
12
  import("@smithy/types").UserAgent
11
13
  >;
12
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
14
+ httpAuthSchemes:
15
+ | import("@smithy/types").HttpAuthScheme[]
16
+ | {
17
+ schemeId: string;
18
+ identityProvider: (
19
+ ipc: IdentityProviderConfig
20
+ ) => import("@smithy/types").IdentityProvider<
21
+ import("@smithy/types").Identity
22
+ >;
23
+ signer: HttpBearerAuthSigner;
24
+ }[];
13
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
26
  requestHandler:
15
27
  | (import("@smithy/types").RequestHandler<
@@ -61,7 +61,17 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
61
61
  | import("@smithy/types").RetryStrategyV2
62
62
  | undefined;
63
63
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
64
+ httpAuthSchemes: {
65
+ schemeId: string;
66
+ identityProvider: (
67
+ ipc: import("@smithy/types").IdentityProviderConfig
68
+ ) =>
69
+ | import("@smithy/types").IdentityProvider<
70
+ import("@smithy/types").Identity
71
+ >
72
+ | undefined;
73
+ signer: import("@smithy/core").HttpBearerAuthSigner;
74
+ }[];
65
75
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
66
76
  token?:
67
77
  | import("@smithy/types").TokenIdentity
@@ -1,3 +1,5 @@
1
+ import { HttpBearerAuthSigner } from "@smithy/core";
2
+ import { IdentityProviderConfig } from "@smithy/types";
1
3
  import { CodeCatalystClientConfig } from "./CodeCatalystClient";
2
4
  export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
3
5
  apiVersion: string;
@@ -12,7 +14,17 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
12
14
  ) => import("@smithy/types").EndpointV2;
13
15
  extensions: import("./runtimeExtensions").RuntimeExtension[];
14
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
15
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ httpAuthSchemes: {
18
+ schemeId: string;
19
+ identityProvider: (
20
+ ipc: IdentityProviderConfig
21
+ ) =>
22
+ | import("@smithy/types").IdentityProvider<
23
+ import("@smithy/types").Identity
24
+ >
25
+ | undefined;
26
+ signer: HttpBearerAuthSigner;
27
+ }[];
16
28
  logger: import("@smithy/types").Logger;
17
29
  serviceId: string;
18
30
  urlParser: import("@smithy/types").UrlParser;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codecatalyst",
3
3
  "description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
4
- "version": "3.465.0",
4
+ "version": "3.468.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",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/core": "3.465.0",
24
- "@aws-sdk/middleware-host-header": "3.465.0",
25
- "@aws-sdk/middleware-logger": "3.465.0",
26
- "@aws-sdk/middleware-recursion-detection": "3.465.0",
27
- "@aws-sdk/middleware-user-agent": "3.465.0",
28
- "@aws-sdk/region-config-resolver": "3.465.0",
29
- "@aws-sdk/token-providers": "3.465.0",
30
- "@aws-sdk/types": "3.465.0",
31
- "@aws-sdk/util-endpoints": "3.465.0",
32
- "@aws-sdk/util-user-agent-browser": "3.465.0",
33
- "@aws-sdk/util-user-agent-node": "3.465.0",
34
- "@smithy/config-resolver": "^2.0.18",
35
- "@smithy/core": "^1.0.1",
36
- "@smithy/fetch-http-handler": "^2.2.6",
37
- "@smithy/hash-node": "^2.0.15",
38
- "@smithy/invalid-dependency": "^2.0.13",
39
- "@smithy/middleware-content-length": "^2.0.15",
40
- "@smithy/middleware-endpoint": "^2.2.0",
41
- "@smithy/middleware-retry": "^2.0.20",
42
- "@smithy/middleware-serde": "^2.0.13",
43
- "@smithy/middleware-stack": "^2.0.7",
44
- "@smithy/node-config-provider": "^2.1.5",
45
- "@smithy/node-http-handler": "^2.1.9",
46
- "@smithy/protocol-http": "^3.0.9",
47
- "@smithy/smithy-client": "^2.1.15",
48
- "@smithy/types": "^2.5.0",
49
- "@smithy/url-parser": "^2.0.13",
23
+ "@aws-sdk/core": "3.468.0",
24
+ "@aws-sdk/middleware-host-header": "3.468.0",
25
+ "@aws-sdk/middleware-logger": "3.468.0",
26
+ "@aws-sdk/middleware-recursion-detection": "3.468.0",
27
+ "@aws-sdk/middleware-user-agent": "3.468.0",
28
+ "@aws-sdk/region-config-resolver": "3.468.0",
29
+ "@aws-sdk/token-providers": "3.468.0",
30
+ "@aws-sdk/types": "3.468.0",
31
+ "@aws-sdk/util-endpoints": "3.468.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.468.0",
33
+ "@aws-sdk/util-user-agent-node": "3.468.0",
34
+ "@smithy/config-resolver": "^2.0.20",
35
+ "@smithy/core": "^1.0.4",
36
+ "@smithy/fetch-http-handler": "^2.3.1",
37
+ "@smithy/hash-node": "^2.0.17",
38
+ "@smithy/invalid-dependency": "^2.0.15",
39
+ "@smithy/middleware-content-length": "^2.0.17",
40
+ "@smithy/middleware-endpoint": "^2.2.2",
41
+ "@smithy/middleware-retry": "^2.0.23",
42
+ "@smithy/middleware-serde": "^2.0.15",
43
+ "@smithy/middleware-stack": "^2.0.9",
44
+ "@smithy/node-config-provider": "^2.1.7",
45
+ "@smithy/node-http-handler": "^2.2.1",
46
+ "@smithy/protocol-http": "^3.0.11",
47
+ "@smithy/smithy-client": "^2.1.18",
48
+ "@smithy/types": "^2.7.0",
49
+ "@smithy/url-parser": "^2.0.15",
50
50
  "@smithy/util-base64": "^2.0.1",
51
- "@smithy/util-body-length-browser": "^2.0.0",
51
+ "@smithy/util-body-length-browser": "^2.0.1",
52
52
  "@smithy/util-body-length-node": "^2.1.0",
53
- "@smithy/util-defaults-mode-browser": "^2.0.19",
54
- "@smithy/util-defaults-mode-node": "^2.0.25",
55
- "@smithy/util-endpoints": "^1.0.4",
56
- "@smithy/util-middleware": "^2.0.6",
57
- "@smithy/util-retry": "^2.0.6",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.22",
54
+ "@smithy/util-defaults-mode-node": "^2.0.28",
55
+ "@smithy/util-endpoints": "^1.0.6",
56
+ "@smithy/util-middleware": "^2.0.8",
57
+ "@smithy/util-retry": "^2.0.8",
58
58
  "@smithy/util-utf8": "^2.0.2",
59
59
  "tslib": "^2.5.0",
60
60
  "uuid": "^8.3.2"