@aws-sdk/client-lex-runtime-service 3.306.0 → 3.310.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/commands/DeleteSessionCommand.js +2 -2
- package/dist-cjs/commands/GetSessionCommand.js +2 -2
- package/dist-cjs/commands/PostContentCommand.js +2 -2
- package/dist-cjs/commands/PostTextCommand.js +2 -2
- package/dist-cjs/commands/PutSessionCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +140 -164
- package/dist-es/commands/DeleteSessionCommand.js +3 -3
- package/dist-es/commands/GetSessionCommand.js +3 -3
- package/dist-es/commands/PostContentCommand.js +3 -3
- package/dist-es/commands/PostTextCommand.js +3 -3
- package/dist-es/commands/PutSessionCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +129 -153
- package/dist-types/protocols/Aws_restJson1.d.ts +40 -10
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +10 -10
- package/package.json +37 -37
|
@@ -5,13 +5,43 @@ import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/Get
|
|
|
5
5
|
import { PostContentCommandInput, PostContentCommandOutput } from "../commands/PostContentCommand";
|
|
6
6
|
import { PostTextCommandInput, PostTextCommandOutput } from "../commands/PostTextCommand";
|
|
7
7
|
import { PutSessionCommandInput, PutSessionCommandOutput } from "../commands/PutSessionCommand";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export declare const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export declare const
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
/**
|
|
9
|
+
* serializeAws_restJson1DeleteSessionCommand
|
|
10
|
+
*/
|
|
11
|
+
export declare const se_DeleteSessionCommand: (input: DeleteSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
/**
|
|
13
|
+
* serializeAws_restJson1GetSessionCommand
|
|
14
|
+
*/
|
|
15
|
+
export declare const se_GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
/**
|
|
17
|
+
* serializeAws_restJson1PostContentCommand
|
|
18
|
+
*/
|
|
19
|
+
export declare const se_PostContentCommand: (input: PostContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
/**
|
|
21
|
+
* serializeAws_restJson1PostTextCommand
|
|
22
|
+
*/
|
|
23
|
+
export declare const se_PostTextCommand: (input: PostTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
/**
|
|
25
|
+
* serializeAws_restJson1PutSessionCommand
|
|
26
|
+
*/
|
|
27
|
+
export declare const se_PutSessionCommand: (input: PutSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
/**
|
|
29
|
+
* deserializeAws_restJson1DeleteSessionCommand
|
|
30
|
+
*/
|
|
31
|
+
export declare const de_DeleteSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSessionCommandOutput>;
|
|
32
|
+
/**
|
|
33
|
+
* deserializeAws_restJson1GetSessionCommand
|
|
34
|
+
*/
|
|
35
|
+
export declare const de_GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
|
|
36
|
+
/**
|
|
37
|
+
* deserializeAws_restJson1PostContentCommand
|
|
38
|
+
*/
|
|
39
|
+
export declare const de_PostContentCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<PostContentCommandOutput>;
|
|
40
|
+
/**
|
|
41
|
+
* deserializeAws_restJson1PostTextCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const de_PostTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostTextCommandOutput>;
|
|
44
|
+
/**
|
|
45
|
+
* deserializeAws_restJson1PutSessionCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const de_PutSessionCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<PutSessionCommandOutput>;
|
|
@@ -26,43 +26,43 @@ import {
|
|
|
26
26
|
PutSessionCommandInput,
|
|
27
27
|
PutSessionCommandOutput,
|
|
28
28
|
} from "../commands/PutSessionCommand";
|
|
29
|
-
export declare const
|
|
29
|
+
export declare const se_DeleteSessionCommand: (
|
|
30
30
|
input: DeleteSessionCommandInput,
|
|
31
31
|
context: __SerdeContext
|
|
32
32
|
) => Promise<__HttpRequest>;
|
|
33
|
-
export declare const
|
|
33
|
+
export declare const se_GetSessionCommand: (
|
|
34
34
|
input: GetSessionCommandInput,
|
|
35
35
|
context: __SerdeContext
|
|
36
36
|
) => Promise<__HttpRequest>;
|
|
37
|
-
export declare const
|
|
37
|
+
export declare const se_PostContentCommand: (
|
|
38
38
|
input: PostContentCommandInput,
|
|
39
39
|
context: __SerdeContext
|
|
40
40
|
) => Promise<__HttpRequest>;
|
|
41
|
-
export declare const
|
|
41
|
+
export declare const se_PostTextCommand: (
|
|
42
42
|
input: PostTextCommandInput,
|
|
43
43
|
context: __SerdeContext
|
|
44
44
|
) => Promise<__HttpRequest>;
|
|
45
|
-
export declare const
|
|
45
|
+
export declare const se_PutSessionCommand: (
|
|
46
46
|
input: PutSessionCommandInput,
|
|
47
47
|
context: __SerdeContext
|
|
48
48
|
) => Promise<__HttpRequest>;
|
|
49
|
-
export declare const
|
|
49
|
+
export declare const de_DeleteSessionCommand: (
|
|
50
50
|
output: __HttpResponse,
|
|
51
51
|
context: __SerdeContext
|
|
52
52
|
) => Promise<DeleteSessionCommandOutput>;
|
|
53
|
-
export declare const
|
|
53
|
+
export declare const de_GetSessionCommand: (
|
|
54
54
|
output: __HttpResponse,
|
|
55
55
|
context: __SerdeContext
|
|
56
56
|
) => Promise<GetSessionCommandOutput>;
|
|
57
|
-
export declare const
|
|
57
|
+
export declare const de_PostContentCommand: (
|
|
58
58
|
output: __HttpResponse,
|
|
59
59
|
context: __SerdeContext & __SdkStreamSerdeContext
|
|
60
60
|
) => Promise<PostContentCommandOutput>;
|
|
61
|
-
export declare const
|
|
61
|
+
export declare const de_PostTextCommand: (
|
|
62
62
|
output: __HttpResponse,
|
|
63
63
|
context: __SerdeContext
|
|
64
64
|
) => Promise<PostTextCommandOutput>;
|
|
65
|
-
export declare const
|
|
65
|
+
export declare const de_PutSessionCommand: (
|
|
66
66
|
output: __HttpResponse,
|
|
67
67
|
context: __SerdeContext & __SdkStreamSerdeContext
|
|
68
68
|
) => Promise<PutSessionCommandOutput>;
|
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.310.0",
|
|
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",
|
|
@@ -23,44 +23,44 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/config-resolver": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
29
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
30
|
-
"@aws-sdk/hash-node": "3.
|
|
31
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
32
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
33
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
34
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
35
|
-
"@aws-sdk/middleware-logger": "3.
|
|
36
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
37
|
-
"@aws-sdk/middleware-retry": "3.
|
|
38
|
-
"@aws-sdk/middleware-serde": "3.
|
|
39
|
-
"@aws-sdk/middleware-signing": "3.
|
|
40
|
-
"@aws-sdk/middleware-stack": "3.
|
|
41
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
42
|
-
"@aws-sdk/node-config-provider": "3.
|
|
43
|
-
"@aws-sdk/node-http-handler": "3.
|
|
44
|
-
"@aws-sdk/protocol-http": "3.
|
|
45
|
-
"@aws-sdk/smithy-client": "3.
|
|
46
|
-
"@aws-sdk/types": "3.
|
|
47
|
-
"@aws-sdk/url-parser": "3.
|
|
48
|
-
"@aws-sdk/util-base64": "3.
|
|
49
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
50
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
52
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
53
|
-
"@aws-sdk/util-endpoints": "3.
|
|
54
|
-
"@aws-sdk/util-retry": "3.
|
|
55
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
56
|
-
"@aws-sdk/util-stream-node": "3.
|
|
57
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
58
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
59
|
-
"@aws-sdk/util-utf8": "3.
|
|
26
|
+
"@aws-sdk/client-sts": "3.310.0",
|
|
27
|
+
"@aws-sdk/config-resolver": "3.310.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.310.0",
|
|
29
|
+
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
30
|
+
"@aws-sdk/hash-node": "3.310.0",
|
|
31
|
+
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
32
|
+
"@aws-sdk/middleware-content-length": "3.310.0",
|
|
33
|
+
"@aws-sdk/middleware-endpoint": "3.310.0",
|
|
34
|
+
"@aws-sdk/middleware-host-header": "3.310.0",
|
|
35
|
+
"@aws-sdk/middleware-logger": "3.310.0",
|
|
36
|
+
"@aws-sdk/middleware-recursion-detection": "3.310.0",
|
|
37
|
+
"@aws-sdk/middleware-retry": "3.310.0",
|
|
38
|
+
"@aws-sdk/middleware-serde": "3.310.0",
|
|
39
|
+
"@aws-sdk/middleware-signing": "3.310.0",
|
|
40
|
+
"@aws-sdk/middleware-stack": "3.310.0",
|
|
41
|
+
"@aws-sdk/middleware-user-agent": "3.310.0",
|
|
42
|
+
"@aws-sdk/node-config-provider": "3.310.0",
|
|
43
|
+
"@aws-sdk/node-http-handler": "3.310.0",
|
|
44
|
+
"@aws-sdk/protocol-http": "3.310.0",
|
|
45
|
+
"@aws-sdk/smithy-client": "3.310.0",
|
|
46
|
+
"@aws-sdk/types": "3.310.0",
|
|
47
|
+
"@aws-sdk/url-parser": "3.310.0",
|
|
48
|
+
"@aws-sdk/util-base64": "3.310.0",
|
|
49
|
+
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
50
|
+
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-browser": "3.310.0",
|
|
52
|
+
"@aws-sdk/util-defaults-mode-node": "3.310.0",
|
|
53
|
+
"@aws-sdk/util-endpoints": "3.310.0",
|
|
54
|
+
"@aws-sdk/util-retry": "3.310.0",
|
|
55
|
+
"@aws-sdk/util-stream-browser": "3.310.0",
|
|
56
|
+
"@aws-sdk/util-stream-node": "3.310.0",
|
|
57
|
+
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
58
|
+
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
59
|
+
"@aws-sdk/util-utf8": "3.310.0",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
63
|
+
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/chai": "^4.2.11",
|
|
66
66
|
"@types/mocha": "^8.0.4",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
84
|
"files": [
|
|
85
|
-
"dist
|
|
85
|
+
"dist-*/**"
|
|
86
86
|
],
|
|
87
87
|
"author": {
|
|
88
88
|
"name": "AWS SDK for JavaScript Team",
|