@frontegg/rest-api 3.0.20 → 3.0.21
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/auth/secutiry-poilicy/interfaces.d.ts +2 -2
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
|
@@ -102,8 +102,8 @@ export interface GetIPRestrictionsParams {
|
|
|
102
102
|
}
|
|
103
103
|
export interface CreateIpRestriction {
|
|
104
104
|
ip: string;
|
|
105
|
-
strategy
|
|
106
|
-
isActive
|
|
105
|
+
strategy?: RestrictionType;
|
|
106
|
+
isActive?: boolean;
|
|
107
107
|
description?: string;
|
|
108
108
|
}
|
|
109
109
|
export interface UpdateIpRestriction {
|
package/index.js
CHANGED
package/node/index.js
CHANGED