@opexa/portal-sdk 0.0.226 → 0.0.227
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 +7 -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 +7 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1915,6 +1915,7 @@ var JACKPOTS_QUERY = gql`
|
|
|
1915
1915
|
minimumMultiplier
|
|
1916
1916
|
minimumBet
|
|
1917
1917
|
jackpotPayoutPercentage
|
|
1918
|
+
jackpotTurnoverContributionPercentagePerGameProvider
|
|
1918
1919
|
totalPayout
|
|
1919
1920
|
}
|
|
1920
1921
|
}
|
|
@@ -5094,6 +5095,12 @@ var Transformer = class {
|
|
|
5094
5095
|
minimumMultiplier: parseDecimal(data.minimumMultiplier, 0),
|
|
5095
5096
|
minimumBet: parseDecimal(data.minimumBet, 0),
|
|
5096
5097
|
jackpotPayoutPercentage: parseDecimal(data.jackpotPayoutPercentage, 0),
|
|
5098
|
+
jackpotTurnoverContributionPercentagePerGameProvider: Object.entries(
|
|
5099
|
+
data.jackpotTurnoverContributionPercentagePerGameProvider
|
|
5100
|
+
).reduce((o, [k, v]) => {
|
|
5101
|
+
o[k] = parseDecimal(v, 0);
|
|
5102
|
+
return o;
|
|
5103
|
+
}, {}),
|
|
5097
5104
|
totalPayout: parseDecimal(data.totalPayout, 0)
|
|
5098
5105
|
};
|
|
5099
5106
|
}
|