@frontegg/types 6.162.0-alpha.2 → 6.162.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 -12
- package/ThemeOptions/LoginBoxTheme/index.d.ts +0 -3
- 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 -51
- package/Localizations/LoginBoxLocalization/stepUp.js +0 -1
- package/ThemeOptions/LoginBoxTheme/StepUpTheme.d.ts +0 -3
- package/ThemeOptions/LoginBoxTheme/StepUpTheme.js +0 -1
- package/node/Localizations/LoginBoxLocalization/stepUp.js +0 -5
- package/node/ThemeOptions/LoginBoxTheme/StepUpTheme.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
|
*/
|
|
@@ -504,10 +496,6 @@ export interface LoginLocalization {
|
|
|
504
496
|
* MFA login with Authenticator App title
|
|
505
497
|
*/
|
|
506
498
|
loginMfaAuthenticatorAppTitle: string;
|
|
507
|
-
/**
|
|
508
|
-
* MFA login list Authenticator App sub title
|
|
509
|
-
*/
|
|
510
|
-
loginMfaListAuthenticatorAppSubtitle: string;
|
|
511
499
|
/**
|
|
512
500
|
* MFA login list with help message
|
|
513
501
|
*/
|
|
@@ -9,7 +9,6 @@ import { LoginPageTheme, LoginPageThemeOptions } from './LoginPageTheme';
|
|
|
9
9
|
import { LoaderTheme, LoaderThemeOptions } from './LoaderTheme';
|
|
10
10
|
import { SignupPageTheme } from './SignupPageTheme';
|
|
11
11
|
import { ResetPhoneNumberPageTheme, ResetPhoneNumberPageThemeOptions } from './ResetPhoneNumberTheme';
|
|
12
|
-
import { StepUpTheme, StepUpThemeOptions } from './StepUpTheme';
|
|
13
12
|
export * from './LoginBoxCommon';
|
|
14
13
|
export * from './LoginPageTheme';
|
|
15
14
|
export * from './SignupPageTheme';
|
|
@@ -38,7 +37,6 @@ export interface LoginBoxThemeOptions extends LoginBoxCommonThemeOptions {
|
|
|
38
37
|
resetPhoneNumber?: ResetPhoneNumberPageThemeOptions;
|
|
39
38
|
resetPassword?: ResetPasswordPageThemeOptions;
|
|
40
39
|
login?: LoginPageThemeOptions;
|
|
41
|
-
stepUp?: StepUpThemeOptions;
|
|
42
40
|
signup?: SignupPageThemeOptions;
|
|
43
41
|
loader?: LoaderThemeOptions;
|
|
44
42
|
}
|
|
@@ -50,7 +48,6 @@ export interface LoginBoxTheme extends LoginBoxCommonTheme {
|
|
|
50
48
|
resetPhoneNumber: ResetPhoneNumberPageTheme;
|
|
51
49
|
resetPassword: ResetPasswordPageTheme;
|
|
52
50
|
login: LoginPageTheme;
|
|
53
|
-
stepUp: StepUpTheme;
|
|
54
51
|
signup: SignupPageTheme;
|
|
55
52
|
socialLogins: SocialLoginsTheme;
|
|
56
53
|
loader: LoaderTheme;
|
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.162.0
|
|
3
|
+
"version": "6.162.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.162.0
|
|
9
|
+
"@frontegg/redux-store": "6.162.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|
|
@@ -1,51 +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
|
-
* mfa options component title
|
|
20
|
-
*/
|
|
21
|
-
mfaTitle: string;
|
|
22
|
-
/**
|
|
23
|
-
* mfa options component sub title
|
|
24
|
-
*/
|
|
25
|
-
mfaSubtitle: string;
|
|
26
|
-
/**
|
|
27
|
-
* mfa authenticator component title
|
|
28
|
-
*/
|
|
29
|
-
stepUpMfaAuthenticatorAppTitle: string;
|
|
30
|
-
/**
|
|
31
|
-
* MFA authenticate another way button message
|
|
32
|
-
*/
|
|
33
|
-
moreWaysToAuthenticate: string;
|
|
34
|
-
/**
|
|
35
|
-
* MFA email code screen title
|
|
36
|
-
*/
|
|
37
|
-
mfaEmailCodeTitle: string;
|
|
38
|
-
/**
|
|
39
|
-
* MFA email code screen sub title
|
|
40
|
-
*/
|
|
41
|
-
mfaEmailCodeSubtitle: string;
|
|
42
|
-
/**
|
|
43
|
-
* MFA method (like authenticator, sms, ..) submit button
|
|
44
|
-
*/
|
|
45
|
-
mfaSubmitButton: string;
|
|
46
|
-
/**
|
|
47
|
-
* MFA email code screen sub title
|
|
48
|
-
*/
|
|
49
|
-
mfaSMSSubtitle: string;
|
|
50
|
-
};
|
|
51
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|