@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.
@@ -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"];