@frontegg/types 6.127.0-alpha.0 → 6.127.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.
|
@@ -293,6 +293,10 @@ export interface SecurityLocalization {
|
|
|
293
293
|
* Block public domain checkbox text
|
|
294
294
|
*/
|
|
295
295
|
blockPublicDomains: string;
|
|
296
|
+
/**
|
|
297
|
+
* Block public domain checkbox description
|
|
298
|
+
*/
|
|
299
|
+
blockPublicDomainsDescription: string;
|
|
296
300
|
/**
|
|
297
301
|
* Allow button text
|
|
298
302
|
*/
|
|
@@ -353,6 +357,10 @@ export interface SecurityLocalization {
|
|
|
353
357
|
* Text for empty state - when all fields are hidden
|
|
354
358
|
*/
|
|
355
359
|
emptyStateText: string;
|
|
360
|
+
/**
|
|
361
|
+
* Add domains title
|
|
362
|
+
*/
|
|
363
|
+
addDomainsTitle: string;
|
|
356
364
|
};
|
|
357
365
|
/**
|
|
358
366
|
* Apply session management policies dialog
|
|
@@ -584,6 +592,9 @@ export interface SecurityLocalization {
|
|
|
584
592
|
removeStaleUsersButtonText: string;
|
|
585
593
|
emptyStateForRecommendationsTitle: string;
|
|
586
594
|
emptyStateForRecommendationsDescription: string;
|
|
595
|
+
scoreTitle: string;
|
|
596
|
+
scoreDescriptionToImproveScore: string;
|
|
597
|
+
scoreDescriptionWhenAllSet: string;
|
|
587
598
|
};
|
|
588
599
|
securityCenter_insights: {
|
|
589
600
|
mfaForcedText: string;
|
|
@@ -595,9 +606,7 @@ export interface SecurityLocalization {
|
|
|
595
606
|
improvePasswordHistoryPolicyText: string;
|
|
596
607
|
noSessionSettingsText: string;
|
|
597
608
|
partialSessionsSettingsText: string;
|
|
598
|
-
partialIncorrectSessionSettingsText: string;
|
|
599
609
|
fullSessionSettingsText: string;
|
|
600
|
-
fullIncorrectSessionSettingsText: string;
|
|
601
610
|
staleUsersExistText: string;
|
|
602
611
|
noStaleUsersExistText: string;
|
|
603
612
|
noIpRestrictionsText: string;
|
|
@@ -606,11 +615,16 @@ export interface SecurityLocalization {
|
|
|
606
615
|
noDomainRestrictionsText: string;
|
|
607
616
|
domainAllowListText: string;
|
|
608
617
|
domainDenyListText: string;
|
|
618
|
+
mfaCardTitle: string;
|
|
619
|
+
mfaCardButtonText: string;
|
|
620
|
+
passwordCardTitle: string;
|
|
621
|
+
passwordCardButtonText: string;
|
|
622
|
+
sessionsCardTitle: string;
|
|
623
|
+
sessionsCardButtonText: string;
|
|
624
|
+
restrictionsCardTitle: string;
|
|
625
|
+
restrictionsCardButtonText: string;
|
|
609
626
|
};
|
|
610
|
-
|
|
611
|
-
* Security center inner page
|
|
612
|
-
*/
|
|
613
|
-
securityCenterInnerPage: {
|
|
627
|
+
securityCenter_mainPage: {
|
|
614
628
|
/**
|
|
615
629
|
* Security center inner Page title. Will be shown next to back button.
|
|
616
630
|
* Inner pages: MFA, Password, Restrictions, Inactivity, Sessions.
|
|
@@ -621,6 +635,7 @@ export interface SecurityLocalization {
|
|
|
621
635
|
configurations: string;
|
|
622
636
|
showLessButtonText: string;
|
|
623
637
|
shoeMoreButtonText: string;
|
|
638
|
+
securityCheckUp: string;
|
|
624
639
|
};
|
|
625
640
|
security_mfaInnerPage: {
|
|
626
641
|
title: 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": "6.127.0
|
|
3
|
+
"version": "6.127.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.127.0
|
|
9
|
+
"@frontegg/redux-store": "6.127.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|