@opexa/portal-sdk 0.59.1 → 0.59.3
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 +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1405,6 +1405,7 @@ var PROMO_FRAGMENT = gql`
|
|
|
1405
1405
|
minimumBonusAmount
|
|
1406
1406
|
maximumDepositAmount
|
|
1407
1407
|
minimumDepositAmount
|
|
1408
|
+
depositBonusAmountPercentage
|
|
1408
1409
|
activationStartDateTime
|
|
1409
1410
|
turnoverRequirementContributionPercentagePerGameProvider
|
|
1410
1411
|
activationEndDateTime
|
|
@@ -8391,6 +8392,9 @@ var Transformer = class {
|
|
|
8391
8392
|
minimumBonusAmount: parseDecimal(data.minimumBonusAmount),
|
|
8392
8393
|
maximumDepositAmount: parseDecimal(data.maximumDepositAmount),
|
|
8393
8394
|
minimumDepositAmount: parseDecimal(data.minimumDepositAmount),
|
|
8395
|
+
depositBonusAmountPercentage: parseDecimal(
|
|
8396
|
+
data.depositBonusAmountPercentage
|
|
8397
|
+
),
|
|
8394
8398
|
turnoverRequirementContributionPercentagePerGameProvider: data.turnoverRequirementContributionPercentagePerGameProvider,
|
|
8395
8399
|
activationEndDateTime: new Date(data.activationEndDateTime),
|
|
8396
8400
|
activationStartDateTime: new Date(data.activationStartDateTime),
|