@frontegg/types 6.34.0 → 6.35.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.
|
@@ -15,6 +15,10 @@ export interface SecurityLocalization {
|
|
|
15
15
|
* Login restrictions tab title
|
|
16
16
|
*/
|
|
17
17
|
loginRestrictionTab: string;
|
|
18
|
+
/**
|
|
19
|
+
* Signup restrictions tab title
|
|
20
|
+
*/
|
|
21
|
+
signupRestrictionTab: string;
|
|
18
22
|
/**
|
|
19
23
|
* Security policy settings page title
|
|
20
24
|
*/
|
|
@@ -264,6 +268,76 @@ export interface SecurityLocalization {
|
|
|
264
268
|
*/
|
|
265
269
|
saveButton: string;
|
|
266
270
|
};
|
|
271
|
+
security_DomainRestrictions: {
|
|
272
|
+
/**
|
|
273
|
+
* Email domain restriction title
|
|
274
|
+
*/
|
|
275
|
+
emailDomainRestrictionTitle: string;
|
|
276
|
+
/**
|
|
277
|
+
* Email domain restriction description
|
|
278
|
+
*/
|
|
279
|
+
emailDomainRestrictionDescription: string;
|
|
280
|
+
/**
|
|
281
|
+
* Block public domain checkbox text
|
|
282
|
+
*/
|
|
283
|
+
blockPublicDomains: string;
|
|
284
|
+
/**
|
|
285
|
+
* Allow button text
|
|
286
|
+
*/
|
|
287
|
+
allowButton: string;
|
|
288
|
+
/**
|
|
289
|
+
* Deny button text
|
|
290
|
+
*/
|
|
291
|
+
denyButton: string;
|
|
292
|
+
/**
|
|
293
|
+
* Add domain placeholder
|
|
294
|
+
*/
|
|
295
|
+
addDomainPlaceholder: string;
|
|
296
|
+
/**
|
|
297
|
+
* Select domain placeholder
|
|
298
|
+
*/
|
|
299
|
+
selectPlaceholder: string;
|
|
300
|
+
/**
|
|
301
|
+
* Invalid domain error message
|
|
302
|
+
*/
|
|
303
|
+
invalidDomainError: string;
|
|
304
|
+
/**
|
|
305
|
+
* Unique domain error message
|
|
306
|
+
*/
|
|
307
|
+
uniqueDomainError: string;
|
|
308
|
+
/**
|
|
309
|
+
* Same domain error message
|
|
310
|
+
*/
|
|
311
|
+
sameDomainError: string;
|
|
312
|
+
/**
|
|
313
|
+
* Change restriction dialog confirm button
|
|
314
|
+
*/
|
|
315
|
+
changeRestrictionStrategyDialogConfirmButton: string;
|
|
316
|
+
/**
|
|
317
|
+
* Change restriction dialog cancel button
|
|
318
|
+
*/
|
|
319
|
+
changeRestrictionStrategyDialogCancelButton: string;
|
|
320
|
+
/**
|
|
321
|
+
* Change restriction to allow dialog title
|
|
322
|
+
*/
|
|
323
|
+
changeRestrictionStrategyDialogTitleAllow: string;
|
|
324
|
+
/**
|
|
325
|
+
* Change restriction to deny dialog title
|
|
326
|
+
*/
|
|
327
|
+
changeRestrictionStrategyDialogTitleDeny: string;
|
|
328
|
+
/**
|
|
329
|
+
* Change restriction to allow dialog message
|
|
330
|
+
*/
|
|
331
|
+
changeRestrictionStrategyDialogMessageAllow: string;
|
|
332
|
+
/**
|
|
333
|
+
* Change restriction to deny dialog message
|
|
334
|
+
*/
|
|
335
|
+
changeRestrictionStrategyDialogMessageDeny: string;
|
|
336
|
+
/**
|
|
337
|
+
* No domains being blocked alert message
|
|
338
|
+
*/
|
|
339
|
+
noDomainsBeingBlockedAlert: string;
|
|
340
|
+
};
|
|
267
341
|
/**
|
|
268
342
|
* Apply session management policies dialog
|
|
269
343
|
*/
|
|
@@ -411,7 +485,7 @@ export interface SecurityLocalization {
|
|
|
411
485
|
*/
|
|
412
486
|
changeRestrictionStrategyDialogMessageAllow: string;
|
|
413
487
|
/**
|
|
414
|
-
* Change restriction to
|
|
488
|
+
* Change restriction to deny dialog message
|
|
415
489
|
*/
|
|
416
490
|
changeRestrictionStrategyDialogMessageDeny: string;
|
|
417
491
|
/**
|
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.
|
|
3
|
+
"version": "6.35.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.
|
|
9
|
+
"@frontegg/redux-store": "6.35.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|