@frontegg/types 6.161.0 → 6.162.0-alpha.1

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.
@@ -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;
@@ -1,4 +1,5 @@
1
1
  export * from './login';
2
+ export * from './stepUp';
2
3
  export * from './signup';
3
4
  export * from './forgetPassword';
4
5
  export * from './resetPhoneNumber';
@@ -467,6 +467,14 @@ 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;
470
478
  /**
471
479
  * MFA login list platform option message
472
480
  */
@@ -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 {};
@@ -0,0 +1,3 @@
1
+ import { LoginBoxCommonTheme, LoginBoxCommonThemeOptions } from '..';
2
+ export declare type StepUpThemeOptions = LoginBoxCommonThemeOptions;
3
+ export declare type StepUpTheme = LoginBoxCommonTheme;
@@ -0,0 +1 @@
1
+ export {};
@@ -9,6 +9,7 @@ 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';
12
13
  export * from './LoginBoxCommon';
13
14
  export * from './LoginPageTheme';
14
15
  export * from './SignupPageTheme';
@@ -37,6 +38,7 @@ export interface LoginBoxThemeOptions extends LoginBoxCommonThemeOptions {
37
38
  resetPhoneNumber?: ResetPhoneNumberPageThemeOptions;
38
39
  resetPassword?: ResetPasswordPageThemeOptions;
39
40
  login?: LoginPageThemeOptions;
41
+ stepUp?: StepUpThemeOptions;
40
42
  signup?: SignupPageThemeOptions;
41
43
  loader?: LoaderThemeOptions;
42
44
  }
@@ -48,6 +50,7 @@ export interface LoginBoxTheme extends LoginBoxCommonTheme {
48
50
  resetPhoneNumber: ResetPhoneNumberPageTheme;
49
51
  resetPassword: ResetPasswordPageTheme;
50
52
  login: LoginPageTheme;
53
+ stepUp: StepUpTheme;
51
54
  signup: SignupPageTheme;
52
55
  socialLogins: SocialLoginsTheme;
53
56
  loader: LoaderTheme;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.161.0
1
+ /** @license Frontegg v6.162.0-alpha.1
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -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;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.161.0
1
+ /** @license Frontegg v6.162.0-alpha.1
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.161.0",
3
+ "version": "6.162.0-alpha.1",
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.162.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },