@aws-sdk/client-lex-runtime-service 3.533.0 → 3.535.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-types/LexRuntimeService.d.ts +1 -1
- package/dist-types/LexRuntimeServiceClient.d.ts +1 -1
- package/dist-types/commands/DeleteSessionCommand.d.ts +2 -1
- package/dist-types/commands/GetSessionCommand.d.ts +2 -1
- package/dist-types/commands/PostContentCommand.d.ts +2 -1
- package/dist-types/commands/PostTextCommand.d.ts +2 -1
- package/dist-types/commands/PutSessionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +140 -140
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PostContentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PostTextCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +9 -0
- package/package.json +41 -41
|
@@ -24,6 +24,15 @@ declare const DeleteSessionCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteSessionCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteSessionCommandInput,
|
|
31
|
+
DeleteSessionCommandOutput,
|
|
32
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteSessionCommand extends DeleteSessionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetSessionCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetSessionCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetSessionCommandInput,
|
|
28
|
+
GetSessionCommandOutput,
|
|
29
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetSessionCommand extends GetSessionCommand_base {}
|
|
@@ -36,6 +36,15 @@ declare const PostContentCommand_base: {
|
|
|
36
36
|
ServiceInputTypes,
|
|
37
37
|
ServiceOutputTypes
|
|
38
38
|
>;
|
|
39
|
+
new (
|
|
40
|
+
__0_0: PostContentCommandInput
|
|
41
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
42
|
+
PostContentCommandInput,
|
|
43
|
+
PostContentCommandOutput,
|
|
44
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
45
|
+
ServiceInputTypes,
|
|
46
|
+
ServiceOutputTypes
|
|
47
|
+
>;
|
|
39
48
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
40
49
|
};
|
|
41
50
|
export declare class PostContentCommand extends PostContentCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const PostTextCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: PostTextCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
PostTextCommandInput,
|
|
28
|
+
PostTextCommandOutput,
|
|
29
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class PostTextCommand extends PostTextCommand_base {}
|
|
@@ -29,6 +29,15 @@ declare const PutSessionCommand_base: {
|
|
|
29
29
|
ServiceInputTypes,
|
|
30
30
|
ServiceOutputTypes
|
|
31
31
|
>;
|
|
32
|
+
new (
|
|
33
|
+
__0_0: PutSessionCommandInput
|
|
34
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
35
|
+
PutSessionCommandInput,
|
|
36
|
+
PutSessionCommandOutput,
|
|
37
|
+
LexRuntimeServiceClientResolvedConfig,
|
|
38
|
+
ServiceInputTypes,
|
|
39
|
+
ServiceOutputTypes
|
|
40
|
+
>;
|
|
32
41
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
42
|
};
|
|
34
43
|
export declare class PutSessionCommand extends PutSessionCommand_base {}
|
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.
|
|
4
|
+
"version": "3.535.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-service",
|
|
@@ -22,48 +22,48 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
-
"@aws-sdk/core": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.
|
|
38
|
-
"@smithy/core": "^1.
|
|
39
|
-
"@smithy/fetch-http-handler": "^2.
|
|
40
|
-
"@smithy/hash-node": "^2.
|
|
41
|
-
"@smithy/invalid-dependency": "^2.
|
|
42
|
-
"@smithy/middleware-content-length": "^2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^2.
|
|
44
|
-
"@smithy/middleware-retry": "^2.
|
|
45
|
-
"@smithy/middleware-serde": "^2.
|
|
46
|
-
"@smithy/middleware-stack": "^2.
|
|
47
|
-
"@smithy/node-config-provider": "^2.
|
|
48
|
-
"@smithy/node-http-handler": "^2.
|
|
49
|
-
"@smithy/protocol-http": "^3.
|
|
50
|
-
"@smithy/smithy-client": "^2.
|
|
51
|
-
"@smithy/types": "^2.
|
|
52
|
-
"@smithy/url-parser": "^2.
|
|
53
|
-
"@smithy/util-base64": "^2.
|
|
54
|
-
"@smithy/util-body-length-browser": "^2.
|
|
55
|
-
"@smithy/util-body-length-node": "^2.
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
58
|
-
"@smithy/util-endpoints": "^1.
|
|
59
|
-
"@smithy/util-middleware": "^2.
|
|
60
|
-
"@smithy/util-retry": "^2.
|
|
61
|
-
"@smithy/util-stream": "^2.
|
|
62
|
-
"@smithy/util-utf8": "^2.
|
|
63
|
-
"tslib": "^2.
|
|
25
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
26
|
+
"@aws-sdk/core": "3.535.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
33
|
+
"@aws-sdk/types": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
38
|
+
"@smithy/core": "^1.4.0",
|
|
39
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
40
|
+
"@smithy/hash-node": "^2.2.0",
|
|
41
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
42
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
44
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
45
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
46
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
47
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
48
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
49
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
50
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
51
|
+
"@smithy/types": "^2.12.0",
|
|
52
|
+
"@smithy/url-parser": "^2.2.0",
|
|
53
|
+
"@smithy/util-base64": "^2.3.0",
|
|
54
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
58
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
59
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
60
|
+
"@smithy/util-retry": "^2.2.0",
|
|
61
|
+
"@smithy/util-stream": "^2.2.0",
|
|
62
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
63
|
+
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
66
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
67
67
|
"@tsconfig/node14": "1.0.3",
|
|
68
68
|
"@types/chai": "^4.2.11",
|
|
69
69
|
"@types/mocha": "^8.0.4",
|