@aws-sdk/credential-provider-sso 3.972.50 → 3.972.52

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/dist-cjs/index.js CHANGED
@@ -22,7 +22,10 @@ const resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccountId, ss
22
22
  filepath,
23
23
  configFilepath,
24
24
  ignoreCache,
25
- })();
25
+ clientConfig,
26
+ parentClientConfig,
27
+ logger,
28
+ })({ callerClientConfig });
26
29
  token = {
27
30
  accessToken: _token.token,
28
31
  expiresAt: new Date(_token.expiration).toISOString(),
@@ -12,7 +12,10 @@ export const resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccoun
12
12
  filepath,
13
13
  configFilepath,
14
14
  ignoreCache,
15
- })();
15
+ clientConfig,
16
+ parentClientConfig,
17
+ logger,
18
+ })({ callerClientConfig });
16
19
  token = {
17
20
  accessToken: _token.token,
18
21
  expiresAt: new Date(_token.expiration).toISOString(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.972.50",
3
+ "version": "3.972.52",
4
4
  "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -13,7 +13,9 @@
13
13
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
14
14
  "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
15
15
  "test": "yarn g:vitest run",
16
- "test:watch": "yarn g:vitest watch"
16
+ "test:watch": "yarn g:vitest watch",
17
+ "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
18
+ "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
17
19
  },
18
20
  "keywords": [
19
21
  "aws",
@@ -26,9 +28,9 @@
26
28
  },
27
29
  "license": "Apache-2.0",
28
30
  "dependencies": {
29
- "@aws-sdk/core": "^3.974.19",
30
- "@aws-sdk/nested-clients": "^3.997.18",
31
- "@aws-sdk/token-providers": "3.1064.0",
31
+ "@aws-sdk/core": "^3.974.20",
32
+ "@aws-sdk/nested-clients": "^3.997.20",
33
+ "@aws-sdk/token-providers": "3.1066.0",
32
34
  "@aws-sdk/types": "^3.973.12",
33
35
  "@smithy/core": "^3.24.6",
34
36
  "@smithy/types": "^4.14.3",