@aws-sdk/client-support-app 3.197.0 → 3.199.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 CHANGED
@@ -3,6 +3,25 @@
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.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-support-app:** Fix incorrect endpoint-prefix in endpoint ruleset. ([2955f67](https://github.com/aws/aws-sdk-js-v3/commit/2955f676b5f6e5a9303ef9096589e220bf7060f1))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-support-app
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.197.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.196.0...v3.197.0) (2022-10-26)
7
26
 
8
27
 
@@ -6,7 +6,7 @@ exports.ruleSet = {
6
6
  parameters: {
7
7
  Region: {
8
8
  builtIn: "AWS::Region",
9
- required: true,
9
+ required: false,
10
10
  documentation: "The AWS region used to dispatch the request.",
11
11
  type: "String",
12
12
  },
@@ -178,7 +178,7 @@ exports.ruleSet = {
178
178
  {
179
179
  conditions: [],
180
180
  endpoint: {
181
- url: "https://support-app-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
181
+ url: "https://supportapp-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
182
182
  properties: {},
183
183
  headers: {},
184
184
  },
@@ -230,7 +230,7 @@ exports.ruleSet = {
230
230
  {
231
231
  conditions: [],
232
232
  endpoint: {
233
- url: "https://support-app-fips.{Region}.{PartitionResult#dnsSuffix}",
233
+ url: "https://supportapp-fips.{Region}.{PartitionResult#dnsSuffix}",
234
234
  properties: {},
235
235
  headers: {},
236
236
  },
@@ -282,7 +282,7 @@ exports.ruleSet = {
282
282
  {
283
283
  conditions: [],
284
284
  endpoint: {
285
- url: "https://support-app.{Region}.{PartitionResult#dualStackDnsSuffix}",
285
+ url: "https://supportapp.{Region}.{PartitionResult#dualStackDnsSuffix}",
286
286
  properties: {},
287
287
  headers: {},
288
288
  },
@@ -300,7 +300,7 @@ exports.ruleSet = {
300
300
  {
301
301
  conditions: [],
302
302
  endpoint: {
303
- url: "https://support-app.{Region}.{PartitionResult#dnsSuffix}",
303
+ url: "https://supportapp.{Region}.{PartitionResult#dnsSuffix}",
304
304
  properties: {},
305
305
  headers: {},
306
306
  },
@@ -3,7 +3,7 @@ export const ruleSet = {
3
3
  parameters: {
4
4
  Region: {
5
5
  builtIn: "AWS::Region",
6
- required: true,
6
+ required: false,
7
7
  documentation: "The AWS region used to dispatch the request.",
8
8
  type: "String",
9
9
  },
@@ -175,7 +175,7 @@ export const ruleSet = {
175
175
  {
176
176
  conditions: [],
177
177
  endpoint: {
178
- url: "https://support-app-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
178
+ url: "https://supportapp-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
179
179
  properties: {},
180
180
  headers: {},
181
181
  },
@@ -227,7 +227,7 @@ export const ruleSet = {
227
227
  {
228
228
  conditions: [],
229
229
  endpoint: {
230
- url: "https://support-app-fips.{Region}.{PartitionResult#dnsSuffix}",
230
+ url: "https://supportapp-fips.{Region}.{PartitionResult#dnsSuffix}",
231
231
  properties: {},
232
232
  headers: {},
233
233
  },
@@ -279,7 +279,7 @@ export const ruleSet = {
279
279
  {
280
280
  conditions: [],
281
281
  endpoint: {
282
- url: "https://support-app.{Region}.{PartitionResult#dualStackDnsSuffix}",
282
+ url: "https://supportapp.{Region}.{PartitionResult#dualStackDnsSuffix}",
283
283
  properties: {},
284
284
  headers: {},
285
285
  },
@@ -297,7 +297,7 @@ export const ruleSet = {
297
297
  {
298
298
  conditions: [],
299
299
  endpoint: {
300
- url: "https://support-app.{Region}.{PartitionResult#dnsSuffix}",
300
+ url: "https://supportapp.{Region}.{PartitionResult#dnsSuffix}",
301
301
  properties: {},
302
302
  headers: {},
303
303
  },
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region: string;
15
+ Region?: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
27
27
  defaultSigningName: string;
28
28
  };
29
29
  export interface EndpointParameters extends __EndpointParameters {
30
- Region: string;
30
+ Region?: string;
31
31
  UseDualStack?: boolean;
32
32
  UseFIPS?: boolean;
33
33
  Endpoint?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support-app",
3
3
  "description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
4
- "version": "3.197.0",
4
+ "version": "3.199.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",
@@ -19,39 +19,39 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.197.0",
23
- "@aws-sdk/config-resolver": "3.197.0",
24
- "@aws-sdk/credential-provider-node": "3.197.0",
25
- "@aws-sdk/fetch-http-handler": "3.197.0",
26
- "@aws-sdk/hash-node": "3.197.0",
27
- "@aws-sdk/invalid-dependency": "3.197.0",
28
- "@aws-sdk/middleware-content-length": "3.197.0",
29
- "@aws-sdk/middleware-endpoint": "3.197.0",
30
- "@aws-sdk/middleware-host-header": "3.197.0",
31
- "@aws-sdk/middleware-logger": "3.197.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.197.0",
33
- "@aws-sdk/middleware-retry": "3.197.0",
34
- "@aws-sdk/middleware-serde": "3.197.0",
35
- "@aws-sdk/middleware-signing": "3.197.0",
36
- "@aws-sdk/middleware-stack": "3.197.0",
37
- "@aws-sdk/middleware-user-agent": "3.197.0",
38
- "@aws-sdk/node-config-provider": "3.197.0",
39
- "@aws-sdk/node-http-handler": "3.197.0",
40
- "@aws-sdk/protocol-http": "3.197.0",
41
- "@aws-sdk/smithy-client": "3.197.0",
42
- "@aws-sdk/types": "3.197.0",
43
- "@aws-sdk/url-parser": "3.197.0",
22
+ "@aws-sdk/client-sts": "3.199.0",
23
+ "@aws-sdk/config-resolver": "3.198.0",
24
+ "@aws-sdk/credential-provider-node": "3.199.0",
25
+ "@aws-sdk/fetch-http-handler": "3.199.0",
26
+ "@aws-sdk/hash-node": "3.198.0",
27
+ "@aws-sdk/invalid-dependency": "3.198.0",
28
+ "@aws-sdk/middleware-content-length": "3.199.0",
29
+ "@aws-sdk/middleware-endpoint": "3.198.0",
30
+ "@aws-sdk/middleware-host-header": "3.198.0",
31
+ "@aws-sdk/middleware-logger": "3.198.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.198.0",
33
+ "@aws-sdk/middleware-retry": "3.198.0",
34
+ "@aws-sdk/middleware-serde": "3.198.0",
35
+ "@aws-sdk/middleware-signing": "3.198.0",
36
+ "@aws-sdk/middleware-stack": "3.198.0",
37
+ "@aws-sdk/middleware-user-agent": "3.198.0",
38
+ "@aws-sdk/node-config-provider": "3.198.0",
39
+ "@aws-sdk/node-http-handler": "3.199.0",
40
+ "@aws-sdk/protocol-http": "3.198.0",
41
+ "@aws-sdk/smithy-client": "3.198.0",
42
+ "@aws-sdk/types": "3.198.0",
43
+ "@aws-sdk/url-parser": "3.198.0",
44
44
  "@aws-sdk/util-base64-browser": "3.188.0",
45
45
  "@aws-sdk/util-base64-node": "3.188.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.188.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.197.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.197.0",
50
- "@aws-sdk/util-endpoints": "3.197.0",
51
- "@aws-sdk/util-user-agent-browser": "3.197.0",
52
- "@aws-sdk/util-user-agent-node": "3.197.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.198.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.198.0",
50
+ "@aws-sdk/util-endpoints": "3.198.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.198.0",
52
+ "@aws-sdk/util-user-agent-node": "3.198.0",
53
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
54
- "@aws-sdk/util-utf8-node": "3.188.0",
54
+ "@aws-sdk/util-utf8-node": "3.199.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {