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

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,18 +123,20 @@ interface AdapterQueryDetails {
123
123
  */
124
124
  filter?: FilterGroup;
125
125
  }
126
- type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "in" | "not in" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike" | "match";
126
+ type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike";
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;
133
134
  }
134
135
  interface FilterGroup {
135
136
  kind: "FilterGroup";
136
137
  filters: (ColumnFilter | FilterGroup)[];
137
138
  after: "and" | "or";
139
+ id: string;
138
140
  }
139
141
  interface SortOrderItem {
140
142
  /**
@@ -123,18 +123,20 @@ interface AdapterQueryDetails {
123
123
  */
124
124
  filter?: FilterGroup;
125
125
  }
126
- type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "in" | "not in" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike" | "match";
126
+ type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "is" | "is not" | "like" | "not like" | "ilike" | "not ilike";
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;
133
134
  }
134
135
  interface FilterGroup {
135
136
  kind: "FilterGroup";
136
137
  filters: (ColumnFilter | FilterGroup)[];
137
138
  after: "and" | "or";
139
+ id: string;
138
140
  }
139
141
  interface SortOrderItem {
140
142
  /**