@frontegg/types 7.0.0-alpha.1 → 7.0.0-alpha.10
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.
- package/ContextOptions.d.ts +4 -0
- package/FronteggAppInstance.d.ts +3 -2
- package/FronteggAppOptions.d.ts +4 -0
- package/FronteggMetadata.d.ts +6 -2
- package/FronteggStoreOptions.d.ts +10 -0
- package/Localizations/AdminPortalLocalizations/accountSettings.d.ts +16 -0
- package/Localizations/AdminPortalLocalizations/allAccounts.d.ts +122 -0
- package/Localizations/AdminPortalLocalizations/allUsers.d.ts +1 -1
- package/Localizations/AdminPortalLocalizations/apiTokens.d.ts +4 -0
- package/Localizations/AdminPortalLocalizations/appDialog.d.ts +11 -0
- package/Localizations/AdminPortalLocalizations/appDialog.js +1 -0
- package/Localizations/AdminPortalLocalizations/index.d.ts +3 -1
- package/Localizations/AdminPortalLocalizations/index.js +1 -0
- package/Localizations/AdminPortalLocalizations/navigation.d.ts +4 -0
- package/Localizations/AdminPortalLocalizations/privacy.d.ts +32 -0
- package/Localizations/AdminPortalLocalizations/profile.d.ts +13 -0
- package/Localizations/AdminPortalLocalizations/provisioning.d.ts +16 -0
- package/Localizations/AdminPortalLocalizations/roles.d.ts +46 -0
- package/Localizations/AdminPortalLocalizations/users.d.ts +150 -1
- package/Localizations/LoginBoxLocalization/index.d.ts +5 -1
- package/Localizations/LoginBoxLocalization/index.js +2 -0
- package/Localizations/LoginBoxLocalization/login.d.ts +15 -0
- package/Localizations/LoginBoxLocalization/openApp.d.ts +23 -0
- package/Localizations/LoginBoxLocalization/openApp.js +1 -0
- package/Localizations/LoginBoxLocalization/stepUp.d.ts +51 -0
- package/Localizations/LoginBoxLocalization/stepUp.js +1 -0
- package/Metadata/index.js +1 -3
- package/PrivateOptions.d.ts +14 -0
- package/ShowAdminPortalOptions.d.ts +3 -0
- package/ShowAdminPortalOptions.js +1 -0
- package/ThemeOptions/AdminPortalThemeOptions.d.ts +85 -1
- package/ThemeOptions/DisclaimerOptions.d.ts +1 -0
- package/ThemeOptions/LoginBoxTheme/OpenAppPageTheme.d.ts +39 -0
- package/ThemeOptions/LoginBoxTheme/OpenAppPageTheme.js +1 -0
- package/ThemeOptions/LoginBoxTheme/SignupPageTheme.d.ts +30 -0
- package/ThemeOptions/LoginBoxTheme/SignupPageTheme.js +8 -1
- package/ThemeOptions/LoginBoxTheme/StepUpTheme.d.ts +3 -0
- package/ThemeOptions/LoginBoxTheme/StepUpTheme.js +1 -0
- package/ThemeOptions/LoginBoxTheme/index.d.ts +7 -0
- package/ThemeOptions/LoginBoxTheme/index.js +1 -0
- package/ThemeOptions/fieldsAppearanceConsts.d.ts +13 -2
- package/ThemeOptions/fieldsAppearanceConsts.js +10 -0
- package/ThemeOptions/fieldsAppearanceTypes.d.ts +13 -2
- package/ThemeOptions/index.d.ts +1 -0
- package/index.d.ts +3 -1
- package/index.js +2 -1
- package/node/Localizations/AdminPortalLocalizations/appDialog.js +5 -0
- package/node/Localizations/AdminPortalLocalizations/index.js +11 -0
- package/node/Localizations/LoginBoxLocalization/index.js +22 -0
- package/node/Localizations/LoginBoxLocalization/openApp.js +5 -0
- package/node/Localizations/LoginBoxLocalization/stepUp.js +5 -0
- package/node/Metadata/index.js +1 -3
- package/node/ShowAdminPortalOptions.js +5 -0
- package/node/ThemeOptions/LoginBoxTheme/OpenAppPageTheme.js +5 -0
- package/node/ThemeOptions/LoginBoxTheme/SignupPageTheme.js +10 -1
- package/node/ThemeOptions/LoginBoxTheme/StepUpTheme.js +5 -0
- package/node/ThemeOptions/LoginBoxTheme/index.js +11 -0
- package/node/ThemeOptions/fieldsAppearanceConsts.js +12 -1
- package/node/index.js +12 -1
- package/package.json +2 -2
package/ContextOptions.d.ts
CHANGED
|
@@ -8,6 +8,10 @@ export interface ContextOptions {
|
|
|
8
8
|
* Frontegg clientId. Identifier from your Frontegg workspace account.
|
|
9
9
|
*/
|
|
10
10
|
clientId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Will be used to identify the application, use only for multi applications
|
|
13
|
+
*/
|
|
14
|
+
appId?: string;
|
|
11
15
|
/**
|
|
12
16
|
* Whether or not to send Fetch request with Credentials to the Backend
|
|
13
17
|
* default: 'include'
|
package/FronteggAppInstance.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnhancedStore } from '@frontegg/redux-store';
|
|
2
|
-
import { FronteggAppOptions, FronteggCheckoutDialogOptions, LocalizationsOverrides } from './index';
|
|
2
|
+
import { FronteggAppOptions, FronteggCheckoutDialogOptions, LocalizationsOverrides, ShowAdminPortalOptions } from './index';
|
|
3
3
|
export interface FronteggAppInstance {
|
|
4
4
|
name: string;
|
|
5
5
|
iframeRendering: boolean;
|
|
@@ -15,7 +15,8 @@ export interface FronteggAppInstance {
|
|
|
15
15
|
options: FronteggAppOptions;
|
|
16
16
|
updateMetadata: (metadata: FronteggAppOptions['metadata']) => void;
|
|
17
17
|
updateLocalizationsSetter: (localizationUpdateFn: (localizations: LocalizationsOverrides) => void) => void;
|
|
18
|
-
showAdminPortal: () => void;
|
|
18
|
+
showAdminPortal: (options?: ShowAdminPortalOptions) => void;
|
|
19
|
+
openHostedAdminPortal: (newTab?: boolean) => void;
|
|
19
20
|
hideAdminPortal: () => void;
|
|
20
21
|
showCheckoutDialog: (opts: FronteggCheckoutDialogOptions) => void;
|
|
21
22
|
hideCheckoutDialog: () => void;
|
package/FronteggAppOptions.d.ts
CHANGED
package/FronteggMetadata.d.ts
CHANGED
|
@@ -64,15 +64,19 @@ export interface GTMConfiguration {
|
|
|
64
64
|
export interface IntegrationsMetadata {
|
|
65
65
|
gtm?: GTMConfiguration[];
|
|
66
66
|
}
|
|
67
|
+
export interface MetadataOverrides {
|
|
68
|
+
url?: string;
|
|
69
|
+
}
|
|
67
70
|
export declare type FronteggMetadata = {
|
|
68
71
|
theme?: ThemeMetadata;
|
|
69
72
|
themeV2?: FronteggThemeOptions;
|
|
70
73
|
navigation?: NavigationMetadata;
|
|
71
74
|
localizations?: LocalizationsOverrides;
|
|
72
75
|
integrations?: IntegrationsMetadata;
|
|
76
|
+
metadataOverrides?: MetadataOverrides;
|
|
73
77
|
};
|
|
74
78
|
export declare type SubscriptionRolePermissions = 'fe.subscriptions.*' | 'fe.subscriptions.read.*' | 'fe.subscriptions.write.*';
|
|
75
79
|
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';
|
|
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' | AllAccountsPermissions | SubscriptionRolePermissions | GroupsRolePermissions;
|
|
80
|
+
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';
|
|
81
|
+
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' | 'fe.secure.write.enableDisable' | AllAccountsPermissions | SubscriptionRolePermissions | GroupsRolePermissions;
|
|
78
82
|
export {};
|
|
@@ -4,6 +4,10 @@ export interface AuthOptions extends Partial<Omit<AuthState, 'routes'>> {
|
|
|
4
4
|
includeQueryParam?: boolean;
|
|
5
5
|
routes?: Partial<AuthPageRoutes>;
|
|
6
6
|
disableSilentRefresh?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Determine if each tab operates with a separate tenant context
|
|
9
|
+
*/
|
|
10
|
+
enableSessionPerTenant?: boolean;
|
|
7
11
|
/**
|
|
8
12
|
* Determine if the redirect url query param of after auth should be enforced to same site
|
|
9
13
|
*/
|
|
@@ -16,6 +20,12 @@ export interface AuthOptions extends Partial<Omit<AuthState, 'routes'>> {
|
|
|
16
20
|
* Origins that are allowed to clear idle session timeout from
|
|
17
21
|
*/
|
|
18
22
|
clearIdleTimeoutAllowedOrigins?: string[];
|
|
23
|
+
/**
|
|
24
|
+
* Advanced options for social logins flow
|
|
25
|
+
*/
|
|
26
|
+
socialLoginOptions?: {
|
|
27
|
+
promptConsent?: boolean;
|
|
28
|
+
};
|
|
19
29
|
/**
|
|
20
30
|
* Advanced options for hosted login mode
|
|
21
31
|
*/
|
|
@@ -59,6 +59,22 @@ export interface AccountSettingsLocalization {
|
|
|
59
59
|
* Text to display if all fields are hidden
|
|
60
60
|
*/
|
|
61
61
|
emptyStateText: string;
|
|
62
|
+
/**
|
|
63
|
+
* Applications section title
|
|
64
|
+
*/
|
|
65
|
+
accountApplications: string;
|
|
66
|
+
/**
|
|
67
|
+
* Redirect to app button cta
|
|
68
|
+
*/
|
|
69
|
+
open: string;
|
|
70
|
+
/**
|
|
71
|
+
* prefix for user count in the account application card
|
|
72
|
+
*/
|
|
73
|
+
usersCount: string;
|
|
74
|
+
/**
|
|
75
|
+
* suffix for user count in the account application card for default and auto-assigned apps
|
|
76
|
+
*/
|
|
77
|
+
all: string;
|
|
62
78
|
};
|
|
63
79
|
/**
|
|
64
80
|
* Account settings edit Address Dialog strings
|
|
@@ -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
|
|
@@ -210,6 +269,63 @@ export interface AllAccountsLocalization {
|
|
|
210
269
|
* */
|
|
211
270
|
saveBtnText: string;
|
|
212
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
|
+
};
|
|
213
329
|
/**
|
|
214
330
|
* Single account view strings
|
|
215
331
|
* */
|
|
@@ -249,6 +365,11 @@ export interface AllAccountsLocalization {
|
|
|
249
365
|
* @default 'Edit account name'
|
|
250
366
|
* */
|
|
251
367
|
editAccountBtnText: string;
|
|
368
|
+
/**
|
|
369
|
+
* Edit sub account hierarchy settings button text
|
|
370
|
+
* @default 'Sub account access settings'
|
|
371
|
+
* */
|
|
372
|
+
editSubAccountHierarchySettingsBtnText: string;
|
|
252
373
|
/**
|
|
253
374
|
* Delete account button text
|
|
254
375
|
* @default 'Delete'
|
|
@@ -269,6 +390,7 @@ export interface AllAccountsLocalization {
|
|
|
269
390
|
* @default 'Search by email'
|
|
270
391
|
*/
|
|
271
392
|
searchUserPlaceholder: string;
|
|
393
|
+
accountManager: string;
|
|
272
394
|
};
|
|
273
395
|
/**
|
|
274
396
|
* Single account view no permissions page strings
|
|
@@ -229,7 +229,7 @@ export interface AllUsersLocalization {
|
|
|
229
229
|
expirationInputPlaceholder: string;
|
|
230
230
|
/**
|
|
231
231
|
* Link expiration description
|
|
232
|
-
* EX: 'link will
|
|
232
|
+
* EX: 'link will expire in {{number}} day(s)',
|
|
233
233
|
*/
|
|
234
234
|
linkExpiration: string;
|
|
235
235
|
/**
|
|
@@ -116,6 +116,10 @@ export interface ApiTokensLocalization {
|
|
|
116
116
|
* Expires option display as 'never' it's value: null
|
|
117
117
|
*/
|
|
118
118
|
neverExpire: string;
|
|
119
|
+
/**
|
|
120
|
+
* Expires option display as 'After 1 day' it's value: 1
|
|
121
|
+
*/
|
|
122
|
+
expireAfter1Day: string;
|
|
119
123
|
/**
|
|
120
124
|
* Expires option display as 'After 7 days' it's value: 7
|
|
121
125
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -15,6 +15,7 @@ import { AllUsersLocalization } from './allUsers';
|
|
|
15
15
|
import { ProvisioningLocalization } from './provisioning';
|
|
16
16
|
import { UsersGroupsLocalization } from './groups';
|
|
17
17
|
import { AllAccountsLocalization } from './allAccounts';
|
|
18
|
+
import { AppDialogLocalization } from './appDialog';
|
|
18
19
|
export * from './navigation';
|
|
19
20
|
export * from './profile';
|
|
20
21
|
export * from './personalTokens';
|
|
@@ -32,4 +33,5 @@ export * from './subscriptions';
|
|
|
32
33
|
export * from './allUsers';
|
|
33
34
|
export * from './provisioning';
|
|
34
35
|
export * from './allAccounts';
|
|
35
|
-
export
|
|
36
|
+
export * from './appDialog';
|
|
37
|
+
export declare type AdminPortalLocalization = NavigationLocalization & ProfileLocalization & PersonalTokensLocalization & AuditLogsLocalization & ApiTokensLocalization & AccountSettingsLocalization & PrivacyLocalization & SecurityLocalization & RolesLocalization & SsoLocalization & UsersLocalization & UsersGroupsLocalization & WebhooksLocalization & SubscriptionsLocalization & AllUsersLocalization & ProvisioningLocalization & AllAccountsLocalization & AppDialogLocalization;
|
|
@@ -12,6 +12,10 @@ export interface NavigationLocalization {
|
|
|
12
12
|
* in navigation
|
|
13
13
|
*/
|
|
14
14
|
workspace: string;
|
|
15
|
+
/**
|
|
16
|
+
* Text displayed as separator navigation header and personal settings
|
|
17
|
+
*/
|
|
18
|
+
myAccount: string;
|
|
15
19
|
/**
|
|
16
20
|
* Text displayed as separator between tenant settings and all accounts settings
|
|
17
21
|
* in navigation
|
|
@@ -87,6 +87,13 @@ export interface PrivacyLocalization {
|
|
|
87
87
|
setUpPasskeys: string;
|
|
88
88
|
noPasskeysSetYet: string;
|
|
89
89
|
disabledSetUpPasskeysTooltip: string;
|
|
90
|
+
mfaSmsDisabledTooltip: string;
|
|
91
|
+
smsTitle: string;
|
|
92
|
+
setUpSms: string;
|
|
93
|
+
noPhoneNumberSet: string;
|
|
94
|
+
disabledSetUpSmsTooltip: string;
|
|
95
|
+
editPhoneNumber: string;
|
|
96
|
+
deletePhoneNumber: string;
|
|
90
97
|
};
|
|
91
98
|
/**
|
|
92
99
|
* Privacy page change password dialogs strings
|
|
@@ -177,6 +184,13 @@ export interface PrivacyLocalization {
|
|
|
177
184
|
cancel: string;
|
|
178
185
|
disable: string;
|
|
179
186
|
};
|
|
187
|
+
privacy_deleteSmsDialog: {
|
|
188
|
+
dialogTitle: string;
|
|
189
|
+
deleteSmsFirstDescription: string;
|
|
190
|
+
deleteSmsSecondDescription: string;
|
|
191
|
+
cancel: string;
|
|
192
|
+
delete: string;
|
|
193
|
+
};
|
|
180
194
|
privacy_DisableMfaAuthenticatorApp: {
|
|
181
195
|
/**
|
|
182
196
|
* Disable mfa dialog title
|
|
@@ -354,4 +368,22 @@ export interface PrivacyLocalization {
|
|
|
354
368
|
cancel: string;
|
|
355
369
|
delete: string;
|
|
356
370
|
};
|
|
371
|
+
privacy_setUpSmsDialog: {
|
|
372
|
+
setUpSmsTitle: string;
|
|
373
|
+
preVerifySmsDescription: string;
|
|
374
|
+
phoneIsRequired: string;
|
|
375
|
+
phoneIsInvalid: string;
|
|
376
|
+
verifyDescription: string;
|
|
377
|
+
cancel: string;
|
|
378
|
+
confirm: string;
|
|
379
|
+
continue: string;
|
|
380
|
+
otcResend: string;
|
|
381
|
+
otcResending: string;
|
|
382
|
+
successfullySetUpTitle: string;
|
|
383
|
+
successfullySetUpDescription: string;
|
|
384
|
+
phoneNumber: string;
|
|
385
|
+
successfullyAddedTitle: string;
|
|
386
|
+
successfullyAddedDescription: string;
|
|
387
|
+
done: string;
|
|
388
|
+
};
|
|
357
389
|
}
|
|
@@ -63,6 +63,19 @@ export interface ProfileLocalization {
|
|
|
63
63
|
* Remove profile image action in profile page
|
|
64
64
|
*/
|
|
65
65
|
removeImage: string;
|
|
66
|
+
disabledEditPhoneNumberTooltip: string;
|
|
67
|
+
/**
|
|
68
|
+
* Profile page edit avatar button aria label
|
|
69
|
+
*/
|
|
70
|
+
editAvatarButtonAriaLabel: string;
|
|
71
|
+
/**
|
|
72
|
+
* Applications section title
|
|
73
|
+
*/
|
|
74
|
+
myApplications: string;
|
|
75
|
+
/**
|
|
76
|
+
* Redirect to app button cta
|
|
77
|
+
*/
|
|
78
|
+
open: string;
|
|
66
79
|
};
|
|
67
80
|
/**
|
|
68
81
|
* Edit user name and title Dialog strings
|
|
@@ -80,6 +80,10 @@ 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;
|
|
83
87
|
/**
|
|
84
88
|
* Done button text
|
|
85
89
|
*/
|
|
@@ -132,6 +136,18 @@ export interface ProvisioningLocalization {
|
|
|
132
136
|
* Required field text
|
|
133
137
|
*/
|
|
134
138
|
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;
|
|
135
151
|
};
|
|
136
152
|
provisioning_deleteConnectionDialog: {
|
|
137
153
|
/**
|
|
@@ -39,6 +39,32 @@ export interface RolesLocalization {
|
|
|
39
39
|
* Table actions column header text
|
|
40
40
|
*/
|
|
41
41
|
actionsHeader: string;
|
|
42
|
+
permissions: string;
|
|
43
|
+
noRolesMessage: string;
|
|
44
|
+
noRolesFoundMessage: string;
|
|
45
|
+
emptyChipsMessage: string;
|
|
46
|
+
editRole: string;
|
|
47
|
+
deleteRole: string;
|
|
48
|
+
};
|
|
49
|
+
roles_addOrEditRole: {
|
|
50
|
+
roleName: string;
|
|
51
|
+
roleDescription: string;
|
|
52
|
+
title: string;
|
|
53
|
+
defaultRole: string;
|
|
54
|
+
defaultRoleDescription: string;
|
|
55
|
+
cancel: string;
|
|
56
|
+
save: string;
|
|
57
|
+
nameRequiredValidation: string;
|
|
58
|
+
createNewRole: string;
|
|
59
|
+
setRoleDetails: string;
|
|
60
|
+
choosePermissions: string;
|
|
61
|
+
next: string;
|
|
62
|
+
createRole: string;
|
|
63
|
+
existingRoleNameValidation: string;
|
|
64
|
+
copyPermissionsFrom: string;
|
|
65
|
+
search: string;
|
|
66
|
+
noPermissionsFound: string;
|
|
67
|
+
permissionsRequiredError: string;
|
|
42
68
|
};
|
|
43
69
|
/**
|
|
44
70
|
* Add new role dialog strings
|
|
@@ -85,4 +111,24 @@ export interface RolesLocalization {
|
|
|
85
111
|
*/
|
|
86
112
|
create: string;
|
|
87
113
|
};
|
|
114
|
+
roles_singleRole: {
|
|
115
|
+
pageTitle: string;
|
|
116
|
+
permissions: string;
|
|
117
|
+
defaultRole: string;
|
|
118
|
+
emptyChipsMessage: string;
|
|
119
|
+
search: string;
|
|
120
|
+
managePermissions: string;
|
|
121
|
+
};
|
|
122
|
+
roles_deleteRole: {
|
|
123
|
+
title: string;
|
|
124
|
+
description: string;
|
|
125
|
+
cancel: string;
|
|
126
|
+
deleteRole: string;
|
|
127
|
+
};
|
|
128
|
+
roles_managePermissions: {
|
|
129
|
+
title: string;
|
|
130
|
+
cancel: string;
|
|
131
|
+
save: string;
|
|
132
|
+
permissionsRequiredError: string;
|
|
133
|
+
};
|
|
88
134
|
}
|