@frontegg/types 4.42.1 → 4.42.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.
package/FronteggAppOptions.d.ts
CHANGED
|
@@ -9,10 +9,6 @@ export interface FronteggAppOptions extends FronteggStoreOptions {
|
|
|
9
9
|
withCompanyName?: boolean;
|
|
10
10
|
contextOptions: ContextOptions;
|
|
11
11
|
themeOptions?: FronteggThemeOptions;
|
|
12
|
-
/**
|
|
13
|
-
* Authentication header logo image
|
|
14
|
-
* @deprecated, use components.authPage.headerImage
|
|
15
|
-
*/
|
|
16
12
|
headerImage?: string;
|
|
17
13
|
/**
|
|
18
14
|
* Authentication background logo image
|
|
@@ -125,6 +125,10 @@ export interface SecurityLocalization {
|
|
|
125
125
|
* Max attempts before lockout user input placeholder
|
|
126
126
|
*/
|
|
127
127
|
attemptsInputPlaceholder: string;
|
|
128
|
+
/**
|
|
129
|
+
* Max attempts before lockout user input error message
|
|
130
|
+
*/
|
|
131
|
+
attemptsInputErrorMessage: string;
|
|
128
132
|
/**
|
|
129
133
|
* Cancel editing lockout policy button text
|
|
130
134
|
*/
|
|
@@ -72,6 +72,14 @@ export interface LoginLocalization {
|
|
|
72
72
|
* Error displayed if MFA code length less than 6 characters
|
|
73
73
|
*/
|
|
74
74
|
mfaCodeLengthAtLeast6: string;
|
|
75
|
+
/**
|
|
76
|
+
* Error displayed if two factor code input is empty
|
|
77
|
+
*/
|
|
78
|
+
twoFactorCodeIsRequired: string;
|
|
79
|
+
/**
|
|
80
|
+
* Error displayed if two code length less than 8 characters
|
|
81
|
+
*/
|
|
82
|
+
twoFactorCodeLengthAtLeast8: string;
|
|
75
83
|
/**
|
|
76
84
|
* text of remember device CheckBox If MFA is enabled
|
|
77
85
|
* EX: "Don't ask again on this device for {{count}} day"
|