@cloudbet/market-helper 1.34.0 → 1.36.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 CHANGED
@@ -155,6 +155,19 @@ Expand all available markets
155
155
  | american_football_totals | Totals |
156
156
  | american_football_totals_period_first_half | 1st half - total |
157
157
  | american_football_totals_period_second_half | 2nd half - total (incl. overtime) |
158
+ | american_football_player_long_reception | {{player}} (Long Reception) |
159
+ | american_football_player_completions | {{player}} (Completions) |
160
+ | american_football_player_interceptions | {{player}} (Interceptions) |
161
+ | american_football_player_kicking_points | {{player}} (Kicking Points) |
162
+ | american_football_player_long_completion | {{player}} (Long Completion) |
163
+ | american_football_player_pass_attempts | {{player}} (Pass Attempts) |
164
+ | american_football_player_pass_yards | {{player}} (Pass Yds) |
165
+ | american_football_player_receiving_yards | {{player}} (Receiving Yds) |
166
+ | american_football_player_receptions | {{player}} (Receptions) |
167
+ | american_football_player_rush_touchdown | {{player}} (Rush TD) |
168
+ | american_football_player_rush_yards | {{player}} (Rush Yds) |
169
+ | american_football_player_touchdown_passes | {{player}} (TD Passes) |
170
+ | american_football_player_touchdown_receptions | {{player}} (TD Receptions) |
158
171
  | aussie_rules_1st_half_1x2 | 1st half - 1x2 |
159
172
  | aussie_rules_1st_half_double_chance | 1st half - double chance |
160
173
  | aussie_rules_1st_half_draw_no_bet | 1st half - draw no bet |
