@frontegg/rest-api 3.0.86 → 3.0.87
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 -0
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/auth/interfaces.d.ts
CHANGED
|
@@ -505,8 +505,12 @@ export interface IAuthStrategyConfig {
|
|
|
505
505
|
strategy: SecondaryAuthStrategy;
|
|
506
506
|
isActive: boolean;
|
|
507
507
|
}
|
|
508
|
+
export interface MainAuthStrategy {
|
|
509
|
+
strategy: AuthStrategyEnum;
|
|
510
|
+
}
|
|
508
511
|
export interface IAuthStrategiesConfig {
|
|
509
512
|
secondaryAuthStrategies: IAuthStrategyConfig[];
|
|
513
|
+
mainAuthStrategies: MainAuthStrategy[];
|
|
510
514
|
}
|
|
511
515
|
export interface IPreEnrollMFA {
|
|
512
516
|
mfaToken: string;
|
package/index.js
CHANGED
package/node/index.js
CHANGED