shufflecom-calculations 4.1.0 → 4.1.2

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.
@@ -94,6 +94,7 @@ export enum SportsCashoutFailedReason {
94
94
  SPORTS_FIXTURE_NOT_FOUND = 'SPORTS_FIXTURE_NOT_FOUND',
95
95
  SPORTS_MARKET_CLOSED = 'SPORTS_MARKET_CLOSED',
96
96
  SPORTS_MARKET_CASHOUT_NOT_ENABLED = 'SPORTS_MARKET_CASHOUT_NOT_ENABLED',
97
+ BOOSTED_BET_NOT_ALLOWED_CASHOUT = 'BOOSTED_BET_NOT_ALLOWED_CASHOUT',
97
98
  }
98
99
 
99
100
  export enum SportsBetType {
@@ -147,6 +148,7 @@ export interface SportsBetSelectionInterface {
147
148
  // Present on persisted selections; used to detect multi-custom-leg bets that a flat selection
148
149
  // list cannot faithfully represent (see deriveLegsFromSelections).
149
150
  sportsBetLegId?: string | null;
151
+ boostId?: string | null;
150
152
  }
151
153
 
152
154
  export enum SportsBetLegType {
@@ -224,7 +226,7 @@ export enum OutcomeResult {
224
226
  export enum BetradarOutcomeResult {
225
227
  WINNING = '1',
226
228
  LOSING = '0',
227
- UNDECIDED = '-1'
229
+ UNDECIDED = '-1',
228
230
  }
229
231
 
230
232
  export class SportsMarketSelectionOddsUpdate {