@freelog/tools-lib 0.1.123 → 0.1.126
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 -0
- package/dist/tools-lib.cjs.development.js +10 -2
- 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 +10 -2
- 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/user.ts +270 -257
package/dist/tools-lib.esm.js
CHANGED
|
@@ -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"],
|