@aws-sdk/client-qbusiness 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
@@ -269,27 +269,29 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
269
269
  constructor(...[configuration]) {
270
270
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
271
271
  const _config_1 = resolveClientEndpointParameters(_config_0);
272
- const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
273
- const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
274
- const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
275
- const _config_5 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_4);
276
- const _config_6 = (0, import_middleware_retry.resolveRetryConfig)(_config_5);
272
+ const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
273
+ const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
274
+ const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
275
+ const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
276
+ const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
277
277
  const _config_7 = (0, import_eventstream_serde_config_resolver.resolveEventStreamSerdeConfig)(_config_6);
278
278
  const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
279
279
  const _config_9 = (0, import_middleware_eventstream.resolveEventStreamConfig)(_config_8);
280
280
  const _config_10 = resolveRuntimeExtensions(_config_9, (configuration == null ? void 0 : configuration.extensions) || []);
281
281
  super(_config_10);
282
282
  this.config = _config_10;
283
- this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
284
- this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
285
- this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
286
283
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
287
284
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
288
285
  this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
286
+ this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
287
+ this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
288
+ this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
289
289
  this.middlewareStack.use(
290
290
  (0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
291
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
292
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
291
+ httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultQBusinessHttpAuthSchemeParametersProvider,
292
+ identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
293
+ "aws.auth#sigv4": config.credentials
294
+ })
293
295
  })
294
296
  );
295
297
  this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
@@ -302,14 +304,6 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
302
304
  destroy() {
303
305
  super.destroy();
304
306
  }
305
- getDefaultHttpAuthSchemeParametersProvider() {
306
- return import_httpAuthSchemeProvider.defaultQBusinessHttpAuthSchemeParametersProvider;
307
- }
308
- getIdentityProviderConfigProvider() {
309
- return async (config) => new import_core.DefaultIdentityProviderConfig({
310
- "aws.auth#sigv4": config.credentials
311
- });
312
- }
313
307
  };
314
308
  __name(_QBusinessClient, "QBusinessClient");
315
309
  var QBusinessClient = _QBusinessClient;
@@ -19,38 +19,32 @@ export class QBusinessClient extends __Client {
19
19
  constructor(...[configuration]) {
20
20
  const _config_0 = __getRuntimeConfig(configuration || {});
21
21
  const _config_1 = resolveClientEndpointParameters(_config_0);
22
- const _config_2 = resolveRegionConfig(_config_1);
23
- const _config_3 = resolveEndpointConfig(_config_2);
24
- const _config_4 = resolveHostHeaderConfig(_config_3);
25
- const _config_5 = resolveUserAgentConfig(_config_4);
26
- const _config_6 = resolveRetryConfig(_config_5);
22
+ const _config_2 = resolveUserAgentConfig(_config_1);
23
+ const _config_3 = resolveRetryConfig(_config_2);
24
+ const _config_4 = resolveRegionConfig(_config_3);
25
+ const _config_5 = resolveHostHeaderConfig(_config_4);
26
+ const _config_6 = resolveEndpointConfig(_config_5);
27
27
  const _config_7 = resolveEventStreamSerdeConfig(_config_6);
28
28
  const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
29
29
  const _config_9 = resolveEventStreamConfig(_config_8);
30
30
  const _config_10 = resolveRuntimeExtensions(_config_9, configuration?.extensions || []);
31
31
  super(_config_10);
32
32
  this.config = _config_10;
33
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
34
- this.middlewareStack.use(getLoggerPlugin(this.config));
35
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
36
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
37
34
  this.middlewareStack.use(getRetryPlugin(this.config));
38
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
36
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
37
+ this.middlewareStack.use(getLoggerPlugin(this.config));
38
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
39
39
  this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
40
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
41
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
40
+ httpAuthSchemeParametersProvider: defaultQBusinessHttpAuthSchemeParametersProvider,
41
+ identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
42
+ "aws.auth#sigv4": config.credentials,
43
+ }),
42
44
  }));
43
45
  this.middlewareStack.use(getHttpSigningPlugin(this.config));
44
46
  }
45
47
  destroy() {
46
48
  super.destroy();
47
49
  }