package/package.json CHANGED
@@ -1 +1 @@
1
- { "name": "@cloudbet/market-helper", "version": "1.34.0", "sideEffects": false, "description": "SDK to generate localized sport market information", "private": false, "main": "index.js", "author": "Klaus Gravenreuth <kgravenreuth@cloudbet.com>", "license": "Apache-2.0", "engines": { "node": ">=12.0.0" }, "keywords": [ "cloudbet", "odds", "api", "sportsbook" ], "dependencies": { "bignumber.js": "9.0.1" } }
1
+ { "name": "@cloudbet/market-helper", "version": "1.36.0", "sideEffects": false, "description": "SDK to generate localized sport market information", "private": false, "main": "index.js", "author": "Klaus Gravenreuth <kgravenreuth@cloudbet.com>", "license": "Apache-2.0", "engines": { "node": ">=12.0.0" }, "keywords": [ "cloudbet", "odds", "api", "sportsbook" ], "dependencies": { "bignumber.js": "9.0.1" } }
@@ -15,6 +15,20 @@ declare enum MarketType {
15
15
  'american_football_odd_even' = "american_football.odd_even",
16
16
  'american_football_outright' = "american_football.outright",
17
17
  'american_football_outright_v2' = "american_football.outright.v2",
18
+ 'american_football_outright_v3' = "american_football.outright.v3",
19
+ 'american_football_player_completions' = "american_football.player_completions",
20
+ 'american_football_player_interceptions' = "american_football.player_interceptions",
21
+ 'american_football_player_kicking_points' = "american_football.player_kicking_points",
22
+ 'american_football_player_long_completion' = "american_football.player_long_completion",
23
+ 'american_football_player_long_reception' = "american_football.player_long_reception",
24
+ 'american_football_player_pass_attempts' = "american_football.player_pass_attempts",
25
+ 'american_football_player_pass_yards' = "american_football.player_pass_yards",
26
+ 'american_football_player_receiving_yards' = "american_football.player_receiving_yards",
27
+ 'american_football_player_receptions' = "american_football.player_receptions",
28
+ 'american_football_player_rush_touchdown' = "american_football.player_rush_touchdown",
29
+ 'american_football_player_rush_yards' = "american_football.player_rush_yards",
30
+ 'american_football_player_touchdown_passes' = "american_football.player_touchdown_passes",
31
+ 'american_football_player_touchdown_receptions' = "american_football.player_touchdown_receptions",
18
32
  'american_football_quarter_1x2' = "american_football.quarter_1x2",
19
33
  'american_football_quarter_handicap' = "american_football.quarter_handicap",
20
34
  'american_football_quarter_handicap_incl_ot' = "american_football.quarter_handicap_incl_ot",
@@ -31,8 +45,10 @@ declare enum MarketType {
31
45
  'american_football_touchdown_scorer' = "american_football.touchdown_scorer",
32
46
  'archery_outright' = "archery.outright",
33
47
  'archery_outright_v2' = "archery.outright.v2",
48
+ 'archery_outright_v3' = "archery.outright.v3",
34
49
  'athletics_outright' = "athletics.outright",
35
50
  'athletics_outright_v2' = "athletics.outright.v2",
51
+ 'athletics_outright_v3' = "athletics.outright.v3",
36
52
  'aussie_rules_1st_half_1x2' = "aussie_rules.1st_half_1x2",
37
53
  'aussie_rules_1st_half_double_chance' = "aussie_rules.1st_half_double_chance",
38
54
  'aussie_rules_1st_half_draw_no_bet' = "aussie_rules.1st_half_draw_no_bet",
@@ -47,6 +63,7 @@ declare enum MarketType {
47
63
  'aussie_rules_odd_even' = "aussie_rules.odd_even",
48
64
  'aussie_rules_outright' = "aussie_rules.outright",
49
65
  'aussie_rules_outright_v2' = "aussie_rules.outright.v2",
66
+ 'aussie_rules_outright_v3' = "aussie_rules.outright.v3",
50
67
  'aussie_rules_player_disposals' = "aussie_rules.player_disposals",
51
68
  'aussie_rules_player_goals' = "aussie_rules.player_goals",
52
69
  'aussie_rules_player_handballs' = "aussie_rules.player_handballs",
@@ -78,11 +95,13 @@ declare enum MarketType {
78
95
  'badminton_nr_games_by_extra_points' = "badminton.nr_games_by_extra_points",
79
96
  'badminton_outright' = "badminton.outright",
80
97
  'badminton_outright_v2' = "badminton.outright.v2",
98
+ 'badminton_outright_v3' = "badminton.outright.v3",
81
99
  'badminton_totals' = "badminton.totals",
82
100
  'badminton_winner' = "badminton.winner",
83
101
  'bandy_match_odds' = "bandy.match_odds",
84
102
  'bandy_outright' = "bandy.outright",
85
103
  'bandy_outright_v2' = "bandy.outright.v2",
104
+ 'bandy_outright_v3' = "bandy.outright.v3",
86
105
  'bandy_totals' = "bandy.totals",
87
106
  'baseball_1x2_and_total_period_ot' = "baseball.1x2_and_total_period_ot",
88
107
  'baseball_batter_runs' = "baseball.batter_runs",
@@ -101,6 +120,7 @@ declare enum MarketType {
101
120
  'baseball_odd_even' = "baseball.odd_even",
102
121
  'baseball_outright' = "baseball.outright",
103
122
  'baseball_outright_v2' = "baseball.outright.v2",
123
+ 'baseball_outright_v3' = "baseball.outright.v3",
104
124
  'baseball_player_total_batter_runs_and_runs_batted_in_period_ot' = "baseball.player_total_batter_runs_and_runs_batted_in_period_ot",
105
125
  'baseball_race_to_runs' = "baseball.race_to_runs",
106
126
  'baseball_result_of_pitch' = "baseball.result_of_pitch",
@@ -161,16 +181,19 @@ declare enum MarketType {
161
181
  'beach_soccer_match_odds' = "beach_soccer.match_odds",
162
182
  'beach_soccer_outright' = "beach_soccer.outright",
163
183
  'beach_soccer_outright_v2' = "beach_soccer.outright.v2",
184
+ 'beach_soccer_outright_v3' = "beach_soccer.outright.v3",
164
185
  'beach_soccer_totals' = "beach_soccer.totals",
165
186
  'beach_volleyball_handicap' = "beach_volleyball.handicap",
166
187
  'beach_volleyball_outright' = "beach_volleyball.outright",
167
188
  'beach_volleyball_outright_v2' = "beach_volleyball.outright.v2",
189
+ 'beach_volleyball_outright_v3' = "beach_volleyball.outright.v3",
168
190
  'beach_volleyball_totals' = "beach_volleyball.totals",
169
191
  'beach_volleyball_winner' = "beach_volleyball.winner",
170
192
  'bowls_correct_score' = "bowls.correct_score",
171
193
  'bowls_handicap' = "bowls.handicap",
172
194
  'bowls_outright' = "bowls.outright",
173
195
  'bowls_outright_v2' = "bowls.outright.v2",
196
+ 'bowls_outright_v3' = "bowls.outright.v3",
174
197
  'bowls_set_1x2' = "bowls.set_1x2",
175
198
  'bowls_set_and_end_total' = "bowls.set_and_end_total",
176
199
  'bowls_set_and_end_winner' = "bowls.set_and_end_winner",
@@ -188,6 +211,7 @@ declare enum MarketType {
188
211
  'boxing_freetext' = "boxing.freetext",
189
212
  'boxing_outright' = "boxing.outright",
190
213
  'boxing_outright_v2' = "boxing.outright.v2",
214
+ 'boxing_outright_v3' = "boxing.outright.v3",
191
215
  'boxing_totals' = "boxing.totals",
192
216
  'boxing_will_the_fight_go_the_distance' = "boxing.will_the_fight_go_the_distance",
193
217
  'boxing_winner' = "boxing.winner",
@@ -201,12 +225,14 @@ declare enum MarketType {
201
225
  'call_of_duty_map_winner_v2' = "call_of_duty.map_winner_v2",
202
226
  'call_of_duty_outright' = "call_of_duty.outright",
203
227
  'call_of_duty_outright_v2' = "call_of_duty.outright.v2",
228
+ 'call_of_duty_outright_v3' = "call_of_duty.outright.v3",
204
229
  'call_of_duty_totals' = "call_of_duty.totals",
205
230
  'call_of_duty_winner' = "call_of_duty.winner",
206
231
  'chess_handicap' = "chess.handicap",
207
232
  'chess_match_odds' = "chess.match_odds",
208
233
  'chess_outright' = "chess.outright",
209
234
  'chess_outright_v2' = "chess.outright.v2",
235
+ 'chess_outright_v3' = "chess.outright.v3",
210
236
  'counter_strike_correct_score_in_maps' = "counter_strike.correct_score_in_maps",
211
237
  'counter_strike_freetext' = "counter_strike.freetext",
212
238
  'counter_strike_map_1st_half_winner' = "counter_strike.map_1st_half_winner",
@@ -238,6 +264,7 @@ declare enum MarketType {
238
264
  'counter_strike_match_odds' = "counter_strike.match_odds",
239
265
  'counter_strike_outright' = "counter_strike.outright",
240
266
  'counter_strike_outright_v2' = "counter_strike.outright.v2",
267
+ 'counter_strike_outright_v3' = "counter_strike.outright.v3",
241
268
  'counter_strike_total_maps' = "counter_strike.total_maps",
242
269
  'counter_strike_winner' = "counter_strike.winner",
243
270
  'cricket_any_player_to_score_milestone' = "cricket.any_player_to_score_milestone",
@@ -255,6 +282,7 @@ declare enum MarketType {
255
282
  'cricket_innings_total_v2' = "cricket.innings_total_v2",
256
283
  'cricket_outright' = "cricket.outright",
257
284
  'cricket_outright_v2' = "cricket.outright.v2",
285
+ 'cricket_outright_v3' = "cricket.outright.v3",
258
286
  'cricket_over_team_total' = "cricket.over_team_total",
259
287
  'cricket_over_total_runs_spread' = "cricket.over_total_runs_spread",
260
288
  'cricket_player_to_score_milestone' = "cricket.player_to_score_milestone",
@@ -290,9 +318,11 @@ declare enum MarketType {
290
318
  'crossfire_winner' = "crossfire.winner",
291
319
  'curling_outright' = "curling.outright",
292
320
  'curling_outright_v2' = "curling.outright.v2",
321
+ 'curling_outright_v3' = "curling.outright.v3",
293
322
  'cycling_head2head' = "cycling.head2head",
294
323
  'cycling_outright' = "cycling.outright",
295
324
  'cycling_outright_v2' = "cycling.outright.v2",
325
+ 'cycling_outright_v3' = "cycling.outright.v3",
296
326
  'darts_180s_handicap' = "darts.180s_handicap",
297
327
  'darts_correct_score_in_sets' = "darts.correct_score_in_sets",
298
328
  'darts_handicap_legs' = "darts.handicap_legs",
@@ -301,6 +331,7 @@ declare enum MarketType {
301
331
  'darts_odd_even_sets' = "darts.odd_even_sets",
302
332
  'darts_outright' = "darts.outright",
303
333
  'darts_outright_v2' = "darts.outright.v2",
334
+ 'darts_outright_v3' = "darts.outright.v3",
304
335
  'darts_set_correct_score_in_legs' = "darts.set_correct_score_in_legs",
305
336
  'darts_set_leg_any_player_to_score_a_180' = "darts.set_leg_any_player_to_score_a_180",
306
337
  'darts_set_leg_checkout_color' = "darts.set_leg_checkout_color",
@@ -349,12 +380,14 @@ declare enum MarketType {
349
380
  'dota_2_match_odds' = "dota_2.match_odds",
350
381
  'dota_2_outright' = "dota_2.outright",
351
382
  'dota_2_outright_v2' = "dota_2.outright.v2",
383
+ 'dota_2_outright_v3' = "dota_2.outright.v3",
352
384
  'dota_2_total_maps' = "dota_2.total_maps",
353
385
  'dota_2_will_there_be_a_rampage' = "dota_2.will_there_be_a_rampage",
354
386
  'dota_2_will_there_be_an_ultra_kill' = "dota_2.will_there_be_an_ultra_kill",
355
387
  'dota_2_winner' = "dota_2.winner",
356
388
  'entertainment_outright' = "entertainment.outright",
357
389
  'entertainment_outright_v2' = "entertainment.outright.v2",
390
+ 'entertainment_outright_v3' = "entertainment.outright.v3",
358
391
  'entertainment_over_under' = "entertainment.over_under",
359
392
  'esport_aoe_correct_score' = "esport_aoe.correct_score",
360
393
  'esport_aoe_handicap' = "esport_aoe.handicap",
@@ -367,9 +400,11 @@ declare enum MarketType {
367
400
  'esport_arena_of_valor_match_3_way' = "esport_arena_of_valor.match_3_way",
368
401
  'esport_arena_of_valor_outright' = "esport_arena_of_valor.outright",
369
402
  'esport_arena_of_valor_outright_v2' = "esport_arena_of_valor.outright.v2",
403
+ 'esport_arena_of_valor_outright_v3' = "esport_arena_of_valor.outright.v3",
370
404
  'esport_arena_of_valor_winner' = "esport_arena_of_valor.winner",
371
405
  'esport_bga_outright' = "esport_bga.outright",
372
406
  'esport_bga_outright_v2' = "esport_bga.outright.v2",
407
+ 'esport_bga_outright_v3' = "esport_bga.outright.v3",
373
408
  'esport_brawl_stars_correct_score' = "esport_brawl_stars.correct_score",
374
409
  'esport_brawl_stars_handicap' = "esport_brawl_stars.handicap",
375
410
  'esport_brawl_stars_map_winner' = "esport_brawl_stars.map_winner",
@@ -401,6 +436,7 @@ declare enum MarketType {
401
436
  'esport_fifa_odd_even_penalty_shootout' = "esport_fifa.odd_even.penalty_shootout",
402
437
  'esport_fifa_outright' = "esport_fifa.outright",
403
438
  'esport_fifa_outright_v2' = "esport_fifa.outright.v2",
439
+ 'esport_fifa_outright_v3' = "esport_fifa.outright.v3",
404
440
  'esport_fifa_penalty_shootout_odd_even' = "esport_fifa.penalty_shootout_odd_even",
405
441
  'esport_fifa_team_clean_sheet' = "esport_fifa.team_clean_sheet",
406
442
  'esport_fifa_team_total_goals' = "esport_fifa.team_total_goals",
@@ -416,6 +452,7 @@ declare enum MarketType {
416
452
  'esport_fifa_total_goals_period_second_half' = "esport_fifa.total_goals_period_second_half",
417
453
  'esport_free_fire_outright' = "esport_free_fire.outright",
418
454
  'esport_free_fire_outright_v2' = "esport_free_fire.outright.v2",
455
+ 'esport_free_fire_outright_v3' = "esport_free_fire.outright.v3",
419
456
  'esport_king_of_glory_correct_score' = "esport_king_of_glory.correct_score",
420
457
  'esport_king_of_glory_freetext' = "esport_king_of_glory.freetext",
421
458
  'esport_king_of_glory_map_handicap' = "esport_king_of_glory.map_handicap",
@@ -426,6 +463,7 @@ declare enum MarketType {
426
463
  'esport_king_of_glory_map_winner' = "esport_king_of_glory.map_winner",
427
464
  'esport_king_of_glory_outright' = "esport_king_of_glory.outright",
428
465
  'esport_king_of_glory_outright_v2' = "esport_king_of_glory.outright.v2",
466
+ 'esport_king_of_glory_outright_v3' = "esport_king_of_glory.outright.v3",
429
467
  'esport_king_of_glory_total_maps' = "esport_king_of_glory.total_maps",
430
468
  'esport_king_of_glory_winner' = "esport_king_of_glory.winner",
431
469
  'esport_nba2k_1st_half_1x2' = "esport_nba2k.1st_half_1x2",
@@ -449,6 +487,7 @@ declare enum MarketType {
449
487
  'esport_nba2k_odd_even_period_first_half' = "esport_nba2k.odd_even_period_first_half",
450
488
  'esport_nba2k_outright' = "esport_nba2k.outright",
451
489
  'esport_nba2k_outright_v2' = "esport_nba2k.outright.v2",
490
+ 'esport_nba2k_outright_v3' = "esport_nba2k.outright.v3",
452
491
  'esport_nba2k_point_range' = "esport_nba2k.point_range",
453
492
  'esport_nba2k_quarter_1x2' = "esport_nba2k.quarter_1x2",
454
493
  'esport_nba2k_quarter_handicap' = "esport_nba2k.quarter_handicap",
@@ -481,15 +520,19 @@ declare enum MarketType {
481
520
  'field_hockey_match_odds' = "field_hockey.match_odds",
482
521
  'field_hockey_outright' = "field_hockey.outright",
483
522
  'field_hockey_outright_v2' = "field_hockey.outright.v2",
523
+ 'field_hockey_outright_v3' = "field_hockey.outright.v3",
484
524
  'field_hockey_totals' = "field_hockey.totals",
485
525
  'floorball_match_odds' = "floorball.match_odds",
486
526
  'floorball_outright' = "floorball.outright",
487
527
  'floorball_outright_v2' = "floorball.outright.v2",
528
+ 'floorball_outright_v3' = "floorball.outright.v3",
488
529
  'floorball_totals' = "floorball.totals",
489
530
  'formula_1_outright' = "formula_1.outright",
490
531
  'formula_1_outright_v2' = "formula_1.outright.v2",
532
+ 'formula_1_outright_v3' = "formula_1.outright.v3",
491
533
  'formula_e_outright' = "formula_e.outright",
492
534
  'formula_e_outright_v2' = "formula_e.outright.v2",
535
+ 'formula_e_outright_v3' = "formula_e.outright.v3",
493
536
  'futsal_double_chance' = "futsal.double_chance",
494
537
  'futsal_draw_no_bet' = "futsal.draw_no_bet",
495
538
  'futsal_handicap' = "futsal.handicap",
@@ -497,13 +540,16 @@ declare enum MarketType {
497
540
  'futsal_odd_even' = "futsal.odd_even",
498
541
  'futsal_outright' = "futsal.outright",
499
542
  'futsal_outright_v2' = "futsal.outright.v2",
543
+ 'futsal_outright_v3' = "futsal.outright.v3",
500
544
  'futsal_totals' = "futsal.totals",
501
545
  'golf_outright' = "golf.outright",
502
546
  'golf_outright_v2' = "golf.outright.v2",
547
+ 'golf_outright_v3' = "golf.outright.v3",
503
548
  'golf_winner' = "golf.winner",
504
549
  'greyhound_exacta' = "greyhound.exacta",
505
550
  'greyhound_outright' = "greyhound.outright",
506
551
  'greyhound_outright_v2' = "greyhound.outright.v2",
552
+ 'greyhound_outright_v3' = "greyhound.outright.v3",
507
553
  'greyhound_place' = "greyhound.place",
508
554
  'greyhound_place_v2' = "greyhound.place.v2",
509
555
  'greyhound_quinella' = "greyhound.quinella",
@@ -525,11 +571,13 @@ declare enum MarketType {
525
571
  'handball_odd_even' = "handball.odd_even",
526
572
  'handball_outright' = "handball.outright",
527
573
  'handball_outright_v2' = "handball.outright.v2",
574
+ 'handball_outright_v3' = "handball.outright.v3",
528
575
  'handball_team_total' = "handball.team_total",
529
576
  'handball_totals' = "handball.totals",
530
577
  'handball_winner' = "handball.winner",
531
578
  'hearthstone_outright' = "hearthstone.outright",
532
579
  'hearthstone_outright_v2' = "hearthstone.outright.v2",
580
+ 'hearthstone_outright_v3' = "hearthstone.outright.v3",
533
581
  'hearthstone_winner' = "hearthstone.winner",
534
582
  'heroes_of_the_storm_correct_score' = "heroes_of_the_storm.correct_score",
535
583
  'heroes_of_the_storm_handicap' = "heroes_of_the_storm.handicap",
@@ -555,6 +603,7 @@ declare enum MarketType {
555
603
  'ice_hockey_last_goal' = "ice_hockey.last_goal",
556
604
  'ice_hockey_outright' = "ice_hockey.outright",
557
605
  'ice_hockey_outright_v2' = "ice_hockey.outright.v2",
606
+ 'ice_hockey_outright_v3' = "ice_hockey.outright.v3",
558
607
  'ice_hockey_period_1x2' = "ice_hockey.period_1x2",
559
608
  'ice_hockey_period_both_teams_to_score' = "ice_hockey.period_both_teams_to_score",
560
609
  'ice_hockey_period_correct_score' = "ice_hockey.period_correct_score",
@@ -581,6 +630,7 @@ declare enum MarketType {
581
630
  'kabaddi_match_odds' = "kabaddi.match_odds",
582
631
  'kabaddi_outright' = "kabaddi.outright",
583
632
  'kabaddi_outright_v2' = "kabaddi.outright.v2",
633
+ 'kabaddi_outright_v3' = "kabaddi.outright.v3",
584
634
  'kabaddi_total' = "kabaddi.total",
585
635
  'league_of_legends_correct_score_in_maps' = "league_of_legends.correct_score_in_maps",
586
636
  'league_of_legends_freetext' = "league_of_legends.freetext",
@@ -601,12 +651,14 @@ declare enum MarketType {
601
651
  'league_of_legends_match_odds' = "league_of_legends.match_odds",
602
652
  'league_of_legends_outright' = "league_of_legends.outright",
603
653
  'league_of_legends_outright_v2' = "league_of_legends.outright.v2",
654
+ 'league_of_legends_outright_v3' = "league_of_legends.outright.v3",
604
655
  'league_of_legends_total_maps' = "league_of_legends.total_maps",
605
656
  'league_of_legends_winner' = "league_of_legends.winner",
606
657
  'mma_1x2' = "mma.1x2",
607
658
  'mma_freetext' = "mma.freetext",
608
659
  'mma_outright' = "mma.outright",
609
660
  'mma_outright_v2' = "mma.outright.v2",
661
+ 'mma_outright_v3' = "mma.outright.v3",
610
662
  'mma_totals' = "mma.totals",
611
663
  'mma_will_the_fight_go_the_distance' = "mma.will_the_fight_go_the_distance",
612
664
  'mma_winner' = "mma.winner",
@@ -616,8 +668,10 @@ declare enum MarketType {
616
668
  'motorsport_head2head' = "motorsport.head2head",
617
669
  'motorsport_outright' = "motorsport.outright",
618
670
  'motorsport_outright_v2' = "motorsport.outright.v2",
671
+ 'motorsport_outright_v3' = "motorsport.outright.v3",
619
672
  'olympics_outright' = "olympics.outright",
620
673
  'olympics_outright_v2' = "olympics.outright.v2",
674
+ 'olympics_outright_v3' = "olympics.outright.v3",
621
675
  'olympics_winner' = "olympics.winner",
622
676
  'overwatch_correct_score' = "overwatch.correct_score",
623
677
  'overwatch_freetext' = "overwatch.freetext",
@@ -629,11 +683,13 @@ declare enum MarketType {
629
683
  'overwatch_map_winner' = "overwatch.map_winner",
630
684
  'overwatch_outright' = "overwatch.outright",
631
685
  'overwatch_outright_v2' = "overwatch.outright.v2",
686
+ 'overwatch_outright_v3' = "overwatch.outright.v3",
632
687
  'overwatch_total_maps' = "overwatch.total_maps",
633
688
  'overwatch_winner' = "overwatch.winner",
634
689
  'pesapallo_match_odds' = "pesapallo.match_odds",
635
690
  'pesapallo_outright' = "pesapallo.outright",
636
691
  'pesapallo_outright_v2' = "pesapallo.outright.v2",
692
+ 'pesapallo_outright_v3' = "pesapallo.outright.v3",
637
693
  'politics_freetext' = "politics.freetext",
638
694
  'politics_government' = "politics.government",
639
695
  'politics_house_majority' = "politics.house_majority",
@@ -641,6 +697,7 @@ declare enum MarketType {
641
697
  'politics_next_chancellor' = "politics.next_chancellor",
642
698
  'politics_outright' = "politics.outright",
643
699
  'politics_outright_v2' = "politics.outright.v2",
700
+ 'politics_outright_v3' = "politics.outright.v3",
644
701
  'politics_party_of_next_chancellor' = "politics.party_of_next_chancellor",
645
702
  'politics_party_vote_percentage' = "politics.party_vote_percentage",
646
703
  'politics_senate_majority' = "politics.senate_majority",
@@ -649,6 +706,7 @@ declare enum MarketType {
649
706
  'rainbow_six_map_winner' = "rainbow_six.map_winner",
650
707
  'rainbow_six_outright' = "rainbow_six.outright",
651
708
  'rainbow_six_outright_v2' = "rainbow_six.outright.v2",
709
+ 'rainbow_six_outright_v3' = "rainbow_six.outright.v3",
652
710
  'rainbow_six_winner' = "rainbow_six.winner",
653
711
  'rocket_league_correct_score' = "rocket_league.correct_score",
654
712
  'rocket_league_freetext' = "rocket_league.freetext",
@@ -656,6 +714,7 @@ declare enum MarketType {
656
714
  'rocket_league_map_winner' = "rocket_league.map_winner",
657
715
  'rocket_league_outright' = "rocket_league.outright",
658
716
  'rocket_league_outright_v2' = "rocket_league.outright.v2",
717
+ 'rocket_league_outright_v3' = "rocket_league.outright.v3",
659
718
  'rocket_league_total_maps' = "rocket_league.total_maps",
660
719
  'rocket_league_winner' = "rocket_league.winner",
661
720
  'rugby_league_1x2_period_1st_half' = "rugby_league.1x2_period_1st_half",
@@ -669,6 +728,7 @@ declare enum MarketType {
669
728
  'rugby_league_odd_even' = "rugby_league.odd_even",
670
729
  'rugby_league_outright' = "rugby_league.outright",
671
730
  'rugby_league_outright_v2' = "rugby_league.outright.v2",
731
+ 'rugby_league_outright_v3' = "rugby_league.outright.v3",
672
732
  'rugby_league_race_to_points' = "rugby_league.race_to_points",
673
733
  'rugby_league_team_totals' = "rugby_league.team_totals",
674
734
  'rugby_league_total_period_1st_half' = "rugby_league.total_period_1st_half",
@@ -689,6 +749,7 @@ declare enum MarketType {
689
749
  'rugby_union_odd_even' = "rugby_union.odd_even",
690
750
  'rugby_union_outright' = "rugby_union.outright",
691
751
  'rugby_union_outright_v2' = "rugby_union.outright.v2",
752
+ 'rugby_union_outright_v3' = "rugby_union.outright.v3",
692
753
  'rugby_union_race_to_points' = "rugby_union.race_to_points",
693
754
  'rugby_union_team_totals' = "rugby_union.team_totals",
694
755
  'rugby_union_total_period_1st_half' = "rugby_union.total_period_1st_half",
@@ -700,12 +761,14 @@ declare enum MarketType {
700
761
  'rugby_union_winning_margin_period_ft' = "rugby_union.winning_margin_period_ft",
701
762
  'sailing_outright' = "sailing.outright",
702
763
  'sailing_outright_v2' = "sailing.outright.v2",
764
+ 'sailing_outright_v3' = "sailing.outright.v3",
703
765
  'sailing_winner' = "sailing.winner",
704
766
  'snooker_correct_score' = "snooker.correct_score",
705
767
  'snooker_handicap' = "snooker.handicap",
706
768
  'snooker_odd_even_frames' = "snooker.odd_even_frames",
707
769
  'snooker_outright' = "snooker.outright",
708
770
  'snooker_outright_v2' = "snooker.outright.v2",
771
+ 'snooker_outright_v3' = "snooker.outright.v3",
709
772
  'snooker_totals' = "snooker.totals",
710
773
  'snooker_winner' = "snooker.winner",
711
774
  'soccer_10_minutes_sending_off_from_to' = "soccer.10_minutes_sending_off_from_to",
@@ -769,9 +832,11 @@ declare enum MarketType {
769
832
  'soccer_which_team_wins_the_rest_of_the_match' = "soccer.which_team_wins_the_rest_of_the_match",
770
833
  'specials_outright' = "specials.outright",
771
834
  'specials_outright_v2' = "specials.outright.v2",
835
+ 'specials_outright_v3' = "specials.outright.v3",
772
836
  'squash_correct_score' = "squash.correct_score",
773
837
  'squash_outright' = "squash.outright",
774
838
  'squash_outright_v2' = "squash.outright.v2",
839
+ 'squash_outright_v3' = "squash.outright.v3",
775
840
  'squash_point_handicap' = "squash.point_handicap",
776
841
  'squash_total_points' = "squash.total_points",
777
842
  'squash_winner' = "squash.winner",
@@ -782,15 +847,19 @@ declare enum MarketType {
782
847
  'starcraft_map_winner_v2' = "starcraft.map_winner_v2",
783
848
  'starcraft_outright' = "starcraft.outright",
784
849
  'starcraft_outright_v2' = "starcraft.outright.v2",
850
+ 'starcraft_outright_v3' = "starcraft.outright.v3",
785
851
  'starcraft_total_maps' = "starcraft.total_maps",
786
852
  'starcraft_winner' = "starcraft.winner",
787
853
  'street_fighter_v_outright' = "street_fighter_v.outright",
788
854
  'street_fighter_v_outright_v2' = "street_fighter_v.outright.v2",
855
+ 'street_fighter_v_outright_v3' = "street_fighter_v.outright.v3",
789
856
  'sumo_outright' = "sumo.outright",
790
857
  'sumo_outright_v2' = "sumo.outright.v2",
858
+ 'sumo_outright_v3' = "sumo.outright.v3",
791
859
  'sumo_winner' = "sumo.winner",
792
860
  'swimming_outright' = "swimming.outright",
793
861
  'swimming_outright_v2' = "swimming.outright.v2",
862
+ 'swimming_outright_v3' = "swimming.outright.v3",
794
863
  'table_tennis_correct_score' = "table_tennis.correct_score",
795
864
  'table_tennis_exact_games' = "table_tennis.exact_games",
796
865
  'table_tennis_game_odd_even' = "table_tennis.game_odd_even",
@@ -808,6 +877,7 @@ declare enum MarketType {
808
877
  'table_tennis_how_many_games_will_be_decided_by_extra_points' = "table_tennis.how_many_games_will_be_decided_by_extra_points",
809
878
  'table_tennis_outright' = "table_tennis.outright",
810
879
  'table_tennis_outright_v2' = "table_tennis.outright.v2",
880
+ 'table_tennis_outright_v3' = "table_tennis.outright.v3",
811
881
  'table_tennis_totals' = "table_tennis.totals",
812
882
  'table_tennis_totals_v2' = "table_tennis.totals.v2",
813
883
  'table_tennis_winner' = "table_tennis.winner",
@@ -846,6 +916,7 @@ declare enum MarketType {
846
916
  'volleyball_handicap' = "volleyball.handicap",
847
917
  'volleyball_outright' = "volleyball.outright",
848
918
  'volleyball_outright_v2' = "volleyball.outright.v2",
919
+ 'volleyball_outright_v3' = "volleyball.outright.v3",
849
920
  'volleyball_set_handicap' = "volleyball.set_handicap",
850
921
  'volleyball_total_sets' = "volleyball.total_sets",
851
922
  'volleyball_totals' = "volleyball.totals",
@@ -854,6 +925,7 @@ declare enum MarketType {
854
925
  'waterpolo_match_odds' = "waterpolo.match_odds",
855
926
  'waterpolo_outright' = "waterpolo.outright",
856
927
  'waterpolo_outright_v2' = "waterpolo.outright.v2",
928
+ 'waterpolo_outright_v3' = "waterpolo.outright.v3",
857
929
  'waterpolo_totals' = "waterpolo.totals",
858
930
  'wild_rift_correct_score' = "wild_rift.correct_score",
859
931
  'wild_rift_handicap' = "wild_rift.handicap",
@@ -862,6 +934,7 @@ declare enum MarketType {
862
934
  'wild_rift_winner' = "wild_rift.winner",
863
935
  'winter_sports_outright' = "winter_sports.outright",
864
936
  'winter_sports_outright_v2' = "winter_sports.outright.v2",
937
+ 'winter_sports_outright_v3' = "winter_sports.outright.v3",
865
938
  'world_lottery_bonus_ball_equals_any_regular_ball' = "world_lottery.bonus_ball_equals_any_regular_ball",
866
939
  'world_lottery_bonus_ball_odd_even' = "world_lottery.bonus_ball_odd_even",
867
940
  'world_lottery_bonus_ball_range' = "world_lottery.bonus_ball_range",
@@ -875,6 +948,7 @@ declare enum MarketType {
875
948
  'world_lottery_draw_sum_total_incl_bonus_ball' = "world_lottery.draw_sum_total_incl_bonus_ball",
876
949
  'world_lottery_outright' = "world_lottery.outright",
877
950
  'world_lottery_outright_v2' = "world_lottery.outright.v2",
951
+ 'world_lottery_outright_v3' = "world_lottery.outright.v3",
878
952
  'world_lottery_standard_bet' = "world_lottery.standard_bet",
879
953
  'world_lottery_standard_bet_incl_bonus_ball_in_additional_drum' = "world_lottery.standard_bet_incl_bonus_ball_in_additional_drum",
880
954
  'world_lottery_standard_bet_incl_bonus_ball_in_same_drum' = "world_lottery.standard_bet_incl_bonus_ball_in_same_drum"