Skip to content

Commit

Permalink
JNG-5888 filter context (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
noherczeg authored Aug 27, 2024
1 parent a64625a commit d15c5bb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export enum _BooleanOperation {
equals = 'equals',
notEquals = 'notEquals',
isDefined = 'isDefined',
isUndefined = 'isUndefined',
isNotEmpty = 'isNotEmpty',
isEmpty = 'isEmpty',
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export enum _EnumerationOperation {
equals = 'equals',
notEquals = 'notEquals',
isDefined = 'isDefined',
isUndefined = 'isUndefined',
isNotEmpty = 'isNotEmpty',
isEmpty = 'isEmpty',
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export enum _NumericOperation {
greaterOrEqual = 'greaterOrEqual',
equal = 'equal',
notEqual = 'notEqual',
isDefined = 'isDefined',
isUndefined = 'isUndefined',
isNotEmpty = 'isNotEmpty',
isEmpty = 'isEmpty',
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export enum _StringOperation {
notEqual = 'notEqual',
matches = 'matches',
like = 'like',
isDefined = 'isDefined',
isUndefined = 'isUndefined',
isNotEmpty = 'isNotEmpty',
isEmpty = 'isEmpty',
}

0 comments on commit d15c5bb

Please sign in to comment.