@frontegg/types 7.56.0 → 7.57.0-alpha.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.
@@ -7,6 +7,31 @@ export interface ResetPasswordLocalization {
7
7
  * Reset password page title
8
8
  */
9
9
  title: string;
10
+ /**
11
+ * Title displayed when password expired
12
+ */
13
+ passwordExpiredTitle: string;
14
+ /**
15
+ * Subtitle displayed when password expired
16
+ */
17
+ passwordExpiredSubtitle: string;
18
+ /**
19
+ * Title displayed when password is about to expire
20
+ * EX: Your password will expire in {{days}} days
21
+ */
22
+ passwordNotificationTitle: string;
23
+ /**
24
+ * Current password input label
25
+ */
26
+ currentPasswordInputLabel: string;
27
+ /**
28
+ * Error to be displayed if current password is empty
29
+ */
30
+ currentPasswordIsRequired: string;
31
+ /**
32
+ * Remind me later button text
33
+ */
34
+ remindMeLater: string;
10
35
  /**
11
36
  * Text displayed in reset password form before password inputs
12
37
  */
@@ -43,6 +68,10 @@ export interface ResetPasswordLocalization {
43
68
  * Reset password submit button text
44
69
  */
45
70
  resetPasswordButton: string;
71
+ /**
72
+ * Change password button text
73
+ */
74
+ changePasswordButton: string;
46
75
  /**
47
76
  * Title to be displayed if reset password succeeded
48
77
  */
@@ -51,6 +80,10 @@ export interface ResetPasswordLocalization {
51
80
  * Message to be displayed if reset password succeeded
52
81
  */
53
82
  successMessage: string;
83
+ /**
84
+ * Message to be displayed if change password succeeded
85
+ */
86
+ changePasswordSuccessMessage: string;
54
87
  /**
55
88
  * Title to be displayed if reset password failed
56
89
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.56.0
1
+ /** @license Frontegg v7.57.0-alpha.0
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/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.56.0
1
+ /** @license Frontegg v7.57.0-alpha.0
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": "7.56.0",
3
+ "version": "7.57.0-alpha.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": "7.56.0",
9
+ "@frontegg/redux-store": "7.57.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },