@aws-sdk/credential-provider-sso 3.300.0 → 3.303.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.
@@ -1,6 +1,9 @@
1
1
  import { SSOClient } from "@aws-sdk/client-sso";
2
2
  import { SourceProfileInit } from "@aws-sdk/shared-ini-file-loader";
3
3
  import { AwsCredentialIdentityProvider } from "@aws-sdk/types";
4
+ /**
5
+ * @internal
6
+ */
4
7
  export interface SsoCredentialsParameters {
5
8
  /**
6
9
  * The URL to the AWS SSO service.
@@ -24,10 +27,15 @@ export interface SsoCredentialsParameters {
24
27
  */
25
28
  ssoRoleName: string;
26
29
  }
30
+ /**
31
+ * @internal
32
+ */
27
33
  export interface FromSSOInit extends SourceProfileInit {
28
34
  ssoClient?: SSOClient;
29
35
  }
30
36
  /**
37
+ * @internal
38
+ *
31
39
  * Creates a credential provider that will read from a credential_process specified
32
40
  * in ini files.
33
41
  *
@@ -1,4 +1,16 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export * from "./fromSSO";
5
+ /**
6
+ * @internal
7
+ */
2
8
  export * from "./isSsoProfile";
9
+ /**
10
+ * @internal
11
+ */
3
12
  export * from "./types";
13
+ /**
14
+ * @internal
15
+ */
4
16
  export * from "./validateSsoProfile";
@@ -1,5 +1,7 @@
1
1
  import { Profile } from "@aws-sdk/types";
2
2
  /**
3
+ * @internal
4
+ *
3
5
  * Cached SSO token retrieved from SSO login flow.
4
6
  */
5
7
  export interface SSOToken {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.300.0",
3
+ "version": "3.303.0",
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",
@@ -24,11 +24,11 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/client-sso": "3.300.0",
28
- "@aws-sdk/property-provider": "3.296.0",
29
- "@aws-sdk/shared-ini-file-loader": "3.300.0",
30
- "@aws-sdk/token-providers": "3.300.0",
31
- "@aws-sdk/types": "3.296.0",
27
+ "@aws-sdk/client-sso": "3.303.0",
28
+ "@aws-sdk/property-provider": "3.303.0",
29
+ "@aws-sdk/shared-ini-file-loader": "3.303.0",
30
+ "@aws-sdk/token-providers": "3.303.0",
31
+ "@aws-sdk/types": "3.303.0",
32
32
  "tslib": "^2.5.0"
33
33
  },
34
34
  "devDependencies": {