@aws-sdk/client-lex-runtime-service 3.186.0 → 3.186.1
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/LexRuntimeService.d.ts +210 -89
- package/dist-types/ts3.4/LexRuntimeServiceClient.d.ts +160 -135
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +36 -35
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +36 -32
- package/dist-types/ts3.4/commands/PostContentCommand.d.ts +122 -39
- package/dist-types/ts3.4/commands/PostTextCommand.d.ts +110 -32
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +39 -32
- 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 +10 -7
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1642 -330
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +17 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +40 -69
- package/dist-types/ts3.4/runtimeConfig.d.ts +40 -69
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +39 -70
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -12
- package/package.json +2 -2
|
@@ -1,65 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} from "
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
PostTextCommandInput,
|
|
20
|
-
PostTextCommandOutput,
|
|
21
|
-
} from "../commands/PostTextCommand";
|
|
22
|
-
import {
|
|
23
|
-
PutSessionCommandInput,
|
|
24
|
-
PutSessionCommandOutput,
|
|
25
|
-
} from "../commands/PutSessionCommand";
|
|
26
|
-
export declare const serializeAws_restJson1DeleteSessionCommand: (
|
|
27
|
-
input: DeleteSessionCommandInput,
|
|
28
|
-
context: __SerdeContext
|
|
29
|
-
) => Promise<__HttpRequest>;
|
|
30
|
-
export declare const serializeAws_restJson1GetSessionCommand: (
|
|
31
|
-
input: GetSessionCommandInput,
|
|
32
|
-
context: __SerdeContext
|
|
33
|
-
) => Promise<__HttpRequest>;
|
|
34
|
-
export declare const serializeAws_restJson1PostContentCommand: (
|
|
35
|
-
input: PostContentCommandInput,
|
|
36
|
-
context: __SerdeContext
|
|
37
|
-
) => Promise<__HttpRequest>;
|
|
38
|
-
export declare const serializeAws_restJson1PostTextCommand: (
|
|
39
|
-
input: PostTextCommandInput,
|
|
40
|
-
context: __SerdeContext
|
|
41
|
-
) => Promise<__HttpRequest>;
|
|
42
|
-
export declare const serializeAws_restJson1PutSessionCommand: (
|
|
43
|
-
input: PutSessionCommandInput,
|
|
44
|
-
context: __SerdeContext
|
|
45
|
-
) => Promise<__HttpRequest>;
|
|
46
|
-
export declare const deserializeAws_restJson1DeleteSessionCommand: (
|
|
47
|
-
output: __HttpResponse,
|
|
48
|
-
context: __SerdeContext
|
|
49
|
-
) => Promise<DeleteSessionCommandOutput>;
|
|
50
|
-
export declare const deserializeAws_restJson1GetSessionCommand: (
|
|
51
|
-
output: __HttpResponse,
|
|
52
|
-
context: __SerdeContext
|
|
53
|
-
) => Promise<GetSessionCommandOutput>;
|
|
54
|
-
export declare const deserializeAws_restJson1PostContentCommand: (
|
|
55
|
-
output: __HttpResponse,
|
|
56
|
-
context: __SerdeContext
|
|
57
|
-
) => Promise<PostContentCommandOutput>;
|
|
58
|
-
export declare const deserializeAws_restJson1PostTextCommand: (
|
|
59
|
-
output: __HttpResponse,
|
|
60
|
-
context: __SerdeContext
|
|
61
|
-
) => Promise<PostTextCommandOutput>;
|
|
62
|
-
export declare const deserializeAws_restJson1PutSessionCommand: (
|
|
63
|
-
output: __HttpResponse,
|
|
64
|
-
context: __SerdeContext
|
|
65
|
-
) => Promise<PutSessionCommandOutput>;
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "../commands/DeleteSessionCommand";
|
|
4
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
|
|
5
|
+
import { PostContentCommandInput, PostContentCommandOutput } from "../commands/PostContentCommand";
|
|
6
|
+
import { PostTextCommandInput, PostTextCommandOutput } from "../commands/PostTextCommand";
|
|
7
|
+
import { PutSessionCommandInput, PutSessionCommandOutput } from "../commands/PutSessionCommand";
|
|
8
|
+
export declare const serializeAws_restJson1DeleteSessionCommand: (input: DeleteSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
+
export declare const serializeAws_restJson1GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1PostContentCommand: (input: PostContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const serializeAws_restJson1PostTextCommand: (input: PostTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1PutSessionCommand: (input: PutSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const deserializeAws_restJson1DeleteSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSessionCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
|
|
15
|
+
export declare const deserializeAws_restJson1PostContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostContentCommandOutput>;
|
|
16
|
+
export declare const deserializeAws_restJson1PostTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostTextCommandOutput>;
|
|
17
|
+
export declare const deserializeAws_restJson1PutSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSessionCommandOutput>;
|
|
@@ -1,69 +1,40 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
import("@aws-sdk/types").
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
-
endpoint?:
|
|
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 { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeServiceClientConfig) => {
|
|
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
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
15
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
apiVersion: string;
|
|
25
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
30
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
31
|
+
tls?: boolean | undefined;
|
|
32
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
|
+
signingEscapePath?: boolean | undefined;
|
|
36
|
+
systemClockOffset?: number | undefined;
|
|
37
|
+
signingRegion?: string | undefined;
|
|
38
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
39
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
40
|
+
};
|
|
@@ -1,69 +1,40 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
import("@aws-sdk/types").
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
-
endpoint?:
|
|
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 { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeServiceClientConfig) => {
|
|
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
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
15
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
apiVersion: string;
|
|
25
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
30
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
31
|
+
tls?: boolean | undefined;
|
|
32
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
|
+
signingEscapePath?: boolean | undefined;
|
|
36
|
+
systemClockOffset?: number | undefined;
|
|
37
|
+
signingRegion?: string | undefined;
|
|
38
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
39
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
40
|
+
};
|
|
@@ -1,70 +1,39 @@
|
|
|
1
|
-
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
| import("@aws-sdk/types").Provider<
|
|
41
|
-
import("@aws-sdk/smithy-client").DefaultsMode
|
|
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 { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: LexRuntimeServiceClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
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;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
|
+
tls?: boolean | undefined;
|
|
31
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
|
+
signingEscapePath?: boolean | undefined;
|
|
35
|
+
systemClockOffset?: number | undefined;
|
|
36
|
+
signingRegion?: string | undefined;
|
|
37
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
38
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
39
|
+
};
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: LexRuntimeServiceClientConfig) => {
|
|
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-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.186.
|
|
4
|
+
"version": "3.186.1",
|
|
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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.186.
|
|
24
|
+
"@aws-sdk/client-sts": "3.186.1",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.186.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.186.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.186.0",
|