@frontegg/rest-api 3.1.27 → 3.1.28

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/constants.js CHANGED
@@ -116,7 +116,7 @@ export const urls = {
116
116
  }
117
117
  },
118
118
  phoneNumbers: {
119
- v1: '/identity/resources/phone-numbers/v1'
119
+ v1: '/identity/resources/users/phone-numbers/v1'
120
120
  }
121
121
  },
122
122
  team: {
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.1.27
1
+ /** @license Frontegg v3.1.28
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/node/constants.js CHANGED
@@ -122,7 +122,7 @@ const urls = {
122
122
  }
123
123
  },
124
124
  phoneNumbers: {
125
- v1: '/identity/resources/phone-numbers/v1'
125
+ v1: '/identity/resources/users/phone-numbers/v1'
126
126
  }
127
127
  },
128
128
  team: {
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.1.27
1
+ /** @license Frontegg v3.1.28
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.1.27",
3
+ "version": "3.1.28",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -1,10 +1,6 @@
1
- import { PaginationOrderEnum } from "../interfaces";
2
- import { SortByEnum } from "../users/interfaces";
3
1
  export interface IGetPhoneNumbersQueryParams {
4
2
  _limit?: number;
5
3
  _offset?: number;
6
- _sortBy?: SortByEnum;
7
- _order?: PaginationOrderEnum;
8
4
  }
9
5
  export declare type IPhoneNumber = {
10
6
  id: string;