@freelog/tools-lib 0.1.191 → 0.1.192
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/activities.d.ts +5 -0
- package/dist/tools-lib.cjs.development.js +9 -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 +9 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/activities.ts +14 -0
package/dist/tools-lib.esm.js
CHANGED
|
@@ -2873,6 +2873,13 @@ function lotteryDrawResult(params) {
|
|
|
2873
2873
|
params: params
|
|
2874
2874
|
});
|
|
2875
2875
|
}
|
|
2876
|
+
function getTopicInfo(params) {
|
|
2877
|
+
return FUtil.Request({
|
|
2878
|
+
method: 'GET',
|
|
2879
|
+
url: "/v2/activities/item/getInfoByCode",
|
|
2880
|
+
params: params
|
|
2881
|
+
});
|
|
2882
|
+
}
|
|
2876
2883
|
|
|
2877
2884
|
var Activity = {
|
|
2878
2885
|
__proto__: null,
|
|
@@ -2900,7 +2907,8 @@ var Activity = {
|
|
|
2900
2907
|
statisticTaskRecords: statisticTaskRecords,
|
|
2901
2908
|
statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
|
|
2902
2909
|
lotteryDraw: lotteryDraw,
|
|
2903
|
-
lotteryDrawResult: lotteryDrawResult
|
|
2910
|
+
lotteryDrawResult: lotteryDrawResult,
|
|
2911
|
+
getTopicInfo: getTopicInfo
|
|
2904
2912
|
};
|
|
2905
2913
|
|
|
2906
2914
|
var _excluded$9 = ["recordId"];
|