@frontegg/types 6.188.0-alpha.11 → 6.188.0-alpha.13

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.
@@ -73,6 +73,6 @@ export declare type FronteggMetadata = {
73
73
  };
74
74
  export declare type SubscriptionRolePermissions = 'fe.subscriptions.*' | 'fe.subscriptions.read.*' | 'fe.subscriptions.write.*';
75
75
  export declare type GroupsRolePermissions = 'fe.secure.delete.groups' | 'fe.secure.delete.groupsUsers' | 'fe.secure.read.groups' | 'fe.secure.write.groups' | 'fe.secure.write.groupsRoles' | 'fe.secure.write.groupsUsers';
76
- export declare type AllAccountsPermissions = 'fe.account-hierarchy.write.subAccount' | 'fe.account-hierarchy.write.subAccountAccess' | 'fe.account-hierarchy.read.subAccount' | 'fe.account-hierarchy.delete.subAccount';
76
+ export declare type AllAccountsPermissions = 'fe.account-hierarchy.write.subAccount' | 'fe.account-hierarchy.write.subAccountAccess' | 'fe.account-hierarchy.read.subAccount' | 'fe.account-hierarchy.delete.subAccount' | 'fe.account-hierarchy.write.subAccountManagement';
77
77
  export declare type RolePermission = 'fe.connectivity.*' | 'fe.connectivity.delete.*' | 'fe.connectivity.delete.bellNotifications' | 'fe.connectivity.delete.emailConfig' | 'fe.connectivity.delete.slackAppRegistration' | 'fe.connectivity.delete.slackSubscriptionEvent' | 'fe.connectivity.delete.slackSubscriptions' | 'fe.connectivity.delete.smsConfig' | 'fe.connectivity.delete.webhook' | 'fe.connectivity.read.*' | 'fe.connectivity.read.emailConfig' | 'fe.connectivity.read.eventCategories' | 'fe.connectivity.read.events' | 'fe.connectivity.read.slackApp' | 'fe.connectivity.read.slackChannels' | 'fe.connectivity.read.slackSubscriptions' | 'fe.connectivity.read.slackUsers' | 'fe.connectivity.read.smsConfig' | 'fe.connectivity.read.userBellNotifications' | 'fe.connectivity.read.webhookLogs' | 'fe.connectivity.read.webhooks' | 'fe.connectivity.write.*' | 'fe.connectivity.write.emailConfig' | 'fe.connectivity.write.sendWebpushNotification' | 'fe.connectivity.write.slackAppRegistration' | 'fe.connectivity.write.slackSubscriptions' | 'fe.connectivity.write.smsConfig' | 'fe.connectivity.write.subscribeWebpush' | 'fe.connectivity.write.triggerEvent' | 'fe.connectivity.write.updateSlackSubscription' | 'fe.connectivity.write.updateUserBellNotification' | 'fe.connectivity.write.webhook' | 'fe.secure.*' | 'fe.secure.delete.*' | 'fe.secure.delete.sessions' | 'fe.secure.delete.role' | 'fe.secure.delete.samlConfiguration' | 'fe.secure.delete.securityPolicy' | 'fe.secure.delete.tenantApiTokens' | 'fe.secure.delete.userApiTokens' | 'fe.secure.delete.users' | 'fe.secure.delete.usersRoles' | 'fe.secure.read.*' | 'fe.secure.read.accountSettings' | 'fe.secure.read.permissions' | 'fe.secure.read.roles' | 'fe.secure.read.samlConfiguration' | 'fe.secure.read.securityPolicy' | 'fe.secure.read.tenantApiTokens' | 'fe.secure.read.userApiTokens' | 'fe.secure.read.users' | 'fe.secure.read.userSubTenants' | 'fe.secure.write.userSubTenants' | 'fe.secure.write.*' | 'fe.secure.write.accountSettings' | 'fe.secure.write.resendActivationEmail' | 'fe.secure.write.roles' | 'fe.secure.write.samlConfiguration' | 'fe.secure.write.securityPolicy' | 'fe.secure.write.tenantApiTokens' | 'fe.secure.write.updateRole' | 'fe.secure.write.updateUser' | 'fe.secure.write.userApiTokens' | 'fe.secure.write.users' | 'fe.secure.write.usersRoles' | 'fe.secure.write.tenantInvites' | 'fe.secure.delete.tenantInvites' | 'fe.subscriptions.*' | 'fe.subscriptions.read.*' | 'fe.subscriptions.write.*' | 'fe.account-settings.delete.account' | 'fe.secure.read.audits' | 'fe.usage.read' | 'fe.secure.delete.ipRestrictions' | 'fe.secure.write.ipRestrictions' | 'fe.secure.read.ipRestrictions' | 'fe.secure.delete.emailDomainRestrictions' | 'fe.secure.write.emailDomainRestrictions' | 'fe.secure.read.emailDomainRestrictions' | 'fe.secure.read.provisioningConfiguration' | 'fe.secure.write.provisioningConfiguration' | 'fe.secure.delete.provisioningConfiguration' | 'fe.account-settings.write.custom-login-box' | 'fe.account-settings.read.app' | 'fe.secure.write.appsUsers' | 'fe.secure.delete.appsUsers' | AllAccountsPermissions | SubscriptionRolePermissions | GroupsRolePermissions;
