@aws-sdk/credential-provider-web-identity 3.290.0 → 3.295.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.
@@ -106,7 +106,7 @@ export interface AssumeRoleWithWebIdentityParams {
106
106
  */
107
107
  DurationSeconds?: number;
108
108
  }
109
- declare type LowerCaseKey<T> = {
109
+ type LowerCaseKey<T> = {
110
110
  [K in keyof T as `${Uncapitalize<string & K>}`]: T[K];
111
111
  };
112
112
  export interface FromWebTokenInit extends Omit<LowerCaseKey<AssumeRoleWithWebIdentityParams>, "roleSessionName"> {
@@ -13,7 +13,7 @@ export interface AssumeRoleWithWebIdentityParams {
13
13
  Policy?: string;
14
14
  DurationSeconds?: number;
15
15
  }
16
- declare type LowerCaseKey<T> = {
16
+ type LowerCaseKey<T> = {
17
17
  [K in keyof T as `${Uncapitalize<string & K>}`]: T[K];
18
18
  };
19
19
  export interface FromWebTokenInit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-web-identity",
3
- "version": "3.290.0",
3
+ "version": "3.295.0",
4
4
  "description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -32,9 +32,9 @@
32
32
  },
33
33
  "license": "Apache-2.0",
34
34
  "dependencies": {
35
- "@aws-sdk/property-provider": "3.290.0",
36
- "@aws-sdk/types": "3.290.0",
37
- "tslib": "^2.3.1"
35
+ "@aws-sdk/property-provider": "3.295.0",
36
+ "@aws-sdk/types": "3.295.0",
37
+ "tslib": "^2.5.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@tsconfig/recommended": "1.0.1",
@@ -42,8 +42,8 @@
42
42
  "concurrently": "7.0.0",
43
43
  "downlevel-dts": "0.10.1",
44
44
  "rimraf": "3.0.2",
45
- "typedoc": "0.19.2",
46
- "typescript": "~4.6.2"
45
+ "typedoc": "0.23.23",
46
+ "typescript": "~4.9.5"
47
47
  },
48
48
  "types": "./dist-types/index.d.ts",
49
49
  "engines": {
@@ -64,5 +64,8 @@
64
64
  "type": "git",
65
65
  "url": "https://github.com/aws/aws-sdk-js-v3.git",
66
66
  "directory": "packages/credential-provider-web-identity"
67
+ },
68
+ "typedoc": {
69
+ "entryPoint": "src/index.ts"
67
70
  }
68
71
  }