From 05d0b354175b369ac46fd8d06d6df4f70a620add Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 13 Nov 2024 12:11:25 +0000 Subject: [PATCH] Correct OB_Pis_FullObject --- src/owlboardApi/pis.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/owlboardApi/pis.ts b/src/owlboardApi/pis.ts index 258114d..bc7f219 100644 --- a/src/owlboardApi/pis.ts +++ b/src/owlboardApi/pis.ts @@ -7,6 +7,7 @@ export interface OB_Pis_SimpleObject { export interface OB_Pis_FullObject { code: string; - crs: string[]; - tiploc?: string[]; + stops: string[]; + toc: string; + tiplocs?: string[]; }