overtime-utils 0.2.46 → 0.2.47
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/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/marketTypes/others.ts +8 -0
- package/src/constants/marketTypes.ts +2331 -2328
- package/src/enums/marketTypes.ts +2 -0
- package/src/utils/markets.ts +528 -526
- package/src/utils/outcomes.ts +372 -370
package/src/enums/marketTypes.ts
CHANGED
|
@@ -201,6 +201,8 @@ export enum MarketType {
|
|
|
201
201
|
// Half-time/Full-time - exact position result type
|
|
202
202
|
HALFTIME_FULLTIME2 = 10040,
|
|
203
203
|
|
|
204
|
+
// Which team wins the coin toss
|
|
205
|
+
WIN_THE_TOSS = 10128,
|
|
204
206
|
// Who will advance
|
|
205
207
|
WHO_WILL_ADVANCE = 10129,
|
|
206
208
|
// Who will qualify for the next round
|