crewtimer-common 1.0.22 → 1.0.24

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.
@@ -9,7 +9,7 @@ export interface EntryProgressItem {
9
9
  export interface Progress {
10
10
  S: KeyMap<EntryProgressItem>;
11
11
  Waypoints: string[];
12
- TrackingStations: TrackingStation[];
12
+ TrackingStations: string[];
13
13
  }
14
14
  export interface ResultRegattaInfo {
15
15
  Admins: string;
@@ -22,6 +22,7 @@ export interface ResultRegattaInfo {
22
22
  Finished: boolean;
23
23
  FlightRaces: string;
24
24
  HasRoster: boolean;
25
+ HandicapMultiplier: string;
25
26
  InfoText: string;
26
27
  LogoURL: string;
27
28
  Name: string;
@@ -32,6 +33,7 @@ export interface ResultRegattaInfo {
32
33
  PenaltyLocations: string;
33
34
  PointsEngine: string;
34
35
  Public: boolean;
36
+ PursuitGroupInterval?: number;
35
37
  RaceType: string;
36
38
  ResultDigits: string;
37
39
  ResultOmitCols: string[];
@@ -73,6 +73,7 @@ export interface RegattaInfo {
73
73
  DayList: string[];
74
74
  Finished?: boolean;
75
75
  FlightRaces?: string[][];
76
+ HandicapMultiplier?: string;
76
77
  HandicapType: string;
77
78
  HandicapNormalized: boolean;
78
79
  InfoText?: string;
@@ -83,6 +84,7 @@ export interface RegattaInfo {
83
84
  NumDays: string;
84
85
  PenaltyLocations?: string;
85
86
  PointsEngine: string;
87
+ PursuitGroupInterval?: number;
86
88
  RMConfig: RMConfigSummary;
87
89
  RMPublishDisable: boolean;
88
90
  RaceType: RaceType;
@@ -9,7 +9,7 @@ export interface EntryProgressItem {
9
9
  export interface Progress {
10
10
  S: KeyMap<EntryProgressItem>;
11
11
  Waypoints: string[];
12
- TrackingStations: TrackingStation[];
12
+ TrackingStations: string[];
13
13
  }
14
14
  export interface ResultRegattaInfo {
15
15
  Admins: string;
@@ -22,6 +22,7 @@ export interface ResultRegattaInfo {
22
22
  Finished: boolean;
23
23
  FlightRaces: string;
24
24
  HasRoster: boolean;
25
+ HandicapMultiplier: string;
25
26
  InfoText: string;
26
27
  LogoURL: string;
27
28
  Name: string;
@@ -32,6 +33,7 @@ export interface ResultRegattaInfo {
32
33
  PenaltyLocations: string;
33
34
  PointsEngine: string;
34
35
  Public: boolean;
36
+ PursuitGroupInterval?: number;
35
37
  RaceType: string;
36
38
  ResultDigits: string;
37
39
  ResultOmitCols: string[];
@@ -73,6 +73,7 @@ export interface RegattaInfo {
73
73
  DayList: string[];
74
74
  Finished?: boolean;
75
75
  FlightRaces?: string[][];
76
+ HandicapMultiplier?: string;
76
77
  HandicapType: string;
77
78
  HandicapNormalized: boolean;
78
79
  InfoText?: string;
@@ -83,6 +84,7 @@ export interface RegattaInfo {
83
84
  NumDays: string;
84
85
  PenaltyLocations?: string;
85
86
  PointsEngine: string;
87
+ PursuitGroupInterval?: number;
86
88
  RMConfig: RMConfigSummary;
87
89
  RMPublishDisable: boolean;
88
90
  RaceType: RaceType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewtimer-common",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
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",