@scoreboardmax/api-types 1.0.22-next.11 → 1.0.22-next.13
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 +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ export interface BaseballSettings extends ScoreboardSettingsBase {
|
|
|
425
425
|
showPitchClock: boolean;
|
|
426
426
|
showPitchClockWhenLow: boolean;
|
|
427
427
|
enableClockAutomations: boolean;
|
|
428
|
+
innings: number;
|
|
428
429
|
}
|
|
429
430
|
export interface BaseballSettingsRequest extends BaseballSettings {
|
|
430
431
|
}
|
|
@@ -503,6 +504,8 @@ export interface CheckoutSessionResponse {
|
|
|
503
504
|
}
|
|
504
505
|
export interface ClientConfigResponse {
|
|
505
506
|
websocketUrl: string;
|
|
507
|
+
signInUrl: string;
|
|
508
|
+
dashboardUrl: string;
|
|
506
509
|
}
|
|
507
510
|
export interface Clock {
|
|
508
511
|
clockId: string;
|
|
@@ -883,6 +886,8 @@ export interface ScoreboardResponse {
|
|
|
883
886
|
description: string;
|
|
884
887
|
controlUrl: string;
|
|
885
888
|
embedUrl: string;
|
|
889
|
+
displayUrl: string;
|
|
890
|
+
directUrl: string;
|
|
886
891
|
type: ScoreboardType;
|
|
887
892
|
data: BasketballDataResponse | FootballDataResponse | VolleyballDataResponse | SoccerDataResponse | BaseballDataResponse | WrestlingDataResponse;
|
|
888
893
|
accountId: string;
|