@frontegg/types 5.16.1 → 5.16.2

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.
@@ -12,17 +12,9 @@ export interface AcceptInvitationLocalization {
12
12
  */
13
13
  successTitle: string;
14
14
  /**
15
- * Title to be displayed if accept invitation failed
15
+ * Description message to be displayed if accept invitation succeeded
16
16
  */
17
- failedTitle: string;
18
- /**
19
- * Description message to be displayed if accept invitation failed
20
- */
21
- failedMessage: string;
22
- /**
23
- * Back to login button text in accept invitation failed section
24
- */
25
- failedBackToLoginButton: string;
17
+ successMessage: string;
26
18
  /**
27
19
  * Title to be displayed if invalid query params
28
20
  */
@@ -43,6 +43,10 @@ export interface ActivateAccountLocalization {
43
43
  * Title to be displayed if activate account succeeded
44
44
  */
45
45
  successTitle: string;
46
+ /**
47
+ * Message to be displayed if activate account succeeded
48
+ */
49
+ successMessage: string;
46
50
  /**
47
51
  * Error displayed if link is invalid as title
48
52
  */
@@ -29,6 +29,7 @@ export interface ForgetPasswordLocalization {
29
29
  emailIsRequired: string;
30
30
  submitButtonText: string;
31
31
  backToLogin: string;
32
+ resetEmailSentTitle: string;
32
33
  resetEmailSentMessage: string;
33
34
  };
34
35
  }
@@ -60,6 +60,10 @@ export interface LoginLocalization {
60
60
  * Login page submit button if passwordless, sso or magicLink is enabled
61
61
  */
62
62
  continue: string;
63
+ /**
64
+ * String displayed as invalid title for Oid, and saml
65
+ */
66
+ invalidTitle: string;
63
67
  /**
64
68
  * String displayed as separator for sign in with social login
65
69
  */
@@ -179,6 +183,10 @@ export interface LoginLocalization {
179
183
  * Text Resend
180
184
  */
181
185
  otcResend: string;
186
+ /**
187
+ * Text `the OTC has a wrong length`
188
+ */
189
+ otcInvalidLengthCode: string;
182
190
  /**
183
191
  * Text to be displayed when redirecting to SSO provider url
184
192
  */
@@ -47,6 +47,10 @@ export interface ResetPasswordLocalization {
47
47
  * Title to be displayed if reset password succeeded
48
48
  */
49
49
  successTitle: string;
50
+ /**
51
+ * Message to be displayed if reset password succeeded
52
+ */
53
+ successMessage: string;
50
54
  /**
51
55
  * Title to be displayed if reset password failed
52
56
  */
@@ -101,6 +101,10 @@ export interface SignupLocalization {
101
101
  * Activate description message when signup succeeded and activate required
102
102
  */
103
103
  successActivateMessage: string;
104
+ /**
105
+ * Redirect to login
106
+ */
107
+ backToLoginLink: string;
104
108
  /**
105
109
  * Go to login message in signup page header
106
110
  */
@@ -18,6 +18,10 @@ export interface SocialLoginsLocalization {
18
18
  * Ex: 'Sign up with {{providerName}}'
19
19
  */
20
20
  activationButtonText: string;
21
+ /**
22
+ * String displayed as invalid title
23
+ */
24
+ invalidTitle: string;
21
25
  /**
22
26
  * Error title if social login callback is invalid
23
27
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "5.16.1",
3
+ "version": "5.16.2",
4
4
  "main": "./node/index.js",
5
5
  "module": "./index.js",
6
6
  "types": "./index.d.ts",