crewtimer-common 1.0.11 → 1.0.12

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.
@@ -39,6 +39,7 @@ export interface ResultRegattaInfo {
39
39
  ResultWaypoints: string;
40
40
  RMPublishDisable: boolean;
41
41
  ShowProgress: boolean;
42
+ SubTitle?: string;
42
43
  Title: string;
43
44
  Titles: KeyMap<string>;
44
45
  TrackingStations?: TrackingStation[];
@@ -68,6 +68,7 @@ export interface RegattaInfo {
68
68
  Finished?: boolean;
69
69
  FlightRaces?: string[][];
70
70
  InfoText?: string;
71
+ LogoURL?: string;
71
72
  NtpServers?: string[];
72
73
  NumDays: string;
73
74
  PenaltyLocations?: string;
@@ -81,6 +82,7 @@ export interface RegattaInfo {
81
82
  Source: 'Local' | 'CrewTimer.com';
82
83
  Stations: RMStation[];
83
84
  Stopwatch?: StopwatchConfig;
85
+ SubTitle?: string;
84
86
  Title: string;
85
87
  Titles?: KeyMap<string>;
86
88
  TrackingStations?: TrackingStation[];
@@ -121,6 +123,7 @@ export interface ResultSummary {
121
123
  Name: string;
122
124
  NumDays: string;
123
125
  Public: string;
126
+ SubTitle?: string;
124
127
  Title: string;
125
128
  }
126
129
  export interface AdminSummary extends ResultSummary {
@@ -39,6 +39,7 @@ export interface ResultRegattaInfo {
39
39
  ResultWaypoints: string;
40
40
  RMPublishDisable: boolean;
41
41
  ShowProgress: boolean;
42
+ SubTitle?: string;
42
43
  Title: string;
43
44
  Titles: KeyMap<string>;
44
45
  TrackingStations?: TrackingStation[];
@@ -68,6 +68,7 @@ export interface RegattaInfo {
68
68
  Finished?: boolean;
69
69
  FlightRaces?: string[][];
70
70
  InfoText?: string;
71
+ LogoURL?: string;
71
72
  NtpServers?: string[];
72
73
  NumDays: string;
73
74
  PenaltyLocations?: string;
@@ -81,6 +82,7 @@ export interface RegattaInfo {
81
82
  Source: 'Local' | 'CrewTimer.com';
82
83
  Stations: RMStation[];
83
84
  Stopwatch?: StopwatchConfig;
85
+ SubTitle?: string;
84
86
  Title: string;
85
87
  Titles?: KeyMap<string>;
86
88
  TrackingStations?: TrackingStation[];
@@ -121,6 +123,7 @@ export interface ResultSummary {
121
123
  Name: string;
122
124
  NumDays: string;
123
125
  Public: string;
126
+ SubTitle?: string;
124
127
  Title: string;
125
128
  }
126
129
  export interface AdminSummary extends ResultSummary {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewtimer-common",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Common types and utilities for CrewTimer",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",