@frontegg/types 6.105.0-alpha.1 → 6.105.0-alpha.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.
@@ -32,6 +32,7 @@ export declare type NavigationMetadata = {
32
32
  apiTokens?: PageMetadata /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */;
33
33
  personalApiTokens?: PageMetadata /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */;
34
34
  subscriptions?: PageMetadata /** extend with 'interface SubscriptionsMetadata extends PageMetadata {}' */;
35
+ allAccounts?: PageMetadata /** extend with 'interface AllAccountsMetadata extends PageMetadata {}' */;
35
36
  };
36
37
  declare type PaletteOptions = {
37
38
  primary?: PaletteColorOptions;
@@ -120,7 +120,7 @@ export interface AllAccountsLocalization {
120
120
  createBtnText: string;
121
121
  /**
122
122
  * Success description
123
- * @default 'The {{accountName}} account has been successfully created'
123
+ * @default '{{accountName}} account has been created'
124
124
  * */
125
125
  successDescription: string;
126
126
  /**
@@ -243,6 +243,11 @@ export interface AllAccountsLocalization {
243
243
  * @default 'Edit'
244
244
  * */
245
245
  editAccountBtnText: string;
246
+ /**
247
+ * Delete account button text
248
+ * @default 'Delete'
249
+ * */
250
+ deleteAccountBtnText: string;
246
251
  /**
247
252
  * Users tab text
248
253
  * @default 'Users'
@@ -303,6 +308,26 @@ export interface AllAccountsLocalization {
303
308
  * @default 'Delete user'
304
309
  * */
305
310
  deleteUserBtnText: string;
311
+ /**
312
+ * No users text
313
+ * @default 'No users yet'
314
+ * */
315
+ noUsersText: string;
316
+ /**
317
+ * No users description
318
+ * @default 'Add new users to see the results in your table'
319
+ * */
320
+ noUsersDescription: string;
321
+ /**
322
+ * No results found text
323
+ * @default 'No results found'
324
+ * */
325
+ noResultsFoundText: string;
326
+ /**
327
+ * No results found description
328
+ * @default 'It seems we can’t find any results based on your search.'
329
+ * */
330
+ noResultsFoundDescription: string;
306
331
  };
307
332
  /**
308
333
  * Single account add users dialog strings
@@ -394,4 +419,39 @@ export interface AllAccountsLocalization {
394
419
  * */
395
420
  deleteBtnText: string;
396
421
  };
422
+ /**
423
+ * Single account sub-accounts edit user roles dialog strings
424
+ * */
425
+ singleAccountView_EditUserRolesDialog: {
426
+ /**
427
+ * Edit user roles dialog title
428
+ * @default 'Edit {{userName}} roles'
429
+ * */
430
+ title: string;
431
+ /**
432
+ * Cancel button text
433
+ * @default 'Cancel'
434
+ * */
435
+ cancelBtnText: string;
436
+ /**
437
+ * Update button text
438
+ * @default 'Save'
439
+ * */
440
+ updateBtnText: string;
441
+ /**
442
+ * Roles is required error text
443
+ * @default 'At least one role is required'
444
+ * */
445
+ rolesRequiredError: string;
446
+ /**
447
+ * Select role label
448
+ * @default 'Select Roles'
449
+ * */
450
+ selectRolesLabel: string;
451
+ /**
452
+ * Select role placeholder
453
+ * @default 'Select role'
454
+ * */
455
+ selectRolePlaceholder: string;
456
+ };
397
457
  }
@@ -379,6 +379,10 @@ export interface LoginLocalization {
379
379
  usePasskeys: string;
380
380
  continueToApp: string;
381
381
  dontAskMeAgain: string;
382
+ breachedPasswordTitle: string;
383
+ breachedPasswordSubtitle: string;
384
+ sendPasswordResetEmailButton: string;
385
+ skip: string;
382
386
  /**
383
387
  * Enroll MFA list title
384
388
  */
package/Metadata/index.js CHANGED
@@ -65,6 +65,9 @@ const defaultMetadata = {
65
65
  subscriptions: {
66
66
  visibility: 'hidden',
67
67
  permissions: ['fe.subscriptions.*']
68
+ },
69
+ allAccounts: {
70
+ visibility: 'hidden'
68
71
  }
69
72
  }
70
73
  };
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.105.0-alpha.1
1
+ /** @license Frontegg v6.105.0-alpha.2
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.
@@ -78,6 +78,9 @@ const defaultMetadata = {
78
78
  subscriptions: {
79
79
  visibility: 'hidden',
80
80
  permissions: ['fe.subscriptions.*']
81
+ },
82
+ allAccounts: {
83
+ visibility: 'hidden'
81
84
  }
82
85
  }
83
86
  };
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.105.0-alpha.1
1
+ /** @license Frontegg v6.105.0-alpha.2
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.105.0-alpha.1",
3
+ "version": "6.105.0-alpha.2",
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.105.0-alpha.1",
9
+ "@frontegg/redux-store": "6.105.0-alpha.2",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },