@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.
@@ -93,4 +93,6 @@ interface ThirdPartyIsBindParamsType {
93
93
  thirdPartyType: string;
94
94
  }
95
95
  export declare function thirdPartyIsBind(params: ThirdPartyIsBindParamsType): Promise<any>;
96
+ export declare function signForCoins(): Promise<any>;
97
+ export declare function getSignInfo(): Promise<any>;
96
98
  export {};
@@ -1948,6 +1948,20 @@ function thirdPartyIsBind(params) {
1948
1948
  url: "/v2/thirdParty/isBind",
1949
1949
  params: params
1950
1950
  });
1951
+ } // 签到
1952
+
1953
+ function signForCoins() {
1954
+ return FUtil.Request({
1955
+ method: 'GET',
1956
+ url: "/v2/activities/facade/sign"
1957
+ });
1958
+ } // 查询签到信息
1959
+
1960
+ function getSignInfo() {
1961
+ return FUtil.Request({
1962
+ method: 'GET',
1963
+ url: "/v2/activities/facade/signInfo"
1964
+ });
1951
1965
  }
1952
1966
 
1953
1967
  var User = {
@@ -1969,7 +1983,9 @@ var User = {
1969
1983
  registerOrBind: registerOrBind,
1970
1984
  thirdPartyUnbind: thirdPartyUnbind,
1971
1985
  thirdPartyList: thirdPartyList,
1972
- thirdPartyIsBind: thirdPartyIsBind
1986
+ thirdPartyIsBind: thirdPartyIsBind,
1987
+ signForCoins: signForCoins,
1988
+ getSignInfo: getSignInfo
1973
1989
  };
1974
1990
 
1975
1991
  var _excluded$5 = ["nodeId"],