@frontegg/types 6.161.0-alpha.1 → 6.161.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/Localizations/LoginBoxLocalization/index.d.ts +1 -3
- package/Localizations/LoginBoxLocalization/index.js +0 -1
- package/Localizations/LoginBoxLocalization/login.d.ts +0 -8
- package/index.js +1 -1
- package/node/Localizations/LoginBoxLocalization/index.js +0 -11
- package/node/index.js +1 -1
- package/package.json +2 -2
- package/Localizations/LoginBoxLocalization/stepUp.d.ts +0 -19
- package/Localizations/LoginBoxLocalization/stepUp.js +0 -1
- package/node/Localizations/LoginBoxLocalization/stepUp.js +0 -5
|
@@ -8,9 +8,7 @@ import { ActivateAccountLocalization } from './activateAccount';
|
|
|
8
8
|
import { RecoveryMfaLocalization } from './recoveryMfa';
|
|
9
9
|
import { ResetPhoneNumberLocalization } from './resetPhoneNumber';
|
|
10
10
|
import { ImpersonateLocalization } from './impersonate';
|
|
11
|
-
import { StepUpLocalization } from './stepUp';
|
|
12
11
|
export * from './login';
|
|
13
|
-
export * from './stepUp';
|
|
14
12
|
export * from './signup';
|
|
15
13
|
export * from './forgetPassword';
|
|
16
14
|
export * from './resetPhoneNumber';
|
|
@@ -21,4 +19,4 @@ export * from './activateAccount';
|
|
|
21
19
|
export * from './recoveryMfa';
|
|
22
20
|
export * from './SplitPageTypes';
|
|
23
21
|
export * from './impersonate';
|
|
24
|
-
export declare type LoginBoxLocalization = LoginLocalization &
|
|
22
|
+
export declare type LoginBoxLocalization = LoginLocalization & SignupLocalization & ForgetPasswordLocalization & ResetPhoneNumberLocalization & ResetPasswordLocalization & SocialLoginsLocalization & AcceptInvitationLocalization & ActivateAccountLocalization & ImpersonateLocalization & RecoveryMfaLocalization;
|
|
@@ -467,14 +467,6 @@ export interface LoginLocalization {
|
|
|
467
467
|
* MFA login list SMS option description
|
|
468
468
|
*/
|
|
469
469
|
loginMfaSMSDescription: string;
|
|
470
|
-
/**
|
|
471
|
-
* MFA login list Email option message
|
|
472
|
-
*/
|
|
473
|
-
loginMfaEmail: string;
|
|
474
|
-
/**
|
|
475
|
-
* MFA login list Email option description
|
|
476
|
-
*/
|
|
477
|
-
loginMfaEmailDescription: string;
|
|
478
470
|
/**
|
|
479
471
|
* MFA login list platform option message
|
|
480
472
|
*/
|
package/index.js
CHANGED
|
@@ -14,17 +14,6 @@ Object.keys(_login).forEach(function (key) {
|
|
|
14
14
|
}
|
|
15
15
|
});
|
|
16
16
|
});
|
|
17
|
-
var _stepUp = require("./stepUp");
|
|
18
|
-
Object.keys(_stepUp).forEach(function (key) {
|
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
|
20
|
-
if (key in exports && exports[key] === _stepUp[key]) return;
|
|
21
|
-
Object.defineProperty(exports, key, {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function () {
|
|
24
|
-
return _stepUp[key];
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
17
|
var _signup = require("./signup");
|
|
29
18
|
Object.keys(_signup).forEach(function (key) {
|
|
30
19
|
if (key === "default" || key === "__esModule") return;
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.161.0
|
|
3
|
+
"version": "6.161.0",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/redux-store": "6.161.0
|
|
9
|
+
"@frontegg/redux-store": "6.161.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface StepUpLocalization {
|
|
2
|
-
/**
|
|
3
|
-
* strings in step up page
|
|
4
|
-
*/
|
|
5
|
-
stepUp: {
|
|
6
|
-
/**
|
|
7
|
-
* no enrolled mfa title
|
|
8
|
-
*/
|
|
9
|
-
noEnrolledMfaTitle: string;
|
|
10
|
-
/**
|
|
11
|
-
* no enrolled mfa description part 1
|
|
12
|
-
*/
|
|
13
|
-
noEnrolledMfaDescriptionPart1: string;
|
|
14
|
-
/**
|
|
15
|
-
* no enrolled mfa description part 2
|
|
16
|
-
*/
|
|
17
|
-
noEnrolledMfaDescriptionPart2: string;
|
|
18
|
-
};
|
|
19
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|