From af31d4979084d27bec1faa5c2e9f55ebbefaebbd Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Fri, 6 Sep 2024 10:14:12 +0200 Subject: [PATCH] fix: update fmf schema of new request --- src/schema.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/schema.ts b/src/schema.ts index 1d821d1..ab186a7 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -17,6 +17,9 @@ const testObjectSchema = z.object({ 'recognize-errors': z.boolean(), }) .optional(), + plan_filter: z.string().min(1).optional(), + test_name: z.string().min(1).optional(), + test_filter: z.string().min(1).optional(), }) .optional(), sti: z