@opexa/portal-sdk 0.47.3 → 0.47.5
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +15 -2
package/dist/index.cjs
CHANGED
|
@@ -7435,7 +7435,7 @@ var Transformer = class {
|
|
|
7435
7435
|
minimumBet: parseDecimal(data.minimumBet, 0),
|
|
7436
7436
|
jackpotPayoutPercentage: parseDecimal(data.jackpotPayoutPercentage, 0),
|
|
7437
7437
|
jackpotTurnoverContributionPercentagePerGameProvider: Object.entries(
|
|
7438
|
-
data.jackpotTurnoverContributionPercentagePerGameProvider
|
|
7438
|
+
data.jackpotTurnoverContributionPercentagePerGameProvider ?? {}
|
|
7439
7439
|
).reduce((o, [k, v]) => {
|
|
7440
7440
|
o[k] = parseDecimal(v, 0);
|
|
7441
7441
|
return o;
|