@scoreboardmax/api-types 1.0.46 → 1.0.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/dist/index.cjs CHANGED
@@ -101,6 +101,7 @@ var BasketballPeriod;
101
101
  BasketballPeriod["Third"] = "3";
102
102
  BasketballPeriod["Fourth"] = "4";
103
103
  BasketballPeriod["Overtime"] = "overtime";
104
+ BasketballPeriod["Final"] = "final";
104
105
  })(BasketballPeriod || (exports.BasketballPeriod = BasketballPeriod = {}));
105
106
  /**
106
107
  * Basketball period structure options
@@ -221,6 +222,7 @@ var FootballPeriod;
221
222
  FootballPeriod["Third"] = "3";
222
223
  FootballPeriod["Fourth"] = "4";
223
224
  FootballPeriod["Overtime"] = "overtime";
225
+ FootballPeriod["Final"] = "final";
224
226
  })(FootballPeriod || (exports.FootballPeriod = FootballPeriod = {}));
225
227
  /**
226
228
  * Magic link type identifiers
@@ -282,6 +284,7 @@ var SoccerPeriod;
282
284
  SoccerPeriod["ExtraTime1"] = "ET 1";
283
285
  SoccerPeriod["ExtraTime2"] = "ET 2";
284
286
  SoccerPeriod["Shootout"] = "shootout";
287
+ SoccerPeriod["Final"] = "final";
285
288
  })(SoccerPeriod || (exports.SoccerPeriod = SoccerPeriod = {}));
286
289
  /**
287
290
  * Soccer period structure options
@@ -375,6 +378,7 @@ var VolleyballSet;
375
378
  VolleyballSet["Third"] = "3";
376
379
  VolleyballSet["Fourth"] = "4";
377
380
  VolleyballSet["Fifth"] = "5";
381
+ VolleyballSet["Final"] = "final";
378
382
  })(VolleyballSet || (exports.VolleyballSet = VolleyballSet = {}));
379
383
  /**
380
384
  * Websocket message type identifiers
@@ -429,6 +433,7 @@ var WrestlingPeriod;
429
433
  WrestlingPeriod["Second"] = "2";
430
434
  WrestlingPeriod["Third"] = "3";
431
435
  WrestlingPeriod["Overtime"] = "overtime";
436
+ WrestlingPeriod["Final"] = "final";
432
437
  })(WrestlingPeriod || (exports.WrestlingPeriod = WrestlingPeriod = {}));
433
438
  /**
434
439
  * Wrestling style options
package/dist/index.d.ts CHANGED
@@ -278,6 +278,7 @@ export interface BaseballDataRequest {
278
278
  runnerOnFirst: boolean;
279
279
  runnerOnSecond: boolean;
280
280
  runnerOnThird: boolean;
281
+ isFinal: boolean;
281
282
  team1: BaseballScoreboardTeamRequest;
282
283
  team2: BaseballScoreboardTeamRequest;
283
284
  settings?: BaseballSettingsRequest;
@@ -295,6 +296,7 @@ export interface BaseballDataResponse {
295
296
  runnerOnFirst: boolean;
296
297
  runnerOnSecond: boolean;
297
298
  runnerOnThird: boolean;
299
+ isFinal: boolean;
298
300
  team1: BaseballScoreboardTeamResponse;
299
301
  team2: BaseballScoreboardTeamResponse;
300
302
  settings: BaseballSettingsResponse;
@@ -502,7 +504,8 @@ export declare enum BasketballPeriod {
502
504
  Half = "half",
503
505
  Third = "3",
504
506
  Fourth = "4",
505
- Overtime = "overtime"
507
+ Overtime = "overtime",
508
+ Final = "final"
506
509
  }
507
510
  /**
508
511
  * Basketball period structure options
@@ -873,7 +876,8 @@ export declare enum FootballPeriod {
873
876
  Half = "half",
874
877
  Third = "3",
875
878
  Fourth = "4",
876
- Overtime = "overtime"
879
+ Overtime = "overtime",
880
+ Final = "final"
877
881
  }
878
882
  /**
879
883
  * Football settings request
@@ -1531,7 +1535,8 @@ export declare enum SoccerPeriod {
1531
1535
  Fourth = "4",
1532
1536
  ExtraTime1 = "ET 1",
1533
1537
  ExtraTime2 = "ET 2",
1534
- Shootout = "shootout"
1538
+ Shootout = "shootout",
1539
+ Final = "final"
1535
1540
  }
1536
1541
  /**
1537
1542
  * Soccer period structure options
@@ -1913,7 +1918,8 @@ export declare enum VolleyballSet {
1913
1918
  Second = "2",
1914
1919
  Third = "3",
1915
1920
  Fourth = "4",
1916
- Fifth = "5"
1921
+ Fifth = "5",
1922
+ Final = "final"
1917
1923
  }
1918
1924
  /**
1919
1925
  * Volleyball settings request
@@ -2103,7 +2109,8 @@ export declare enum WrestlingPeriod {
2103
2109
  First = "1",
2104
2110
  Second = "2",
2105
2111
  Third = "3",
2106
- Overtime = "overtime"
2112
+ Overtime = "overtime",
2113
+ Final = "final"
2107
2114
  }
2108
2115
  /**
2109
2116
  * Wrestling settings request
package/dist/index.mjs CHANGED
@@ -98,6 +98,7 @@ export var BasketballPeriod;
98
98
  BasketballPeriod["Third"] = "3";
99
99
  BasketballPeriod["Fourth"] = "4";
100
100
  BasketballPeriod["Overtime"] = "overtime";
101
+ BasketballPeriod["Final"] = "final";
101
102
  })(BasketballPeriod || (BasketballPeriod = {}));
102
103
  /**
103
104
  * Basketball period structure options
@@ -218,6 +219,7 @@ export var FootballPeriod;
218
219
  FootballPeriod["Third"] = "3";
219
220
  FootballPeriod["Fourth"] = "4";
220
221
  FootballPeriod["Overtime"] = "overtime";
222
+ FootballPeriod["Final"] = "final";
221
223
  })(FootballPeriod || (FootballPeriod = {}));
222
224
  /**
223
225
  * Magic link type identifiers
@@ -279,6 +281,7 @@ export var SoccerPeriod;
279
281
  SoccerPeriod["ExtraTime1"] = "ET 1";
280
282
  SoccerPeriod["ExtraTime2"] = "ET 2";
281
283
  SoccerPeriod["Shootout"] = "shootout";
284
+ SoccerPeriod["Final"] = "final";
282
285
  })(SoccerPeriod || (SoccerPeriod = {}));
283
286
  /**
284
287
  * Soccer period structure options
@@ -366,6 +369,7 @@ export var VolleyballSet;
366
369
  VolleyballSet["Third"] = "3";
367
370
  VolleyballSet["Fourth"] = "4";
368
371
  VolleyballSet["Fifth"] = "5";
372
+ VolleyballSet["Final"] = "final";
369
373
  })(VolleyballSet || (VolleyballSet = {}));
370
374
  /**
371
375
  * Websocket message type identifiers
@@ -420,6 +424,7 @@ export var WrestlingPeriod;
420
424
  WrestlingPeriod["Second"] = "2";
421
425
  WrestlingPeriod["Third"] = "3";
422
426
  WrestlingPeriod["Overtime"] = "overtime";
427
+ WrestlingPeriod["Final"] = "final";
423
428
  })(WrestlingPeriod || (WrestlingPeriod = {}));
424
429
  /**
425
430
  * Wrestling style options
package/dist/internal.cjs CHANGED
@@ -104,6 +104,7 @@ var BasketballPeriod;
104
104
  BasketballPeriod["Third"] = "3";
105
105
  BasketballPeriod["Fourth"] = "4";
106
106
  BasketballPeriod["Overtime"] = "overtime";
107
+ BasketballPeriod["Final"] = "final";
107
108
  })(BasketballPeriod || (exports.BasketballPeriod = BasketballPeriod = {}));
108
109
  /**
109
110
  * Basketball period structure options
@@ -224,6 +225,7 @@ var FootballPeriod;
224
225
  FootballPeriod["Third"] = "3";
225
226
  FootballPeriod["Fourth"] = "4";
226
227
  FootballPeriod["Overtime"] = "overtime";
228
+ FootballPeriod["Final"] = "final";
227
229
  })(FootballPeriod || (exports.FootballPeriod = FootballPeriod = {}));
228
230
  /**
229
231
  * Magic link type identifiers
@@ -285,6 +287,7 @@ var SoccerPeriod;
285
287
  SoccerPeriod["ExtraTime1"] = "ET 1";
286
288
  SoccerPeriod["ExtraTime2"] = "ET 2";
287
289
  SoccerPeriod["Shootout"] = "shootout";
290
+ SoccerPeriod["Final"] = "final";
288
291
  })(SoccerPeriod || (exports.SoccerPeriod = SoccerPeriod = {}));
289
292
  /**
290
293
  * Soccer period structure options
@@ -406,6 +409,7 @@ var VolleyballSet;
406
409
  VolleyballSet["Third"] = "3";
407
410
  VolleyballSet["Fourth"] = "4";
408
411
  VolleyballSet["Fifth"] = "5";
412
+ VolleyballSet["Final"] = "final";
409
413
  })(VolleyballSet || (exports.VolleyballSet = VolleyballSet = {}));
410
414
  /**
411
415
  * Websocket message type identifiers
@@ -460,6 +464,7 @@ var WrestlingPeriod;
460
464
  WrestlingPeriod["Second"] = "2";
461
465
  WrestlingPeriod["Third"] = "3";
462
466
  WrestlingPeriod["Overtime"] = "overtime";
467
+ WrestlingPeriod["Final"] = "final";
463
468
  })(WrestlingPeriod || (exports.WrestlingPeriod = WrestlingPeriod = {}));
464
469
  /**
465
470
  * Wrestling style options
@@ -301,6 +301,7 @@ export interface BaseballDataRequest {
301
301
  runnerOnFirst: boolean;
302
302
  runnerOnSecond: boolean;
303
303
  runnerOnThird: boolean;
304
+ isFinal: boolean;
304
305
  team1: BaseballScoreboardTeamRequest;
305
306
  team2: BaseballScoreboardTeamRequest;
306
307
  settings?: BaseballSettingsRequest;
@@ -318,6 +319,7 @@ export interface BaseballDataResponse {
318
319
  runnerOnFirst: boolean;
319
320
  runnerOnSecond: boolean;
320
321
  runnerOnThird: boolean;
322
+ isFinal: boolean;
321
323
  team1: BaseballScoreboardTeamResponse;
322
324
  team2: BaseballScoreboardTeamResponse;
323
325
  settings: BaseballSettingsResponse;
@@ -525,7 +527,8 @@ export declare enum BasketballPeriod {
525
527
  Half = "half",
526
528
  Third = "3",
527
529
  Fourth = "4",
528
- Overtime = "overtime"
530
+ Overtime = "overtime",
531
+ Final = "final"
529
532
  }
530
533
  /**
531
534
  * Basketball period structure options
@@ -896,7 +899,8 @@ export declare enum FootballPeriod {
896
899
  Half = "half",
897
900
  Third = "3",
898
901
  Fourth = "4",
899
- Overtime = "overtime"
902
+ Overtime = "overtime",
903
+ Final = "final"
900
904
  }
901
905
  /**
902
906
  * Football settings request
@@ -1554,7 +1558,8 @@ export declare enum SoccerPeriod {
1554
1558
  Fourth = "4",
1555
1559
  ExtraTime1 = "ET 1",
1556
1560
  ExtraTime2 = "ET 2",
1557
- Shootout = "shootout"
1561
+ Shootout = "shootout",
1562
+ Final = "final"
1558
1563
  }
1559
1564
  /**
1560
1565
  * Soccer period structure options
@@ -1974,7 +1979,8 @@ export declare enum VolleyballSet {
1974
1979
  Second = "2",
1975
1980
  Third = "3",
1976
1981
  Fourth = "4",
1977
- Fifth = "5"
1982
+ Fifth = "5",
1983
+ Final = "final"
1978
1984
  }
1979
1985
  /**
1980
1986
  * Volleyball settings request
@@ -2164,7 +2170,8 @@ export declare enum WrestlingPeriod {
2164
2170
  First = "1",
2165
2171
  Second = "2",
2166
2172
  Third = "3",
2167
- Overtime = "overtime"
2173
+ Overtime = "overtime",
2174
+ Final = "final"
2168
2175
  }
2169
2176
  /**
2170
2177
  * Wrestling settings request
package/dist/internal.mjs CHANGED
@@ -101,6 +101,7 @@ export var BasketballPeriod;
101
101
  BasketballPeriod["Third"] = "3";
102
102
  BasketballPeriod["Fourth"] = "4";
103
103
  BasketballPeriod["Overtime"] = "overtime";
104
+ BasketballPeriod["Final"] = "final";
104
105
  })(BasketballPeriod || (BasketballPeriod = {}));
105
106
  /**
106
107
  * Basketball period structure options
@@ -221,6 +222,7 @@ export var FootballPeriod;
221
222
  FootballPeriod["Third"] = "3";
222
223
  FootballPeriod["Fourth"] = "4";
223
224
  FootballPeriod["Overtime"] = "overtime";
225
+ FootballPeriod["Final"] = "final";
224
226
  })(FootballPeriod || (FootballPeriod = {}));
225
227
  /**
226
228
  * Magic link type identifiers
@@ -282,6 +284,7 @@ export var SoccerPeriod;
282
284
  SoccerPeriod["ExtraTime1"] = "ET 1";
283
285
  SoccerPeriod["ExtraTime2"] = "ET 2";
284
286
  SoccerPeriod["Shootout"] = "shootout";
287
+ SoccerPeriod["Final"] = "final";
285
288
  })(SoccerPeriod || (SoccerPeriod = {}));
286
289
  /**
287
290
  * Soccer period structure options
@@ -393,6 +396,7 @@ export var VolleyballSet;
393
396
  VolleyballSet["Third"] = "3";
394
397
  VolleyballSet["Fourth"] = "4";
395
398
  VolleyballSet["Fifth"] = "5";
399
+ VolleyballSet["Final"] = "final";
396
400
  })(VolleyballSet || (VolleyballSet = {}));
397
401
  /**
398
402
  * Websocket message type identifiers
@@ -447,6 +451,7 @@ export var WrestlingPeriod;
447
451
  WrestlingPeriod["Second"] = "2";
448
452
  WrestlingPeriod["Third"] = "3";
449
453
  WrestlingPeriod["Overtime"] = "overtime";
454
+ WrestlingPeriod["Final"] = "final";
450
455
  })(WrestlingPeriod || (WrestlingPeriod = {}));
451
456
  /**
452
457
  * Wrestling style options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",