From 0fd792afb1e2681f50314b90f08ea98296a97b79 Mon Sep 17 00:00:00 2001 From: Dominik Czulak Date: Mon, 19 Feb 2024 15:04:06 +0100 Subject: [PATCH] add model numbers to showtype --- src/Enum/ShowType.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Enum/ShowType.php b/src/Enum/ShowType.php index 04a5eaf..470d022 100644 --- a/src/Enum/ShowType.php +++ b/src/Enum/ShowType.php @@ -11,4 +11,5 @@ enum ShowType: string case INPUT = 'input'; // input (string) case INTERVAL = 'interval'; // input (number) case LIST_BOX = 'list_box'; // single_select + case MODEL_NUMBERS = 'model_numbers'; // input (string) }