File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed
Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import { Person } from './person';
22import { Event } from './event' ;
33import { Schedule } from './schedule' ;
44import { Extension } from './extension' ;
5+ import { Series } from './series' ;
6+ import { RegistrationInfo } from './registrationInfo' ;
57
68export interface Competition {
79 formatVersion : string ;
@@ -11,6 +13,8 @@ export interface Competition {
1113 persons : Person [ ] ;
1214 events : Event [ ] ;
1315 schedule : Schedule ;
16+ series : Series [ ] ;
1417 competitorLimit : number | null ;
1518 extensions : Extension [ ] ;
19+ registrationInfo : RegistrationInfo ;
1620}
Original file line number Diff line number Diff line change @@ -17,10 +17,12 @@ export * from './assignmentCode';
1717export * from './assignment' ;
1818export * from './avatar' ;
1919export * from './registration' ;
20+ export * from './registrationInfo' ;
2021export * from './person' ;
2122export * from './activity' ;
2223export * from './room' ;
2324export * from './venue' ;
25+ export * from './series' ;
2426export * from './schedule' ;
2527export * from './wcaId' ;
2628export * from './rankingType' ;
Original file line number Diff line number Diff line change 1+ export interface RegistrationInfo {
2+ openTime : string ;
3+ closeTime : string ;
4+ baseEntryFee : number ;
5+ currencyCode : string ;
6+ onTheSpotRegistration : boolean ;
7+ useWcaRegistration : boolean ;
8+ }
Original file line number Diff line number Diff line change 1+ export interface Series {
2+ id : string ;
3+ name : string ;
4+ shortName : string ;
5+ competitionIds : string [ ] ;
6+ }
You can’t perform that action at this time.
0 commit comments