Remove catering type from Service object
This commit is contained in:
parent
c3094ffcbb
commit
61909c0015
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@owlboard/ts-types",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.10",
|
||||
"description": "Declares Typescript types for the OwlBoard stack",
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
|
@ -20,22 +20,21 @@ interface SimpleService {
|
||||
|
||||
|
||||
interface Service {
|
||||
transactionType: string;
|
||||
stpIndicator: string;
|
||||
operator: string;
|
||||
trainUid: string;
|
||||
headcode: string;
|
||||
powerType: string;
|
||||
planSpeed: string;
|
||||
transactionType: string;
|
||||
stpIndicator: string;
|
||||
operator: string;
|
||||
trainUid: string;
|
||||
headcode: string;
|
||||
powerType: string;
|
||||
planSpeed: string;
|
||||
scheduleStartDate: Date;
|
||||
scheduleEndDate: Date;
|
||||
daysRun: string[];
|
||||
stops: Stop[];
|
||||
vstp: boolean;
|
||||
firstClass: boolean;
|
||||
catering: boolean;
|
||||
cateringType?: string[] | null;
|
||||
sleeper: boolean;
|
||||
scheduleEndDate: Date;
|
||||
daysRun: string[];
|
||||
stops: Stop[];
|
||||
vstp: boolean;
|
||||
firstClass: boolean;
|
||||
catering: boolean;
|
||||
sleeper: boolean;
|
||||
}
|
||||
|
||||
export { Stop, Service, SimpleService }
|
Loading…
Reference in New Issue
Block a user