@frontegg/types 7.57.0 → 7.58.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.
|
@@ -20,6 +20,10 @@ export interface AuthOptions extends Partial<Omit<AuthState, 'routes'>> {
|
|
|
20
20
|
* Origins that are allowed to clear idle session timeout from
|
|
21
21
|
*/
|
|
22
22
|
clearIdleTimeoutAllowedOrigins?: string[];
|
|
23
|
+
/**
|
|
24
|
+
* skip loading user profile, tenants and permissions on application load
|
|
25
|
+
*/
|
|
26
|
+
skipUserLoading?: boolean;
|
|
23
27
|
/**
|
|
24
28
|
* Advanced options for social logins flow
|
|
25
29
|
*/
|
|
@@ -689,13 +689,16 @@ export interface SecurityLocalization {
|
|
|
689
689
|
passwordHistoryTitle: string;
|
|
690
690
|
passwordHistoryDescription: string;
|
|
691
691
|
passwordRotationTitle: string;
|
|
692
|
+
passwordRotationCannotWriteMessage: string;
|
|
692
693
|
passwordRotationDescription: string;
|
|
693
694
|
notificationPeriodTitle: string;
|
|
694
695
|
notificationPeriodDescription: string;
|
|
696
|
+
reminderNotificationTooltip: string;
|
|
695
697
|
userLockoutValidation: string;
|
|
696
698
|
passwordHistoryValidation: string;
|
|
697
699
|
rotationPeriodMin: string;
|
|
698
|
-
|
|
700
|
+
rotationPeriodMaxVendor: string;
|
|
701
|
+
rotationPeriodMax5Years: string;
|
|
699
702
|
rotationPeriodInvalid: string;
|
|
700
703
|
rotationPeriodRequired: string;
|
|
701
704
|
notificationPeriodValidation: string;
|
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": "7.
|
|
3
|
+
"version": "7.58.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": "7.
|
|
9
|
+
"@frontegg/redux-store": "7.58.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|