@aws-sdk/client-lex-runtime-service 3.41.0 → 3.42.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/CHANGELOG.md +11 -0
- package/dist-cjs/endpoints.js +16 -0
- package/dist-es/endpoints.js +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **clients:** merge default variants by comparing tags ([#3044](https://github.com/aws/aws-sdk-js-v3/issues/3044)) ([d65a310](https://github.com/aws/aws-sdk-js-v3/commit/d65a310ed5a471e72633a18ae6f3c98390e20783))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
7
18
|
|
|
8
19
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -77,6 +77,14 @@ const partitionHash = {
|
|
|
77
77
|
hostname: "runtime-fips.lex.{region}.amazonaws.com",
|
|
78
78
|
tags: ["fips"],
|
|
79
79
|
},
|
|
80
|
+
{
|
|
81
|
+
hostname: "runtime.lex-fips.{region}.api.aws",
|
|
82
|
+
tags: ["dualstack", "fips"],
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
hostname: "runtime.lex.{region}.api.aws",
|
|
86
|
+
tags: ["dualstack"],
|
|
87
|
+
},
|
|
80
88
|
],
|
|
81
89
|
},
|
|
82
90
|
"aws-cn": {
|
|
@@ -141,6 +149,14 @@ const partitionHash = {
|
|
|
141
149
|
hostname: "runtime-fips.lex.{region}.amazonaws.com",
|
|
142
150
|
tags: ["fips"],
|
|
143
151
|
},
|
|
152
|
+
{
|
|
153
|
+
hostname: "runtime.lex-fips.{region}.api.aws",
|
|
154
|
+
tags: ["dualstack", "fips"],
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
hostname: "runtime.lex.{region}.api.aws",
|
|
158
|
+
tags: ["dualstack"],
|
|
159
|
+
},
|
|
144
160
|
],
|
|
145
161
|
},
|
|
146
162
|
};
|
package/dist-es/endpoints.js
CHANGED
|
@@ -75,6 +75,14 @@ var partitionHash = {
|
|
|
75
75
|
hostname: "runtime-fips.lex.{region}.amazonaws.com",
|
|
76
76
|
tags: ["fips"],
|
|
77
77
|
},
|
|
78
|
+
{
|
|
79
|
+
hostname: "runtime.lex-fips.{region}.api.aws",
|
|
80
|
+
tags: ["dualstack", "fips"],
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
hostname: "runtime.lex.{region}.api.aws",
|
|
84
|
+
tags: ["dualstack"],
|
|
85
|
+
},
|
|
78
86
|
],
|
|
79
87
|
},
|
|
80
88
|
"aws-cn": {
|
|
@@ -139,6 +147,14 @@ var partitionHash = {
|
|
|
139
147
|
hostname: "runtime-fips.lex.{region}.amazonaws.com",
|
|
140
148
|
tags: ["fips"],
|
|
141
149
|
},
|
|
150
|
+
{
|
|
151
|
+
hostname: "runtime.lex-fips.{region}.api.aws",
|
|
152
|
+
tags: ["dualstack", "fips"],
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
hostname: "runtime.lex.{region}.api.aws",
|
|
156
|
+
tags: ["dualstack"],
|
|
157
|
+
},
|
|
142
158
|
],
|
|
143
159
|
},
|
|
144
160
|
};
|
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.42.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.42.0",
|
|
26
26
|
"@aws-sdk/config-resolver": "3.40.0",
|
|
27
27
|
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
28
28
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|