@aws-sdk/middleware-sdk-sts 3.36.0 → 3.40.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,38 @@
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.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
9
+
10
+
11
+
12
+
13
+
14
+ # [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
17
+
18
+
19
+
20
+
21
+
22
+ # [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
25
+
26
+
27
+
28
+
29
+
30
+ # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
31
+
32
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
33
+
34
+
35
+
36
+
37
+
6
38
  # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
7
39
 
8
40
 
@@ -9,6 +9,8 @@ interface PreviouslyResolved {
9
9
  signingName?: string;
10
10
  serviceId: string;
11
11
  sha256: HashConstructor;
12
+ useFipsEndpoint: Provider<boolean>;
13
+ useDualstackEndpoint: Provider<boolean>;
12
14
  }
13
15
  export interface StsAuthResolvedConfig extends AwsAuthResolvedConfig {
14
16
  /**
@@ -9,24 +9,17 @@ interface PreviouslyResolved {
9
9
  signingName?: string;
10
10
  serviceId: string;
11
11
  sha256: HashConstructor;
12
+ useFipsEndpoint: Provider<boolean>;
13
+ useDualstackEndpoint: Provider<boolean>;
12
14
  }
13
15
  export interface StsAuthResolvedConfig extends AwsAuthResolvedConfig {
14
- /**
15
- * Reference to STSClient class constructor.
16
- * @internal
17
- */
16
+
18
17
  stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
19
18
  }
20
19
  export interface StsAuthConfigOptions {
21
- /**
22
- * Reference to STSClient class constructor.
23
- */
20
+
24
21
  stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
25
22
  }
26
- /**
27
- * Set STS client constructor to `stsClientCtor` config parameter. It is used
28
- * for role assumers for STS client internally. See `clients/client-sts/defaultStsRoleAssumers.ts`
29
- * and `clients/client-sts/STSClient.ts`.
30
- */
23
+
31
24
  export declare const resolveStsAuthConfig: <T>(input: T & PreviouslyResolved & StsAuthInputConfig, { stsClientCtor }: StsAuthConfigOptions) => T & StsAuthResolvedConfig;
32
25
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-sts",
3
- "version": "3.36.0",
3
+ "version": "3.40.0",
4
4
  "scripts": {
5
5
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -23,11 +23,11 @@
23
23
  "typescript": "~4.3.5"
24
24
  },
25
25
  "dependencies": {
26
- "@aws-sdk/middleware-signing": "3.36.0",
27
- "@aws-sdk/property-provider": "3.36.0",
28
- "@aws-sdk/protocol-http": "3.36.0",
29
- "@aws-sdk/signature-v4": "3.36.0",
30
- "@aws-sdk/types": "3.36.0",
26
+ "@aws-sdk/middleware-signing": "3.40.0",
27
+ "@aws-sdk/property-provider": "3.40.0",
28
+ "@aws-sdk/protocol-http": "3.40.0",
29
+ "@aws-sdk/signature-v4": "3.40.0",
30
+ "@aws-sdk/types": "3.40.0",
31
31
  "tslib": "^2.3.0"
32
32
  },
33
33
  "engines": {