@opexa/portal-sdk 0.59.49 → 0.59.50

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/index.cjs CHANGED
@@ -1619,15 +1619,44 @@ var CASHBACKS_QUERY = gql`
1619
1619
  }
1620
1620
  `;
1621
1621
  var PROMOS_AND_CASHBACKS_QUERY = gql`
1622
- ${CASHBACK_FRAGMENT}
1623
- ${PROMO_FRAGMENT}
1622
+ ${FILE_FRAGMENT}
1624
1623
 
1625
1624
  query PromosAndCashbacks {
1626
1625
  cashbacks {
1627
- ...CashbackFragment
1626
+ id
1627
+ name
1628
+ banner {
1629
+ ...FileFragment
1630
+ }
1631
+ minimumCashback
1632
+ maximumMonthlyCashback
1633
+ status
1634
+ description
1635
+ activationStartDateTime
1636
+ activationEndDateTime
1637
+ turnoverContributionPercentagePerGameProvider
1638
+ dateTimeCreated
1639
+ dateTimeLastUpdated
1628
1640
  }
1629
1641
  promos {
1630
- ...PromoFragment
1642
+ id
1643
+ type
1644
+ name
1645
+ banner {
1646
+ ...FileFragment
1647
+ }
1648
+ status
1649
+ description
1650
+ maximumBonusAmount
1651
+ minimumBonusAmount
1652
+ maximumDepositAmount
1653
+ minimumDepositAmount
1654
+ depositBonusAmountPercentage
1655
+ activationStartDateTime
1656
+ turnoverRequirementContributionPercentagePerGameProvider
1657
+ activationEndDateTime
1658
+ dateTimeCreated
1659
+ dateTimeLastUpdated
1631
1660
  }
1632
1661
  }
1633
1662
  `;