@frontegg/types 6.197.0 → 6.198.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.
@@ -89,4 +89,8 @@ export interface FronteggAppOptions extends FronteggStoreOptions, PrivateOptions
89
89
  * Entitlements options
90
90
  */
91
91
  entitlementsOptions?: EntitlementsOptions;
92
+ /**
93
+ * App name for multi-app support
94
+ */
95
+ appName?: string;
92
96
  }
@@ -269,6 +269,63 @@ export interface AllAccountsLocalization {
269
269
  * */
270
270
  saveBtnText: string;
271
271
  };
272
+ allAccounts_UpdateSubAccountHierarchySettingsDialog: {
273
+ /**
274
+ * Update sub account hierarchy settings dialog header
275
+ * @default 'Settings'
276
+ * */
277
+ header: string;
278
+ /**
279
+ * Update sub account hierarchy settings dialog title
280
+ * @default 'Sub-account access'
281
+ * */
282
+ title: string;
283
+ /**
284
+ * Update sub account hierarchy settings dialog subtitle
285
+ * @default 'Select the starting point of the sub-account access toggle when inviting and managing users'
286
+ * */
287
+ subtitle: string;
288
+ /**
289
+ * Default off option title
290
+ * @default 'Default off'
291
+ * */
292
+ defaultOffTitle: string;
293
+ /**
294
+ * Default off option description
295
+ * @default 'The toggle will be off to start but can be toggled on'
296
+ * */
297
+ defaultOffDescription: string;
298
+ /**
299
+ * Default on option title
300
+ * @default 'Default on'
301
+ * */
302
+ defaultOnTitle: string;
303
+ /**
304
+ * Default on option description
305
+ * @default `The toggle will be on to start and can be toggled off. Existing users won't be affected.`
306
+ * */
307
+ defaultOnDescription: string;
308
+ /**
309
+ * Always on option title
310
+ * @default 'Always on'
311
+ * */
312
+ alwaysOnTitle: string;
313
+ /**
314
+ * Always on option description
315
+ * @default `The toggle will always be on and users in this account will always have sub-account access`
316
+ * */
317
+ alwaysOnDescription: string;
318
+ /**
319
+ * Done button text
320
+ * @default 'Done'
321
+ * */
322
+ done: string;
323
+ /**
324
+ * Cancel button text
325
+ * @default 'Cancel'
326
+ * */
327
+ cancel: string;
328
+ };
272
329
  /**
273
330
  * Single account view strings
274
331
  * */
@@ -308,6 +365,11 @@ export interface AllAccountsLocalization {
308
365
  * @default 'Edit account name'
309
366
  * */
310
367
  editAccountBtnText: string;
368
+ /**
369
+ * Edit sub account hierarchy settings button text
370
+ * @default 'Sub account access settings'
371
+ * */
372
+ editSubAccountHierarchySettingsBtnText: string;
311
373
  /**
312
374
  * Delete account button text
313
375
  * @default 'Delete'
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.197.0
1
+ /** @license Frontegg v6.198.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.197.0
1
+ /** @license Frontegg v6.198.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.197.0",
3
+ "version": "6.198.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.197.0",
9
+ "@frontegg/redux-store": "6.198.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },