@frontegg/types 5.72.2 → 5.74.1
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.
|
@@ -98,10 +98,16 @@ export interface LoginLocalization {
|
|
|
98
98
|
*/
|
|
99
99
|
twoFactorCodeLengthAtLeast8: string;
|
|
100
100
|
/**
|
|
101
|
-
* text
|
|
102
|
-
*
|
|
101
|
+
* text to display number of days to remember a device
|
|
102
|
+
* will be used ONLY if there are less than 365 days left
|
|
103
|
+
* EX: "for {{count}} day"
|
|
103
104
|
*/
|
|
104
105
|
mfaRememberThisDevice: string;
|
|
106
|
+
/**
|
|
107
|
+
* text of remember device CheckBox If MFA is enabled
|
|
108
|
+
* EX: "Don't ask again on this device"
|
|
109
|
+
*/
|
|
110
|
+
mfaRememberLongerThenYear: string;
|
|
105
111
|
/**
|
|
106
112
|
* Disable MFA title in MFA section if it's enabled
|
|
107
113
|
*/
|
|
@@ -261,10 +267,15 @@ export interface LoginLocalization {
|
|
|
261
267
|
*/
|
|
262
268
|
forceMfaVerifyButton: string;
|
|
263
269
|
/**
|
|
264
|
-
*
|
|
265
|
-
*
|
|
270
|
+
* text to display number of days to remember a device
|
|
271
|
+
* will be used ONLY if there are less than 365 days left
|
|
272
|
+
* EX: "for {{count}} day"
|
|
266
273
|
*/
|
|
267
274
|
forceMfaRememberThisDevice: string;
|
|
275
|
+
/**
|
|
276
|
+
* Force MFA section Page remember device checkbox
|
|
277
|
+
*/
|
|
278
|
+
forceMfaRememberLongerThenYear: string;
|
|
268
279
|
/**
|
|
269
280
|
* Localizations for split login components
|
|
270
281
|
*/
|
|
@@ -28,20 +28,6 @@ export interface RightPanelThemeOptions {
|
|
|
28
28
|
tableHeaderBackground: Color;
|
|
29
29
|
tableBodyBackground: Color;
|
|
30
30
|
}
|
|
31
|
-
export declare const enum AdminPortalPages {
|
|
32
|
-
Profile = "profile",
|
|
33
|
-
Privacy = "privacy",
|
|
34
|
-
PersonalTokens = "personalTokens",
|
|
35
|
-
AccountDetails = "accountDetails",
|
|
36
|
-
Users = "users",
|
|
37
|
-
Security = "security",
|
|
38
|
-
Sso = "sso",
|
|
39
|
-
AuditLogs = "auditLogs",
|
|
40
|
-
Webhooks = "webhooks",
|
|
41
|
-
ApiTokens = "apiTokens",
|
|
42
|
-
Roles = "roles",
|
|
43
|
-
Subscription = "subscription"
|
|
44
|
-
}
|
|
45
31
|
export interface PageThemeOptions extends BaseThemeOptions {
|
|
46
32
|
header?: ExtendedCSSProperties;
|
|
47
33
|
content?: ExtendedCSSProperties;
|