@aws-sdk/credential-provider-sso 3.972.61 → 3.973.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/dist-es/index.js CHANGED
@@ -1,4 +1,3 @@
1
- export * from "./fromSSO";
2
- export * from "./isSsoProfile";
3
- export * from "./types";
4
- export * from "./validateSsoProfile";
1
+ export { fromSSO } from "./fromSSO";
2
+ export { isSsoProfile } from "./isSsoProfile";
3
+ export { validateSsoProfile } from "./validateSsoProfile";
@@ -2,7 +2,7 @@ import type { AwsIdentityProperties, CredentialProviderOptions, RuntimeConfigAws
2
2
  import type { SourceProfileInit } from "@smithy/core/config";
3
3
  import type { SSOClient, SSOClientConfig } from "./loadSso";
4
4
  /**
5
- * @internal
5
+ * @public
6
6
  */
7
7
  export interface SsoCredentialsParameters {
8
8
  /**
@@ -28,7 +28,7 @@ export interface SsoCredentialsParameters {
28
28
  ssoRoleName: string;
29
29
  }
30
30
  /**
31
- * @internal
31
+ * @public
32
32
  */
33
33
  export interface FromSSOInit extends SourceProfileInit, CredentialProviderOptions {
34
34
  ssoClient?: SSOClient;
@@ -36,8 +36,6 @@ export interface FromSSOInit extends SourceProfileInit, CredentialProviderOption
36
36
  callerClientConfig?: AwsIdentityProperties["callerClientConfig"];
37
37
  }
38
38
  /**
39
- * @internal
40
- *
41
39
  * Creates a credential provider that will read from a credential_process specified
42
40
  * in ini files.
43
41
  *
@@ -65,5 +63,7 @@ export interface FromSSOInit extends SourceProfileInit, CredentialProviderOption
65
63
  * sso_region = us-east-1
66
64
  * sso_start_url = https://www.....com/start
67
65
  * ```
66
+ *
67
+ * @internal
68
68
  */
69
69
  export declare const fromSSO: (init?: FromSSOInit & Partial<SsoCredentialsParameters>) => RuntimeConfigAwsCredentialIdentityProvider;
@@ -1,16 +1,5 @@
1
- /**
2
- * @internal
3
- */
4
- export * from "./fromSSO";
5
- /**
6
- * @internal
7
- */
8
- export * from "./isSsoProfile";
9
- /**
10
- * @internal
11
- */
12
- export * from "./types";
13
- /**
14
- * @internal
15
- */
16
- export * from "./validateSsoProfile";
1
+ export { fromSSO } from "./fromSSO";
2
+ export type { SsoCredentialsParameters, FromSSOInit } from "./fromSSO";
3
+ export { isSsoProfile } from "./isSsoProfile";
4
+ export type { SSOToken, SsoProfile } from "./types";
5
+ export { validateSsoProfile } from "./validateSsoProfile";
@@ -1,4 +1,5 @@
1
- export * from "./fromSSO";
2
- export * from "./isSsoProfile";
3
- export * from "./types";
4
- export * from "./validateSsoProfile";
1
+ export { fromSSO } from "./fromSSO";
2
+ export { SsoCredentialsParameters, FromSSOInit } from "./fromSSO";
3
+ export { isSsoProfile } from "./isSsoProfile";
4
+ export { SSOToken, SsoProfile } from "./types";
5
+ export { validateSsoProfile } from "./validateSsoProfile";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.972.61",
3
+ "version": "3.973.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",
@@ -28,12 +28,12 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/core": "^3.974.29",
32
- "@aws-sdk/nested-clients": "^3.997.29",
33
- "@aws-sdk/token-providers": "3.1081.0",
34
- "@aws-sdk/types": "^3.973.15",
35
- "@smithy/core": "^3.29.0",
36
- "@smithy/types": "^4.15.1",
31
+ "@aws-sdk/core": "^3.975.0",
32
+ "@aws-sdk/nested-clients": "^3.997.30",
33
+ "@aws-sdk/token-providers": "3.1082.0",
34
+ "@aws-sdk/types": "^3.974.0",
35
+ "@smithy/core": "^3.29.2",
36
+ "@smithy/types": "^4.16.0",
37
37
  "tslib": "^2.6.2"
38
38
  },
39
39
  "devDependencies": {