@frontegg/types 6.143.0 → 6.144.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.
@@ -87,6 +87,12 @@ export interface PrivacyLocalization {
87
87
  setUpPasskeys: string;
88
88
  noPasskeysSetYet: string;
89
89
  disabledSetUpPasskeysTooltip: string;
90
+ smsTitle: string;
91
+ setUpSms: string;
92
+ noPhoneNumberSet: string;
93
+ disabledSetUpSmsTooltip: string;
94
+ editPhoneNumber: string;
95
+ deletePhoneNumber: string;
90
96
  };
91
97
  /**
92
98
  * Privacy page change password dialogs strings
@@ -177,6 +183,13 @@ export interface PrivacyLocalization {
177
183
  cancel: string;
178
184
  disable: string;
179
185
  };
186
+ privacy_deleteSmsDialog: {
187
+ dialogTitle: string;
188
+ deleteSmsFirstDescription: string;
189
+ deleteSmsSecondDescription: string;
190
+ cancel: string;
191
+ delete: string;
192
+ };
180
193
  privacy_DisableMfaAuthenticatorApp: {
181
194
  /**
182
195
  * Disable mfa dialog title
@@ -354,4 +367,22 @@ export interface PrivacyLocalization {
354
367
  cancel: string;
355
368
  delete: string;
356
369
  };
370
+ privacy_setUpSmsDialog: {
371
+ setUpSmsTitle: string;
372
+ preVerifySmsDescription: string;
373
+ phoneIsRequired: string;
374
+ phoneIsInvalid: string;
375
+ verifyDescription: string;
376
+ cancel: string;
377
+ confirm: string;
378
+ continue: string;
379
+ otcResend: string;
380
+ otcResending: string;
381
+ successfullySetUpTitle: string;
382
+ successfullySetUpDescription: string;
383
+ phoneNumber: string;
384
+ successfullyAddedTitle: string;
385
+ successfullyAddedDescription: string;
386
+ done: string;
387
+ };
357
388
  }
@@ -63,6 +63,7 @@ export interface ProfileLocalization {
63
63
  * Remove profile image action in profile page
64
64
  */
65
65
  removeImage: string;
66
+ disabledEditPhoneNumberTooltip: string;
66
67
  };
67
68
  /**
68
69
  * Edit user name and title Dialog strings
@@ -28,6 +28,8 @@ export interface LoginLocalization {
28
28
  * String displayed as placeholder when email field is empty
29
29
  */
30
30
  emailInputPlaceholder: string;
31
+ emailOrPhoneInputLabel: string;
32
+ emailOrPhonePlaceHolder: string;
31
33
  /**
32
34
  * error message displayed if email is invalid
33
35
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.143.0
1
+ /** @license Frontegg v6.144.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 v6.143.0
1
+ /** @license Frontegg v6.144.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": "6.143.0",
3
+ "version": "6.144.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": "6.143.0",
9
+ "@frontegg/redux-store": "6.144.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },