From 5d947e5ad3d1dd022e806aee694118168f4b048d Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 7 Aug 2023 11:39:54 +0100 Subject: [PATCH] LocationName optional in Location {} --- package.json | 2 +- src/owlboardApi/staffLdb.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e92393a..41744f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@owlboard/ts-types", - "version": "0.0.7", + "version": "0.0.8", "description": "Declares Typescript types for the OwlBoard stack", "main": "index.ts", "scripts": { diff --git a/src/owlboardApi/staffLdb.ts b/src/owlboardApi/staffLdb.ts index 53463c9..35dc6a6 100644 --- a/src/owlboardApi/staffLdb.ts +++ b/src/owlboardApi/staffLdb.ts @@ -42,6 +42,6 @@ export interface TrainServices { export interface ServiceLocation { tiploc: string; - name: string; + name?: string; via?: string; } \ No newline at end of file