@aws-sdk/credential-provider-sso 3.973.2 → 3.973.3

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.
@@ -12,13 +12,11 @@ export interface SsoCredentialsParameters {
12
12
  ssoRegion: string;
13
13
  ssoRoleName: string;
14
14
  }
15
- export interface FromSSOInit
16
- extends SourceProfileInit,
17
- CredentialProviderOptions {
15
+ export interface FromSSOInit extends SourceProfileInit, CredentialProviderOptions {
18
16
  ssoClient?: SSOClient;
19
17
  clientConfig?: SSOClientConfig;
20
18
  callerClientConfig?: AwsIdentityProperties["callerClientConfig"];
21
19
  }
22
20
  export declare const fromSSO: (
23
- init?: FromSSOInit & Partial<SsoCredentialsParameters>
21
+ init?: FromSSOInit & Partial<SsoCredentialsParameters>,
24
22
  ) => RuntimeConfigAwsCredentialIdentityProvider;
@@ -1,9 +1,3 @@
1
- import {
2
- GetRoleCredentialsCommand,
3
- SSOClient,
4
- } from "@aws-sdk/nested-clients/sso";
1
+ import { GetRoleCredentialsCommand, SSOClient } from "@aws-sdk/nested-clients/sso";
5
2
  export { GetRoleCredentialsCommand, SSOClient };
6
- export {
7
- SSOClientConfig,
8
- GetRoleCredentialsCommandOutput,
9
- } from "@aws-sdk/nested-clients/sso";
3
+ export { SSOClientConfig, GetRoleCredentialsCommandOutput } from "@aws-sdk/nested-clients/sso";
@@ -2,5 +2,5 @@ import { Logger } from "@smithy/types";
2
2
  import { SsoProfile } from "./types";
3
3
  export declare const validateSsoProfile: (
4
4
  profile: Partial<SsoProfile>,
5
- logger?: Logger
5
+ logger?: Logger,
6
6
  ) => SsoProfile;
package/package.json CHANGED
@@ -1,9 +1,36 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.973.2",
3
+ "version": "3.973.3",
4
4
  "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
5
+ "keywords": [
6
+ "aws",
7
+ "credentials"
8
+ ],
9
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/credential-provider-sso",
10
+ "license": "Apache-2.0",
11
+ "author": {
12
+ "name": "AWS SDK for JavaScript Team",
13
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
18
+ "directory": "packages-internal/credential-provider-sso"
19
+ },
20
+ "files": [
21
+ "dist-*/**"
22
+ ],
23
+ "sideEffects": false,
5
24
  "main": "./dist-cjs/index.js",
6
25
  "module": "./dist-es/index.js",
26
+ "types": "./dist-types/index.d.ts",
27
+ "typesVersions": {
28
+ "<4.5": {
29
+ "dist-types/*": [
30
+ "dist-types/ts3.4/*"
31
+ ]
32
+ }
33
+ },
7
34
  "scripts": {
8
35
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
9
36
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -17,22 +44,12 @@
17
44
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
18
45
  "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
19
46
  },
20
- "keywords": [
21
- "aws",
22
- "credentials"
23
- ],
24
- "sideEffects": false,
25
- "author": {
26
- "name": "AWS SDK for JavaScript Team",
27
- "url": "https://aws.amazon.com/sdk-for-javascript/"
28
- },
29
- "license": "Apache-2.0",
30
47
  "dependencies": {
31
- "@aws-sdk/core": "^3.975.2",
32
- "@aws-sdk/nested-clients": "^3.997.32",
33
- "@aws-sdk/token-providers": "3.1087.0",
34
- "@aws-sdk/types": "^3.974.1",
35
- "@smithy/core": "^3.29.3",
48
+ "@aws-sdk/core": "^3.975.3",
49
+ "@aws-sdk/nested-clients": "^3.997.33",
50
+ "@aws-sdk/token-providers": "3.1088.0",
51
+ "@aws-sdk/types": "^3.974.2",
52
+ "@smithy/core": "^3.29.4",
36
53
  "@smithy/types": "^4.16.1",
37
54
  "tslib": "^2.6.2"
38
55
  },
@@ -44,24 +61,7 @@
44
61
  "premove": "4.0.0",
45
62
  "typescript": "~5.8.3"
46
63
  },
47
- "types": "./dist-types/index.d.ts",
48
64
  "engines": {
49
65
  "node": ">=20.0.0"
50
- },
51
- "typesVersions": {
52
- "<4.5": {
53
- "dist-types/*": [
54
- "dist-types/ts3.4/*"
55
- ]
56
- }
57
- },
58
- "files": [
59
- "dist-*/**"
60
- ],
61
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/credential-provider-sso",
62
- "repository": {
63
- "type": "git",
64
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
65
- "directory": "packages-internal/credential-provider-sso"
66
66
  }
67
67
  }