/** * This file was auto-generated by Fern from our API Definition. */ /** * * `=` - EQUALS * * `!=` - DOES_NOT_EQUAL * * `<` - LESS_THAN * * `>` - GREATER_THAN * * `<=` - LESS_THAN_OR_EQUAL_TO * * `>=` - GREATER_THAN_OR_EQUAL_TO * * `contains` - CONTAINS * * `beginsWith` - BEGINS_WITH * * `endsWith` - ENDS_WITH * * `doesNotContain` - DOES_NOT_CONTAIN * * `doesNotBeginWith` - DOES_NOT_BEGIN_WITH * * `doesNotEndWith` - DOES_NOT_END_WITH * * `null` - NULL * * `notNull` - NOT_NULL * * `in` - IN * * `notIn` - NOT_IN * * `between` - BETWEEN * * `notBetween` - NOT_BETWEEN * * `concat` - CONCAT * * `+` - ADD * * `-` - MINUS * * `blank` - BLANK * * `notBlank` - NOT_BLANK * * `coalesce` - COALESCE * * `accessField` - ACCESS_FIELD * * `parseJson` - PARSE_JSON * * `and` - AND * * `or` - OR * * `isError` - IS_ERROR * * `length` - LENGTH */ export type LogicalOperator = /** * Equals */ "=" /** * Does not equal */ | "!=" /** * Less than */ | "<" /** * Greater than */ | ">" /** * Less than or equal to */ | "<=" /** * Greater than or equal to */ | ">=" /** * Contains */ | "contains" /** * Begins with */ | "beginsWith" /** * Ends with */ | "endsWith" /** * Does not contain */ | "doesNotContain" /** * Does not begin with */ | "doesNotBeginWith" /** * Does not end with */ | "doesNotEndWith" /** * Null */ | "null" /** * Not null */ | "notNull" /** * In */ | "in" /** * Not in */ | "notIn" /** * Between */ | "between" /** * Not between */ | "notBetween" | "concat" /** * Add */ | "+" /** * Minus */ | "-" | "blank" | "notBlank" | "coalesce" | "accessField" /** * Parse JSON */ | "parseJson" | "and" | "or" | "isError" | "length"; export declare const LogicalOperator: { readonly Equals: "="; readonly DoesNotEqual: "!="; readonly LessThan: "<"; readonly GreaterThan: ">"; readonly LessThanOrEqualTo: "<="; readonly GreaterThanOrEqualTo: ">="; readonly Contains: "contains"; readonly BeginsWith: "beginsWith"; readonly EndsWith: "endsWith"; readonly DoesNotContain: "doesNotContain"; readonly DoesNotBeginWith: "doesNotBeginWith"; readonly DoesNotEndWith: "doesNotEndWith"; readonly Null: "null"; readonly NotNull: "notNull"; readonly In: "in"; readonly NotIn: "notIn"; readonly Between: "between"; readonly NotBetween: "notBetween"; readonly Concat: "concat"; readonly Add: "+"; readonly Minus: "-"; readonly Blank: "blank"; readonly NotBlank: "notBlank"; readonly Coalesce: "coalesce"; readonly AccessField: "accessField"; readonly ParseJson: "parseJson"; readonly And: "and"; readonly Or: "or"; readonly IsError: "isError"; readonly Length: "length"; };