@freelog/tools-lib 0.1.192 → 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 +4 -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 +13 -0
package/dist/tools-lib.esm.js
CHANGED
|
@@ -2880,6 +2880,13 @@ function getTopicInfo(params) {
|
|
|
2880
2880
|
params: params
|
|
2881
2881
|
});
|
|
2882
2882
|
}
|
|
2883
|
+
function getMaterialsByUserIds(params) {
|
|
2884
|
+
return FUtil.Request({
|
|
2885
|
+
method: 'POST',
|
|
2886
|
+
url: "/v2/activities/lottery/capsule/listByUserIds",
|
|
2887
|
+
data: params
|
|
2888
|
+
});
|
|
2889
|
+
}
|
|
2883
2890
|
|
|
2884
2891
|
var Activity = {
|
|
2885
2892
|
__proto__: null,
|
|
@@ -2908,7 +2915,8 @@ var Activity = {
|
|
|
2908
2915
|
statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
|
|
2909
2916
|
lotteryDraw: lotteryDraw,
|
|
2910
2917
|
lotteryDrawResult: lotteryDrawResult,
|
|
2911
|
-
getTopicInfo: getTopicInfo
|
|
2918
|
+
getTopicInfo: getTopicInfo,
|
|
2919
|
+
getMaterialsByUserIds: getMaterialsByUserIds
|
|
2912
2920
|
};
|
|
2913
2921
|
|
|
2914
2922
|
var _excluded$9 = ["recordId"];
|