@aws-sdk/client-lex-runtime-service 3.279.0 → 3.282.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/README.md +43 -0
- package/dist-types/commands/DeleteSessionCommand.d.ts +6 -0
- package/dist-types/commands/GetSessionCommand.d.ts +6 -0
- package/dist-types/commands/PostContentCommand.d.ts +6 -0
- package/dist-types/commands/PostTextCommand.d.ts +6 -0
- package/dist-types/commands/PutSessionCommand.d.ts +6 -0
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -214,3 +214,46 @@ To contribute to client you can check our [generate clients scripts](https://git
|
|
|
214
214
|
This SDK is distributed under the
|
|
215
215
|
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
|
|
216
216
|
see LICENSE for more information.
|
|
217
|
+
|
|
218
|
+
## Client Commands (Operations List)
|
|
219
|
+
|
|
220
|
+
<details>
|
|
221
|
+
<summary>
|
|
222
|
+
DeleteSession
|
|
223
|
+
</summary>
|
|
224
|
+
|
|
225
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/classes/deletesessioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/deletesessioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/deletesessioncommandoutput.html)
|
|
226
|
+
|
|
227
|
+
</details>
|
|
228
|
+
<details>
|
|
229
|
+
<summary>
|
|
230
|
+
GetSession
|
|
231
|
+
</summary>
|
|
232
|
+
|
|
233
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/classes/getsessioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/getsessioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/getsessioncommandoutput.html)
|
|
234
|
+
|
|
235
|
+
</details>
|
|
236
|
+
<details>
|
|
237
|
+
<summary>
|
|
238
|
+
PostContent
|
|
239
|
+
</summary>
|
|
240
|
+
|
|
241
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/classes/postcontentcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/postcontentcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/postcontentcommandoutput.html)
|
|
242
|
+
|
|
243
|
+
</details>
|
|
244
|
+
<details>
|
|
245
|
+
<summary>
|
|
246
|
+
PostText
|
|
247
|
+
</summary>
|
|
248
|
+
|
|
249
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/classes/posttextcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/posttextcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/posttextcommandoutput.html)
|
|
250
|
+
|
|
251
|
+
</details>
|
|
252
|
+
<details>
|
|
253
|
+
<summary>
|
|
254
|
+
PutSession
|
|
255
|
+
</summary>
|
|
256
|
+
|
|
257
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/classes/putsessioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/putsessioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lex-runtime-service/interfaces/putsessioncommandoutput.html)
|
|
258
|
+
|
|
259
|
+
</details>
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeServiceClient";
|
|
5
5
|
import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteSessionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteSessionCommandInput extends DeleteSessionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteSessionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteSessionCommandOutput extends DeleteSessionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeServiceClient";
|
|
5
5
|
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetSessionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetSessionCommandInput extends GetSessionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetSessionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -4,6 +4,9 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@aws-sdk/types";
|
|
5
5
|
import { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeServiceClient";
|
|
6
6
|
import { PostContentRequest, PostContentResponse } from "../models/models_0";
|
|
7
|
+
/**
|
|
8
|
+
* The input for {@link PostContentCommand}.
|
|
9
|
+
*/
|
|
7
10
|
declare type PostContentCommandInputType = Omit<PostContentRequest, "inputStream"> & {
|
|
8
11
|
/**
|
|
9
12
|
* For *`PostContentRequest["inputStream"]`*, see {@link PostContentRequest.inputStream}.
|
|
@@ -15,6 +18,9 @@ declare type PostContentCommandInputType = Omit<PostContentRequest, "inputStream
|
|
|
15
18
|
*/
|
|
16
19
|
export interface PostContentCommandInput extends PostContentCommandInputType {
|
|
17
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* The output of {@link PostContentCommand}.
|
|
23
|
+
*/
|
|
18
24
|
export interface PostContentCommandOutput extends __WithSdkStreamMixin<PostContentResponse, "audioStream">, __MetadataBearer {
|
|
19
25
|
}
|
|
20
26
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeServiceClient";
|
|
5
5
|
import { PostTextRequest, PostTextResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PostTextCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PostTextCommandInput extends PostTextRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PostTextCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PostTextCommandOutput extends PostTextResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@aws-sdk/types";
|
|
4
4
|
import { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeServiceClient";
|
|
5
5
|
import { PutSessionRequest, PutSessionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutSessionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutSessionCommandInput extends PutSessionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutSessionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutSessionCommandOutput extends __WithSdkStreamMixin<PutSessionResponse, "audioStream">, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lex-runtime-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.282.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -22,25 +22,25 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
-
"@aws-sdk/config-resolver": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
26
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
28
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
29
29
|
"@aws-sdk/hash-node": "3.272.0",
|
|
30
30
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
31
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
32
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
33
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
32
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
33
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
34
34
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
39
39
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
41
41
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
42
|
-
"@aws-sdk/node-http-handler": "3.
|
|
43
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
43
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
44
44
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
45
45
|
"@aws-sdk/types": "3.272.0",
|
|
46
46
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
49
49
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
52
52
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
53
53
|
"@aws-sdk/util-retry": "3.272.0",
|
|
54
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
55
|
-
"@aws-sdk/util-stream-node": "3.
|
|
56
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
57
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-stream-browser": "3.282.0",
|
|
55
|
+
"@aws-sdk/util-stream-node": "3.282.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
57
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
58
58
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
59
59
|
"tslib": "^2.3.1"
|
|
60
60
|
},
|