@aws-sdk/client-lex-runtime-v2 3.186.0 → 3.186.2
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-types/ts3.4/LexRuntimeV2.d.ts +223 -106
- package/dist-types/ts3.4/LexRuntimeV2Client.d.ts +161 -157
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +48 -35
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +43 -32
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +37 -32
- package/dist-types/ts3.4/commands/RecognizeTextCommand.d.ts +65 -35
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +108 -47
- package/dist-types/ts3.4/commands/StartConversationCommand.d.ts +94 -36
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- 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/LexRuntimeV2ServiceException.d.ts +10 -7
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2056 -852
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +20 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +42 -69
- package/dist-types/ts3.4/runtimeConfig.d.ts +42 -69
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +41 -70
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -10
- package/package.json +2 -2
|
@@ -1,80 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} from "
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} from "
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
import {
|
|
22
|
-
RecognizeTextCommandInput,
|
|
23
|
-
RecognizeTextCommandOutput,
|
|
24
|
-
} from "../commands/RecognizeTextCommand";
|
|
25
|
-
import {
|
|
26
|
-
RecognizeUtteranceCommandInput,
|
|
27
|
-
RecognizeUtteranceCommandOutput,
|
|
28
|
-
} from "../commands/RecognizeUtteranceCommand";
|
|
29
|
-
import {
|
|
30
|
-
StartConversationCommandInput,
|
|
31
|
-
StartConversationCommandOutput,
|
|
32
|
-
} from "../commands/StartConversationCommand";
|
|
33
|
-
export declare const serializeAws_restJson1DeleteSessionCommand: (
|
|
34
|
-
input: DeleteSessionCommandInput,
|
|
35
|
-
context: __SerdeContext
|
|
36
|
-
) => Promise<__HttpRequest>;
|
|
37
|
-
export declare const serializeAws_restJson1GetSessionCommand: (
|
|
38
|
-
input: GetSessionCommandInput,
|
|
39
|
-
context: __SerdeContext
|
|
40
|
-
) => Promise<__HttpRequest>;
|
|
41
|
-
export declare const serializeAws_restJson1PutSessionCommand: (
|
|
42
|
-
input: PutSessionCommandInput,
|
|
43
|
-
context: __SerdeContext
|
|
44
|
-
) => Promise<__HttpRequest>;
|
|
45
|
-
export declare const serializeAws_restJson1RecognizeTextCommand: (
|
|
46
|
-
input: RecognizeTextCommandInput,
|
|
47
|
-
context: __SerdeContext
|
|
48
|
-
) => Promise<__HttpRequest>;
|
|
49
|
-
export declare const serializeAws_restJson1RecognizeUtteranceCommand: (
|
|
50
|
-
input: RecognizeUtteranceCommandInput,
|
|
51
|
-
context: __SerdeContext
|
|
52
|
-
) => Promise<__HttpRequest>;
|
|
53
|
-
export declare const serializeAws_restJson1StartConversationCommand: (
|
|
54
|
-
input: StartConversationCommandInput,
|
|
55
|
-
context: __SerdeContext & __EventStreamSerdeContext
|
|
56
|
-
) => Promise<__HttpRequest>;
|
|
57
|
-
export declare const deserializeAws_restJson1DeleteSessionCommand: (
|
|
58
|
-
output: __HttpResponse,
|
|
59
|
-
context: __SerdeContext
|
|
60
|
-
) => Promise<DeleteSessionCommandOutput>;
|
|
61
|
-
export declare const deserializeAws_restJson1GetSessionCommand: (
|
|
62
|
-
output: __HttpResponse,
|
|
63
|
-
context: __SerdeContext
|
|
64
|
-
) => Promise<GetSessionCommandOutput>;
|
|
65
|
-
export declare const deserializeAws_restJson1PutSessionCommand: (
|
|
66
|
-
output: __HttpResponse,
|
|
67
|
-
context: __SerdeContext
|
|
68
|
-
) => Promise<PutSessionCommandOutput>;
|
|
69
|
-
export declare const deserializeAws_restJson1RecognizeTextCommand: (
|
|
70
|
-
output: __HttpResponse,
|
|
71
|
-
context: __SerdeContext
|
|
72
|
-
) => Promise<RecognizeTextCommandOutput>;
|
|
73
|
-
export declare const deserializeAws_restJson1RecognizeUtteranceCommand: (
|
|
74
|
-
output: __HttpResponse,
|
|
75
|
-
context: __SerdeContext
|
|
76
|
-
) => Promise<RecognizeUtteranceCommandOutput>;
|
|
77
|
-
export declare const deserializeAws_restJson1StartConversationCommand: (
|
|
78
|
-
output: __HttpResponse,
|
|
79
|
-
context: __SerdeContext & __EventStreamSerdeContext
|
|
80
|
-
) => Promise<StartConversationCommandOutput>;
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "../commands/DeleteSessionCommand";
|
|
4
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
|
|
5
|
+
import { PutSessionCommandInput, PutSessionCommandOutput } from "../commands/PutSessionCommand";
|
|
6
|
+
import { RecognizeTextCommandInput, RecognizeTextCommandOutput } from "../commands/RecognizeTextCommand";
|
|
7
|
+
import { RecognizeUtteranceCommandInput, RecognizeUtteranceCommandOutput } from "../commands/RecognizeUtteranceCommand";
|
|
8
|
+
import { StartConversationCommandInput, StartConversationCommandOutput } from "../commands/StartConversationCommand";
|
|
9
|
+
export declare const serializeAws_restJson1DeleteSessionCommand: (input: DeleteSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const serializeAws_restJson1PutSessionCommand: (input: PutSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1RecognizeTextCommand: (input: RecognizeTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const serializeAws_restJson1RecognizeUtteranceCommand: (input: RecognizeUtteranceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const serializeAws_restJson1StartConversationCommand: (input: StartConversationCommandInput, context: __SerdeContext & __EventStreamSerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const deserializeAws_restJson1DeleteSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSessionCommandOutput>;
|
|
16
|
+
export declare const deserializeAws_restJson1GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
|
|
17
|
+
export declare const deserializeAws_restJson1PutSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSessionCommandOutput>;
|
|
18
|
+
export declare const deserializeAws_restJson1RecognizeTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RecognizeTextCommandOutput>;
|
|
19
|
+
export declare const deserializeAws_restJson1RecognizeUtteranceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RecognizeUtteranceCommandOutput>;
|
|
20
|
+
export declare const deserializeAws_restJson1StartConversationCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise<StartConversationCommandOutput>;
|
|
@@ -1,69 +1,42 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
input: any
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import("@aws-sdk/types").
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
| string
|
|
44
|
-
| import("@aws-sdk/types").Endpoint
|
|
45
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
-
| undefined;
|
|
47
|
-
tls?: boolean | undefined;
|
|
48
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
-
credentials?:
|
|
50
|
-
| import("@aws-sdk/types").Credentials
|
|
51
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
-
| undefined;
|
|
53
|
-
signer?:
|
|
54
|
-
| import("@aws-sdk/types").RequestSigner
|
|
55
|
-
| ((
|
|
56
|
-
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
57
|
-
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
58
|
-
| undefined;
|
|
59
|
-
signingEscapePath?: boolean | undefined;
|
|
60
|
-
systemClockOffset?: number | undefined;
|
|
61
|
-
signingRegion?: string | undefined;
|
|
62
|
-
signerConstructor?:
|
|
63
|
-
| (new (
|
|
64
|
-
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
65
|
-
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
66
|
-
) => import("@aws-sdk/types").RequestSigner)
|
|
67
|
-
| undefined;
|
|
68
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
69
|
-
};
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
|
+
eventStreamPayloadHandlerProvider: import("@aws-sdk/types").EventStreamPayloadHandlerProvider;
|
|
15
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
18
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
21
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
24
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
apiVersion: string;
|
|
27
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
28
|
+
disableHostPrefix: boolean;
|
|
29
|
+
logger: import("@aws-sdk/types").Logger;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
32
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -1,69 +1,42 @@
|
|
|
1
|
-
import { NodeHttp2Handler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
input: any
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import("@aws-sdk/types").
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
| string
|
|
44
|
-
| import("@aws-sdk/types").Endpoint
|
|
45
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
-
| undefined;
|
|
47
|
-
tls?: boolean | undefined;
|
|
48
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
-
credentials?:
|
|
50
|
-
| import("@aws-sdk/types").Credentials
|
|
51
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
-
| undefined;
|
|
53
|
-
signer?:
|
|
54
|
-
| import("@aws-sdk/types").RequestSigner
|
|
55
|
-
| ((
|
|
56
|
-
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
57
|
-
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
58
|
-
| undefined;
|
|
59
|
-
signingEscapePath?: boolean | undefined;
|
|
60
|
-
systemClockOffset?: number | undefined;
|
|
61
|
-
signingRegion?: string | undefined;
|
|
62
|
-
signerConstructor?:
|
|
63
|
-
| (new (
|
|
64
|
-
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
65
|
-
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
66
|
-
) => import("@aws-sdk/types").RequestSigner)
|
|
67
|
-
| undefined;
|
|
68
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
69
|
-
};
|
|
1
|
+
import { NodeHttp2Handler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
|
+
eventStreamPayloadHandlerProvider: import("@aws-sdk/types").EventStreamPayloadHandlerProvider;
|
|
15
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
21
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
24
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
apiVersion: string;
|
|
27
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
28
|
+
disableHostPrefix: boolean;
|
|
29
|
+
logger: import("@aws-sdk/types").Logger;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
32
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -1,70 +1,41 @@
|
|
|
1
|
-
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
import("@aws-sdk/types").
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
| import("@aws-sdk/types").
|
|
41
|
-
|
|
42
|
-
>;
|
|
43
|
-
endpoint?:
|
|
44
|
-
| string
|
|
45
|
-
| import("@aws-sdk/types").Endpoint
|
|
46
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
-
| undefined;
|
|
48
|
-
tls?: boolean | undefined;
|
|
49
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
-
credentials?:
|
|
51
|
-
| import("@aws-sdk/types").Credentials
|
|
52
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
-
| undefined;
|
|
54
|
-
signer?:
|
|
55
|
-
| import("@aws-sdk/types").RequestSigner
|
|
56
|
-
| ((
|
|
57
|
-
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
58
|
-
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
59
|
-
| undefined;
|
|
60
|
-
signingEscapePath?: boolean | undefined;
|
|
61
|
-
systemClockOffset?: number | undefined;
|
|
62
|
-
signingRegion?: string | undefined;
|
|
63
|
-
signerConstructor?:
|
|
64
|
-
| (new (
|
|
65
|
-
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
66
|
-
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
67
|
-
) => import("@aws-sdk/types").RequestSigner)
|
|
68
|
-
| undefined;
|
|
69
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
70
|
-
};
|
|
1
|
+
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
eventStreamPayloadHandlerProvider: import("@aws-sdk/types").EventStreamPayloadHandlerProvider;
|
|
8
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
9
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
10
|
+
apiVersion: string;
|
|
11
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
14
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
15
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
16
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
18
|
+
disableHostPrefix: boolean;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
21
|
+
logger: import("@aws-sdk/types").Logger;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
24
|
+
serviceId: string;
|
|
25
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
26
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
29
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
30
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
31
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeV2ClientConfig) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
logger: __Logger;
|
|
10
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
+
serviceId: string;
|
|
12
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
+
};
|
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.186.
|
|
4
|
+
"version": "3.186.2",
|
|
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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.186.
|
|
22
|
+
"@aws-sdk/client-sts": "3.186.2",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.186.0",
|
|
24
24
|
"@aws-sdk/credential-provider-node": "3.186.0",
|
|
25
25
|
"@aws-sdk/eventstream-handler-node": "3.186.0",
|