@freelog/tools-lib 0.1.121 → 0.1.124

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.
@@ -2205,7 +2205,7 @@ function logout(_temp) {
2205
2205
  function users(params) {
2206
2206
  return FUtil.Request({
2207
2207
  method: 'GET',
2208
- url: "/v2/users",
2208
+ url: "/v2/users/search",
2209
2209
  params: params
2210
2210
  });
2211
2211
  }
@@ -2333,7 +2333,14 @@ function thirdPartyList(params) {
2333
2333
  return FUtil.Request({
2334
2334
  method: 'GET',
2335
2335
  url: "/v2/thirdParty/list",
2336
- data: params
2336
+ params: params
2337
+ });
2338
+ }
2339
+ function thirdPartyIsBind(params) {
2340
+ return FUtil.Request({
2341
+ method: 'GET',
2342
+ url: "/v2/thirdParty/isBind",
2343
+ params: params
2337
2344
  });
2338
2345
  }
2339
2346
 
@@ -2355,7 +2362,8 @@ var User = {
2355
2362
  updateMobileOrEmail: updateMobileOrEmail,
2356
2363
  registerOrBind: registerOrBind,
2357
2364
  thirdPartyUnbind: thirdPartyUnbind,
2358
- thirdPartyList: thirdPartyList
2365
+ thirdPartyList: thirdPartyList,
2366
+ thirdPartyIsBind: thirdPartyIsBind
2359
2367
  };
2360
2368
 
2361
2369
  var _excluded$5 = ["nodeId"],