@aws-sdk/types 3.188.0 → 3.190.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,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.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **endpoint:** e2e test fixes for endpoints 2.0 all services ([#4044](https://github.com/aws/aws-sdk-js-v3/issues/4044)) ([b53f5bd](https://github.com/aws/aws-sdk-js-v3/commit/b53f5bdd2bb4f0d1bab208ef2cd8f67d56291934))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
7
18
 
8
19
 
@@ -3,9 +3,9 @@
3
3
  */
4
4
  export interface AuthScheme {
5
5
  /**
6
- * @example "v4" for SigV4
6
+ * @example "sigv4a" or "sigv4"
7
7
  */
8
- name: string;
8
+ name: "sigv4" | "sigv4a" | string;
9
9
  /**
10
10
  * @example "s3"
11
11
  */
@@ -13,6 +13,14 @@ export interface AuthScheme {
13
13
  /**
14
14
  * @example "us-east-1"
15
15
  */
16
- signingScope: string;
16
+ signingRegion: string;
17
+ /**
18
+ * TODO usage?
19
+ */
20
+ signingRegionSet?: string[];
21
+ /**
22
+ * @deprecated this field was renamed to signingRegion.
23
+ */
24
+ signingScope?: never;
17
25
  properties: Record<string, unknown>;
18
26
  }
@@ -1,6 +1,8 @@
1
1
  export interface AuthScheme {
2
- name: string;
2
+ name: "sigv4" | "sigv4a" | string;
3
3
  signingName: string;
4
- signingScope: string;
4
+ signingRegion: string;
5
+ signingRegionSet?: string[];
6
+ signingScope?: never;
5
7
  properties: Record<string, unknown>;
6
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.188.0",
3
+ "version": "3.190.0",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",