@aws-sdk/client-qbusiness 3.828.0 → 3.835.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 +1 -1
- package/dist-es/protocols/Aws_restJson1.js +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +6 -6
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +9 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -1
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -3788,7 +3788,7 @@ var de_ChatOutputStream = /* @__PURE__ */ __name((output, context) => {
|
|
|
3788
3788
|
)
|
|
3789
3789
|
};
|
|
3790
3790
|
}
|
|
3791
|
-
return { $unknown:
|
|
3791
|
+
return { $unknown: event };
|
|
3792
3792
|
});
|
|
3793
3793
|
}, "de_ChatOutputStream");
|
|
3794
3794
|
var de_ActionReviewEvent_event = /* @__PURE__ */ __name(async (output, context) => {
|
|
@@ -2538,7 +2538,7 @@ const de_ChatOutputStream = (output, context) => {
|
|
|
2538
2538
|
authChallengeRequestEvent: await de_AuthChallengeRequestEvent_event(event["authChallengeRequestEvent"], context),
|
|
2539
2539
|
};
|
|
2540
2540
|
}
|
|
2541
|
-
return { $unknown:
|
|
2541
|
+
return { $unknown: event };
|
|
2542
2542
|
});
|
|
2543
2543
|
};
|
|
2544
2544
|
const de_ActionReviewEvent_event = async (output, context) => {
|
|
@@ -3,11 +3,11 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provi
|
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface ClientInputEndpointParameters {
|
|
6
|
-
region?: string | Provider<string>;
|
|
7
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
7
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
8
8
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
9
9
|
}
|
|
10
|
-
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
10
|
+
export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
|
|
11
11
|
defaultSigningName: string;
|
|
12
12
|
};
|
|
13
13
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|
|
@@ -26,7 +26,7 @@ export declare const commonParams: {
|
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region?: string;
|
|
30
|
-
UseFIPS?: boolean;
|
|
31
|
-
Endpoint?: string;
|
|
29
|
+
Region?: string | undefined;
|
|
30
|
+
UseFIPS?: boolean | undefined;
|
|
31
|
+
Endpoint?: string | undefined;
|
|
32
32
|
}
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
18
18
|
sha256: import("@smithy/types").HashConstructor;
|
|
19
19
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
21
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
22
|
apiVersion: string;
|
|
23
23
|
cacheMiddleware?: boolean | undefined;
|
|
24
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
22
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
23
23
|
region: string | import("@smithy/types").Provider<any>;
|
|
24
24
|
profile?: string;
|
|
25
25
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
Provider,
|
|
6
6
|
} from "@smithy/types";
|
|
7
7
|
export interface ClientInputEndpointParameters {
|
|
8
|
-
region?: string | Provider<string>;
|
|
9
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
9
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
10
10
|
endpoint?:
|
|
11
11
|
| string
|
|
12
12
|
| Provider<string>
|
|
@@ -15,7 +15,10 @@ export interface ClientInputEndpointParameters {
|
|
|
15
15
|
| EndpointV2
|
|
16
16
|
| Provider<EndpointV2>;
|
|
17
17
|
}
|
|
18
|
-
export type ClientResolvedEndpointParameters =
|
|
18
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
19
|
+
ClientInputEndpointParameters,
|
|
20
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
21
|
+
> & {
|
|
19
22
|
defaultSigningName: string;
|
|
20
23
|
};
|
|
21
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
@@ -36,7 +39,7 @@ export declare const commonParams: {
|
|
|
36
39
|
};
|
|
37
40
|
};
|
|
38
41
|
export interface EndpointParameters extends __EndpointParameters {
|
|
39
|
-
Region?: string;
|
|
40
|
-
UseFIPS?: boolean;
|
|
41
|
-
Endpoint?: string;
|
|
42
|
+
Region?: string | undefined;
|
|
43
|
+
UseFIPS?: boolean | undefined;
|
|
44
|
+
Endpoint?: string | undefined;
|
|
42
45
|
}
|
|
@@ -25,7 +25,8 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
25
25
|
sha256: import("@smithy/types").HashConstructor;
|
|
26
26
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
28
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
29
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
30
|
apiVersion: string;
|
|
30
31
|
cacheMiddleware?: boolean | undefined;
|
|
31
32
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -21,7 +21,8 @@ export declare const getRuntimeConfig: (config: QBusinessClientConfig) => {
|
|
|
21
21
|
disableHostPrefix: boolean;
|
|
22
22
|
serviceId: string;
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
24
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
25
26
|
region: string | import("@smithy/types").Provider<any>;
|
|
26
27
|
profile?: string;
|
|
27
28
|
defaultUserAgentProvider: (
|
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.835.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,19 +20,19 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.835.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.835.0",
|
|
25
25
|
"@aws-sdk/eventstream-handler-node": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-eventstream": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.835.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
32
32
|
"@aws-sdk/types": "3.821.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.828.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.835.0",
|
|
36
36
|
"@smithy/config-resolver": "^4.1.4",
|
|
37
37
|
"@smithy/core": "^3.5.3",
|
|
38
38
|
"@smithy/eventstream-serde-browser": "^4.0.4",
|
|
@@ -42,24 +42,24 @@
|
|
|
42
42
|
"@smithy/hash-node": "^4.0.4",
|
|
43
43
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
44
44
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
45
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
46
|
-
"@smithy/middleware-retry": "^4.1.
|
|
45
|
+
"@smithy/middleware-endpoint": "^4.1.12",
|
|
46
|
+
"@smithy/middleware-retry": "^4.1.13",
|
|
47
47
|
"@smithy/middleware-serde": "^4.0.8",
|
|
48
48
|
"@smithy/middleware-stack": "^4.0.4",
|
|
49
49
|
"@smithy/node-config-provider": "^4.1.3",
|
|
50
50
|
"@smithy/node-http-handler": "^4.0.6",
|
|
51
51
|
"@smithy/protocol-http": "^5.1.2",
|
|
52
|
-
"@smithy/smithy-client": "^4.4.
|
|
52
|
+
"@smithy/smithy-client": "^4.4.4",
|
|
53
53
|
"@smithy/types": "^4.3.1",
|
|
54
54
|
"@smithy/url-parser": "^4.0.4",
|
|
55
55
|
"@smithy/util-base64": "^4.0.0",
|
|
56
56
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
57
57
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^4.0.20",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^4.0.20",
|
|
60
60
|
"@smithy/util-endpoints": "^3.0.6",
|
|
61
61
|
"@smithy/util-middleware": "^4.0.4",
|
|
62
|
-
"@smithy/util-retry": "^4.0.
|
|
62
|
+
"@smithy/util-retry": "^4.0.6",
|
|
63
63
|
"@smithy/util-utf8": "^4.0.0",
|
|
64
64
|
"@types/uuid": "^9.0.1",
|
|
65
65
|
"tslib": "^2.6.2",
|