@frontegg/rest-api 3.0.22 → 3.0.23

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.
@@ -98,7 +98,7 @@ export interface IPRestrictionsConfig {
98
98
  export interface GetIPRestrictionsParams {
99
99
  _offset: number;
100
100
  _limit: number;
101
- _filter: RestrictionType;
101
+ _filter: string;
102
102
  }
103
103
  export interface CreateIpRestriction {
104
104
  ip: string;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.0.22
1
+ /** @license Frontegg v3.0.23
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -34,6 +34,7 @@ export interface IAuditsMetadata extends IBaseMetadata {
34
34
  export interface IMetadataIp {
35
35
  latitude: number;
36
36
  longitude: number;
37
+ ip: string;
37
38
  city: string | null;
38
39
  country_name: string | null;
39
40
  country_code: string | null;
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.0.22
1
+ /** @license Frontegg v3.0.23
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/rest-api",
3
- "version": "3.0.22",
3
+ "version": "3.0.23",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {