@freelog/tools-lib 0.1.191 → 0.1.193
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 +9 -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/activities.ts +27 -0
package/dist/tools-lib.esm.js
CHANGED
|
@@ -2873,6 +2873,20 @@ 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
|
+
}
|
|
2883
|
+
function getMaterialsByUserIds(params) {
|
|
2884
|
+
return FUtil.Request({
|
|
2885
|
+
method: 'POST',
|
|
2886
|
+
url: "/v2/activities/lottery/capsule/listByUserIds",
|
|
2887
|
+
data: params
|
|
2888
|
+
});
|
|
2889
|
+
}
|
|
2876
2890
|
|
|
2877
2891
|
var Activity = {
|
|
2878
2892
|
__proto__: null,
|
|
@@ -2900,7 +2914,9 @@ var Activity = {
|
|
|
2900
2914
|
statisticTaskRecords: statisticTaskRecords,
|
|
2901
2915
|
statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
|
|
2902
2916
|
lotteryDraw: lotteryDraw,
|
|
2903
|
-
lotteryDrawResult: lotteryDrawResult
|
|
2917
|
+
lotteryDrawResult: lotteryDrawResult,
|
|
2918
|
+
getTopicInfo: getTopicInfo,
|
|
2919
|
+
getMaterialsByUserIds: getMaterialsByUserIds
|
|
2904
2920
|
};
|
|
2905
2921
|
|
|
2906
2922
|
var _excluded$9 = ["recordId"];
|