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 +8 -1
- package/dist/cjs/src/types/Entry.d.ts +1 -0
- package/dist/cjs/src/types/Event.d.ts +1 -0
- package/dist/cjs/src/types/ResultTypes.d.ts +2 -0
- package/dist/esm/src/types/Entry.d.ts +1 -0
- package/dist/esm/src/types/Event.d.ts +1 -0
- package/dist/esm/src/types/ResultTypes.d.ts +2 -0
- package/package.json +1 -1
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-
|
|
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```
|
|
@@ -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;
|
|
@@ -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;
|