From 05c12a0ec2c678138239638f40a75ef4d646b88a Mon Sep 17 00:00:00 2001 From: PythonCoderAS Date: Mon, 31 Jan 2022 16:50:50 -0500 Subject: [PATCH] Add new PreQuestion param to form submission --- completeScreening.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/completeScreening.ts b/completeScreening.ts index 5a3bd2b..83ca4cd 100644 --- a/completeScreening.ts +++ b/completeScreening.ts @@ -36,6 +36,7 @@ export interface SubmitParams { State: string; Location: string; Floor: string | null; + PrequestionAnswer: 0 | 1; Answer1: 0 | 1; Answer2: 0 | 1; Answer3?: 0 | 1; @@ -56,6 +57,7 @@ export default async function completeScreening( State: "NY", Location: "X445", Floor: null, + PrequestionAnswer: 0, Answer1: 0, Answer2: 0, Answer3: 0,