crewtimer-common 1.0.9 → 1.0.10

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/README.md CHANGED
@@ -14,7 +14,7 @@ As time allows, this codebase will be cleaned and documented but these initial v
14
14
  ### Coming Soon
15
15
 
16
16
  * crewtimer-handicaps - A handicap engine for CrewTimer handicap calculations
17
- * crewtimer-lynx - Support for FinishLynx integration with CrewTimer. This is an electron app.
17
+ * crewtimer-connect - Support for FinishLynx integration with CrewTimer and video review of placements.
18
18
 
19
19
  ### Future Open Source
20
20
 
@@ -13,5 +13,6 @@ export interface Entry extends KeyMap {
13
13
  Stroke: string;
14
14
  Time?: string;
15
15
  Timestamp?: number;
16
+ json?: string;
16
17
  uuid?: string;
17
18
  }
@@ -42,6 +42,7 @@ export interface ResultRegattaInfo {
42
42
  Titles: KeyMap<string>;
43
43
  TrackingStations?: TrackingStation[];
44
44
  Waypoints: string;
45
+ json?: string;
45
46
  }
46
47
  export interface Results {
47
48
  lastUpdatedEvent: string;
@@ -13,5 +13,6 @@ export interface Entry extends KeyMap {
13
13
  Stroke: string;
14
14
  Time?: string;
15
15
  Timestamp?: number;
16
+ json?: string;
16
17
  uuid?: string;
17
18
  }
@@ -42,6 +42,7 @@ export interface ResultRegattaInfo {
42
42
  Titles: KeyMap<string>;
43
43
  TrackingStations?: TrackingStation[];
44
44
  Waypoints: string;
45
+ json?: string;
45
46
  }
46
47
  export interface Results {
47
48
  lastUpdatedEvent: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewtimer-common",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
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",