@freelog/tools-lib 0.1.122 → 0.1.123

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,10 +15,6 @@ interface UsersParamsType {
15
15
  skip?: number;
16
16
  limit?: number;
17
17
  keywords?: string;
18
- userId?: number;
19
- tagIds?: string;
20
- startRegisteredDate?: string;
21
- endRegisteredDate?: string;
22
18
  }
23
19
  export declare function users(params: UsersParamsType): Promise<any>;
24
20
  interface BatchUserListParamsType {
@@ -2211,7 +2211,7 @@ function logout(_temp) {
2211
2211
  function users(params) {
2212
2212
  return FUtil.Request({
2213
2213
  method: 'GET',
2214
- url: "/v2/users",
2214
+ url: "/v2/users/search",
2215
2215
  params: params
2216
2216
  });
2217
2217
  }