@aws-sdk/client-lex-runtime-v2 3.928.0 → 3.929.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/index.js +761 -1054
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/LexRuntimeV2Client.js +2 -0
- package/dist-es/commands/DeleteSessionCommand.js +3 -9
- package/dist-es/commands/GetSessionCommand.js +3 -10
- package/dist-es/commands/PutSessionCommand.js +3 -10
- package/dist-es/commands/RecognizeTextCommand.js +3 -10
- package/dist-es/commands/RecognizeUtteranceCommand.js +3 -10
- package/dist-es/commands/StartConversationCommand.js +3 -11
- package/dist-es/models/models_0.js +0 -117
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +746 -0
- package/dist-types/LexRuntimeV2Client.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -76
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +78 -0
- package/dist-types/ts3.4/LexRuntimeV2Client.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +85 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -873
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -56
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -81
|
@@ -8,7 +8,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
8
8
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
9
9
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
10
10
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
11
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
11
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
12
12
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
13
13
|
import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "./commands/DeleteSessionCommand";
|
|
14
14
|
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
@@ -150,6 +150,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
150
150
|
* Optional extensions
|
|
151
151
|
*/
|
|
152
152
|
extensions?: RuntimeExtension[];
|
|
153
|
+
/**
|
|
154
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
155
|
+
* may be overridden. A default will always be set by the client.
|
|
156
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
157
|
+
* the client.
|
|
158
|
+
* @alpha
|
|
159
|
+
*
|
|
160
|
+
*/
|
|
161
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
153
162
|
/**
|
|
154
163
|
* The function that provides necessary utilities for generating and parsing event stream
|
|
155
164
|
*/
|
|
@@ -2280,79 +2280,3 @@ export interface StartConversationResponse {
|
|
|
2280
2280
|
*/
|
|
2281
2281
|
responseEventStream?: AsyncIterable<StartConversationResponseEventStream> | undefined;
|
|
2282
2282
|
}
|
|
2283
|
-
/**
|
|
2284
|
-
* @internal
|
|
2285
|
-
*/
|
|
2286
|
-
export declare const ActiveContextFilterSensitiveLog: (obj: ActiveContext) => any;
|
|
2287
|
-
/**
|
|
2288
|
-
* @internal
|
|
2289
|
-
*/
|
|
2290
|
-
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
2291
|
-
/**
|
|
2292
|
-
* @internal
|
|
2293
|
-
*/
|
|
2294
|
-
export declare const PutSessionResponseFilterSensitiveLog: (obj: PutSessionResponse) => any;
|
|
2295
|
-
/**
|
|
2296
|
-
* @internal
|
|
2297
|
-
*/
|
|
2298
|
-
export declare const RecognizeUtteranceRequestFilterSensitiveLog: (obj: RecognizeUtteranceRequest) => any;
|
|
2299
|
-
/**
|
|
2300
|
-
* @internal
|
|
2301
|
-
*/
|
|
2302
|
-
export declare const RecognizeUtteranceResponseFilterSensitiveLog: (obj: RecognizeUtteranceResponse) => any;
|
|
2303
|
-
/**
|
|
2304
|
-
* @internal
|
|
2305
|
-
*/
|
|
2306
|
-
export declare const DTMFInputEventFilterSensitiveLog: (obj: DTMFInputEvent) => any;
|
|
2307
|
-
/**
|
|
2308
|
-
* @internal
|
|
2309
|
-
*/
|
|
2310
|
-
export declare const TextInputEventFilterSensitiveLog: (obj: TextInputEvent) => any;
|
|
2311
|
-
/**
|
|
2312
|
-
* @internal
|
|
2313
|
-
*/
|
|
2314
|
-
export declare const TextResponseEventFilterSensitiveLog: (obj: TextResponseEvent) => any;
|
|
2315
|
-
/**
|
|
2316
|
-
* @internal
|
|
2317
|
-
*/
|
|
2318
|
-
export declare const SessionStateFilterSensitiveLog: (obj: SessionState) => any;
|
|
2319
|
-
/**
|
|
2320
|
-
* @internal
|
|
2321
|
-
*/
|
|
2322
|
-
export declare const ConfigurationEventFilterSensitiveLog: (obj: ConfigurationEvent) => any;
|
|
2323
|
-
/**
|
|
2324
|
-
* @internal
|
|
2325
|
-
*/
|
|
2326
|
-
export declare const PutSessionRequestFilterSensitiveLog: (obj: PutSessionRequest) => any;
|
|
2327
|
-
/**
|
|
2328
|
-
* @internal
|
|
2329
|
-
*/
|
|
2330
|
-
export declare const RecognizeTextRequestFilterSensitiveLog: (obj: RecognizeTextRequest) => any;
|
|
2331
|
-
/**
|
|
2332
|
-
* @internal
|
|
2333
|
-
*/
|
|
2334
|
-
export declare const StartConversationRequestEventStreamFilterSensitiveLog: (obj: StartConversationRequestEventStream) => any;
|
|
2335
|
-
/**
|
|
2336
|
-
* @internal
|
|
2337
|
-
*/
|
|
2338
|
-
export declare const StartConversationRequestFilterSensitiveLog: (obj: StartConversationRequest) => any;
|
|
2339
|
-
/**
|
|
2340
|
-
* @internal
|
|
2341
|
-
*/
|
|
2342
|
-
export declare const GetSessionResponseFilterSensitiveLog: (obj: GetSessionResponse) => any;
|
|
2343
|
-
/**
|
|
2344
|
-
* @internal
|
|
2345
|
-
*/
|
|
2346
|
-
export declare const IntentResultEventFilterSensitiveLog: (obj: IntentResultEvent) => any;
|
|
2347
|
-
/**
|
|
2348
|
-
* @internal
|
|
2349
|
-
*/
|
|
2350
|
-
export declare const RecognizeTextResponseFilterSensitiveLog: (obj: RecognizeTextResponse) => any;
|
|
2351
|
-
/**
|
|
2352
|
-
* @internal
|
|
2353
|
-
*/
|
|
2354
|
-
export declare const StartConversationResponseEventStreamFilterSensitiveLog: (obj: StartConversationResponseEventStream) => any;
|
|
2355
|
-
/**
|
|
2356
|
-
* @internal
|
|
2357
|
-
*/
|
|
2358
|
-
export declare const StartConversationResponseFilterSensitiveLog: (obj: StartConversationResponse) => any;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
35
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
33
33
|
profile?: string;
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
36
37
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
37
38
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -28,6 +28,7 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
28
28
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
32
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
32
33
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
33
34
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").LexRuntimeV2HttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
19
|
serviceId: string;
|
|
19
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var BlobStream: StaticSimpleSchema;
|
|
3
|
+
export declare var DTMFRegex: StaticSimpleSchema;
|
|
4
|
+
export declare var SensitiveNonEmptyString: StaticSimpleSchema;
|
|
5
|
+
export declare var Text: StaticSimpleSchema;
|
|
6
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
7
|
+
export declare var ActiveContext: StaticStructureSchema;
|
|
8
|
+
export declare var ActiveContextTimeToLive: StaticStructureSchema;
|
|
9
|
+
export declare var AudioInputEvent: StaticStructureSchema;
|
|
10
|
+
export declare var AudioResponseEvent: StaticStructureSchema;
|
|
11
|
+
export declare var BadGatewayException: StaticErrorSchema;
|
|
12
|
+
export declare var Button: StaticStructureSchema;
|
|
13
|
+
export declare var ConfidenceScore: StaticStructureSchema;
|
|
14
|
+
export declare var ConfigurationEvent: StaticStructureSchema;
|
|
15
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
16
|
+
export declare var DeleteSessionRequest: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteSessionResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DependencyFailedException: StaticErrorSchema;
|
|
19
|
+
export declare var DialogAction: StaticStructureSchema;
|
|
20
|
+
export declare var DisconnectionEvent: StaticStructureSchema;
|
|
21
|
+
export declare var DTMFInputEvent: StaticStructureSchema;
|
|
22
|
+
export declare var ElicitSubSlot: StaticStructureSchema;
|
|
23
|
+
export declare var GetSessionRequest: StaticStructureSchema;
|
|
24
|
+
export declare var GetSessionResponse: StaticStructureSchema;
|
|
25
|
+
export declare var HeartbeatEvent: StaticStructureSchema;
|
|
26
|
+
export declare var ImageResponseCard: StaticStructureSchema;
|
|
27
|
+
export declare var Intent: StaticStructureSchema;
|
|
28
|
+
export declare var IntentResultEvent: StaticStructureSchema;
|
|
29
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
30
|
+
export declare var Interpretation: StaticStructureSchema;
|
|
31
|
+
export declare var Message: StaticStructureSchema;
|
|
32
|
+
export declare var PlaybackCompletionEvent: StaticStructureSchema;
|
|
33
|
+
export declare var PlaybackInterruptionEvent: StaticStructureSchema;
|
|
34
|
+
export declare var PutSessionRequest: StaticStructureSchema;
|
|
35
|
+
export declare var PutSessionResponse: StaticStructureSchema;
|
|
36
|
+
export declare var RecognizedBotMember: StaticStructureSchema;
|
|
37
|
+
export declare var RecognizeTextRequest: StaticStructureSchema;
|
|
38
|
+
export declare var RecognizeTextResponse: StaticStructureSchema;
|
|
39
|
+
export declare var RecognizeUtteranceRequest: StaticStructureSchema;
|
|
40
|
+
export declare var RecognizeUtteranceResponse: StaticStructureSchema;
|
|
41
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
42
|
+
export declare var RuntimeHintDetails: StaticStructureSchema;
|
|
43
|
+
export declare var RuntimeHints: StaticStructureSchema;
|
|
44
|
+
export declare var RuntimeHintValue: StaticStructureSchema;
|
|
45
|
+
export declare var SentimentResponse: StaticStructureSchema;
|
|
46
|
+
export declare var SentimentScore: StaticStructureSchema;
|
|
47
|
+
export declare var SessionState: StaticStructureSchema;
|
|
48
|
+
export declare var Slot: StaticStructureSchema;
|
|
49
|
+
export declare var StartConversationRequest: StaticStructureSchema;
|
|
50
|
+
export declare var StartConversationResponse: StaticStructureSchema;
|
|
51
|
+
export declare var TextInputEvent: StaticStructureSchema;
|
|
52
|
+
export declare var TextResponseEvent: StaticStructureSchema;
|
|
53
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
54
|
+
export declare var TranscriptEvent: StaticStructureSchema;
|
|
55
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
56
|
+
export declare var Value: StaticStructureSchema;
|
|
57
|
+
export declare var __Unit: "unit";
|
|
58
|
+
export declare var LexRuntimeV2ServiceException: StaticErrorSchema;
|
|
59
|
+
export declare var ActiveContextsList: StaticListSchema;
|
|
60
|
+
export declare var ButtonsList: StaticListSchema;
|
|
61
|
+
export declare var Interpretations: StaticListSchema;
|
|
62
|
+
export declare var Messages: StaticListSchema;
|
|
63
|
+
export declare var RuntimeHintValuesList: StaticListSchema;
|
|
64
|
+
export declare var StringList: number;
|
|
65
|
+
export declare var Values: StaticListSchema;
|
|
66
|
+
export declare var ActiveContextParametersMap: StaticMapSchema;
|
|
67
|
+
export declare var SlotHintsIntentMap: StaticMapSchema;
|
|
68
|
+
export declare var SlotHintsSlotMap: StaticMapSchema;
|
|
69
|
+
export declare var Slots: StaticMapSchema;
|
|
70
|
+
export declare var StringMap: number;
|
|
71
|
+
export declare var StartConversationRequestEventStream: StaticStructureSchema;
|
|
72
|
+
export declare var StartConversationResponseEventStream: StaticStructureSchema;
|
|
73
|
+
export declare var DeleteSession: StaticOperationSchema;
|
|
74
|
+
export declare var GetSession: StaticOperationSchema;
|
|
75
|
+
export declare var PutSession: StaticOperationSchema;
|
|
76
|
+
export declare var RecognizeText: StaticOperationSchema;
|
|
77
|
+
export declare var RecognizeUtterance: StaticOperationSchema;
|
|
78
|
+
export declare var StartConversation: StaticOperationSchema;
|
|
@@ -39,11 +39,14 @@ import {
|
|
|
39
39
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
40
40
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
41
41
|
ChecksumConstructor as __ChecksumConstructor,
|
|
42
|
+
ClientProtocol,
|
|
42
43
|
Decoder as __Decoder,
|
|
43
44
|
Encoder as __Encoder,
|
|
44
45
|
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
45
46
|
HashConstructor as __HashConstructor,
|
|
46
47
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
48
|
+
HttpRequest,
|
|
49
|
+
HttpResponse,
|
|
47
50
|
Logger as __Logger,
|
|
48
51
|
Provider as __Provider,
|
|
49
52
|
Provider,
|
|
@@ -125,6 +128,7 @@ export interface ClientDefaults
|
|
|
125
128
|
retryMode?: string | __Provider<string>;
|
|
126
129
|
logger?: __Logger;
|
|
127
130
|
extensions?: RuntimeExtension[];
|
|
131
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
128
132
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
129
133
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
130
134
|
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
@@ -765,56 +765,3 @@ export interface StartConversationResponse {
|
|
|
765
765
|
| AsyncIterable<StartConversationResponseEventStream>
|
|
766
766
|
| undefined;
|
|
767
767
|
}
|
|
768
|
-
export declare const ActiveContextFilterSensitiveLog: (
|
|
769
|
-
obj: ActiveContext
|
|
770
|
-
) => any;
|
|
771
|
-
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
772
|
-
export declare const PutSessionResponseFilterSensitiveLog: (
|
|
773
|
-
obj: PutSessionResponse
|
|
774
|
-
) => any;
|
|
775
|
-
export declare const RecognizeUtteranceRequestFilterSensitiveLog: (
|
|
776
|
-
obj: RecognizeUtteranceRequest
|
|
777
|
-
) => any;
|
|
778
|
-
export declare const RecognizeUtteranceResponseFilterSensitiveLog: (
|
|
779
|
-
obj: RecognizeUtteranceResponse
|
|
780
|
-
) => any;
|
|
781
|
-
export declare const DTMFInputEventFilterSensitiveLog: (
|
|
782
|
-
obj: DTMFInputEvent
|
|
783
|
-
) => any;
|
|
784
|
-
export declare const TextInputEventFilterSensitiveLog: (
|
|
785
|
-
obj: TextInputEvent
|
|
786
|
-
) => any;
|
|
787
|
-
export declare const TextResponseEventFilterSensitiveLog: (
|
|
788
|
-
obj: TextResponseEvent
|
|
789
|
-
) => any;
|
|
790
|
-
export declare const SessionStateFilterSensitiveLog: (obj: SessionState) => any;
|
|
791
|
-
export declare const ConfigurationEventFilterSensitiveLog: (
|
|
792
|
-
obj: ConfigurationEvent
|
|
793
|
-
) => any;
|
|
794
|
-
export declare const PutSessionRequestFilterSensitiveLog: (
|
|
795
|
-
obj: PutSessionRequest
|
|
796
|
-
) => any;
|
|
797
|
-
export declare const RecognizeTextRequestFilterSensitiveLog: (
|
|
798
|
-
obj: RecognizeTextRequest
|
|
799
|
-
) => any;
|
|
800
|
-
export declare const StartConversationRequestEventStreamFilterSensitiveLog: (
|
|
801
|
-
obj: StartConversationRequestEventStream
|
|
802
|
-
) => any;
|
|
803
|
-
export declare const StartConversationRequestFilterSensitiveLog: (
|
|
804
|
-
obj: StartConversationRequest
|
|
805
|
-
) => any;
|
|
806
|
-
export declare const GetSessionResponseFilterSensitiveLog: (
|
|
807
|
-
obj: GetSessionResponse
|
|
808
|
-
) => any;
|
|
809
|
-
export declare const IntentResultEventFilterSensitiveLog: (
|
|
810
|
-
obj: IntentResultEvent
|
|
811
|
-
) => any;
|
|
812
|
-
export declare const RecognizeTextResponseFilterSensitiveLog: (
|
|
813
|
-
obj: RecognizeTextResponse
|
|
814
|
-
) => any;
|
|
815
|
-
export declare const StartConversationResponseEventStreamFilterSensitiveLog: (
|
|
816
|
-
obj: StartConversationResponseEventStream
|
|
817
|
-
) => any;
|
|
818
|
-
export declare const StartConversationResponseFilterSensitiveLog: (
|
|
819
|
-
obj: StartConversationResponse
|
|
820
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
44
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
49
|
userAgentAppId?:
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
44
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
49
|
retryStrategy?:
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
38
38
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").LexRuntimeV2HttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
22
|
serviceId: string;
|
|
19
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var BlobStream: StaticSimpleSchema;
|
|
10
|
+
export declare var DTMFRegex: StaticSimpleSchema;
|
|
11
|
+
export declare var SensitiveNonEmptyString: StaticSimpleSchema;
|
|
12
|
+
export declare var Text: StaticSimpleSchema;
|
|
13
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
14
|
+
export declare var ActiveContext: StaticStructureSchema;
|
|
15
|
+
export declare var ActiveContextTimeToLive: StaticStructureSchema;
|
|
16
|
+
export declare var AudioInputEvent: StaticStructureSchema;
|
|
17
|
+
export declare var AudioResponseEvent: StaticStructureSchema;
|
|
18
|
+
export declare var BadGatewayException: StaticErrorSchema;
|
|
19
|
+
export declare var Button: StaticStructureSchema;
|
|
20
|
+
export declare var ConfidenceScore: StaticStructureSchema;
|
|
21
|
+
export declare var ConfigurationEvent: StaticStructureSchema;
|
|
22
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
23
|
+
export declare var DeleteSessionRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteSessionResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DependencyFailedException: StaticErrorSchema;
|
|
26
|
+
export declare var DialogAction: StaticStructureSchema;
|
|
27
|
+
export declare var DisconnectionEvent: StaticStructureSchema;
|
|
28
|
+
export declare var DTMFInputEvent: StaticStructureSchema;
|
|
29
|
+
export declare var ElicitSubSlot: StaticStructureSchema;
|
|
30
|
+
export declare var GetSessionRequest: StaticStructureSchema;
|
|
31
|
+
export declare var GetSessionResponse: StaticStructureSchema;
|
|
32
|
+
export declare var HeartbeatEvent: StaticStructureSchema;
|
|
33
|
+
export declare var ImageResponseCard: StaticStructureSchema;
|
|
34
|
+
export declare var Intent: StaticStructureSchema;
|
|
35
|
+
export declare var IntentResultEvent: StaticStructureSchema;
|
|
36
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
37
|
+
export declare var Interpretation: StaticStructureSchema;
|
|
38
|
+
export declare var Message: StaticStructureSchema;
|
|
39
|
+
export declare var PlaybackCompletionEvent: StaticStructureSchema;
|
|
40
|
+
export declare var PlaybackInterruptionEvent: StaticStructureSchema;
|
|
41
|
+
export declare var PutSessionRequest: StaticStructureSchema;
|
|
42
|
+
export declare var PutSessionResponse: StaticStructureSchema;
|
|
43
|
+
export declare var RecognizedBotMember: StaticStructureSchema;
|
|
44
|
+
export declare var RecognizeTextRequest: StaticStructureSchema;
|
|
45
|
+
export declare var RecognizeTextResponse: StaticStructureSchema;
|
|
46
|
+
export declare var RecognizeUtteranceRequest: StaticStructureSchema;
|
|
47
|
+
export declare var RecognizeUtteranceResponse: StaticStructureSchema;
|
|
48
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
49
|
+
export declare var RuntimeHintDetails: StaticStructureSchema;
|
|
50
|
+
export declare var RuntimeHints: StaticStructureSchema;
|
|
51
|
+
export declare var RuntimeHintValue: StaticStructureSchema;
|
|
52
|
+
export declare var SentimentResponse: StaticStructureSchema;
|
|
53
|
+
export declare var SentimentScore: StaticStructureSchema;
|
|
54
|
+
export declare var SessionState: StaticStructureSchema;
|
|
55
|
+
export declare var Slot: StaticStructureSchema;
|
|
56
|
+
export declare var StartConversationRequest: StaticStructureSchema;
|
|
57
|
+
export declare var StartConversationResponse: StaticStructureSchema;
|
|
58
|
+
export declare var TextInputEvent: StaticStructureSchema;
|
|
59
|
+
export declare var TextResponseEvent: StaticStructureSchema;
|
|
60
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
61
|
+
export declare var TranscriptEvent: StaticStructureSchema;
|
|
62
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
63
|
+
export declare var Value: StaticStructureSchema;
|
|
64
|
+
export declare var __Unit: "unit";
|
|
65
|
+
export declare var LexRuntimeV2ServiceException: StaticErrorSchema;
|
|
66
|
+
export declare var ActiveContextsList: StaticListSchema;
|
|
67
|
+
export declare var ButtonsList: StaticListSchema;
|
|
68
|
+
export declare var Interpretations: StaticListSchema;
|
|
69
|
+
export declare var Messages: StaticListSchema;
|
|
70
|
+
export declare var RuntimeHintValuesList: StaticListSchema;
|
|
71
|
+
export declare var StringList: number;
|
|
72
|
+
export declare var Values: StaticListSchema;
|
|
73
|
+
export declare var ActiveContextParametersMap: StaticMapSchema;
|
|
74
|
+
export declare var SlotHintsIntentMap: StaticMapSchema;
|
|
75
|
+
export declare var SlotHintsSlotMap: StaticMapSchema;
|
|
76
|
+
export declare var Slots: StaticMapSchema;
|
|
77
|
+
export declare var StringMap: number;
|
|
78
|
+
export declare var StartConversationRequestEventStream: StaticStructureSchema;
|
|
79
|
+
export declare var StartConversationResponseEventStream: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteSession: StaticOperationSchema;
|
|
81
|
+
export declare var GetSession: StaticOperationSchema;
|
|
82
|
+
export declare var PutSession: StaticOperationSchema;
|
|
83
|
+
export declare var RecognizeText: StaticOperationSchema;
|
|
84
|
+
export declare var RecognizeUtterance: StaticOperationSchema;
|
|
85
|
+
export declare var StartConversation: StaticOperationSchema;
|
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.929.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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.928.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/eventstream-handler-node": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-eventstream": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.922.0",
|