@prisma/studio-core 0.0.0-dev.202505100702 → 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.
- package/dist/{adapter-BQaQoUNI.d.cts → adapter-Dzg3tDL6.d.cts} +1 -3
- package/dist/{adapter-BQaQoUNI.d.ts → adapter-Dzg3tDL6.d.ts} +1 -3
- package/dist/{chunk-IAE3ZG42.js → chunk-D7F6BRP4.js} +2 -2
- package/dist/data/accelerate/index.d.cts +2 -2
- package/dist/data/accelerate/index.d.ts +2 -2
- package/dist/data/bff/index.d.cts +2 -2
- package/dist/data/bff/index.d.ts +2 -2
- package/dist/data/index.d.cts +2 -2
- package/dist/data/index.d.ts +2 -2
- package/dist/data/pglite/index.cjs +2 -2
- package/dist/data/pglite/index.d.cts +2 -2
- package/dist/data/pglite/index.d.ts +2 -2
- package/dist/data/pglite/index.js +1 -1
- package/dist/data/postgres-core/index.cjs +2 -2
- package/dist/data/postgres-core/index.d.cts +2 -2
- package/dist/data/postgres-core/index.d.ts +2 -2
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{index-DuLnmKEq.d.cts → index-BKNnsdY7.d.cts} +1 -1
- package/dist/{index-Crb7VQNF.d.ts → index-BUtuWj4M.d.ts} +1 -1
- package/dist/ui/index.cjs +123 -131
- package/dist/ui/index.css +161 -119
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +3 -11
- package/package.json +1 -2
|
@@ -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
|
/**
|