@frontegg/rest-api 3.0.54 → 3.0.56
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 +3 -1
- package/auth/interfaces.js +2 -1
- package/index.js +1 -1
- package/node/auth/interfaces.js +2 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/interfaces.d.ts
CHANGED
|
@@ -333,6 +333,7 @@ export interface ISSOConfiguration {
|
|
|
333
333
|
domains: ISSODomain[];
|
|
334
334
|
roleIds: string[];
|
|
335
335
|
groups: ISamlRolesGroup[];
|
|
336
|
+
skipEmailDomainValidation: boolean;
|
|
336
337
|
}
|
|
337
338
|
export interface IExchangeOAuthTokens {
|
|
338
339
|
code?: string;
|
|
@@ -519,7 +520,8 @@ export interface IVerifyMFAWebAuthn extends IVerifyMFA {
|
|
|
519
520
|
}
|
|
520
521
|
export declare enum MFAStrategyEnum {
|
|
521
522
|
AuthenticatorApp = "AuthenticatorApp",
|
|
522
|
-
|
|
523
|
+
WebAuthnPlatform = "WebAuthnPlatform",
|
|
524
|
+
WebAuthnCrossPlatform = "WebAuthnCrossPlatform",
|
|
523
525
|
SMS = "SMS"
|
|
524
526
|
}
|
|
525
527
|
export interface UserMFAWebAuthnDevice {
|
package/auth/interfaces.js
CHANGED
|
@@ -19,6 +19,7 @@ export let MFAStrategyEnum;
|
|
|
19
19
|
|
|
20
20
|
(function (MFAStrategyEnum) {
|
|
21
21
|
MFAStrategyEnum["AuthenticatorApp"] = "AuthenticatorApp";
|
|
22
|
-
MFAStrategyEnum["
|
|
22
|
+
MFAStrategyEnum["WebAuthnPlatform"] = "WebAuthnPlatform";
|
|
23
|
+
MFAStrategyEnum["WebAuthnCrossPlatform"] = "WebAuthnCrossPlatform";
|
|
23
24
|
MFAStrategyEnum["SMS"] = "SMS";
|
|
24
25
|
})(MFAStrategyEnum || (MFAStrategyEnum = {}));
|
package/index.js
CHANGED
package/node/auth/interfaces.js
CHANGED
|
@@ -46,6 +46,7 @@ exports.MFAStrategyEnum = MFAStrategyEnum;
|
|
|
46
46
|
|
|
47
47
|
(function (MFAStrategyEnum) {
|
|
48
48
|
MFAStrategyEnum["AuthenticatorApp"] = "AuthenticatorApp";
|
|
49
|
-
MFAStrategyEnum["
|
|
49
|
+
MFAStrategyEnum["WebAuthnPlatform"] = "WebAuthnPlatform";
|
|
50
|
+
MFAStrategyEnum["WebAuthnCrossPlatform"] = "WebAuthnCrossPlatform";
|
|
50
51
|
MFAStrategyEnum["SMS"] = "SMS";
|
|
51
52
|
})(MFAStrategyEnum || (exports.MFAStrategyEnum = MFAStrategyEnum = {}));
|
package/node/index.js
CHANGED