@freelog/tools-lib 0.1.122 → 0.1.125
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/dist/service-API/resources.d.ts +5 -3
- package/dist/service-API/user.d.ts +5 -4
- package/dist/tools-lib.cjs.development.js +11 -3
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +11 -3
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/resources.ts +6 -3
- package/src/service-API/testQualifications.ts +96 -96
- package/src/service-API/user.ts +15 -6
package/dist/tools-lib.esm.js
CHANGED
|
@@ -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
|
-
|
|
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"],
|