From 7d08f8b9007ff811c3af2c1f7334d75856301121 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 12 Oct 2023 22:07:08 +0100 Subject: [PATCH] Update OB_Pis_SimpleObject to account for skip information --- src/owlboardApi/pis.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/owlboardApi/pis.ts b/src/owlboardApi/pis.ts index b0dd1c8..2ec97cb 100644 --- a/src/owlboardApi/pis.ts +++ b/src/owlboardApi/pis.ts @@ -1,7 +1,9 @@ export interface OB_Pis_SimpleObject { code: number; match: "full" | "partial"; - msg: string; + skip?: "first" | "last"; + skipCount?: number; + msg?: string; } /* NOT IN USE YET