@aws-sdk/client-kendra 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 CHANGED
@@ -286,25 +286,27 @@ var _KendraClient = class _KendraClient extends import_smithy_client.Client {
286
286
  constructor(...[configuration]) {
287
287
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
288
288
  const _config_1 = resolveClientEndpointParameters(_config_0);
289
- const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
290
- const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
291
- const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
292
- const _config_5 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_4);
293
- const _config_6 = (0, import_middleware_retry.resolveRetryConfig)(_config_5);
289
+ const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
290
+ const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
291
+ const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
292
+ const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
293
+ const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
294
294
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
295
295
  const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
296
296
  super(_config_8);
297
297
  this.config = _config_8;
298
- this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
299
- this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
300
- this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
301
298
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
302
299
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
303
300
  this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
301
+ this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
302
+ this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
303
+ this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
304
304
  this.middlewareStack.use(
305
305
  (0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
306
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
307
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
306
+ httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultKendraHttpAuthSchemeParametersProvider,
307
+ identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
308
+ "aws.auth#sigv4": config.credentials
309
+ })
308
310
  })
309
311
  );
310
312
  this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
@@ -317,14 +319,6 @@ var _KendraClient = class _KendraClient extends import_smithy_client.Client {
317
319
  destroy() {
318
320
  super.destroy();
319
321
  }
320
- getDefaultHttpAuthSchemeParametersProvider() {
321
- return import_httpAuthSchemeProvider.defaultKendraHttpAuthSchemeParametersProvider;
322
- }
323
- getIdentityProviderConfigProvider() {
324
- return async (config) => new import_core.DefaultIdentityProviderConfig({
325
- "aws.auth#sigv4": config.credentials
326
- });
327
- }
328
322
  };
329
323
  __name(_KendraClient, "KendraClient");
330
324
  var KendraClient = _KendraClient;
@@ -17,36 +17,30 @@ export class KendraClient extends __Client {
17
17
  constructor(...[configuration]) {
18
18
  const _config_0 = __getRuntimeConfig(configuration || {});
19
19
  const _config_1 = resolveClientEndpointParameters(_config_0);
20
- const _config_2 = resolveRegionConfig(_config_1);
21
- const _config_3 = resolveEndpointConfig(_config_2);
22
- const _config_4 = resolveHostHeaderConfig(_config_3);
23
- const _config_5 = resolveUserAgentConfig(_config_4);
24
- const _config_6 = resolveRetryConfig(_config_5);
20
+ const _config_2 = resolveUserAgentConfig(_config_1);
21
+ const _config_3 = resolveRetryConfig(_config_2);
22
+ const _config_4 = resolveRegionConfig(_config_3);
23
+ const _config_5 = resolveHostHeaderConfig(_config_4);
24
+ const _config_6 = resolveEndpointConfig(_config_5);
25
25
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
26
26
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
27
27
  super(_config_8);
28
28
  this.config = _config_8;
29
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
30
- this.middlewareStack.use(getLoggerPlugin(this.config));
31
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
32
29
  this.middlewareStack.use(getUserAgentPlugin(this.config));
33
30
  this.middlewareStack.use(getRetryPlugin(this.config));
34
31
  this.middlewareStack.use(getContentLengthPlugin(this.config));
32
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
33
+ this.middlewareStack.use(getLoggerPlugin(this.config));
34
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
35
35
  this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
36
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
37
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
36
+ httpAuthSchemeParametersProvider: defaultKendraHttpAuthSchemeParametersProvider,
37
+ identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
38
+ "aws.auth#sigv4": config.credentials,
39
+ }),
38
40
  }));
39
41
  this.middlewareStack.use(getHttpSigningPlugin(this.config));
40
42
  }
41
43
  destroy() {
42
44
  super.destroy();
43
45
  }
44
- getDefaultHttpAuthSchemeParametersProvider() {
45
- return defaultKendraHttpAuthSchemeParametersProvider;
46
- }
47
- getIdentityProviderConfigProvider() {
48
- return async (config) => new DefaultIdentityProviderConfig({
49
- "aws.auth#sigv4": config.credentials,
50
- });
51
- }
52
46
  }
@@ -197,7 +197,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
197
197
  /**
198
198
  * @public
199
199
  */
