@freelog/tools-lib 0.1.190 → 0.1.192

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,27 @@ 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
+ }
2876
+ function getTopicInfo(params) {
2877
+ return FUtil.Request({
2878
+ method: 'GET',
2879
+ url: "/v2/activities/item/getInfoByCode",
2880
+ params: params
2881
+ });
2882
+ }
2862
2883
 
2863
2884
  var Activity = {
2864
2885
  __proto__: null,
@@ -2884,7 +2905,10 @@ var Activity = {
2884
2905
  listRewardRecordInfos: listRewardRecordInfos,
2885
2906
  statisticRewardRecords: statisticRewardRecords,
2886
2907
  statisticTaskRecords: statisticTaskRecords,
2887
- statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll
2908
+ statisticSingleRewardRecordForAll: statisticSingleRewardRecordForAll,
2909
+ lotteryDraw: lotteryDraw,
2910
+ lotteryDrawResult: lotteryDrawResult,
2911
+ getTopicInfo: getTopicInfo
2888
2912
  };
2889
2913
 
2890
2914
  var _excluded$9 = ["recordId"];