crewtimer-common 1.0.17 → 1.0.19

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.
@@ -8,6 +8,7 @@ export interface Entry extends KeyMap {
8
8
  EventAbbrev: string;
9
9
  EventNum: string;
10
10
  Gate?: string;
11
+ Handicap?: number;
11
12
  Place: number;
12
13
  State?: string;
13
14
  Stroke: string;
@@ -11,7 +11,7 @@ export interface Event {
11
11
  EventNum: string;
12
12
  Finished: boolean;
13
13
  Official: boolean;
14
- RaceType: 'Sprint' | 'Head' | 'Info' | 'SprintStaggered';
14
+ RaceType: 'Sprint' | 'Head' | 'Info' | 'Pursuit';
15
15
  Progression: string;
16
16
  Multiplier: string;
17
17
  Start: string;
@@ -1,7 +1,7 @@
1
1
  import { Entry } from './Entry';
2
2
  import { KeyMap } from './KeyMap';
3
3
  import { RMStation, RMConfigSummary } from './RMTypes';
4
- export type RaceType = 'Sprint' | 'Head' | 'Info' | 'SprintStaggered';
4
+ export type RaceType = 'Sprint' | 'Head' | 'Info' | 'Pursuit';
5
5
  export type ConfigSource = 'Local' | 'CrewTimer.com';
6
6
  export interface PenaltyInfo {
7
7
  PenaltyCode: string;
@@ -137,6 +137,10 @@ export interface AdminSummary extends ResultSummary {
137
137
  Owner: string;
138
138
  RaceType: string;
139
139
  Admins: string;
140
+ Payment?: {
141
+ invoiceId: string;
142
+ updateTime: string;
143
+ };
140
144
  }
141
145
  export interface DBSettings {
142
146
  config: RegattaConfig;
@@ -8,6 +8,7 @@ export interface Entry extends KeyMap {
8
8
  EventAbbrev: string;
9
9
  EventNum: string;
10
10
  Gate?: string;
11
+ Handicap?: number;
11
12
  Place: number;
12
13
  State?: string;
13
14
  Stroke: string;
@@ -11,7 +11,7 @@ export interface Event {
11
11
  EventNum: string;
12
12
  Finished: boolean;
13
13
  Official: boolean;
14
- RaceType: 'Sprint' | 'Head' | 'Info' | 'SprintStaggered';
14
+ RaceType: 'Sprint' | 'Head' | 'Info' | 'Pursuit';
15
15
  Progression: string;
16
16
  Multiplier: string;
17
17
  Start: string;
@@ -1,7 +1,7 @@
1
1
  import { Entry } from './Entry';
2
2
  import { KeyMap } from './KeyMap';
3
3
  import { RMStation, RMConfigSummary } from './RMTypes';
4
- export type RaceType = 'Sprint' | 'Head' | 'Info' | 'SprintStaggered';
4
+ export type RaceType = 'Sprint' | 'Head' | 'Info' | 'Pursuit';
5
5
  export type ConfigSource = 'Local' | 'CrewTimer.com';
6
6
  export interface PenaltyInfo {
7
7
  PenaltyCode: string;
@@ -137,6 +137,10 @@ export interface AdminSummary extends ResultSummary {
137
137
  Owner: string;
138
138
  RaceType: string;
139
139
  Admins: string;
140
+ Payment?: {
141
+ invoiceId: string;
142
+ updateTime: string;
143
+ };
140
144
  }
141
145
  export interface DBSettings {
142
146
  config: RegattaConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewtimer-common",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
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",