200
- export type KendraClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
200
+ export type KendraClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
201
201
  /**
202
202
  * @public
203
203
  *
@@ -208,7 +208,7 @@ export interface KendraClientConfig extends KendraClientConfigType {
208
208
  /**
209
209
  * @public
210
210
  */
211
- export type KendraClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
211
+ export type KendraClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
212
212
  /**
213
213
  * @public
214
214
  *
@@ -232,6 +232,4 @@ export declare class KendraClient extends __Client<__HttpHandlerOptions, Service
232
232
  * Otherwise, sockets might stay open for quite a long time before the server terminates them.
233
233
  */
234
234
  destroy(): void;
235
- private getDefaultHttpAuthSchemeParametersProvider;
236
- private getIdentityProviderConfigProvider;
237
235
  }
@@ -30,12 +30,12 @@ export declare const defaultKendraHttpAuthSchemeProvider: KendraHttpAuthSchemePr
30
30
  */
31
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
32
  /**
33
- * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
33
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
34
  * @internal
35
35
  */
36
36
  httpAuthSchemes?: HttpAuthScheme[];
37
37
  /**
38
- * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
38
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
39
39
  * @internal
40
40
  */
41
41
  httpAuthSchemeProvider?: KendraHttpAuthSchemeProvider;
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
45
45
  */
46
46
  export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
47
  /**
48
- * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
48
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
49
  * @internal
50
50
  */
51
51
  readonly httpAuthSchemes: HttpAuthScheme[];
52
52
  /**
53
- * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
53
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
54
54
  * @internal
55
55
  */
56
56
  readonly httpAuthSchemeProvider: KendraHttpAuthSchemeProvider;
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
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;
33
35
  }) => import("@smithy/types").EndpointV2;
34
36
  tls?: boolean | undefined;
35
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
37
37
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
38
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
39
39
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
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;
33
35
  }) => import("@smithy/types").EndpointV2;
34
36
  tls?: boolean | undefined;
35
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
37
37
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
38
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
39
39
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -26,13 +26,13 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
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;
32
34
  }) => import("@smithy/types").EndpointV2;
33
35
  tls?: boolean | undefined;
34
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
35
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
36
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
37
37
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
38
38
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -476,11 +476,11 @@ export type KendraClientConfigType = Partial<
476
476
  __SmithyConfiguration<__HttpHandlerOptions>
477
477
  > &
478
478
  ClientDefaults &
479
- RegionInputConfig &
480
- EndpointInputConfig<EndpointParameters> &
481
- HostHeaderInputConfig &
482
479
  UserAgentInputConfig &
483
480
  RetryInputConfig &
481
+ RegionInputConfig &
482
+ HostHeaderInputConfig &
483
+ EndpointInputConfig<EndpointParameters> &
484
484
  HttpAuthSchemeInputConfig &
485
485
  ClientInputEndpointParameters;
486
486
  export interface KendraClientConfig extends KendraClientConfigType {}
@@ -488,11 +488,11 @@ export type KendraClientResolvedConfigType =
488
488
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
489
489
  Required<ClientDefaults> &
490
490
  RuntimeExtensionsConfig &
491
- RegionResolvedConfig &
492
- EndpointResolvedConfig<EndpointParameters> &
493
- HostHeaderResolvedConfig &
494
491
  UserAgentResolvedConfig &
495
492
  RetryResolvedConfig &
493
+ RegionResolvedConfig &
494
+ HostHeaderResolvedConfig &
495
+ EndpointResolvedConfig<EndpointParameters> &
496
496
  HttpAuthSchemeResolvedConfig &
497
497
  ClientResolvedEndpointParameters;
498
498
  export interface KendraClientResolvedConfig
@@ -508,6 +508,4 @@ export declare class KendraClient extends __Client<
508
508
  ...[configuration]: __CheckOptionalClientConfig<KendraClientConfig>
509
509
  );
510
510
  destroy(): void;
511
- private getDefaultHttpAuthSchemeParametersProvider;
512
- private getIdentityProviderConfigProvider;
513
511
  }
@@ -32,6 +32,11 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
32
32
  serviceId: string;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
