From 0d348eadbe19688bc90ee6b50049fde36bd2ddb7 Mon Sep 17 00:00:00 2001 From: Yoofi Quansah Date: Tue, 14 Nov 2023 12:20:41 -0600 Subject: [PATCH] chore: add isoneof and isnotoneof to cue file --- internal/cue/flipt.cue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cue/flipt.cue b/internal/cue/flipt.cue index b2f4fe8e78..b9a475314e 100644 --- a/internal/cue/flipt.cue +++ b/internal/cue/flipt.cue @@ -79,19 +79,19 @@ close({ property: string & =~"^.+$" value?: string description?: string - operator: "eq" | "neq" | "empty" | "notempty" | "prefix" | "suffix" + operator: "eq" | "neq" | "empty" | "notempty" | "prefix" | "suffix" | "isoneof" | "isnotoneof" } | { type: "NUMBER_COMPARISON_TYPE" property: string & =~"^.+$" value?: string description?: string - operator: "eq" | "neq" | "present" | "notpresent" | "le" | "lte" | "gt" | "gte" + operator: "eq" | "neq" | "present" | "notpresent" | "le" | "lte" | "gt" | "gte" | "isoneof" | "isnotoneof" } | { type: "BOOLEAN_COMPARISON_TYPE" property: string & =~"^.+$" value?: string - operator: "true" | "false" | "present" | "notpresent" description?: string + operator: "true" | "false" | "present" | "notpresent" } | { type: "DATETIME_COMPARISON_TYPE" property: string & =~"^.+$"