@scoreboardmax/api-types 1.0.46 → 1.0.48

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
@@ -119,10 +119,6 @@ export interface AppResponse {
119
119
  * App input field definition
120
120
  */
121
121
  export type InputDefinition = SelectInput | BooleanInput | ColorInput | TextInput | NumberInput | RangeInput;
122
- /**
123
- * App input field selection
124
- */
125
- export type InputSelection = Record<string, string | number | boolean>;
126
122
  /**
127
123
  * App manifest definition
128
124
  */
@@ -278,6 +274,7 @@ export interface BaseballDataRequest {
278
274
  runnerOnFirst: boolean;
279
275
  runnerOnSecond: boolean;
280
276
  runnerOnThird: boolean;
277
+ isFinal: boolean;
281
278
  team1: BaseballScoreboardTeamRequest;
282
279
  team2: BaseballScoreboardTeamRequest;
283
280
  settings?: BaseballSettingsRequest;
@@ -295,6 +292,7 @@ export interface BaseballDataResponse {
295
292
  runnerOnFirst: boolean;
296
293
  runnerOnSecond: boolean;
297
294
  runnerOnThird: boolean;
295
+ isFinal: boolean;
298
296
  team1: BaseballScoreboardTeamResponse;
299
297
  team2: BaseballScoreboardTeamResponse;
300
298
  settings: BaseballSettingsResponse;
@@ -502,7 +500,8 @@ export declare enum BasketballPeriod {
502
500
  Half = "half",
503
501
  Third = "3",
504
502
  Fourth = "4",
505
- Overtime = "overtime"
503
+ Overtime = "overtime",
504
+ Final = "final"
506
505
  }
507
506
  /**
508
507
  * Basketball period structure options
@@ -873,7 +872,8 @@ export declare enum FootballPeriod {
873
872
  Half = "half",
874
873
  Third = "3",
875
874
  Fourth = "4",
876
- Overtime = "overtime"
875
+ Overtime = "overtime",
876
+ Final = "final"
877
877
  }
878
878
  /**
879
879
  * Football settings request
@@ -1531,7 +1531,8 @@ export declare enum SoccerPeriod {
1531
1531
  Fourth = "4",
1532
1532
  ExtraTime1 = "ET 1",
1533
1533
  ExtraTime2 = "ET 2",
1534
- Shootout = "shootout"
1534
+ Shootout = "shootout",
1535
+ Final = "final"
1535
1536
  }
1536
1537
  /**
1537
1538
  * Soccer period structure options
@@ -1724,7 +1725,7 @@ export interface TeamResponse {
1724
1725
  export interface TemplateDefinition {
1725
1726
  path: string;
1726
1727
  name: string;
1727
- sport: string;
1728
+ scoreboardType: string;
1728
1729
  useCases: TemplateUseCase[];
1729
1730
  thumbnail?: string;
1730
1731
  settings?: Record<string, InputDefinition>;
@@ -1737,7 +1738,7 @@ export interface TemplateSelection {
1737
1738
  appId: string;
1738
1739
  useCase: TemplateUseCase;
1739
1740
  version?: string;
1740
- settings?: Record<string, InputSelection>;
1741
+ settings?: Record<string, string | number | boolean | null>;
1741
1742
  }
1742
1743
  /**
1743
1744
  * Template use case categories
@@ -1913,7 +1914,8 @@ export declare enum VolleyballSet {
1913
1914
  Second = "2",
1914
1915
  Third = "3",
1915
1916
  Fourth = "4",
1916
- Fifth = "5"
1917
+ Fifth = "5",
1918
+ Final = "final"
1917
1919
  }
1918
1920
  /**
1919
1921
  * Volleyball settings request
@@ -2103,7 +2105,8 @@ export declare enum WrestlingPeriod {
2103
2105
  First = "1",
2104
2106
  Second = "2",
2105
2107
  Third = "3",
2106
- Overtime = "overtime"
2108
+ Overtime = "overtime",
2109
+ Final = "final"
2107
2110
  }
2108
2111
  /**
2109
2112
  * 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
@@ -129,10 +129,6 @@ export interface AppResponse {
129
129
  * App input field definition
130
130
  */
131
131
  export type InputDefinition = SelectInput | BooleanInput | ColorInput | TextInput | NumberInput | RangeInput;
132
- /**
133
- * App input field selection
134
- */
135
- export type InputSelection = Record<string, string | number | boolean>;
136
132
  /**
137
133
  * App manifest definition
138
134
  */
@@ -301,6 +297,7 @@ export interface BaseballDataRequest {
301
297
  runnerOnFirst: boolean;
302
298
  runnerOnSecond: boolean;
303
299
  runnerOnThird: boolean;
300
+ isFinal: boolean;
304
301
  team1: BaseballScoreboardTeamRequest;
305
302
  team2: BaseballScoreboardTeamRequest;
306
303
  settings?: BaseballSettingsRequest;
@@ -318,6 +315,7 @@ export interface BaseballDataResponse {
318
315
  runnerOnFirst: boolean;
319
316
  runnerOnSecond: boolean;
320
317
  runnerOnThird: boolean;
318
+ isFinal: boolean;
321
319
  team1: BaseballScoreboardTeamResponse;
322
320
  team2: BaseballScoreboardTeamResponse;
323
321
  settings: BaseballSettingsResponse;
@@ -525,7 +523,8 @@ export declare enum BasketballPeriod {
525
523
  Half = "half",
526
524
  Third = "3",
527
525
  Fourth = "4",
528
- Overtime = "overtime"
526
+ Overtime = "overtime",
527
+ Final = "final"
529
528
  }
530
529
  /**
531
530
  * Basketball period structure options
@@ -896,7 +895,8 @@ export declare enum FootballPeriod {
896
895
  Half = "half",
897
896
  Third = "3",
898
897
  Fourth = "4",
899
- Overtime = "overtime"
898
+ Overtime = "overtime",
899
+ Final = "final"
900
900
  }
901
901
  /**
902
902
  * Football settings request
@@ -1554,7 +1554,8 @@ export declare enum SoccerPeriod {
1554
1554
  Fourth = "4",
1555
1555
  ExtraTime1 = "ET 1",
1556
1556
  ExtraTime2 = "ET 2",
1557
- Shootout = "shootout"
1557
+ Shootout = "shootout",
1558
+ Final = "final"
1558
1559
  }
1559
1560
  /**
1560
1561
  * Soccer period structure options
@@ -1747,7 +1748,7 @@ export interface TeamResponse {
1747
1748
  export interface TemplateDefinition {
1748
1749
  path: string;
1749
1750
  name: string;
1750
- sport: string;
1751
+ scoreboardType: string;
1751
1752
  useCases: TemplateUseCase[];
1752
1753
  thumbnail?: string;
1753
1754
  settings?: Record<string, InputDefinition>;
@@ -1760,7 +1761,7 @@ export interface TemplateSelection {
1760
1761
  appId: string;
1761
1762
  useCase: TemplateUseCase;
1762
1763
  version?: string;
1763
- settings?: Record<string, InputSelection>;
1764
+ settings?: Record<string, string | number | boolean | null>;
1764
1765
  }
1765
1766
  /**
1766
1767
  * Template use case categories
@@ -1974,7 +1975,8 @@ export declare enum VolleyballSet {
1974
1975
  Second = "2",
1975
1976
  Third = "3",
1976
1977
  Fourth = "4",
1977
- Fifth = "5"
1978
+ Fifth = "5",
1979
+ Final = "final"
1978
1980
  }
1979
1981
  /**
1980
1982
  * Volleyball settings request
@@ -2164,7 +2166,8 @@ export declare enum WrestlingPeriod {
2164
2166
  First = "1",
2165
2167
  Second = "2",
2166
2168
  Third = "3",
2167
- Overtime = "overtime"
2169
+ Overtime = "overtime",
2170
+ Final = "final"
2168
2171
  }
2169
2172
  /**
2170
2173
  * 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.48",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",