@frontegg/rest-api 3.0.57 → 3.0.59
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/auth/interfaces.d.ts +4 -3
- package/auth/interfaces.js +2 -3
- package/index.js +1 -1
- package/node/auth/interfaces.js +2 -3
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/interfaces.d.ts
CHANGED
|
@@ -143,8 +143,10 @@ export interface ISocialLoginProviderConfigurationV2 {
|
|
|
143
143
|
type: SocialLoginProviders;
|
|
144
144
|
clientId?: string | null;
|
|
145
145
|
redirectUrl: string;
|
|
146
|
+
backendRedirectUrl?: string;
|
|
146
147
|
active: boolean;
|
|
147
148
|
authorizationUrl?: string | null;
|
|
149
|
+
options?: Record<string, unknown>;
|
|
148
150
|
customised: boolean;
|
|
149
151
|
}
|
|
150
152
|
export interface ILoginViaSocialLogin {
|
|
@@ -480,9 +482,8 @@ export interface IEnrollMFASMS extends IEnrollMFA {
|
|
|
480
482
|
code: string;
|
|
481
483
|
}
|
|
482
484
|
export declare enum WebAuthnDeviceType {
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
TouchID = "TouchID"
|
|
485
|
+
Platform = "Platform",
|
|
486
|
+
CrossPlatform = "CrossPlatform"
|
|
486
487
|
}
|
|
487
488
|
export interface IEnrollMFAWebAuthn extends IEnrollMFA {
|
|
488
489
|
deviceType: WebAuthnDeviceType;
|
package/auth/interfaces.js
CHANGED
|
@@ -10,9 +10,8 @@ export let SecondaryAuthStrategy;
|
|
|
10
10
|
export let WebAuthnDeviceType;
|
|
11
11
|
|
|
12
12
|
(function (WebAuthnDeviceType) {
|
|
13
|
-
WebAuthnDeviceType["
|
|
14
|
-
WebAuthnDeviceType["
|
|
15
|
-
WebAuthnDeviceType["TouchID"] = "TouchID";
|
|
13
|
+
WebAuthnDeviceType["Platform"] = "Platform";
|
|
14
|
+
WebAuthnDeviceType["CrossPlatform"] = "CrossPlatform";
|
|
16
15
|
})(WebAuthnDeviceType || (WebAuthnDeviceType = {}));
|
|
17
16
|
|
|
18
17
|
export let MFAStrategyEnum;
|
package/index.js
CHANGED
package/node/auth/interfaces.js
CHANGED
|
@@ -36,9 +36,8 @@ let WebAuthnDeviceType;
|
|
|
36
36
|
exports.WebAuthnDeviceType = WebAuthnDeviceType;
|
|
37
37
|
|
|
38
38
|
(function (WebAuthnDeviceType) {
|
|
39
|
-
WebAuthnDeviceType["
|
|
40
|
-
WebAuthnDeviceType["
|
|
41
|
-
WebAuthnDeviceType["TouchID"] = "TouchID";
|
|
39
|
+
WebAuthnDeviceType["Platform"] = "Platform";
|
|
40
|
+
WebAuthnDeviceType["CrossPlatform"] = "CrossPlatform";
|
|
42
41
|
})(WebAuthnDeviceType || (exports.WebAuthnDeviceType = WebAuthnDeviceType = {}));
|
|
43
42
|
|
|
44
43
|
let MFAStrategyEnum;
|
package/node/index.js
CHANGED