Skip to content

Commit

Permalink
chore: add isoneof and isnotoneof to cue file
Browse files Browse the repository at this point in the history
  • Loading branch information
yquansah committed Nov 14, 2023
1 parent b88b9ad commit 0d348ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/cue/flipt.cue
Original file line number Diff line number Diff line change
Expand Up @@ -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 & =~"^.+$"
Expand Down

0 comments on commit 0d348ea

Please sign in to comment.