@freelog/tools-lib 0.1.135 → 0.1.136
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/user.d.ts +2 -0
- package/dist/tools-lib.cjs.development.js +17 -1
- 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 +17 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/user.ts +286 -270
package/dist/tools-lib.esm.js
CHANGED
|
@@ -1942,6 +1942,20 @@ function thirdPartyIsBind(params) {
|
|
|
1942
1942
|
url: "/v2/thirdParty/isBind",
|
|
1943
1943
|
params: params
|
|
1944
1944
|
});
|
|
1945
|
+
} // 签到
|
|
1946
|
+
|
|
1947
|
+
function signForCoins() {
|
|
1948
|
+
return FUtil.Request({
|
|
1949
|
+
method: 'GET',
|
|
1950
|
+
url: "/v2/activities/facade/sign"
|
|
1951
|
+
});
|
|
1952
|
+
} // 查询签到信息
|
|
1953
|
+
|
|
1954
|
+
function getSignInfo() {
|
|
1955
|
+
return FUtil.Request({
|
|
1956
|
+
method: 'GET',
|
|
1957
|
+
url: "/v2/activities/facade/signInfo"
|
|
1958
|
+
});
|
|
1945
1959
|
}
|
|
1946
1960
|
|
|
1947
1961
|
var User = {
|
|
@@ -1963,7 +1977,9 @@ var User = {
|
|
|
1963
1977
|
registerOrBind: registerOrBind,
|
|
1964
1978
|
thirdPartyUnbind: thirdPartyUnbind,
|
|
1965
1979
|
thirdPartyList: thirdPartyList,
|
|
1966
|
-
thirdPartyIsBind: thirdPartyIsBind
|
|
1980
|
+
thirdPartyIsBind: thirdPartyIsBind,
|
|
1981
|
+
signForCoins: signForCoins,
|
|
1982
|
+
getSignInfo: getSignInfo
|
|
1967
1983
|
};
|
|
1968
1984
|
|
|
1969
1985
|
var _excluded$5 = ["nodeId"],
|