+ retryStrategy?:
37
+ | import("@smithy/types").RetryStrategy
38
+ | import("@smithy/types").RetryStrategyV2
39
+ | undefined;
35
40
  endpoint?:
36
41
  | ((
37
42
  | string
@@ -56,11 +61,6 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
56
61
  }
57
62
  ) => import("@smithy/types").EndpointV2;
58
63
  tls?: boolean | undefined;
59
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2
63
- | undefined;
64
64
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
65
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
66
66
  credentials?:
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
36
36
  serviceId: string;
37
37
  logger: import("@smithy/types").Logger;
38
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
40
+ retryStrategy?:
41
+ | import("@smithy/types").RetryStrategy
42
+ | import("@smithy/types").RetryStrategyV2
43
+ | undefined;
39
44
  endpoint?:
40
45
  | ((
41
46
  | string
@@ -60,11 +65,6 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
60
65
  }
61
66
  ) => import("@smithy/types").EndpointV2;
62
67
  tls?: boolean | undefined;
63
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
- retryStrategy?:
65
- | import("@smithy/types").RetryStrategy
66
- | import("@smithy/types").RetryStrategyV2
67
- | undefined;
68
68
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
69
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
70
70
  credentials?:
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
36
36
  | import("@smithy/types").Provider<
37
37
  import("@smithy/smithy-client").DefaultsMode
38
38
  >;
39
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
40
+ retryStrategy?:
41
+ | import("@smithy/types").RetryStrategy
42
+ | import("@smithy/types").RetryStrategyV2
43
+ | undefined;
39
44
  endpoint?:
40
45
  | string
41
46
  | import("@smithy/types").Endpoint
@@ -50,11 +55,6 @@ export declare const getRuntimeConfig: (config: KendraClientConfig) => {
50
55
  }
51
56
  ) => import("@smithy/types").EndpointV2;
52
57
  tls?: boolean | undefined;
53
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
54
- retryStrategy?:
55
- | import("@smithy/types").RetryStrategy
56
- | import("@smithy/types").RetryStrategyV2
57
- | undefined;
58
58
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
59
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KendraHttpAuthSchemeProvider;
60
60
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kendra",
3
3
  "description": "AWS SDK for JavaScript Kendra Client for Node.js, Browser and React Native",
4
- "version": "3.620.1",
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-kendra",
@@ -20,10 +20,10 @@
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.620.1",
24
- "@aws-sdk/client-sts": "3.620.1",
25
- "@aws-sdk/core": "3.620.1",
26
- "@aws-sdk/credential-provider-node": "3.620.1",
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",
@@ -34,26 +34,26 @@
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.614.0",
36
36
  "@smithy/config-resolver": "^3.0.5",
37
- "@smithy/core": "^2.3.0",
38
- "@smithy/fetch-http-handler": "^3.2.3",
37
+ "@smithy/core": "^2.3.2",
38
+ "@smithy/fetch-http-handler": "^3.2.4",
39
39
  "@smithy/hash-node": "^3.0.3",
40
40
  "@smithy/invalid-dependency": "^3.0.3",
41
41
  "@smithy/middleware-content-length": "^3.0.5",
42
42
  "@smithy/middleware-endpoint": "^3.1.0",
43
- "@smithy/middleware-retry": "^3.0.12",
43
+ "@smithy/middleware-retry": "^3.0.14",
44
44
  "@smithy/middleware-serde": "^3.0.3",
45
45
  "@smithy/middleware-stack": "^3.0.3",
46
46
  "@smithy/node-config-provider": "^3.1.4",
47
47
  "@smithy/node-http-handler": "^3.1.4",
48
48
  "@smithy/protocol-http": "^4.1.0",
49
- "@smithy/smithy-client": "^3.1.10",
49
+ "@smithy/smithy-client": "^3.1.12",
50
50
  "@smithy/types": "^3.3.0",
51
51
  "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.12",
56
- "@smithy/util-defaults-mode-node": "^3.0.12",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.14",
56
+ "@smithy/util-defaults-mode-node": "^3.0.14",
57
57
  "@smithy/util-endpoints": "^2.0.5",
58
58
  "@smithy/util-middleware": "^3.0.3",
59
59
  "@smithy/util-retry": "^3.0.3",