@aws-sdk/client-lex-runtime-v2 3.1044.0 → 3.1046.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/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +30 -31
- package/dist-cjs/models/LexRuntimeV2ServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +15 -17
- package/dist-cjs/runtimeConfig.js +20 -24
- package/dist-cjs/runtimeConfig.native.js +2 -2
- package/dist-cjs/runtimeConfig.shared.js +10 -12
- package/dist-es/LexRuntimeV2.js +1 -1
- package/dist-es/LexRuntimeV2Client.js +6 -6
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/DeleteSessionCommand.js +2 -2
- package/dist-es/commands/GetSessionCommand.js +2 -2
- package/dist-es/commands/PutSessionCommand.js +2 -2
- package/dist-es/commands/RecognizeTextCommand.js +2 -2
- package/dist-es/commands/RecognizeUtteranceCommand.js +2 -2
- package/dist-es/commands/StartConversationCommand.js +2 -2
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/LexRuntimeV2ServiceException.js +1 -1
- package/dist-es/runtimeConfig.browser.js +5 -7
- package/dist-es/runtimeConfig.js +5 -9
- package/dist-es/runtimeConfig.native.js +1 -1
- package/dist-es/runtimeConfig.shared.js +3 -5
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-types/LexRuntimeV2Client.d.ts +6 -6
- package/dist-types/commands/DeleteSessionCommand.d.ts +6 -4
- package/dist-types/commands/GetSessionCommand.d.ts +6 -4
- package/dist-types/commands/PutSessionCommand.d.ts +6 -4
- package/dist-types/commands/RecognizeTextCommand.d.ts +6 -4
- package/dist-types/commands/RecognizeUtteranceCommand.d.ts +6 -4
- package/dist-types/commands/StartConversationCommand.d.ts +6 -4
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/LexRuntimeV2ServiceException.d.ts +1 -1
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/LexRuntimeV2Client.d.ts +12 -18
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RecognizeTextCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/StartConversationCommand.d.ts +6 -4
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/LexRuntimeV2ServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +16 -41
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.1046.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lex-runtime-v2",
|
|
@@ -25,52 +25,27 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
28
|
-
"@aws-sdk/core": "^3.974.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
-
"@aws-sdk/eventstream-handler-node": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-eventstream": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
28
|
+
"@aws-sdk/core": "^3.974.9",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.40",
|
|
30
|
+
"@aws-sdk/eventstream-handler-node": "^3.972.15",
|
|
31
|
+
"@aws-sdk/middleware-eventstream": "^3.972.11",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "^3.972.11",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
36
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.12",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.39",
|
|
36
|
+
"@aws-sdk/region-config-resolver": "^3.972.14",
|
|
37
37
|
"@aws-sdk/types": "^3.973.8",
|
|
38
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
39
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
41
|
-
"@smithy/
|
|
42
|
-
"@smithy/
|
|
43
|
-
"@smithy/
|
|
44
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.14",
|
|
45
|
-
"@smithy/eventstream-serde-node": "^4.2.14",
|
|
46
|
-
"@smithy/fetch-http-handler": "^5.3.17",
|
|
47
|
-
"@smithy/hash-node": "^4.2.14",
|
|
48
|
-
"@smithy/invalid-dependency": "^4.2.14",
|
|
49
|
-
"@smithy/middleware-content-length": "^4.2.14",
|
|
50
|
-
"@smithy/middleware-endpoint": "^4.4.32",
|
|
51
|
-
"@smithy/middleware-retry": "^4.5.7",
|
|
52
|
-
"@smithy/middleware-serde": "^4.2.20",
|
|
53
|
-
"@smithy/middleware-stack": "^4.2.14",
|
|
54
|
-
"@smithy/node-config-provider": "^4.3.14",
|
|
55
|
-
"@smithy/node-http-handler": "^4.6.1",
|
|
56
|
-
"@smithy/protocol-http": "^5.3.14",
|
|
57
|
-
"@smithy/smithy-client": "^4.12.13",
|
|
38
|
+
"@aws-sdk/util-endpoints": "^3.996.9",
|
|
39
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.11",
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.25",
|
|
41
|
+
"@smithy/core": "^3.24.1",
|
|
42
|
+
"@smithy/fetch-http-handler": "^5.4.1",
|
|
43
|
+
"@smithy/node-http-handler": "^4.7.1",
|
|
58
44
|
"@smithy/types": "^4.14.1",
|
|
59
|
-
"@smithy/url-parser": "^4.2.14",
|
|
60
|
-
"@smithy/util-base64": "^4.3.2",
|
|
61
|
-
"@smithy/util-body-length-browser": "^4.2.2",
|
|
62
|
-
"@smithy/util-body-length-node": "^4.2.3",
|
|
63
|
-
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
64
|
-
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
65
|
-
"@smithy/util-endpoints": "^3.4.2",
|
|
66
|
-
"@smithy/util-middleware": "^4.2.14",
|
|
67
|
-
"@smithy/util-retry": "^4.3.6",
|
|
68
|
-
"@smithy/util-stream": "^4.5.25",
|
|
69
|
-
"@smithy/util-utf8": "^4.2.2",
|
|
70
45
|
"tslib": "^2.6.2"
|
|
71
46
|
},
|
|
72
47
|
"devDependencies": {
|
|
73
|
-
"@smithy/snapshot-testing": "^2.
|
|
48
|
+
"@smithy/snapshot-testing": "^2.1.1",
|
|
74
49
|
"@tsconfig/node20": "20.1.8",
|
|
75
50
|
"@types/node": "^20.14.8",
|
|
76
51
|
"concurrently": "7.0.0",
|