78
78
  export {};
@@ -74,6 +74,65 @@ export interface AllAccountsLocalization {
74
74
  * @default 'Delete'
75
75
  * */
76
76
  deleteBtnText: string;
77
+ /**
78
+ * Disable sub-account management button text
79
+ * @default 'Disable sub-account management'
80
+ * */
81
+ disableSubAccountManagement: string;
82
+ /**
83
+ * Enable sub-account management button text
84
+ * @default 'Enable sub-account management'
85
+ * */
86
+ enableSubAccountManagement: string;
87
+ /**
88
+ * Account manager chip text
89
+ * @default 'Account Manager'
90
+ * */
91
+ accountManager: string;
92
+ };
93
+ allAccounts_DisableSubAccountManagementDialog: {
94
+ /**
95
+ * Disable sub-account management dialog title
96
+ * @default 'Disable sub-account management'
97
+ * */
98
+ title: string;
99
+ /**
100
+ * Disable sub-account management dialog description
101
+ * @default 'By disabling sub-account management, {{accountName}} will be no longer able to create and manage accounts on their own'
102
+ * */
103
+ description: string;
104
+ /**
105
+ * Disable sub-account management cancel button text
106
+ * @default 'Cancel'
107
+ * */
108
+ cancel: string;
109
+ /**
110
+ * Disable sub-account management disable button text
111
+ * @default 'Disable'
112
+ * */
113
+ disable: string;
114
+ };
115
+ allAccounts_EnableSubAccountManagementDialog: {
116
+ /**
117
+ * Enable sub-account management dialog title
118
+ * @default 'Enable sub-account management'
119
+ * */
120
+ title: string;
121
+ /**
122
+ * Enable sub-account management dialog description
123
+ * @default 'By enabling sub-account management, {{accountName}} will be able to create and manage accounts on their own'
124
+ * */
125
+ description: string;
126
+ /**
127
+ * Enable sub-account management cancel button text
128
+ * @default 'Cancel'
129
+ * */
130
+ cancel: string;
131
+ /**
132
+ * Enable sub-account management enable button text
133
+ * @default 'Enable'
134
+ * */
135
+ enable: string;
77
136
  };
78
137
  /**
79
138
  * All accounts graph strings
@@ -269,6 +328,7 @@ export interface AllAccountsLocalization {
269
328
  * @default 'Search by email'
270
329
  */
271
330
  searchUserPlaceholder: string;
331
+ accountManager: string;
272
332
  };
273
333
  /**
274
334
  * Single account view no permissions page strings
@@ -80,10 +80,6 @@ export interface ProvisioningLocalization {
80
80
  * Add connection dialog title
81
81
  */
82
82
  dialogTitle: string;
83
- /**
84
- * Add connection dialog body
85
- */
86
- dialogBody: string;
87
83
  /**
88
84
  * Done button text
89
85
  */
@@ -136,18 +132,6 @@ export interface ProvisioningLocalization {
136
132
  * Required field text
137
133
  */
138
134
  validation_requiredField: string;
139
- /**
140
- * Connection name required field
141
- */
142
- connectionNameIsRequired: string;
143
- /**
144
- * Connection name invalid length message
145
- */
146
- invalidConnectionNameLength: string;
147
- /**
148
- * Warning to show when SCIM guide configuration is not completed
149
- */
150
- scimGuideNotCompleted: string;
151
135
  };
152
136
  provisioning_deleteConnectionDialog: {
153
137
  /**
@@ -327,10 +327,6 @@ export interface SsoLocalization {
327
327
  * Back button text to close sso configuration dialog
328
328
  */
329
329
  backToSSO: string;
330
- /**
331
- * Back button text to close scim configuration dialog
332
- */
333
- backToScim: string;
334
330
  /**
335
331
  * Text display in first column inside MDX key value table
336
332
  */
@@ -367,26 +363,14 @@ export interface SsoLocalization {
367
363
  * Confirmation step complete title
368
364
  */
369
365
  confirmationStepCompleteTitle: string;
370
- /**
371
- * Confirmation step complete title for SCIM guide
372
- */
373
- confirmationStepCompleteScimTitle: string;
374
366
  /**
375
367
  * Confirmation step description
376
368
  */
377
369
  confirmationStepCompleteDescription: string;
378
- /**
379
- * Confirmation step description for scim guide
380
- */
381
- confirmationStepCompleteScimDescription: string;
382
370
  /**
383
371
  * Confirmation step claim Domain button
384
372
  */
385
373
  confirmationStepCompleteButton: string;
386
- /**
387
- * Confirmation step finish button
388
- */
389
- confirmationStepScimCompleteButton: string;
390
374
  /**
391
375
  * Confirmation step failed title
392
376
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.188.0-alpha.11
1
+ /** @license Frontegg v6.188.0-alpha.13
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.188.0-alpha.11
1
+ /** @license Frontegg v6.188.0-alpha.13
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.188.0-alpha.11",
3
+ "version": "6.188.0-alpha.13",
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.188.0-alpha.11",
9
+ "@frontegg/redux-store": "6.188.0-alpha.13",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },