60p82u21t54k 1.0.16 → 1.0.17

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.
@@ -4748,7 +4748,11 @@ const setPromo = (data) => {
4748
4748
  name: "excludePromo",
4749
4749
  disabled: true,
4750
4750
  welcomeBonus: false,
4751
- dailyBonus: false
4751
+ dailyBonus: false,
4752
+ minDepositAmount: 0,
4753
+ maxPromoAmount: 0,
4754
+ percentage: 0,
4755
+ description: ""
4752
4756
  };
4753
4757
  const promo = data.map((v) => {
4754
4758
  return {
@@ -4756,7 +4760,11 @@ const setPromo = (data) => {
4756
4760
  name: v.promodesc,
4757
4761
  disabled: false,
4758
4762
  welcomeBonus: v.dtype === "5" && v.type === "F",
4759
- dailyBonus: v.dtype === "5" && v.type === "D"
4763
+ dailyBonus: v.dtype === "5" && v.type === "D",
4764
+ minDepositAmount: Number(v.min_deposit),
4765
+ maxPromoAmount: Number(v.max_promo_amt),
4766
+ percentage: Number(v.percentage),
4767
+ description: v.tcdesc
4760
4768
  };
4761
4769
  });
4762
4770
  return [defaultPromo, ...promo];