@aws-sdk/client-lex-runtime-v2 3.534.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/LexRuntimeV2.d.ts +1 -1
- package/dist-types/LexRuntimeV2Client.d.ts +1 -1
- package/dist-types/commands/DeleteSessionCommand.d.ts +2 -1
- package/dist-types/commands/GetSessionCommand.d.ts +2 -1
- package/dist-types/commands/PutSessionCommand.d.ts +2 -1
- package/dist-types/commands/RecognizeTextCommand.d.ts +2 -1
- package/dist-types/commands/RecognizeUtteranceCommand.d.ts +2 -1
- package/dist-types/commands/StartConversationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +223 -223
- package/dist-types/runtimeConfig.shared.d.ts +3 -0
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RecognizeTextCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartConversationCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +46 -46
|
@@ -8,6 +8,9 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
11
14
|
logger?: import("@smithy/types").Logger | undefined;
|
|
12
15
|
}) => import("@smithy/types").EndpointV2;
|
|
13
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -24,6 +24,15 @@ declare const DeleteSessionCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteSessionCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteSessionCommandInput,
|
|
31
|
+
DeleteSessionCommandOutput,
|
|
32
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteSessionCommand extends DeleteSessionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetSessionCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetSessionCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetSessionCommandInput,
|
|
28
|
+
GetSessionCommandOutput,
|
|
29
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetSessionCommand extends GetSessionCommand_base {}
|
|
@@ -29,6 +29,15 @@ declare const PutSessionCommand_base: {
|
|
|
29
29
|
ServiceInputTypes,
|
|
30
30
|
ServiceOutputTypes
|
|
31
31
|
>;
|
|
32
|
+
new (
|
|
33
|
+
__0_0: PutSessionCommandInput
|
|
34
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
35
|
+
PutSessionCommandInput,
|
|
36
|
+
PutSessionCommandOutput,
|
|
37
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
38
|
+
ServiceInputTypes,
|
|
39
|
+
ServiceOutputTypes
|
|
40
|
+
>;
|
|
32
41
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
42
|
};
|
|
34
43
|
export declare class PutSessionCommand extends PutSessionCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const RecognizeTextCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: RecognizeTextCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
RecognizeTextCommandInput,
|
|
31
|
+
RecognizeTextCommandOutput,
|
|
32
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class RecognizeTextCommand extends RecognizeTextCommand_base {}
|
|
@@ -39,6 +39,15 @@ declare const RecognizeUtteranceCommand_base: {
|
|
|
39
39
|
ServiceInputTypes,
|
|
40
40
|
ServiceOutputTypes
|
|
41
41
|
>;
|
|
42
|
+
new (
|
|
43
|
+
__0_0: RecognizeUtteranceCommandInput
|
|
44
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
45
|
+
RecognizeUtteranceCommandInput,
|
|
46
|
+
RecognizeUtteranceCommandOutput,
|
|
47
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
48
|
+
ServiceInputTypes,
|
|
49
|
+
ServiceOutputTypes
|
|
50
|
+
>;
|
|
42
51
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
43
52
|
};
|
|
44
53
|
export declare class RecognizeUtteranceCommand extends RecognizeUtteranceCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const StartConversationCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartConversationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartConversationCommandInput,
|
|
32
|
+
StartConversationCommandOutput,
|
|
33
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class StartConversationCommand extends StartConversationCommand_base {}
|
|
@@ -5,5 +5,4 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { LexRuntimeV2ExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./models";
|
|
8
|
-
import "@aws-sdk/util-endpoints";
|
|
9
8
|
export { LexRuntimeV2ServiceException } from "./models/LexRuntimeV2ServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lex-runtime-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lex Runtime V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.540.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-lex-runtime-v2",
|
|
@@ -20,53 +20,53 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/eventstream-handler-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-eventstream": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-signing": "3.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
34
|
-
"@aws-sdk/types": "3.
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
38
|
-
"@smithy/config-resolver": "^2.
|
|
39
|
-
"@smithy/core": "^1.
|
|
40
|
-
"@smithy/eventstream-serde-browser": "^2.
|
|
41
|
-
"@smithy/eventstream-serde-config-resolver": "^2.
|
|
42
|
-
"@smithy/eventstream-serde-node": "^2.
|
|
43
|
-
"@smithy/fetch-http-handler": "^2.
|
|
44
|
-
"@smithy/hash-node": "^2.
|
|
45
|
-
"@smithy/invalid-dependency": "^2.
|
|
46
|
-
"@smithy/middleware-content-length": "^2.
|
|
47
|
-
"@smithy/middleware-endpoint": "^2.
|
|
48
|
-
"@smithy/middleware-retry": "^2.
|
|
49
|
-
"@smithy/middleware-serde": "^2.
|
|
50
|
-
"@smithy/middleware-stack": "^2.
|
|
51
|
-
"@smithy/node-config-provider": "^2.
|
|
52
|
-
"@smithy/node-http-handler": "^2.
|
|
53
|
-
"@smithy/protocol-http": "^3.
|
|
54
|
-
"@smithy/smithy-client": "^2.
|
|
55
|
-
"@smithy/types": "^2.
|
|
56
|
-
"@smithy/url-parser": "^2.
|
|
57
|
-
"@smithy/util-base64": "^2.
|
|
58
|
-
"@smithy/util-body-length-browser": "^2.
|
|
59
|
-
"@smithy/util-body-length-node": "^2.
|
|
60
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
61
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
62
|
-
"@smithy/util-endpoints": "^1.
|
|
63
|
-
"@smithy/util-retry": "^2.
|
|
64
|
-
"@smithy/util-stream": "^2.
|
|
65
|
-
"@smithy/util-utf8": "^2.
|
|
66
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
|
+
"@aws-sdk/eventstream-handler-node": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-eventstream": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
31
|
+
"@aws-sdk/middleware-signing": "3.535.0",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
33
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
34
|
+
"@aws-sdk/types": "3.535.0",
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
38
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
39
|
+
"@smithy/core": "^1.4.0",
|
|
40
|
+
"@smithy/eventstream-serde-browser": "^2.2.0",
|
|
41
|
+
"@smithy/eventstream-serde-config-resolver": "^2.2.0",
|
|
42
|
+
"@smithy/eventstream-serde-node": "^2.2.0",
|
|
43
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
44
|
+
"@smithy/hash-node": "^2.2.0",
|
|
45
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
46
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
47
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
48
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
49
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
50
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
51
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
52
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
53
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
54
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
55
|
+
"@smithy/types": "^2.12.0",
|
|
56
|
+
"@smithy/url-parser": "^2.2.0",
|
|
57
|
+
"@smithy/util-base64": "^2.3.0",
|
|
58
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
59
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
60
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
61
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
62
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
63
|
+
"@smithy/util-retry": "^2.2.0",
|
|
64
|
+
"@smithy/util-stream": "^2.2.0",
|
|
65
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
66
|
+
"tslib": "^2.6.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
69
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
70
70
|
"@tsconfig/node14": "1.0.3",
|
|
71
71
|
"@types/node": "^14.14.31",
|
|
72
72
|
"concurrently": "7.0.0",
|