@freelog/tools-lib 0.1.192 → 0.1.194
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 +11 -2
- 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 +11 -2
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/activities.ts +15 -1
package/dist/tools-lib.esm.js
CHANGED
|
@@ -2876,10 +2876,18 @@ function lotteryDrawResult(params) {
|
|
|
2876
2876
|
function getTopicInfo(params) {
|
|
2877
2877
|
return FUtil.Request({
|
|
2878
2878
|
method: 'GET',
|
|
2879
|
-
url:
|
|
2879
|
+
// url: `/v2/activities/item/getInfoByCode`,
|
|
2880
|
+
url: "/v2/activities/item/getInfoByCode4Client",
|
|
2880
2881
|
params: params
|
|
2881
2882
|
});
|
|
2882
2883
|
}
|
|
2884
|
+
function getMaterialsByUserIds(params) {
|
|
2885
|
+
return FUtil.Request({
|
|
2886
|
+
method: 'POST',
|
|
2887
|
+
url: "/v2/activities/lottery/capsule/listByUserIds",
|
|
2888
|
+
data: params
|
|
2889
|
+
});
|
|
2890
|
+
}
|
|
2883
2891
|
|
|
2884
2892
|
var Activity = {
|
|
2885
2893
|
__proto__: null,
|
|
@@ -2908,7 +2916,8 @@ var Activity = {
|
|
|
2908
2916
|
statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
|
|
2909
2917
|
lotteryDraw: lotteryDraw,
|
|
2910
2918
|
lotteryDrawResult: lotteryDrawResult,
|
|
2911
|
-
getTopicInfo: getTopicInfo
|
|
2919
|
+
getTopicInfo: getTopicInfo,
|
|
2920
|
+
getMaterialsByUserIds: getMaterialsByUserIds
|
|
2912
2921
|
};
|
|
2913
2922
|
|
|
2914
2923
|
var _excluded$9 = ["recordId"];
|