@freelog/tools-lib 0.1.190 → 0.1.191

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.
@@ -2859,6 +2859,20 @@ function statisticSingleRewardRecordForAll(params) {
2859
2859
  data: params
2860
2860
  });
2861
2861
  }
2862
+ function lotteryDraw(params) {
2863
+ return FUtil.Request({
2864
+ method: 'POST',
2865
+ url: "/v2/activities/lottery/capsule/draw",
2866
+ data: params
2867
+ });
2868
+ }
2869
+ function lotteryDrawResult(params) {
2870
+ return FUtil.Request({
2871
+ method: 'GET',
2872
+ url: "/v2/activities/lottery/capsule/getInfo",
2873
+ params: params
2874
+ });
2875
+ }
2862
2876
 
2863
2877
  var Activity = {
2864
2878
  __proto__: null,
@@ -2884,7 +2898,9 @@ var Activity = {
2884
2898
  listRewardRecordInfos: listRewardRecordInfos,
2885
2899
  statisticRewardRecords: statisticRewardRecords,
2886
2900
  statisticTaskRecords: statisticTaskRecords,
2887
- statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll
2901
+ statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
2902
+ lotteryDraw: lotteryDraw,
2903
+ lotteryDrawResult: lotteryDrawResult
2888
2904
  };
2889
2905
 
2890
2906
  var _excluded$9 = ["recordId"];