@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 +3 -4
- package/dist-types/fromSSO.d.ts +4 -4
- package/dist-types/index.d.ts +5 -16
- package/dist-types/ts3.4/index.d.ts +5 -4
- package/package.json +7 -7
package/dist-es/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export * from "./validateSsoProfile";
|
|
1
|
+
export { fromSSO } from "./fromSSO";
|
|
2
|
+
export { isSsoProfile } from "./isSsoProfile";
|
|
3
|
+
export { validateSsoProfile } from "./validateSsoProfile";
|
package/dist-types/fromSSO.d.ts
CHANGED
|
@@ -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
|
-
* @
|
|
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
|
-
* @
|
|
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;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,16 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export
|
|
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
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
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.
|
|
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.
|
|
32
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
33
|
-
"@aws-sdk/token-providers": "3.
|
|
34
|
-
"@aws-sdk/types": "^3.
|
|
35
|
-
"@smithy/core": "^3.29.
|
|
36
|
-
"@smithy/types": "^4.
|
|
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": {
|