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.
- package/dist/cjs/src/types/Entry.d.ts +1 -0
- package/dist/cjs/src/types/Event.d.ts +1 -1
- package/dist/cjs/src/types/ServerTypes.d.ts +5 -1
- package/dist/esm/src/types/Entry.d.ts +1 -0
- package/dist/esm/src/types/Event.d.ts +1 -1
- package/dist/esm/src/types/ServerTypes.d.ts +5 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export interface Event {
|
|
|
11
11
|
EventNum: string;
|
|
12
12
|
Finished: boolean;
|
|
13
13
|
Official: boolean;
|
|
14
|
-
RaceType: 'Sprint' | 'Head' | 'Info' | '
|
|
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' | '
|
|
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;
|
|
@@ -11,7 +11,7 @@ export interface Event {
|
|
|
11
11
|
EventNum: string;
|
|
12
12
|
Finished: boolean;
|
|
13
13
|
Official: boolean;
|
|
14
|
-
RaceType: 'Sprint' | 'Head' | 'Info' | '
|
|
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' | '
|
|
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;
|