@prisma/studio-core-licensed 0.0.0-dev.202511132152 → 0.0.0-dev.202511132256
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/chunk-HK4HH34Z.js +10 -0
- package/dist/chunk-T6RNFB7W.js +10 -0
- package/dist/data/accelerate/index.d.cts +1 -1
- package/dist/data/accelerate/index.d.ts +1 -1
- package/dist/data/bff/index.d.cts +1 -1
- package/dist/data/bff/index.d.ts +1 -1
- package/dist/data/index.d.cts +1 -1
- package/dist/data/index.d.ts +1 -1
- package/dist/data/node-sqlite/index.cjs +2 -2
- package/dist/data/node-sqlite/index.d.cts +1 -1
- package/dist/data/node-sqlite/index.d.ts +1 -1
- package/dist/data/node-sqlite/index.js +1 -1
- package/dist/data/pglite/index.cjs +2 -2
- package/dist/data/pglite/index.d.cts +1 -1
- package/dist/data/pglite/index.d.ts +1 -1
- 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 +1 -1
- package/dist/data/postgres-core/index.d.ts +1 -1
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/data/postgresjs/index.cjs +2 -2
- package/dist/data/postgresjs/index.d.cts +1 -1
- package/dist/data/postgresjs/index.d.ts +1 -1
- package/dist/data/postgresjs/index.js +1 -1
- package/dist/data/ppg/index.d.cts +1 -1
- package/dist/data/ppg/index.d.ts +1 -1
- package/dist/data/sqlite-core/index.cjs +2 -2
- package/dist/data/sqlite-core/index.d.cts +148 -2
- package/dist/data/sqlite-core/index.d.ts +148 -2
- package/dist/data/sqlite-core/index.js +1 -1
- package/dist/{index-DtQQ6Wvz.d.cts → index-CVwmrqt5.d.cts} +1 -1
- package/dist/{index-DtQQ6Wvz.d.ts → index-CVwmrqt5.d.ts} +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/ui/index.cjs +1 -1
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-ON4QUWHP.js +0 -10
- package/dist/chunk-ZMAPCGTB.js +0 -10
|
@@ -1,8 +1,50 @@
|
|
|
1
|
-
import { d as AdapterRequirements, A as Adapter,
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements } from '../../index-CVwmrqt5.cjs';
|
|
2
2
|
import * as kysely from 'kysely';
|
|
3
3
|
|
|
4
4
|
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
5
5
|
declare function createSQLiteAdapter(requirements: SQLIteAdapterRequirements): Adapter;
|
|
6
|
+
/**
|
|
7
|
+
* For testing purposes.
|
|
8
|
+
*/
|
|
9
|
+
declare function mockIntrospect(): {
|
|
10
|
+
schemas: {
|
|
11
|
+
main: {
|
|
12
|
+
name: "main";
|
|
13
|
+
tables: { [T in "animals" | "users" | "composite_pk"]: Table; };
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
timezone: string;
|
|
17
|
+
filterOperators: FilterOperator[];
|
|
18
|
+
query: Query;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Returns a query that selects all columns from a table with an unbound row count as `__studio_count__`.
|
|
23
|
+
*/
|
|
24
|
+
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
__studio_count__: `${bigint}`;
|
|
27
|
+
}>;
|
|
28
|
+
/**
|
|
29
|
+
* For testing purposes.
|
|
30
|
+
*/
|
|
31
|
+
declare function mockSelectQuery(): [{
|
|
32
|
+
readonly created_at: Date;
|
|
33
|
+
readonly deleted_at: null;
|
|
34
|
+
readonly id: 1;
|
|
35
|
+
readonly name: "John Doe";
|
|
36
|
+
readonly __studio_count__: "2";
|
|
37
|
+
readonly role: "admin";
|
|
38
|
+
readonly name_role: "Jonn Doe - admin";
|
|
39
|
+
}, {
|
|
40
|
+
readonly created_at: Date;
|
|
41
|
+
readonly deleted_at: null;
|
|
42
|
+
readonly id: 2;
|
|
43
|
+
readonly name: "Jane Doe";
|
|
44
|
+
readonly __studio_count__: "2";
|
|
45
|
+
readonly role: "poweruser";
|
|
46
|
+
readonly name_role: "Jane Doe - poweruser";
|
|
47
|
+
}];
|
|
6
48
|
|
|
7
49
|
declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
8
50
|
name: string;
|
|
@@ -17,5 +59,109 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
17
59
|
pk: kysely.SqlBool;
|
|
18
60
|
}[];
|
|
19
61
|
}>;
|
|
62
|
+
/**
|
|
63
|
+
* For testing purposes.
|
|
64
|
+
*/
|
|
65
|
+
declare function mockTablesQuery(): [{
|
|
66
|
+
readonly name: "animals";
|
|
67
|
+
readonly sql: "CREATE TABLE animals (id INTEGER PRIMARY KEY, name TEXT);";
|
|
68
|
+
readonly columns: [{
|
|
69
|
+
readonly name: "id";
|
|
70
|
+
readonly datatype: "INTEGER";
|
|
71
|
+
readonly pk: 1;
|
|
72
|
+
readonly computed: 0;
|
|
73
|
+
readonly nullable: 0;
|
|
74
|
+
readonly foreign_key_table: null;
|
|
75
|
+
readonly foreign_key_column: null;
|
|
76
|
+
}, {
|
|
77
|
+
readonly name: "name";
|
|
78
|
+
readonly datatype: "TEXT";
|
|
79
|
+
readonly pk: 0;
|
|
80
|
+
readonly computed: 0;
|
|
81
|
+
readonly nullable: 1;
|
|
82
|
+
readonly foreign_key_table: null;
|
|
83
|
+
readonly foreign_key_column: null;
|
|
84
|
+
}];
|
|
85
|
+
}, {
|
|
86
|
+
readonly name: "users";
|
|
87
|
+
readonly sql: "CREATE TABLE users (id UUID PRIMARY KEY, created_at TIMESTAMP, deleted_at TIMESTAMP, role varchar, name varchar, name_role text);";
|
|
88
|
+
readonly columns: [{
|
|
89
|
+
readonly name: "id";
|
|
90
|
+
readonly datatype: "UUID";
|
|
91
|
+
readonly pk: 1;
|
|
92
|
+
readonly computed: 0;
|
|
93
|
+
readonly nullable: 0;
|
|
94
|
+
readonly foreign_key_table: null;
|
|
95
|
+
readonly foreign_key_column: null;
|
|
96
|
+
}, {
|
|
97
|
+
readonly name: "created_at";
|
|
98
|
+
readonly datatype: "TIMESTAMP";
|
|
99
|
+
readonly pk: 0;
|
|
100
|
+
readonly computed: 0;
|
|
101
|
+
readonly nullable: 1;
|
|
102
|
+
readonly foreign_key_table: null;
|
|
103
|
+
readonly foreign_key_column: null;
|
|
104
|
+
}, {
|
|
105
|
+
readonly name: "deleted_at";
|
|
106
|
+
readonly datatype: "TIMESTAMP";
|
|
107
|
+
readonly pk: 0;
|
|
108
|
+
readonly computed: 0;
|
|
109
|
+
readonly nullable: 1;
|
|
110
|
+
readonly foreign_key_table: null;
|
|
111
|
+
readonly foreign_key_column: null;
|
|
112
|
+
}, {
|
|
113
|
+
readonly name: "role";
|
|
114
|
+
readonly datatype: "varchar";
|
|
115
|
+
readonly pk: 0;
|
|
116
|
+
readonly computed: 0;
|
|
117
|
+
readonly nullable: 1;
|
|
118
|
+
readonly foreign_key_table: null;
|
|
119
|
+
readonly foreign_key_column: null;
|
|
120
|
+
}, {
|
|
121
|
+
readonly name: "name";
|
|
122
|
+
readonly datatype: "varchar";
|
|
123
|
+
readonly pk: 0;
|
|
124
|
+
readonly computed: 0;
|
|
125
|
+
readonly nullable: 1;
|
|
126
|
+
readonly foreign_key_table: null;
|
|
127
|
+
readonly foreign_key_column: null;
|
|
128
|
+
}, {
|
|
129
|
+
readonly name: "name_role";
|
|
130
|
+
readonly datatype: "text";
|
|
131
|
+
readonly pk: 0;
|
|
132
|
+
readonly computed: 0;
|
|
133
|
+
readonly nullable: 1;
|
|
134
|
+
readonly foreign_key_table: null;
|
|
135
|
+
readonly foreign_key_column: null;
|
|
136
|
+
}];
|
|
137
|
+
}, {
|
|
138
|
+
readonly name: "composite_pk";
|
|
139
|
+
readonly sql: "CREATE TABLE composite_pk (id UUID, name TEXT, created_at timestamp, PRIMARY KEY (id, name));";
|
|
140
|
+
readonly columns: [{
|
|
141
|
+
readonly name: "id";
|
|
142
|
+
readonly datatype: "UUID";
|
|
143
|
+
readonly pk: 1;
|
|
144
|
+
readonly computed: 0;
|
|
145
|
+
readonly nullable: 0;
|
|
146
|
+
readonly foreign_key_table: null;
|
|
147
|
+
readonly foreign_key_column: null;
|
|
148
|
+
}, {
|
|
149
|
+
readonly name: "name";
|
|
150
|
+
readonly datatype: "TEXT";
|
|
151
|
+
readonly pk: 1;
|
|
152
|
+
readonly computed: 0;
|
|
153
|
+
readonly nullable: 1;
|
|
154
|
+
readonly foreign_key_table: null;
|
|
155
|
+
readonly foreign_key_column: null;
|
|
156
|
+
}, {
|
|
157
|
+
readonly name: "created_at";
|
|
158
|
+
readonly datatype: "timestamp";
|
|
159
|
+
readonly pk: 0;
|
|
160
|
+
readonly computed: 0;
|
|
161
|
+
readonly nullable: 1;
|
|
162
|
+
readonly foreign_key_table: null;
|
|
163
|
+
readonly foreign_key_column: null;
|
|
164
|
+
}];
|
|
165
|
+
}];
|
|
20
166
|
|
|
21
|
-
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getTablesQuery };
|
|
167
|
+
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getSelectQuery, getTablesQuery, mockIntrospect, mockSelectQuery, mockTablesQuery };
|
|
@@ -1,8 +1,50 @@
|
|
|
1
|
-
import { d as AdapterRequirements, A as Adapter,
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements } from '../../index-CVwmrqt5.js';
|
|
2
2
|
import * as kysely from 'kysely';
|
|
3
3
|
|
|
4
4
|
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
5
5
|
declare function createSQLiteAdapter(requirements: SQLIteAdapterRequirements): Adapter;
|
|
6
|
+
/**
|
|
7
|
+
* For testing purposes.
|
|
8
|
+
*/
|
|
9
|
+
declare function mockIntrospect(): {
|
|
10
|
+
schemas: {
|
|
11
|
+
main: {
|
|
12
|
+
name: "main";
|
|
13
|
+
tables: { [T in "animals" | "users" | "composite_pk"]: Table; };
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
timezone: string;
|
|
17
|
+
filterOperators: FilterOperator[];
|
|
18
|
+
query: Query;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Returns a query that selects all columns from a table with an unbound row count as `__studio_count__`.
|
|
23
|
+
*/
|
|
24
|
+
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
__studio_count__: `${bigint}`;
|
|
27
|
+
}>;
|
|
28
|
+
/**
|
|
29
|
+
* For testing purposes.
|
|
30
|
+
*/
|
|
31
|
+
declare function mockSelectQuery(): [{
|
|
32
|
+
readonly created_at: Date;
|
|
33
|
+
readonly deleted_at: null;
|
|
34
|
+
readonly id: 1;
|
|
35
|
+
readonly name: "John Doe";
|
|
36
|
+
readonly __studio_count__: "2";
|
|
37
|
+
readonly role: "admin";
|
|
38
|
+
readonly name_role: "Jonn Doe - admin";
|
|
39
|
+
}, {
|
|
40
|
+
readonly created_at: Date;
|
|
41
|
+
readonly deleted_at: null;
|
|
42
|
+
readonly id: 2;
|
|
43
|
+
readonly name: "Jane Doe";
|
|
44
|
+
readonly __studio_count__: "2";
|
|
45
|
+
readonly role: "poweruser";
|
|
46
|
+
readonly name_role: "Jane Doe - poweruser";
|
|
47
|
+
}];
|
|
6
48
|
|
|
7
49
|
declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
8
50
|
name: string;
|
|
@@ -17,5 +59,109 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
17
59
|
pk: kysely.SqlBool;
|
|
18
60
|
}[];
|
|
19
61
|
}>;
|
|
62
|
+
/**
|
|
63
|
+
* For testing purposes.
|
|
64
|
+
*/
|
|
65
|
+
declare function mockTablesQuery(): [{
|
|
66
|
+
readonly name: "animals";
|
|
67
|
+
readonly sql: "CREATE TABLE animals (id INTEGER PRIMARY KEY, name TEXT);";
|
|
68
|
+
readonly columns: [{
|
|
69
|
+
readonly name: "id";
|
|
70
|
+
readonly datatype: "INTEGER";
|
|
71
|
+
readonly pk: 1;
|
|
72
|
+
readonly computed: 0;
|
|
73
|
+
readonly nullable: 0;
|
|
74
|
+
readonly foreign_key_table: null;
|
|
75
|
+
readonly foreign_key_column: null;
|
|
76
|
+
}, {
|
|
77
|
+
readonly name: "name";
|
|
78
|
+
readonly datatype: "TEXT";
|
|
79
|
+
readonly pk: 0;
|
|
80
|
+
readonly computed: 0;
|
|
81
|
+
readonly nullable: 1;
|
|
82
|
+
readonly foreign_key_table: null;
|
|
83
|
+
readonly foreign_key_column: null;
|
|
84
|
+
}];
|
|
85
|
+
}, {
|
|
86
|
+
readonly name: "users";
|
|
87
|
+
readonly sql: "CREATE TABLE users (id UUID PRIMARY KEY, created_at TIMESTAMP, deleted_at TIMESTAMP, role varchar, name varchar, name_role text);";
|
|
88
|
+
readonly columns: [{
|
|
89
|
+
readonly name: "id";
|
|
90
|
+
readonly datatype: "UUID";
|
|
91
|
+
readonly pk: 1;
|
|
92
|
+
readonly computed: 0;
|
|
93
|
+
readonly nullable: 0;
|
|
94
|
+
readonly foreign_key_table: null;
|
|
95
|
+
readonly foreign_key_column: null;
|
|
96
|
+
}, {
|
|
97
|
+
readonly name: "created_at";
|
|
98
|
+
readonly datatype: "TIMESTAMP";
|
|
99
|
+
readonly pk: 0;
|
|
100
|
+
readonly computed: 0;
|
|
101
|
+
readonly nullable: 1;
|
|
102
|
+
readonly foreign_key_table: null;
|
|
103
|
+
readonly foreign_key_column: null;
|
|
104
|
+
}, {
|
|
105
|
+
readonly name: "deleted_at";
|
|
106
|
+
readonly datatype: "TIMESTAMP";
|
|
107
|
+
readonly pk: 0;
|
|
108
|
+
readonly computed: 0;
|
|
109
|
+
readonly nullable: 1;
|
|
110
|
+
readonly foreign_key_table: null;
|
|
111
|
+
readonly foreign_key_column: null;
|
|
112
|
+
}, {
|
|
113
|
+
readonly name: "role";
|
|
114
|
+
readonly datatype: "varchar";
|
|
115
|
+
readonly pk: 0;
|
|
116
|
+
readonly computed: 0;
|
|
117
|
+
readonly nullable: 1;
|
|
118
|
+
readonly foreign_key_table: null;
|
|
119
|
+
readonly foreign_key_column: null;
|
|
120
|
+
}, {
|
|
121
|
+
readonly name: "name";
|
|
122
|
+
readonly datatype: "varchar";
|
|
123
|
+
readonly pk: 0;
|
|
124
|
+
readonly computed: 0;
|
|
125
|
+
readonly nullable: 1;
|
|
126
|
+
readonly foreign_key_table: null;
|
|
127
|
+
readonly foreign_key_column: null;
|
|
128
|
+
}, {
|
|
129
|
+
readonly name: "name_role";
|
|
130
|
+
readonly datatype: "text";
|
|
131
|
+
readonly pk: 0;
|
|
132
|
+
readonly computed: 0;
|
|
133
|
+
readonly nullable: 1;
|
|
134
|
+
readonly foreign_key_table: null;
|
|
135
|
+
readonly foreign_key_column: null;
|
|
136
|
+
}];
|
|
137
|
+
}, {
|
|
138
|
+
readonly name: "composite_pk";
|
|
139
|
+
readonly sql: "CREATE TABLE composite_pk (id UUID, name TEXT, created_at timestamp, PRIMARY KEY (id, name));";
|
|
140
|
+
readonly columns: [{
|
|
141
|
+
readonly name: "id";
|
|
142
|
+
readonly datatype: "UUID";
|
|
143
|
+
readonly pk: 1;
|
|
144
|
+
readonly computed: 0;
|
|
145
|
+
readonly nullable: 0;
|
|
146
|
+
readonly foreign_key_table: null;
|
|
147
|
+
readonly foreign_key_column: null;
|
|
148
|
+
}, {
|
|
149
|
+
readonly name: "name";
|
|
150
|
+
readonly datatype: "TEXT";
|
|
151
|
+
readonly pk: 1;
|
|
152
|
+
readonly computed: 0;
|
|
153
|
+
readonly nullable: 1;
|
|
154
|
+
readonly foreign_key_table: null;
|
|
155
|
+
readonly foreign_key_column: null;
|
|
156
|
+
}, {
|
|
157
|
+
readonly name: "created_at";
|
|
158
|
+
readonly datatype: "timestamp";
|
|
159
|
+
readonly pk: 0;
|
|
160
|
+
readonly computed: 0;
|
|
161
|
+
readonly nullable: 1;
|
|
162
|
+
readonly foreign_key_table: null;
|
|
163
|
+
readonly foreign_key_column: null;
|
|
164
|
+
}];
|
|
165
|
+
}];
|
|
20
166
|
|
|
21
|
-
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getTablesQuery };
|
|
167
|
+
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getSelectQuery, getTablesQuery, mockIntrospect, mockSelectQuery, mockTablesQuery };
|
|
@@ -6,5 +6,5 @@ function require(mod) {
|
|
|
6
6
|
if (mod === 'react-dom') return ___react_dom___;
|
|
7
7
|
throw new Error(`Unknown module ${mod}`);
|
|
8
8
|
}
|
|
9
|
-
import{a,b}from"../../chunk-
|
|
9
|
+
import{a,b,c,d,e,f}from"../../chunk-HK4HH34Z.js";import"../../chunk-OTK4ZF2W.js";import"../../chunk-WHLVNWIR.js";import"../../chunk-GDQBQ7MK.js";export{e as createSQLiteAdapter,a as getSelectQuery,c as getTablesQuery,f as mockIntrospect,b as mockSelectQuery,d as mockTablesQuery};
|
|
10
10
|
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFtdLAogICJzb3VyY2VzQ29udGVudCI6IFtdLAogICJtYXBwaW5ncyI6ICIiLAogICJuYW1lcyI6IFtdCn0K
|
|
@@ -295,4 +295,4 @@ declare class AbortError extends Error {
|
|
|
295
295
|
}
|
|
296
296
|
declare function getAbortResult(): [AbortError];
|
|
297
297
|
|
|
298
|
-
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d,
|
|
298
|
+
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d, type AdapterQueryDetails as e, AdapterError as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, type AdapterDeleteDetails as i, applyInferredRowFilters as j, type AdapterBaseOptions as k, type AdapterIntrospectOptions as l, type AdapterQueryOptions as m, type AdapterInsertOptions as n, type AdapterUpdateOptions as o, type AdapterDeleteOptions as p, type AdapterIntrospectResult as q, type DataTypeGroup as r, type ColumnFilter as s, type FilterGroup as t, type SortOrderItem as u, type SortDirection as v, type AdapterQueryResult as w, type AdapterInsertResult as x, type AdapterUpdateResult as y, type AdapterDeleteResult as z };
|
|
@@ -295,4 +295,4 @@ declare class AbortError extends Error {
|
|
|
295
295
|
}
|
|
296
296
|
declare function getAbortResult(): [AbortError];
|
|
297
297
|
|
|
298
|
-
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d,
|
|
298
|
+
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d, type AdapterQueryDetails as e, AdapterError as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, type AdapterDeleteDetails as i, applyInferredRowFilters as j, type AdapterBaseOptions as k, type AdapterIntrospectOptions as l, type AdapterQueryOptions as m, type AdapterInsertOptions as n, type AdapterUpdateOptions as o, type AdapterDeleteOptions as p, type AdapterIntrospectResult as q, type DataTypeGroup as r, type ColumnFilter as s, type FilterGroup as t, type SortOrderItem as u, type SortDirection as v, type AdapterQueryResult as w, type AdapterInsertResult as x, type AdapterUpdateResult as y, type AdapterDeleteResult as z };
|