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