crewtimer-common 1.0.9 → 1.0.11

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
 
@@ -22,3 +22,10 @@ As time allows, this codebase will be cleaned and documented but these initial v
22
22
  * crewtimer-results - CrewTimer results website [https://crewtimer.com](https://crewtimer.com)
23
23
  * crewtimer-admin - CrewTimer Admin interface [https://admin.crewtimer.com](https://admin.crewtimer.com)
24
24
  * crewtimer-wisblock - Hardware devices such as the BLE Clicker and Mobile Horn (C++)
25
+
26
+ ## Publishing a new npm version (maintainers only)
27
+
28
+ 1. Update the version in package.json
29
+ 2. First check for any errors by running ```yarn prepublishOnly```
30
+ 3. ```npm login``` as crewtimer
31
+ 4. If no errors: ```npm publish```
@@ -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
  }
@@ -14,5 +14,6 @@ export interface Event {
14
14
  RaceType: 'Head' | 'Sprint';
15
15
  Start: string;
16
16
  TZOffset: number;
17
+ json?: string;
17
18
  }
18
19
  export type EventList = Event[];
@@ -22,6 +22,7 @@ export interface ResultRegattaInfo {
22
22
  FlightRaces: string;
23
23
  HasRoster: boolean;
24
24
  InfoText: string;
25
+ LogoURL: string;
25
26
  Name: string;
26
27
  NumDays: string;
27
28
  NumEntries: number;
@@ -42,6 +43,7 @@ export interface ResultRegattaInfo {
42
43
  Titles: KeyMap<string>;
43
44
  TrackingStations?: TrackingStation[];
44
45
  Waypoints: string;
46
+ json?: string;
45
47
  }
46
48
  export interface Results {
47
49
  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
  }
@@ -14,5 +14,6 @@ export interface Event {
14
14
  RaceType: 'Head' | 'Sprint';
15
15
  Start: string;
16
16
  TZOffset: number;
17
+ json?: string;
17
18
  }
18
19
  export type EventList = Event[];
@@ -22,6 +22,7 @@ export interface ResultRegattaInfo {
22
22
  FlightRaces: string;
23
23
  HasRoster: boolean;
24
24
  InfoText: string;
25
+ LogoURL: string;
25
26
  Name: string;
26
27
  NumDays: string;
27
28
  NumEntries: number;
@@ -42,6 +43,7 @@ export interface ResultRegattaInfo {
42
43
  Titles: KeyMap<string>;
43
44
  TrackingStations?: TrackingStation[];
44
45
  Waypoints: string;
46
+ json?: string;
45
47
  }
46
48
  export interface Results {
47
49
  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.11",
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",