@frontegg/rest-api 3.1.14 → 3.1.15
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/index.js
CHANGED
package/node/index.js
CHANGED
|
@@ -50,6 +50,7 @@ exports.InsightCode = InsightCode;
|
|
|
50
50
|
InsightCode["NO_DOMAIN_RESTRICTIONS"] = "NO_DOMAIN_RESTRICTIONS";
|
|
51
51
|
InsightCode["DOMAIN_ALLOWLIST"] = "DOMAIN_ALLOWLIST";
|
|
52
52
|
InsightCode["DOMAIN_DENYLIST"] = "DOMAIN_DENYLIST";
|
|
53
|
+
InsightCode["FULL_PASSWORD_SETTINGS"] = "FULL_PASSWORD_SETTINGS";
|
|
53
54
|
})(InsightCode || (exports.InsightCode = InsightCode = {}));
|
|
54
55
|
|
|
55
56
|
let RecommendationActionKey;
|
package/package.json
CHANGED
|
@@ -73,7 +73,8 @@ export declare enum InsightCode {
|
|
|
73
73
|
IP_DENYLIST = "IP_DENYLIST",
|
|
74
74
|
NO_DOMAIN_RESTRICTIONS = "NO_DOMAIN_RESTRICTIONS",
|
|
75
75
|
DOMAIN_ALLOWLIST = "DOMAIN_ALLOWLIST",
|
|
76
|
-
DOMAIN_DENYLIST = "DOMAIN_DENYLIST"
|
|
76
|
+
DOMAIN_DENYLIST = "DOMAIN_DENYLIST",
|
|
77
|
+
FULL_PASSWORD_SETTINGS = "FULL_PASSWORD_SETTINGS"
|
|
77
78
|
}
|
|
78
79
|
export interface RecommendationAction {
|
|
79
80
|
key: RecommendationActionKey;
|
|
@@ -42,6 +42,7 @@ export let InsightCode;
|
|
|
42
42
|
InsightCode["NO_DOMAIN_RESTRICTIONS"] = "NO_DOMAIN_RESTRICTIONS";
|
|
43
43
|
InsightCode["DOMAIN_ALLOWLIST"] = "DOMAIN_ALLOWLIST";
|
|
44
44
|
InsightCode["DOMAIN_DENYLIST"] = "DOMAIN_DENYLIST";
|
|
45
|
+
InsightCode["FULL_PASSWORD_SETTINGS"] = "FULL_PASSWORD_SETTINGS";
|
|
45
46
|
})(InsightCode || (InsightCode = {}));
|
|
46
47
|
|
|
47
48
|
export let RecommendationActionKey;
|