Remove catering type from Service object

This commit is contained in:
Fred Boniface 2024-04-08 16:02:40 +01:00
parent c3094ffcbb
commit 61909c0015
2 changed files with 15 additions and 16 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@owlboard/ts-types", "name": "@owlboard/ts-types",
"version": "0.1.9", "version": "0.1.10",
"description": "Declares Typescript types for the OwlBoard stack", "description": "Declares Typescript types for the OwlBoard stack",
"main": "index.ts", "main": "index.ts",
"scripts": { "scripts": {

View File

@ -34,7 +34,6 @@ interface Service {
vstp: boolean; vstp: boolean;
firstClass: boolean; firstClass: boolean;
catering: boolean; catering: boolean;
cateringType?: string[] | null;
sleeper: boolean; sleeper: boolean;
} }