@aws-sdk/client-lex-runtime-v2 3.170.0 → 3.171.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/LexRuntimeV2.d.ts +0 -6
- package/dist-types/ts3.4/LexRuntimeV2Client.d.ts +0 -27
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RecognizeTextCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +0 -3
- package/dist-types/ts3.4/commands/StartConversationCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/LexRuntimeV2ServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +852 -2056
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +31 -31
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2
|
|
@@ -24,7 +24,6 @@ import {
|
|
|
24
24
|
StartConversationCommandOutput,
|
|
25
25
|
} from "./commands/StartConversationCommand";
|
|
26
26
|
import { LexRuntimeV2Client } from "./LexRuntimeV2Client";
|
|
27
|
-
|
|
28
27
|
export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
29
28
|
deleteSession(
|
|
30
29
|
args: DeleteSessionCommandInput,
|
|
@@ -39,7 +38,6 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
39
38
|
options: __HttpHandlerOptions,
|
|
40
39
|
cb: (err: any, data?: DeleteSessionCommandOutput) => void
|
|
41
40
|
): void;
|
|
42
|
-
|
|
43
41
|
getSession(
|
|
44
42
|
args: GetSessionCommandInput,
|
|
45
43
|
options?: __HttpHandlerOptions
|
|
@@ -53,7 +51,6 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
53
51
|
options: __HttpHandlerOptions,
|
|
54
52
|
cb: (err: any, data?: GetSessionCommandOutput) => void
|
|
55
53
|
): void;
|
|
56
|
-
|
|
57
54
|
putSession(
|
|
58
55
|
args: PutSessionCommandInput,
|
|
59
56
|
options?: __HttpHandlerOptions
|
|
@@ -67,7 +64,6 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
67
64
|
options: __HttpHandlerOptions,
|
|
68
65
|
cb: (err: any, data?: PutSessionCommandOutput) => void
|
|
69
66
|
): void;
|
|
70
|
-
|
|
71
67
|
recognizeText(
|
|
72
68
|
args: RecognizeTextCommandInput,
|
|
73
69
|
options?: __HttpHandlerOptions
|
|
@@ -81,7 +77,6 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
81
77
|
options: __HttpHandlerOptions,
|
|
82
78
|
cb: (err: any, data?: RecognizeTextCommandOutput) => void
|
|
83
79
|
): void;
|
|
84
|
-
|
|
85
80
|
recognizeUtterance(
|
|
86
81
|
args: RecognizeUtteranceCommandInput,
|
|
87
82
|
options?: __HttpHandlerOptions
|
|
@@ -95,7 +90,6 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
|
95
90
|
options: __HttpHandlerOptions,
|
|
96
91
|
cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void
|
|
97
92
|
): void;
|
|
98
|
-
|
|
99
93
|
startConversation(
|
|
100
94
|
args: StartConversationCommandInput,
|
|
101
95
|
options?: __HttpHandlerOptions
|
|
@@ -93,51 +93,28 @@ export declare type ServiceOutputTypes =
|
|
|
93
93
|
export interface ClientDefaults
|
|
94
94
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
95
95
|
requestHandler?: __HttpHandler;
|
|
96
|
-
|
|
97
96
|
sha256?: __HashConstructor;
|
|
98
|
-
|
|
99
97
|
urlParser?: __UrlParser;
|
|
100
|
-
|
|
101
98
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
102
|
-
|
|
103
99
|
streamCollector?: __StreamCollector;
|
|
104
|
-
|
|
105
100
|
base64Decoder?: __Decoder;
|
|
106
|
-
|
|
107
101
|
base64Encoder?: __Encoder;
|
|
108
|
-
|
|
109
102
|
utf8Decoder?: __Decoder;
|
|
110
|
-
|
|
111
103
|
utf8Encoder?: __Encoder;
|
|
112
|
-
|
|
113
104
|
runtime?: string;
|
|
114
|
-
|
|
115
105
|
disableHostPrefix?: boolean;
|
|
116
|
-
|
|
117
106
|
maxAttempts?: number | __Provider<number>;
|
|
118
|
-
|
|
119
107
|
retryMode?: string | __Provider<string>;
|
|
120
|
-
|
|
121
108
|
logger?: __Logger;
|
|
122
|
-
|
|
123
109
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
124
|
-
|
|
125
110
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
-
|
|
127
111
|
serviceId?: string;
|
|
128
|
-
|
|
129
112
|
region?: string | __Provider<string>;
|
|
130
|
-
|
|
131
113
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
132
|
-
|
|
133
114
|
regionInfoProvider?: RegionInfoProvider;
|
|
134
|
-
|
|
135
115
|
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
136
|
-
|
|
137
116
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
138
|
-
|
|
139
117
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
140
|
-
|
|
141
118
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
142
119
|
}
|
|
143
120
|
declare type LexRuntimeV2ClientConfigType = Partial<
|
|
@@ -152,7 +129,6 @@ declare type LexRuntimeV2ClientConfigType = Partial<
|
|
|
152
129
|
EventStreamInputConfig &
|
|
153
130
|
UserAgentInputConfig &
|
|
154
131
|
EventStreamSerdeInputConfig;
|
|
155
|
-
|
|
156
132
|
export interface LexRuntimeV2ClientConfig
|
|
157
133
|
extends LexRuntimeV2ClientConfigType {}
|
|
158
134
|
declare type LexRuntimeV2ClientResolvedConfigType =
|
|
@@ -166,10 +142,8 @@ declare type LexRuntimeV2ClientResolvedConfigType =
|
|
|
166
142
|
EventStreamResolvedConfig &
|
|
167
143
|
UserAgentResolvedConfig &
|
|
168
144
|
EventStreamSerdeResolvedConfig;
|
|
169
|
-
|
|
170
145
|
export interface LexRuntimeV2ClientResolvedConfig
|
|
171
146
|
extends LexRuntimeV2ClientResolvedConfigType {}
|
|
172
|
-
|
|
173
147
|
export declare class LexRuntimeV2Client extends __Client<
|
|
174
148
|
__HttpHandlerOptions,
|
|
175
149
|
ServiceInputTypes,
|
|
@@ -178,7 +152,6 @@ export declare class LexRuntimeV2Client extends __Client<
|
|
|
178
152
|
> {
|
|
179
153
|
readonly config: LexRuntimeV2ClientResolvedConfig;
|
|
180
154
|
constructor(configuration: LexRuntimeV2ClientConfig);
|
|
181
|
-
|
|
182
155
|
destroy(): void;
|
|
183
156
|
}
|
|
184
157
|
export {};
|
|
@@ -18,7 +18,6 @@ export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
|
|
|
18
18
|
export interface DeleteSessionCommandOutput
|
|
19
19
|
extends DeleteSessionResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class DeleteSessionCommand extends $Command<
|
|
23
22
|
DeleteSessionCommandInput,
|
|
24
23
|
DeleteSessionCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class DeleteSessionCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: DeleteSessionCommandInput;
|
|
28
27
|
constructor(input: DeleteSessionCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface GetSessionCommandInput extends GetSessionRequest {}
|
|
|
15
15
|
export interface GetSessionCommandOutput
|
|
16
16
|
extends GetSessionResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class GetSessionCommand extends $Command<
|
|
20
19
|
GetSessionCommandInput,
|
|
21
20
|
GetSessionCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class GetSessionCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: GetSessionCommandInput;
|
|
25
24
|
constructor(input: GetSessionCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface PutSessionCommandInput extends PutSessionRequest {}
|
|
|
15
15
|
export interface PutSessionCommandOutput
|
|
16
16
|
extends PutSessionResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class PutSessionCommand extends $Command<
|
|
20
19
|
PutSessionCommandInput,
|
|
21
20
|
PutSessionCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class PutSessionCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: PutSessionCommandInput;
|
|
25
24
|
constructor(input: PutSessionCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface RecognizeTextCommandInput extends RecognizeTextRequest {}
|
|
|
18
18
|
export interface RecognizeTextCommandOutput
|
|
19
19
|
extends RecognizeTextResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class RecognizeTextCommand extends $Command<
|
|
23
22
|
RecognizeTextCommandInput,
|
|
24
23
|
RecognizeTextCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class RecognizeTextCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: RecognizeTextCommandInput;
|
|
28
27
|
constructor(input: RecognizeTextCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -24,13 +24,11 @@ declare type RecognizeUtteranceCommandInputType = Pick<
|
|
|
24
24
|
| Uint8Array
|
|
25
25
|
| Buffer;
|
|
26
26
|
};
|
|
27
|
-
|
|
28
27
|
export interface RecognizeUtteranceCommandInput
|
|
29
28
|
extends RecognizeUtteranceCommandInputType {}
|
|
30
29
|
export interface RecognizeUtteranceCommandOutput
|
|
31
30
|
extends RecognizeUtteranceResponse,
|
|
32
31
|
__MetadataBearer {}
|
|
33
|
-
|
|
34
32
|
export declare class RecognizeUtteranceCommand extends $Command<
|
|
35
33
|
RecognizeUtteranceCommandInput,
|
|
36
34
|
RecognizeUtteranceCommandOutput,
|
|
@@ -38,7 +36,6 @@ export declare class RecognizeUtteranceCommand extends $Command<
|
|
|
38
36
|
> {
|
|
39
37
|
readonly input: RecognizeUtteranceCommandInput;
|
|
40
38
|
constructor(input: RecognizeUtteranceCommandInput);
|
|
41
|
-
|
|
42
39
|
resolveMiddleware(
|
|
43
40
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
44
41
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface StartConversationCommandInput
|
|
|
19
19
|
export interface StartConversationCommandOutput
|
|
20
20
|
extends StartConversationResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class StartConversationCommand extends $Command<
|
|
24
23
|
StartConversationCommandInput,
|
|
25
24
|
StartConversationCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class StartConversationCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: StartConversationCommandInput;
|
|
29
28
|
constructor(input: StartConversationCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class LexRuntimeV2ServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|