48
- getDefaultHttpAuthSchemeParametersProvider() {
49
- return defaultQBusinessHttpAuthSchemeParametersProvider;
50
- }
51
- getIdentityProviderConfigProvider() {
52
- return async (config) => new DefaultIdentityProviderConfig({
53
- "aws.auth#sigv4": config.credentials,
54
- });
55
- }
56
50
  }
@@ -199,7 +199,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
199
199
  /**
200
200
  * @public
201
201
  */
202
- export type QBusinessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig & EventStreamInputConfig & ClientInputEndpointParameters;
202
+ export type QBusinessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig & EventStreamInputConfig & ClientInputEndpointParameters;
203
203
  /**
204
204
  * @public
205
205
  *
@@ -210,7 +210,7 @@ export interface QBusinessClientConfig extends QBusinessClientConfigType {
210
210
  /**
211
211
  * @public
212
212
  */
213
- export type QBusinessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig & EventStreamResolvedConfig & ClientResolvedEndpointParameters;
213
+ export type QBusinessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig & EventStreamResolvedConfig & ClientResolvedEndpointParameters;
214
214
  /**
215
215
  * @public
216
216
  *
@@ -272,6 +272,4 @@ export declare class QBusinessClient extends __Client<__HttpHandlerOptions, Serv
272
272
  * Otherwise, sockets might stay open for quite a long time before the server terminates them.
273
273
  */
274
274
  destroy(): void;
275
- private getDefaultHttpAuthSchemeParametersProvider;
276
- private getIdentityProviderConfigProvider;
277
275
  }
@@ -30,12 +30,12 @@ export declare const defaultQBusinessHttpAuthSchemeProvider: QBusinessHttpAuthSc
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?: QBusinessHttpAuthSchemeProvider;
@@ -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: QBusinessHttpAuthSchemeProvider;
@@ -29,13 +29,13 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
29
29
  serviceId: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
34
  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;
33
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
36
  logger?: import("@smithy/types").Logger | undefined;
35
37
  }) => import("@smithy/types").EndpointV2;
36
38
  tls?: boolean | undefined;
37
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
38
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
39
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
40
40
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
41
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -29,13 +29,13 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
29
29
  serviceId: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
34
  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;
33
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
36
  logger?: import("@smithy/types").Logger | undefined;
35
37
  }) => import("@smithy/types").EndpointV2;
36
38
  tls?: boolean | undefined;
37
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
38
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
39
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
40
40
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
41
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -28,13 +28,13 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
28
28
  extensions: import("./runtimeExtensions").RuntimeExtension[];
29
29
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
30
30
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
31
33
  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;
32
34
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
33
35
  logger?: import("@smithy/types").Logger | undefined;
34
36
  }) => import("@smithy/types").EndpointV2;
35
37
  tls?: boolean | undefined;
36
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
38
38
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
39
39
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
40
40
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -428,11 +428,11 @@ export type QBusinessClientConfigType = Partial<
428
428
  __SmithyConfiguration<__HttpHandlerOptions>
429
429
  > &
430
430
  ClientDefaults &
431
- RegionInputConfig &
432
- EndpointInputConfig<EndpointParameters> &
433
- HostHeaderInputConfig &
434
431
  UserAgentInputConfig &
435
432
  RetryInputConfig &
433
+ RegionInputConfig &
434
+ HostHeaderInputConfig &
435
+ EndpointInputConfig<EndpointParameters> &
436
436
  EventStreamSerdeInputConfig &
437
437
  HttpAuthSchemeInputConfig &
438
438
  EventStreamInputConfig &
@@ -442,11 +442,11 @@ export type QBusinessClientResolvedConfigType =
442
442
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
443
443
  Required<ClientDefaults> &
444
444
  RuntimeExtensionsConfig &
445
- RegionResolvedConfig &
446
- EndpointResolvedConfig<EndpointParameters> &
447
- HostHeaderResolvedConfig &
448
445
  UserAgentResolvedConfig &
449
446
  RetryResolvedConfig &
447
+ RegionResolvedConfig &
448
+ HostHeaderResolvedConfig &
449
+ EndpointResolvedConfig<EndpointParameters> &
450
450
  EventStreamSerdeResolvedConfig &
451
451
  HttpAuthSchemeResolvedConfig &
