File tree Expand file tree Collapse file tree 2 files changed +16
-12
lines changed Expand file tree Collapse file tree 2 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,16 @@ class Operator(str, Enum):
88
88
89
89
EQUALS = "equals"
90
90
NOT_EQUALS = "not_equals"
91
- CONTAINS = "contains"
92
- NOT_CONTAINS = "not_contains"
93
91
GREATER_THAN = "greater_than"
94
92
LESS_THAN = "less_than"
95
- IN = "in"
96
- NOT_IN = "not_in"
97
- EXISTS = "exists"
98
- NOT_EXISTS = "not_exists"
93
+ GREATER_THAN_OR_EQUALS = "greater_than_or_equals"
94
+ LESS_THAN_OR_EQUALS = "less_than_or_equals"
95
+ CONTAINS = "contains"
96
+ NOT_CONTAINS = "not_contains"
97
+ STARTS_WITH = "starts_with"
98
+ ENDS_WITH = "ends_with"
99
+ IS_EMPTY = "is_empty"
100
+ IS_NOT_EMPTY = "is_not_empty"
99
101
100
102
101
103
class ColumnRule (TypedDict , total = False ):
Original file line number Diff line number Diff line change @@ -117,14 +117,16 @@ export type Condition = "AND" | "OR";
117
117
export type Operator =
118
118
| "equals"
119
119
| "not_equals"
120
- | "contains"
121
- | "not_contains"
122
120
| "greater_than"
123
121
| "less_than"
124
- | "in"
125
- | "not_in"
126
- | "exists"
127
- | "not_exists" ;
122
+ | "greater_than_or_equals"
123
+ | "less_than_or_equals"
124
+ | "contains"
125
+ | "not_contains"
126
+ | "starts_with"
127
+ | "ends_with"
128
+ | "is_empty"
129
+ | "is_not_empty" ;
128
130
129
131
/**
130
132
* Simple filter rule for a single column
You can’t perform that action at this time.
0 commit comments