@opexa/portal-sdk 0.15.0 → 0.17.0
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/README.md +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1199,6 +1199,7 @@ function Page() {
|
|
|
1199
1199
|
minimumBonusAmount?: number;
|
|
1200
1200
|
maximumBonusAmount?: number;
|
|
1201
1201
|
minimumDepositAmount?: number;
|
|
1202
|
+
turnoverRequirementContributionPercentagePerGameProvider?: JSON;
|
|
1202
1203
|
maximumDepositAmount?: number;
|
|
1203
1204
|
activationStartDateTime: Date;
|
|
1204
1205
|
activationEndDateTime: Date;
|
package/dist/index.cjs
CHANGED
|
@@ -905,6 +905,7 @@ var PROMO_FRAGMENT = gql`
|
|
|
905
905
|
maximumDepositAmount
|
|
906
906
|
minimumDepositAmount
|
|
907
907
|
activationStartDateTime
|
|
908
|
+
turnoverRequirementContributionPercentagePerGameProvider
|
|
908
909
|
activationEndDateTime
|
|
909
910
|
dateTimeCreated
|
|
910
911
|
dateTimeLastUpdated
|
|
@@ -5133,6 +5134,7 @@ var Transformer = class {
|
|
|
5133
5134
|
minimumBonusAmount: parseDecimal(data.minimumBonusAmount),
|
|
5134
5135
|
maximumDepositAmount: parseDecimal(data.maximumDepositAmount),
|
|
5135
5136
|
minimumDepositAmount: parseDecimal(data.minimumDepositAmount),
|
|
5137
|
+
turnoverRequirementContributionPercentagePerGameProvider: data.turnoverRequirementContributionPercentagePerGameProvider,
|
|
5136
5138
|
activationEndDateTime: new Date(data.activationEndDateTime),
|
|
5137
5139
|
activationStartDateTime: new Date(data.activationStartDateTime),
|
|
5138
5140
|
dateTimeCreated: new Date(data.dateTimeCreated),
|