@okta/okta-auth-js 6.5.2 → 6.5.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.
- package/CHANGELOG.md +4 -0
- package/cjs/OktaUserAgent.js +2 -2
- package/cjs/idx/types/api.js.map +1 -1
- package/dist/okta-auth-js.min.js +1 -1
- package/dist/okta-auth-js.min.js.map +1 -1
- package/dist/okta-auth-js.umd.js +1 -1
- package/dist/okta-auth-js.umd.js.map +1 -1
- package/esm/esm.browser.js +2 -2
- package/esm/esm.browser.js.map +1 -1
- package/esm/esm.node.mjs +2 -2
- package/esm/esm.node.mjs.map +1 -1
- package/lib/idx/remediators/Base/AuthenticatorData.d.ts +5 -0
- package/lib/idx/remediators/Base/SelectAuthenticator.d.ts +5 -0
- package/lib/idx/remediators/EnrollmentChannelData.d.ts +5 -0
- package/lib/idx/remediators/SelectEnrollmentChannel.d.ts +5 -0
- package/lib/idx/types/api.d.ts +5 -1
- package/package.json +3 -4
|
@@ -33,6 +33,11 @@ export declare class AuthenticatorData<T extends AuthenticatorDataValues = Authe
|
|
|
33
33
|
action?: ((params?: import("../../types").IdxActionParams | undefined) => Promise<import("../../types").IdxTransaction>) | undefined;
|
|
34
34
|
idp?: import("../../types/idx-js").IdpConfig | undefined;
|
|
35
35
|
href?: string | undefined;
|
|
36
|
+
relatesTo?: {
|
|
37
|
+
type?: string | undefined;
|
|
38
|
+
value: IdxAuthenticator;
|
|
39
|
+
} | undefined;
|
|
40
|
+
refresh?: number | undefined;
|
|
36
41
|
};
|
|
37
42
|
protected mapAuthenticatorDataFromValues(authenticatorData?: any): any;
|
|
38
43
|
protected getAuthenticatorFromRemediation(): IdxRemediationValue;
|
|
@@ -36,6 +36,11 @@ export declare class SelectAuthenticator<T extends SelectAuthenticatorValues = S
|
|
|
36
36
|
action?: ((params?: import("../../types").IdxActionParams | undefined) => Promise<import("../../types").IdxTransaction>) | undefined;
|
|
37
37
|
idp?: import("../../types/idx-js").IdpConfig | undefined;
|
|
38
38
|
href?: string | undefined;
|
|
39
|
+
relatesTo?: {
|
|
40
|
+
type?: string | undefined;
|
|
41
|
+
value: import("../../types").IdxAuthenticator;
|
|
42
|
+
} | undefined;
|
|
43
|
+
refresh?: number | undefined;
|
|
39
44
|
};
|
|
40
45
|
mapAuthenticator(remediationValue: IdxRemediationValue): Authenticator | {
|
|
41
46
|
id: any;
|
|
@@ -43,6 +43,11 @@ export declare class EnrollmentChannelData extends Remediator<EnrollmentChannelD
|
|
|
43
43
|
action?: ((params?: import("../types/idx-js").IdxActionParams | undefined) => Promise<import("../types/api").IdxTransaction>) | undefined;
|
|
44
44
|
idp?: import("../types/idx-js").IdpConfig | undefined;
|
|
45
45
|
href?: string | undefined;
|
|
46
|
+
relatesTo?: {
|
|
47
|
+
type?: string | undefined;
|
|
48
|
+
value: import("../types/idx-js").IdxAuthenticator;
|
|
49
|
+
} | undefined;
|
|
50
|
+
refresh?: number | undefined;
|
|
46
51
|
};
|
|
47
52
|
getData(): {
|
|
48
53
|
stateHandle: string | undefined;
|
|
@@ -30,6 +30,11 @@ export declare class SelectEnrollmentChannel extends Remediator<SelectEnrollment
|
|
|
30
30
|
action?: ((params?: import("../types/idx-js").IdxActionParams | undefined) => Promise<import("../types/api").IdxTransaction>) | undefined;
|
|
31
31
|
idp?: import("../types/idx-js").IdpConfig | undefined;
|
|
32
32
|
href?: string | undefined;
|
|
33
|
+
relatesTo?: {
|
|
34
|
+
type?: string | undefined;
|
|
35
|
+
value: import("../types/idx-js").IdxAuthenticator;
|
|
36
|
+
} | undefined;
|
|
37
|
+
refresh?: number | undefined;
|
|
33
38
|
};
|
|
34
39
|
private getChannels;
|
|
35
40
|
getData(): {
|
package/lib/idx/types/api.d.ts
CHANGED
|
@@ -32,7 +32,6 @@ export declare type Input = {
|
|
|
32
32
|
secret?: boolean;
|
|
33
33
|
required?: boolean;
|
|
34
34
|
options?: IdxOption[];
|
|
35
|
-
relatesTo?: IdxAuthenticator;
|
|
36
35
|
mutable?: boolean;
|
|
37
36
|
visible?: boolean;
|
|
38
37
|
};
|
|
@@ -52,6 +51,11 @@ export declare type NextStep = {
|
|
|
52
51
|
action?: (params?: IdxActionParams) => Promise<IdxTransaction>;
|
|
53
52
|
idp?: IdpConfig;
|
|
54
53
|
href?: string;
|
|
54
|
+
relatesTo?: {
|
|
55
|
+
type?: string;
|
|
56
|
+
value: IdxAuthenticator;
|
|
57
|
+
};
|
|
58
|
+
refresh?: number;
|
|
55
59
|
};
|
|
56
60
|
export declare enum IdxFeature {
|
|
57
61
|
PASSWORD_RECOVERY = "recover-password",
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@okta/okta-auth-js",
|
|
4
4
|
"description": "The Okta Auth SDK",
|
|
5
|
-
"version": "6.5.
|
|
5
|
+
"version": "6.5.3",
|
|
6
6
|
"homepage": "https://github.com/okta/okta-auth-js",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"main": "cjs/index.js",
|
|
@@ -188,8 +188,7 @@
|
|
|
188
188
|
}
|
|
189
189
|
},
|
|
190
190
|
"okta": {
|
|
191
|
-
"commitSha": "
|
|
192
|
-
"fullVersion": "6.5.
|
|
193
|
-
"testedSha": "02d3a1d9d5927156668d4e51af2ae5d6b6e29b29"
|
|
191
|
+
"commitSha": "4536ba03ea316149d697bb9229260499e9f37e17",
|
|
192
|
+
"fullVersion": "6.5.3-g4536ba0"
|
|
194
193
|
}
|
|
195
194
|
}
|