@prisma/studio-core 0.0.0-dev.202505100653 → 0.0.0-dev.202505100922

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -123,20 +123,18 @@ interface AdapterQueryDetails {
123
123
  */
124
124
  filter?: FilterGroup;
125
125
  }
126
- type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike";
126
+ type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "in" | "not in" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike" | "match";
127
127
  interface ColumnFilter {
128
128
  kind: "ColumnFilter";
129
129
  column: string;
130
130
  operator: FilterOperator;
131
131
  value: unknown;
132
132
  after: "and" | "or";
133
- id: string;
134
133
  }
135
134
  interface FilterGroup {
136
135
  kind: "FilterGroup";
137
136
  filters: (ColumnFilter | FilterGroup)[];
138
137
  after: "and" | "or";
139
- id: string;
140
138
  }
141
139
  interface SortOrderItem {
142
140
  /**
@@ -123,20 +123,18 @@ interface AdapterQueryDetails {
123
123
  */
124
124
  filter?: FilterGroup;
125
125
  }
126
- type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike";
126
+ type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "in" | "not in" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike" | "match";
127
127
  interface ColumnFilter {
128
128
  kind: "ColumnFilter";
129
129
  column: string;
130
130
  operator: FilterOperator;
131
131
  value: unknown;
132
132
  after: "and" | "or";
133
- id: string;
134
133
  }
135
134
  interface FilterGroup {
136
135
  kind: "FilterGroup";
137
136
  filters: (ColumnFilter | FilterGroup)[];
138
137
  after: "and" | "or";
139
- id: string;
140
138
  }
141
139
  interface SortOrderItem {
142
140
  /**