@scoreboardmax/api-types 1.0.52 → 1.0.54
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.d.ts +9 -2
- package/dist/internal.d.ts +9 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -629,7 +629,7 @@ export declare enum BasketballTimeoutAllocation {
|
|
|
629
629
|
* Batting record
|
|
630
630
|
*/
|
|
631
631
|
export interface BattingRecord {
|
|
632
|
-
|
|
632
|
+
playerReference: string;
|
|
633
633
|
results: (boolean | null)[];
|
|
634
634
|
}
|
|
635
635
|
/**
|
|
@@ -1254,7 +1254,7 @@ export type PermissionItem = {
|
|
|
1254
1254
|
* Pitcher stats
|
|
1255
1255
|
*/
|
|
1256
1256
|
export interface PitcherStats {
|
|
1257
|
-
|
|
1257
|
+
playerReference: string;
|
|
1258
1258
|
pitchCount?: number;
|
|
1259
1259
|
strikeouts?: number;
|
|
1260
1260
|
walks?: number;
|
|
@@ -1502,6 +1502,7 @@ export interface ScoreboardResponse {
|
|
|
1502
1502
|
currentServerTimestamp: number;
|
|
1503
1503
|
clocks: ClockListResponse | string;
|
|
1504
1504
|
overlay: OverlayResponse | string;
|
|
1505
|
+
undoCount: number;
|
|
1505
1506
|
version: number;
|
|
1506
1507
|
templates: TemplateSelection[];
|
|
1507
1508
|
}
|
|
@@ -1519,6 +1520,12 @@ export interface ScoreboardQrPdfRequest {
|
|
|
1519
1520
|
export interface ScoreboardQrPdfResponse {
|
|
1520
1521
|
url: string;
|
|
1521
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* Scoreboard undo request
|
|
1525
|
+
*/
|
|
1526
|
+
export interface ScoreboardUndoRequest {
|
|
1527
|
+
version: number;
|
|
1528
|
+
}
|
|
1522
1529
|
/**
|
|
1523
1530
|
* Select dropdown input type
|
|
1524
1531
|
*/
|
package/dist/internal.d.ts
CHANGED
|
@@ -652,7 +652,7 @@ export declare enum BasketballTimeoutAllocation {
|
|
|
652
652
|
* Batting record
|
|
653
653
|
*/
|
|
654
654
|
export interface BattingRecord {
|
|
655
|
-
|
|
655
|
+
playerReference: string;
|
|
656
656
|
results: (boolean | null)[];
|
|
657
657
|
}
|
|
658
658
|
/**
|
|
@@ -1277,7 +1277,7 @@ export type PermissionItem = {
|
|
|
1277
1277
|
* Pitcher stats
|
|
1278
1278
|
*/
|
|
1279
1279
|
export interface PitcherStats {
|
|
1280
|
-
|
|
1280
|
+
playerReference: string;
|
|
1281
1281
|
pitchCount?: number;
|
|
1282
1282
|
strikeouts?: number;
|
|
1283
1283
|
walks?: number;
|
|
@@ -1525,6 +1525,7 @@ export interface ScoreboardResponse {
|
|
|
1525
1525
|
currentServerTimestamp: number;
|
|
1526
1526
|
clocks: ClockListResponse | string;
|
|
1527
1527
|
overlay: OverlayResponse | string;
|
|
1528
|
+
undoCount: number;
|
|
1528
1529
|
version: number;
|
|
1529
1530
|
templates: TemplateSelection[];
|
|
1530
1531
|
}
|
|
@@ -1542,6 +1543,12 @@ export interface ScoreboardQrPdfRequest {
|
|
|
1542
1543
|
export interface ScoreboardQrPdfResponse {
|
|
1543
1544
|
url: string;
|
|
1544
1545
|
}
|
|
1546
|
+
/**
|
|
1547
|
+
* Scoreboard undo request
|
|
1548
|
+
*/
|
|
1549
|
+
export interface ScoreboardUndoRequest {
|
|
1550
|
+
version: number;
|
|
1551
|
+
}
|
|
1545
1552
|
/**
|
|
1546
1553
|
* Select dropdown input type
|
|
1547
1554
|
*/
|