@frontegg/types 6.124.0-alpha.0 → 6.124.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.
- package/Localizations/AdminPortalLocalizations/security.d.ts +10 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -275,6 +275,10 @@ export interface SecurityLocalization {
|
|
|
275
275
|
* Text for empty state screen - if all fields are hidden
|
|
276
276
|
*/
|
|
277
277
|
emptyStateText: string;
|
|
278
|
+
/**
|
|
279
|
+
* Session section title
|
|
280
|
+
*/
|
|
281
|
+
sessionsTitle: string;
|
|
278
282
|
};
|
|
279
283
|
security_DomainRestrictions: {
|
|
280
284
|
/**
|
|
@@ -577,6 +581,8 @@ export interface SecurityLocalization {
|
|
|
577
581
|
removeStaleUsersTitle: string;
|
|
578
582
|
removeStaleUsersDescription: string;
|
|
579
583
|
removeStaleUsersButtonText: string;
|
|
584
|
+
emptyStateForRecommendationsTitle: string;
|
|
585
|
+
emptyStateForRecommendationsDescription: string;
|
|
580
586
|
};
|
|
581
587
|
securityCenter_insights: {
|
|
582
588
|
mfaForcedText: string;
|
|
@@ -610,5 +616,9 @@ export interface SecurityLocalization {
|
|
|
610
616
|
* @default 'Back to Security Center'
|
|
611
617
|
*/
|
|
612
618
|
pageTitle: string;
|
|
619
|
+
recommendedActions: string;
|
|
620
|
+
configurations: string;
|
|
621
|
+
showLessButtonText: string;
|
|
622
|
+
shoeMoreButtonText: string;
|
|
613
623
|
};
|
|
614
624
|
}
|
package/index.d.ts
CHANGED
|
@@ -6,4 +6,4 @@ export * from './Localizations';
|
|
|
6
6
|
export * from './Metadata';
|
|
7
7
|
export * from './CheckoutDialogOptions';
|
|
8
8
|
export * from './CustomLoginTypes';
|
|
9
|
-
export type { Entitlement, NotEntitledReason } from '@frontegg/redux-store';
|
|
9
|
+
export type { Entitlement, NotEntitledReason, EntitledToOptions, LoadEntitlementsCallback, } from '@frontegg/redux-store';
|
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.124.0
|
|
3
|
+
"version": "6.124.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.124.0
|
|
9
|
+
"@frontegg/redux-store": "6.124.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|