@frontegg/types 6.131.0-alpha.1 → 6.131.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.
|
@@ -16,6 +16,15 @@ export interface AuthOptions extends Partial<Omit<AuthState, 'routes'>> {
|
|
|
16
16
|
* Origins that are allowed to clear idle session timeout from
|
|
17
17
|
*/
|
|
18
18
|
clearIdleTimeoutAllowedOrigins?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* Advanced options for hosted login mode
|
|
21
|
+
*/
|
|
22
|
+
hostedLoginOptions?: {
|
|
23
|
+
/**
|
|
24
|
+
* Loading the user when the application renders, hiding your children until the user is loaded if exists
|
|
25
|
+
*/
|
|
26
|
+
loadUserOnFirstLoad?: boolean;
|
|
27
|
+
};
|
|
19
28
|
}
|
|
20
29
|
export interface AuditsOptions extends Partial<AuditsState> {
|
|
21
30
|
virtualScroll?: boolean;
|
|
@@ -666,4 +666,11 @@ export interface SecurityLocalization {
|
|
|
666
666
|
passwordHistoryValidation: string;
|
|
667
667
|
save: string;
|
|
668
668
|
};
|
|
669
|
+
securityCenter_InnerPages: {
|
|
670
|
+
summary: string;
|
|
671
|
+
configurations: string;
|
|
672
|
+
};
|
|
673
|
+
securityCenter_InactivityPage: {
|
|
674
|
+
inactivity: string;
|
|
675
|
+
};
|
|
669
676
|
}
|
package/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.131.0
|
|
3
|
+
"version": "6.131.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.131.0
|
|
9
|
+
"@frontegg/redux-store": "6.131.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|