Add pass time, platform, arrLine and depLine to API responeses (Timetable Stop)

This commit is contained in:
Fred Boniface 2024-04-17 12:44:17 +01:00
parent 5b46b14607
commit 0b4235ef2e
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@owlboard/ts-types", "name": "@owlboard/ts-types",
"version": "1.0.1", "version": "1.0.2",
"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

@ -23,6 +23,10 @@ export interface OB_TrainTT_stopDetail {
publicArrival?: string; publicArrival?: string;
wttDeparture?: string; wttDeparture?: string;
wttArrival?: string; wttArrival?: string;
pass?: string;
platform?: string;
arrLine?: string;
depLine?: string;
tiploc: string; tiploc: string;
isPublic: boolean; isPublic: boolean;
} }