Skip to content

Commit

Permalink
Update json schema
Browse files Browse the repository at this point in the history
  • Loading branch information
aerosol committed Nov 12, 2024
1 parent e814377 commit 0384cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/types/query-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export type FilterWithoutGoals = [
/**
* filter operation
*/
export type FilterOperationWithoutGoals = "is_not" | "contains_not" | "matches" | "matches_not";
export type FilterOperationWithoutGoals = "is_not" | "contains_not" | "icontains_not" | "matches" | "matches_not";
export type Clauses = (string | number)[];
/**
* @minItems 3
Expand All @@ -90,7 +90,7 @@ export type FilterWithGoals = [
/**
* filter operation
*/
export type FilterOperationWithGoals = "is" | "contains";
export type FilterOperationWithGoals = "is" | "contains" | "icontains";
/**
* @minItems 2
* @maxItems 2
Expand Down

0 comments on commit 0384cda

Please sign in to comment.