@aws-sdk/client-qbusiness 3.613.0 → 3.616.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 +5 -5
- package/dist-es/QBusinessClient.js +5 -5
- package/dist-types/QBusinessClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/QBusinessClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +25 -25
package/dist-cjs/index.js
CHANGED
|
@@ -271,21 +271,21 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
|
|
|
271
271
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
272
272
|
const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
|
|
273
273
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
274
|
-
const _config_4 = (0,
|
|
275
|
-
const _config_5 = (0,
|
|
276
|
-
const _config_6 = (0,
|
|
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);
|
|
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_retry.getRetryPlugin)(this.config));
|
|
284
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
285
283
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
286
284
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
287
285
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
288
286
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
287
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
288
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
289
289
|
this.middlewareStack.use(
|
|
290
290
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
291
291
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
@@ -21,21 +21,21 @@ export class QBusinessClient extends __Client {
|
|
|
21
21
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
22
22
|
const _config_2 = resolveRegionConfig(_config_1);
|
|
23
23
|
const _config_3 = resolveEndpointConfig(_config_2);
|
|
24
|
-
const _config_4 =
|
|
25
|
-
const _config_5 =
|
|
26
|
-
const _config_6 =
|
|
24
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
25
|
+
const _config_5 = resolveUserAgentConfig(_config_4);
|
|
26
|
+
const _config_6 = resolveRetryConfig(_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(getRetryPlugin(this.config));
|
|
34
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
35
33
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
36
34
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
37
35
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
38
36
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
37
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
38
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
39
39
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
40
40
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
41
41
|
identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
|
|
@@ -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> &
|
|
202
|
+
export type QBusinessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & 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> &
|
|
213
|
+
export type QBusinessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig & EventStreamResolvedConfig & ClientResolvedEndpointParameters;
|
|
214
214
|
/**
|
|
215
215
|
* @public
|
|
216
216
|
*
|
|
@@ -34,8 +34,8 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
34
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
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;
|
|
@@ -34,8 +34,8 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
34
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
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;
|
|
@@ -33,8 +33,8 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
33
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
34
|
}) => import("@smithy/types").EndpointV2;
|
|
35
35
|
tls?: boolean | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
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;
|
|
@@ -430,9 +430,9 @@ export type QBusinessClientConfigType = Partial<
|
|
|
430
430
|
ClientDefaults &
|
|
431
431
|
RegionInputConfig &
|
|
432
432
|
EndpointInputConfig<EndpointParameters> &
|
|
433
|
-
RetryInputConfig &
|
|
434
433
|
HostHeaderInputConfig &
|
|
435
434
|
UserAgentInputConfig &
|
|
435
|
+
RetryInputConfig &
|
|
436
436
|
EventStreamSerdeInputConfig &
|
|
437
437
|
HttpAuthSchemeInputConfig &
|
|
438
438
|
EventStreamInputConfig &
|
|
@@ -444,9 +444,9 @@ export type QBusinessClientResolvedConfigType =
|
|
|
444
444
|
RuntimeExtensionsConfig &
|
|
445
445
|
RegionResolvedConfig &
|
|
446
446
|
EndpointResolvedConfig<EndpointParameters> &
|
|
447
|
-
RetryResolvedConfig &
|
|
448
447
|
HostHeaderResolvedConfig &
|
|
449
448
|
UserAgentResolvedConfig &
|
|
449
|
+
RetryResolvedConfig &
|
|
450
450
|
EventStreamSerdeResolvedConfig &
|
|
451
451
|
HttpAuthSchemeResolvedConfig &
|
|
452
452
|
EventStreamResolvedConfig &
|
|
@@ -58,11 +58,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
58
58
|
}
|
|
59
59
|
) => import("@smithy/types").EndpointV2;
|
|
60
60
|
tls?: boolean | undefined;
|
|
61
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
61
62
|
retryStrategy?:
|
|
62
63
|
| import("@smithy/types").RetryStrategy
|
|
63
64
|
| import("@smithy/types").RetryStrategyV2
|
|
64
65
|
| undefined;
|
|
65
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
|
|
68
68
|
credentials?:
|
|
@@ -62,11 +62,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
62
62
|
}
|
|
63
63
|
) => import("@smithy/types").EndpointV2;
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
65
66
|
retryStrategy?:
|
|
66
67
|
| import("@smithy/types").RetryStrategy
|
|
67
68
|
| import("@smithy/types").RetryStrategyV2
|
|
68
69
|
| undefined;
|
|
69
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QBusinessHttpAuthSchemeProvider;
|
|
72
72
|
credentials?:
|
|
@@ -52,11 +52,11 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
52
52
|
}
|
|
53
53
|
) => import("@smithy/types").EndpointV2;
|
|
54
54
|
tls?: boolean | undefined;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
55
56
|
retryStrategy?:
|
|
56
57
|
| import("@smithy/types").RetryStrategy
|
|
57
58
|
| import("@smithy/types").RetryStrategyV2
|
|
58
59
|
| undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | 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.
|
|
4
|
+
"version": "3.616.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,46 +20,46 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.616.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.616.0",
|
|
25
|
+
"@aws-sdk/core": "3.616.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.616.0",
|
|
27
27
|
"@aws-sdk/eventstream-handler-node": "3.609.0",
|
|
28
|
-
"@aws-sdk/middleware-eventstream": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
+
"@aws-sdk/middleware-eventstream": "3.616.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.616.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.616.0",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "3.616.0",
|
|
33
|
+
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
34
34
|
"@aws-sdk/types": "3.609.0",
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.614.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
38
|
-
"@smithy/config-resolver": "^3.0.
|
|
39
|
-
"@smithy/core": "^2.2.
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
38
|
+
"@smithy/config-resolver": "^3.0.5",
|
|
39
|
+
"@smithy/core": "^2.2.7",
|
|
40
40
|
"@smithy/eventstream-serde-browser": "^3.0.4",
|
|
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.
|
|
43
|
+
"@smithy/fetch-http-handler": "^3.2.2",
|
|
44
44
|
"@smithy/hash-node": "^3.0.3",
|
|
45
45
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
46
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
47
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
48
|
-
"@smithy/middleware-retry": "^3.0.
|
|
46
|
+
"@smithy/middleware-content-length": "^3.0.4",
|
|
47
|
+
"@smithy/middleware-endpoint": "^3.0.5",
|
|
48
|
+
"@smithy/middleware-retry": "^3.0.10",
|
|
49
49
|
"@smithy/middleware-serde": "^3.0.3",
|
|
50
50
|
"@smithy/middleware-stack": "^3.0.3",
|
|
51
|
-
"@smithy/node-config-provider": "^3.1.
|
|
52
|
-
"@smithy/node-http-handler": "^3.1.
|
|
53
|
-
"@smithy/protocol-http": "^4.0.
|
|
54
|
-
"@smithy/smithy-client": "^3.1.
|
|
51
|
+
"@smithy/node-config-provider": "^3.1.4",
|
|
52
|
+
"@smithy/node-http-handler": "^3.1.3",
|
|
53
|
+
"@smithy/protocol-http": "^4.0.4",
|
|
54
|
+
"@smithy/smithy-client": "^3.1.8",
|
|
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.
|
|
61
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
62
|
-
"@smithy/util-endpoints": "^2.0.
|
|
60
|
+
"@smithy/util-defaults-mode-browser": "^3.0.10",
|
|
61
|
+
"@smithy/util-defaults-mode-node": "^3.0.10",
|
|
62
|
+
"@smithy/util-endpoints": "^2.0.5",
|
|
63
63
|
"@smithy/util-middleware": "^3.0.3",
|
|
64
64
|
"@smithy/util-retry": "^3.0.3",
|
|
65
65
|
"@smithy/util-utf8": "^3.0.0",
|