@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.
@@ -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"],