@aws-sdk/client-lex-runtime-service 3.279.0 → 3.281.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 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.279.0",
4
+ "version": "3.281.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,9 +22,9 @@
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.279.0",
25
+ "@aws-sdk/client-sts": "3.281.0",
26
26
  "@aws-sdk/config-resolver": "3.272.0",
27
- "@aws-sdk/credential-provider-node": "3.279.0",
27
+ "@aws-sdk/credential-provider-node": "3.281.0",
28
28
  "@aws-sdk/fetch-http-handler": "3.272.0",
29
29
  "@aws-sdk/hash-node": "3.272.0",
30
30
  "@aws-sdk/invalid-dependency": "3.272.0",