452
452
  EventStreamResolvedConfig &
@@ -464,6 +464,4 @@ export declare class QBusinessClient extends __Client<
464
464
  ...[configuration]: __CheckOptionalClientConfig<QBusinessClientConfig>
465
465
  );
466
466
  destroy(): void;
467
- private getDefaultHttpAuthSchemeParametersProvider;
468
- private getIdentityProviderConfigProvider;
469
467
  }
@@ -34,6 +34,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
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
@@ -58,11 +63,6 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
58
63
  }
59
64
  ) => import("@smithy/types").EndpointV2;
60
65
  tls?: boolean | undefined;
61
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
62
- retryStrategy?:
63
- | import("@smithy/types").RetryStrategy
64
- | import("@smithy/types").RetryStrategyV2
65
- | undefined;
66
66
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
67
67
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
68
68
  credentials?:
@@ -38,6 +38,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
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
@@ -62,11 +67,6 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
62
67
  }
63
68
  ) => import("@smithy/types").EndpointV2;
64
69
  tls?: boolean | undefined;
65
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
66
- retryStrategy?:
67
- | import("@smithy/types").RetryStrategy
68
- | import("@smithy/types").RetryStrategyV2
69
- | undefined;
70
70
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
71
71
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
72
72
  credentials?:
@@ -38,6 +38,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
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
@@ -52,11 +57,6 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
52
57
  }
53
58
  ) => import("@smithy/types").EndpointV2;
54
59
  tls?: boolean | undefined;
55
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
56
- retryStrategy?:
57
- | import("@smithy/types").RetryStrategy
58
- | import("@smithy/types").RetryStrategyV2
59
- | undefined;
60
60
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
61
61
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
62
62
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-qbusiness",
3
3
  "description": "AWS SDK for JavaScript Qbusiness 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-qbusiness",
@@ -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/eventstream-handler-node": "3.620.0",
28
28
  "@aws-sdk/middleware-eventstream": "3.620.0",
29
29
  "@aws-sdk/middleware-host-header": "3.620.0",
@@ -36,29 +36,29 @@
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.0",
39
+ "@smithy/core": "^2.3.2",
40
40
  "@smithy/eventstream-serde-browser": "^3.0.5",
41
41
  "@smithy/eventstream-serde-config-resolver": "^3.0.3",
42
42
  "@smithy/eventstream-serde-node": "^3.0.4",
43
- "@smithy/fetch-http-handler": "^3.2.3",
43
+ "@smithy/fetch-http-handler": "^3.2.4",
44
44
  "@smithy/hash-node": "^3.0.3",
45
45
  "@smithy/invalid-dependency": "^3.0.3",
46
46
  "@smithy/middleware-content-length": "^3.0.5",
47
47
  "@smithy/middleware-endpoint": "^3.1.0",
48
- "@smithy/middleware-retry": "^3.0.12",
48
+ "@smithy/middleware-retry": "^3.0.14",
49
49
  "@smithy/middleware-serde": "^3.0.3",
50
50
  "@smithy/middleware-stack": "^3.0.3",
51
51
  "@smithy/node-config-provider": "^3.1.4",
52
52
  "@smithy/node-http-handler": "^3.1.4",
53
53
  "@smithy/protocol-http": "^4.1.0",
54
- "@smithy/smithy-client": "^3.1.10",
54
+ "@smithy/smithy-client": "^3.1.12",
55
55
  "@smithy/types": "^3.3.0",
56
56
  "@smithy/url-parser": "^3.0.3",
57
57
  "@smithy/util-base64": "^3.0.0",
58
58
  "@smithy/util-body-length-browser": "^3.0.0",
59
59
  "@smithy/util-body-length-node": "^3.0.0",
60
- "@smithy/util-defaults-mode-browser": "^3.0.12",
61
- "@smithy/util-defaults-mode-node": "^3.0.12",
60
+ "@smithy/util-defaults-mode-browser": "^3.0.14",
61
+ "@smithy/util-defaults-mode-node": "^3.0.14",
62
62
  "@smithy/util-endpoints": "^2.0.5",
63
63
  "@smithy/util-middleware": "^3.0.3",
64
64
  "@smithy/util-retry": "^3.0.3",