@aws-sdk/client-lex-runtime-service 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/LexRuntimeService.d.ts +94 -30
- package/dist-types/ts3.4/LexRuntimeServiceClient.d.ts +160 -78
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PostContentCommand.d.ts +42 -24
- package/dist-types/ts3.4/commands/PostTextCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +5 -5
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/LexRuntimeServiceServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1509 -65
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +65 -17
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../LexRuntimeServiceClient";
|
|
13
|
+
import { PutSessionRequest, PutSessionResponse } from "../models/models_0";
|
|
14
|
+
export interface PutSessionCommandInput extends PutSessionRequest {}
|
|
15
|
+
export interface PutSessionCommandOutput
|
|
16
|
+
extends PutSessionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class PutSessionCommand extends $Command<
|
|
20
|
+
PutSessionCommandInput,
|
|
21
|
+
PutSessionCommandOutput,
|
|
22
|
+
LexRuntimeServiceClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: PutSessionCommandInput;
|
|
25
|
+
constructor(input: PutSessionCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LexRuntimeServiceClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<PutSessionCommandInput, PutSessionCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./DeleteSessionCommand";
|
|
2
|
-
export * from "./GetSessionCommand";
|
|
3
|
-
export * from "./PostContentCommand";
|
|
4
|
-
export * from "./PostTextCommand";
|
|
5
|
-
export * from "./PutSessionCommand";
|
|
1
|
+
export * from "./DeleteSessionCommand";
|
|
2
|
+
export * from "./GetSessionCommand";
|
|
3
|
+
export * from "./PostContentCommand";
|
|
4
|
+
export * from "./PostTextCommand";
|
|
5
|
+
export * from "./PutSessionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./LexRuntimeService";
|
|
2
|
-
export * from "./LexRuntimeServiceClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { LexRuntimeServiceServiceException } from "./models/LexRuntimeServiceServiceException";
|
|
1
|
+
export * from "./LexRuntimeService";
|
|
2
|
+
export * from "./LexRuntimeServiceClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { LexRuntimeServiceServiceException } from "./models/LexRuntimeServiceServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class LexRuntimeServiceServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|