@frontegg/types 6.155.0-alpha.2 → 6.155.0-alpha.3
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 +3 -1
- package/Localizations/LoginBoxLocalization/index.js +1 -0
- package/Localizations/LoginBoxLocalization/stepUp.d.ts +19 -0
- package/Localizations/LoginBoxLocalization/stepUp.js +1 -0
- package/index.js +1 -1
- package/node/Localizations/LoginBoxLocalization/index.js +11 -0
- package/node/Localizations/LoginBoxLocalization/stepUp.js +5 -0
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -8,7 +8,9 @@ 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';
|
|
11
12
|
export * from './login';
|
|
13
|
+
export * from './stepUp';
|
|
12
14
|
export * from './signup';
|
|
13
15
|
export * from './forgetPassword';
|
|
14
16
|
export * from './resetPhoneNumber';
|
|
@@ -19,4 +21,4 @@ export * from './activateAccount';
|
|
|
19
21
|
export * from './recoveryMfa';
|
|
20
22
|
export * from './SplitPageTypes';
|
|
21
23
|
export * from './impersonate';
|
|
22
|
-
export declare type LoginBoxLocalization = LoginLocalization & SignupLocalization & ForgetPasswordLocalization & ResetPhoneNumberLocalization & ResetPasswordLocalization & SocialLoginsLocalization & AcceptInvitationLocalization & ActivateAccountLocalization & ImpersonateLocalization & RecoveryMfaLocalization;
|
|
24
|
+
export declare type LoginBoxLocalization = LoginLocalization & StepUpLocalization & SignupLocalization & ForgetPasswordLocalization & ResetPhoneNumberLocalization & ResetPasswordLocalization & SocialLoginsLocalization & AcceptInvitationLocalization & ActivateAccountLocalization & ImpersonateLocalization & RecoveryMfaLocalization;
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/index.js
CHANGED
|
@@ -14,6 +14,17 @@ 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
|
+
});
|
|
17
28
|
var _signup = require("./signup");
|
|
18
29
|
Object.keys(_signup).forEach(function (key) {
|
|
19
30
|
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.155.0-alpha.
|
|
3
|
+
"version": "6.155.0-alpha.3",
|
|
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.155.0-alpha.
|
|
9
|
+
"@frontegg/redux-store": "6.155.0-alpha.3",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|