Skip to content

Commit

Permalink
Add notBetween filter operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Paola Nicosia committed Dec 29, 2022
1 parent 3d8d145 commit e2d0f38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/events/bk/addFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export type AddFilterPayload = Filter
* @description delivers data to add a new filter
* @payload {
* operator: 'equal' |
* 'exists' |
* 'notEqual' |
* 'greater' |
* 'greaterEqual' |
Expand All @@ -20,6 +21,7 @@ export type AddFilterPayload = Filter
* 'includeExactly' |
* 'notIncludeAny' |
* 'between' |
* 'notBetween' |
* 'hasLengthEqual' |
*'hasLengthGreaterEqual' |
* 'hasLengthLessEqual';
Expand Down
1 change: 1 addition & 0 deletions src/schemas/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type FilterOperator = |
'includeExactly' |
'notIncludeAny' |
'between' |
'notBetween' |
'hasLengthEqual' |
'hasLengthGreaterEqual' |
'hasLengthLessEqual'
Expand Down

0 comments on commit e2d0f38

Please sign in to comment.