@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.
- package/dist/{adapter-Dzg3tDL6.d.cts → adapter-BQaQoUNI.d.cts} +3 -1
- package/dist/{adapter-Dzg3tDL6.d.ts → adapter-BQaQoUNI.d.ts} +3 -1
- package/dist/{chunk-D7F6BRP4.js → chunk-IAE3ZG42.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-BUtuWj4M.d.ts → index-Crb7VQNF.d.ts} +1 -1
- package/dist/{index-BKNnsdY7.d.cts → index-DuLnmKEq.d.cts} +1 -1
- package/dist/ui/index.cjs +130 -122
- package/dist/ui/index.css +176 -104
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +15 -7
- package/package.json +2 -1
|
@@ -123,18 +123,20 @@ interface AdapterQueryDetails {
|
|
|
123
123
|
*/
|
|
124
124
|
filter?: FilterGroup;
|
|
125
125
|
}
|
|
126
|
-
type FilterOperator = "=" | "!=" | ">" | ">=" | "<" | "<=" | "
|
|
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 = "=" | "!=" | ">" | ">=" | "<" | "<=" | "
|
|
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
|
/**
|