@prisma/studio-core-licensed 0.0.0-dev.202511172336 → 0.0.0-dev.202511172351
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-S7GEKU65.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/mysql-core/index.d.cts +1 -1
- package/dist/data/mysql-core/index.d.ts +1 -1
- package/dist/data/mysql2/index.d.cts +1 -1
- package/dist/data/mysql2/index.d.ts +1 -1
- package/dist/data/node-sqlite/index.d.cts +1 -1
- package/dist/data/node-sqlite/index.d.ts +1 -1
- package/dist/data/pglite/index.cjs +1 -1
- 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 +1 -1
- package/dist/data/postgres-core/index.d.cts +66 -63
- package/dist/data/postgres-core/index.d.ts +66 -63
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/data/postgresjs/index.d.cts +1 -1
- package/dist/data/postgresjs/index.d.ts +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.d.cts +1 -1
- package/dist/data/sqlite-core/index.d.ts +1 -1
- package/dist/{index-prZB-RVI.d.cts → index-2horhMcs.d.cts} +1 -1
- package/dist/{index-prZB-RVI.d.ts → index-2horhMcs.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-YFPWAXKU.js +0 -10
|
@@ -1,6 +1,71 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, g as AdapterInsertDetails, B as BuilderRequirements, e as AdapterQueryDetails, h as AdapterUpdateDetails, f as AdapterDeleteDetails } from '../../index-2horhMcs.cjs';
|
|
2
2
|
import 'kysely';
|
|
3
3
|
|
|
4
|
+
type PostgresAdapterRequirements = AdapterRequirements;
|
|
5
|
+
declare function createPostgresAdapter(requirements: PostgresAdapterRequirements): Adapter;
|
|
6
|
+
/**
|
|
7
|
+
* For testing purposes.
|
|
8
|
+
*/
|
|
9
|
+
declare function mockIntrospect(): {
|
|
10
|
+
schemas: { [K in "zoo" | "public"]: {
|
|
11
|
+
name: K;
|
|
12
|
+
tables: { [T in "animals" | "users" | "composite_pk"]: Table; };
|
|
13
|
+
}; };
|
|
14
|
+
timezone: "UTC";
|
|
15
|
+
filterOperators: FilterOperator[];
|
|
16
|
+
query: Query;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Inserts one or more rows into a table and returns the inserted rows along with their `ctid`.
|
|
21
|
+
*/
|
|
22
|
+
declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
} & {
|
|
25
|
+
__ps_inserted_at__: `${bigint}`;
|
|
26
|
+
}>;
|
|
27
|
+
/**
|
|
28
|
+
* Returns a query that selects all columns from a table, along with an unbound row count as `__ps_count__`.
|
|
29
|
+
*/
|
|
30
|
+
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
__ps_count__: `${bigint}`;
|
|
33
|
+
}>;
|
|
34
|
+
/**
|
|
35
|
+
* For testing purposes.
|
|
36
|
+
*/
|
|
37
|
+
declare function mockSelectQuery(): [{
|
|
38
|
+
readonly created_at: Date;
|
|
39
|
+
readonly deleted_at: null;
|
|
40
|
+
readonly id: 1;
|
|
41
|
+
readonly name: "John Doe";
|
|
42
|
+
readonly __ps_count__: "2";
|
|
43
|
+
readonly role: "admin";
|
|
44
|
+
readonly name_role: "Jonn Doe - admin";
|
|
45
|
+
}, {
|
|
46
|
+
readonly created_at: Date;
|
|
47
|
+
readonly deleted_at: null;
|
|
48
|
+
readonly id: 2;
|
|
49
|
+
readonly name: "Jane Doe";
|
|
50
|
+
readonly __ps_count__: "2";
|
|
51
|
+
readonly role: "poweruser";
|
|
52
|
+
readonly name_role: "Jane Doe - poweruser";
|
|
53
|
+
}];
|
|
54
|
+
/**
|
|
55
|
+
* Returns a query that updates a given row in a table with given changes.
|
|
56
|
+
*/
|
|
57
|
+
declare function getUpdateQuery(details: AdapterUpdateDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
58
|
+
[x: string]: unknown;
|
|
59
|
+
__ps_updated_at__: `${bigint}`;
|
|
60
|
+
}>;
|
|
61
|
+
/**
|
|
62
|
+
* Returns a query that deletes a given set of rows.
|
|
63
|
+
*/
|
|
64
|
+
declare function getDeleteQuery(details: AdapterDeleteDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
65
|
+
[x: string]: unknown;
|
|
66
|
+
__ps_deleted_at__: `${bigint}`;
|
|
67
|
+
}>;
|
|
68
|
+
|
|
4
69
|
/**
|
|
5
70
|
* Returns a query that returns metadata for all user-defined tables and views in the database.
|
|
6
71
|
*/
|
|
@@ -170,68 +235,6 @@ declare function mockTimezoneQuery(): [{
|
|
|
170
235
|
readonly timezone: "UTC";
|
|
171
236
|
}];
|
|
172
237
|
|
|
173
|
-
type PostgresAdapterRequirements = AdapterRequirements;
|
|
174
|
-
declare function createPostgresAdapter(requirements: PostgresAdapterRequirements): Adapter;
|
|
175
|
-
declare function createIntrospection(args: {
|
|
176
|
-
query: Query;
|
|
177
|
-
tables: QueryResult<typeof getTablesQuery>;
|
|
178
|
-
timezone: string;
|
|
179
|
-
}): AdapterIntrospectResult;
|
|
180
|
-
/**
|
|
181
|
-
* For testing purposes.
|
|
182
|
-
*/
|
|
183
|
-
declare function mockIntrospect(): ReturnType<typeof createIntrospection>;
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* Inserts one or more rows into a table and returns the inserted rows along with their `ctid`.
|
|
187
|
-
*/
|
|
188
|
-
declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
189
|
-
[x: string]: unknown;
|
|
190
|
-
} & {
|
|
191
|
-
__ps_inserted_at__: `${bigint}`;
|
|
192
|
-
}>;
|
|
193
|
-
/**
|
|
194
|
-
* Returns a query that selects all columns from a table, along with an unbound row count as `__ps_count__`.
|
|
195
|
-
*/
|
|
196
|
-
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
197
|
-
[x: string]: unknown;
|
|
198
|
-
__ps_count__: `${bigint}`;
|
|
199
|
-
}>;
|
|
200
|
-
/**
|
|
201
|
-
* For testing purposes.
|
|
202
|
-
*/
|
|
203
|
-
declare function mockSelectQuery(): [{
|
|
204
|
-
readonly created_at: Date;
|
|
205
|
-
readonly deleted_at: null;
|
|
206
|
-
readonly id: 1;
|
|
207
|
-
readonly name: "John Doe";
|
|
208
|
-
readonly __ps_count__: "2";
|
|
209
|
-
readonly role: "admin";
|
|
210
|
-
readonly name_role: "Jonn Doe - admin";
|
|
211
|
-
}, {
|
|
212
|
-
readonly created_at: Date;
|
|
213
|
-
readonly deleted_at: null;
|
|
214
|
-
readonly id: 2;
|
|
215
|
-
readonly name: "Jane Doe";
|
|
216
|
-
readonly __ps_count__: "2";
|
|
217
|
-
readonly role: "poweruser";
|
|
218
|
-
readonly name_role: "Jane Doe - poweruser";
|
|
219
|
-
}];
|
|
220
|
-
/**
|
|
221
|
-
* Returns a query that updates a given row in a table with given changes.
|
|
222
|
-
*/
|
|
223
|
-
declare function getUpdateQuery(details: AdapterUpdateDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
224
|
-
[x: string]: unknown;
|
|
225
|
-
__ps_updated_at__: `${bigint}`;
|
|
226
|
-
}>;
|
|
227
|
-
/**
|
|
228
|
-
* Returns a query that deletes a given set of rows.
|
|
229
|
-
*/
|
|
230
|
-
declare function getDeleteQuery(details: AdapterDeleteDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
231
|
-
[x: string]: unknown;
|
|
232
|
-
__ps_deleted_at__: `${bigint}`;
|
|
233
|
-
}>;
|
|
234
|
-
|
|
235
238
|
declare function getPIDQuery(): Query<{
|
|
236
239
|
pid: unknown;
|
|
237
240
|
}>;
|
|
@@ -1,6 +1,71 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, g as AdapterInsertDetails, B as BuilderRequirements, e as AdapterQueryDetails, h as AdapterUpdateDetails, f as AdapterDeleteDetails } from '../../index-2horhMcs.js';
|
|
2
2
|
import 'kysely';
|
|
3
3
|
|
|
4
|
+
type PostgresAdapterRequirements = AdapterRequirements;
|
|
5
|
+
declare function createPostgresAdapter(requirements: PostgresAdapterRequirements): Adapter;
|
|
6
|
+
/**
|
|
7
|
+
* For testing purposes.
|
|
8
|
+
*/
|
|
9
|
+
declare function mockIntrospect(): {
|
|
10
|
+
schemas: { [K in "zoo" | "public"]: {
|
|
11
|
+
name: K;
|
|
12
|
+
tables: { [T in "animals" | "users" | "composite_pk"]: Table; };
|
|
13
|
+
}; };
|
|
14
|
+
timezone: "UTC";
|
|
15
|
+
filterOperators: FilterOperator[];
|
|
16
|
+
query: Query;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Inserts one or more rows into a table and returns the inserted rows along with their `ctid`.
|
|
21
|
+
*/
|
|
22
|
+
declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
} & {
|
|
25
|
+
__ps_inserted_at__: `${bigint}`;
|
|
26
|
+
}>;
|
|
27
|
+
/**
|
|
28
|
+
* Returns a query that selects all columns from a table, along with an unbound row count as `__ps_count__`.
|
|
29
|
+
*/
|
|
30
|
+
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
__ps_count__: `${bigint}`;
|
|
33
|
+
}>;
|
|
34
|
+
/**
|
|
35
|
+
* For testing purposes.
|
|
36
|
+
*/
|
|
37
|
+
declare function mockSelectQuery(): [{
|
|
38
|
+
readonly created_at: Date;
|
|
39
|
+
readonly deleted_at: null;
|
|
40
|
+
readonly id: 1;
|
|
41
|
+
readonly name: "John Doe";
|
|
42
|
+
readonly __ps_count__: "2";
|
|
43
|
+
readonly role: "admin";
|
|
44
|
+
readonly name_role: "Jonn Doe - admin";
|
|
45
|
+
}, {
|
|
46
|
+
readonly created_at: Date;
|
|
47
|
+
readonly deleted_at: null;
|
|
48
|
+
readonly id: 2;
|
|
49
|
+
readonly name: "Jane Doe";
|
|
50
|
+
readonly __ps_count__: "2";
|
|
51
|
+
readonly role: "poweruser";
|
|
52
|
+
readonly name_role: "Jane Doe - poweruser";
|
|
53
|
+
}];
|
|
54
|
+
/**
|
|
55
|
+
* Returns a query that updates a given row in a table with given changes.
|
|
56
|
+
*/
|
|
57
|
+
declare function getUpdateQuery(details: AdapterUpdateDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
58
|
+
[x: string]: unknown;
|
|
59
|
+
__ps_updated_at__: `${bigint}`;
|
|
60
|
+
}>;
|
|
61
|
+
/**
|
|
62
|
+
* Returns a query that deletes a given set of rows.
|
|
63
|
+
*/
|
|
64
|
+
declare function getDeleteQuery(details: AdapterDeleteDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
65
|
+
[x: string]: unknown;
|
|
66
|
+
__ps_deleted_at__: `${bigint}`;
|
|
67
|
+
}>;
|
|
68
|
+
|
|
4
69
|
/**
|
|
5
70
|
* Returns a query that returns metadata for all user-defined tables and views in the database.
|
|
6
71
|
*/
|
|
@@ -170,68 +235,6 @@ declare function mockTimezoneQuery(): [{
|
|
|
170
235
|
readonly timezone: "UTC";
|
|
171
236
|
}];
|
|
172
237
|
|
|
173
|
-
type PostgresAdapterRequirements = AdapterRequirements;
|
|
174
|
-
declare function createPostgresAdapter(requirements: PostgresAdapterRequirements): Adapter;
|
|
175
|
-
declare function createIntrospection(args: {
|
|
176
|
-
query: Query;
|
|
177
|
-
tables: QueryResult<typeof getTablesQuery>;
|
|
178
|
-
timezone: string;
|
|
179
|
-
}): AdapterIntrospectResult;
|
|
180
|
-
/**
|
|
181
|
-
* For testing purposes.
|
|
182
|
-
*/
|
|
183
|
-
declare function mockIntrospect(): ReturnType<typeof createIntrospection>;
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* Inserts one or more rows into a table and returns the inserted rows along with their `ctid`.
|
|
187
|
-
*/
|
|
188
|
-
declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
189
|
-
[x: string]: unknown;
|
|
190
|
-
} & {
|
|
191
|
-
__ps_inserted_at__: `${bigint}`;
|
|
192
|
-
}>;
|
|
193
|
-
/**
|
|
194
|
-
* Returns a query that selects all columns from a table, along with an unbound row count as `__ps_count__`.
|
|
195
|
-
*/
|
|
196
|
-
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
197
|
-
[x: string]: unknown;
|
|
198
|
-
__ps_count__: `${bigint}`;
|
|
199
|
-
}>;
|
|
200
|
-
/**
|
|
201
|
-
* For testing purposes.
|
|
202
|
-
*/
|
|
203
|
-
declare function mockSelectQuery(): [{
|
|
204
|
-
readonly created_at: Date;
|
|
205
|
-
readonly deleted_at: null;
|
|
206
|
-
readonly id: 1;
|
|
207
|
-
readonly name: "John Doe";
|
|
208
|
-
readonly __ps_count__: "2";
|
|
209
|
-
readonly role: "admin";
|
|
210
|
-
readonly name_role: "Jonn Doe - admin";
|
|
211
|
-
}, {
|
|
212
|
-
readonly created_at: Date;
|
|
213
|
-
readonly deleted_at: null;
|
|
214
|
-
readonly id: 2;
|
|
215
|
-
readonly name: "Jane Doe";
|
|
216
|
-
readonly __ps_count__: "2";
|
|
217
|
-
readonly role: "poweruser";
|
|
218
|
-
readonly name_role: "Jane Doe - poweruser";
|
|
219
|
-
}];
|
|
220
|
-
/**
|
|
221
|
-
* Returns a query that updates a given row in a table with given changes.
|
|
222
|
-
*/
|
|
223
|
-
declare function getUpdateQuery(details: AdapterUpdateDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
224
|
-
[x: string]: unknown;
|
|
225
|
-
__ps_updated_at__: `${bigint}`;
|
|
226
|
-
}>;
|
|
227
|
-
/**
|
|
228
|
-
* Returns a query that deletes a given set of rows.
|
|
229
|
-
*/
|
|
230
|
-
declare function getDeleteQuery(details: AdapterDeleteDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
231
|
-
[x: string]: unknown;
|
|
232
|
-
__ps_deleted_at__: `${bigint}`;
|
|
233
|
-
}>;
|
|
234
|
-
|
|
235
238
|
declare function getPIDQuery(): Query<{
|
|
236
239
|
pid: unknown;
|
|
237
240
|
}>;
|
|
@@ -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,c,d,e,f,g,h,i,j,k}from"../../chunk-
|
|
9
|
+
import{a,b,c,d,e,f,g,h,i,j,k}from"../../chunk-S7GEKU65.js";import{a as l,b as m}from"../../chunk-M7E5UEO3.js";import"../../chunk-OTK4ZF2W.js";import"../../chunk-A6CVKSUD.js";import"../../chunk-GDQBQ7MK.js";export{j as createPostgresAdapter,m as getCancelQuery,e as getDeleteQuery,a as getInsertQuery,l as getPIDQuery,b as getSelectQuery,f as getTablesQuery,h as getTimezoneQuery,d as getUpdateQuery,k as mockIntrospect,c as mockSelectQuery,g as mockTablesQuery,i as mockTimezoneQuery};
|
|
10
10
|
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFtdLAogICJzb3VyY2VzQ29udGVudCI6IFtdLAogICJtYXBwaW5ncyI6ICIiLAogICJuYW1lcyI6IFtdCn0K
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RawResponse, AccelerateHttpClient } from '../accelerate/index.cjs';
|
|
2
2
|
export { DeserializedResponse, QueryIntrospectionBuiltinType, deserializeRawResult } from '../accelerate/index.cjs';
|
|
3
|
-
import '../../index-
|
|
3
|
+
import '../../index-2horhMcs.cjs';
|
|
4
4
|
import 'kysely';
|
|
5
5
|
|
|
6
6
|
interface PrismaPostgresHttpClientParams {
|
package/dist/data/ppg/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RawResponse, AccelerateHttpClient } from '../accelerate/index.js';
|
|
2
2
|
export { DeserializedResponse, QueryIntrospectionBuiltinType, deserializeRawResult } from '../accelerate/index.js';
|
|
3
|
-
import '../../index-
|
|
3
|
+
import '../../index-2horhMcs.js';
|
|
4
4
|
import 'kysely';
|
|
5
5
|
|
|
6
6
|
interface PrismaPostgresHttpClientParams {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements, f as AdapterDeleteDetails, g as AdapterInsertDetails, h as AdapterUpdateDetails } from '../../index-
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements, f as AdapterDeleteDetails, g as AdapterInsertDetails, h as AdapterUpdateDetails } from '../../index-2horhMcs.cjs';
|
|
2
2
|
import * as kysely from 'kysely';
|
|
3
3
|
|
|
4
4
|
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements, f as AdapterDeleteDetails, g as AdapterInsertDetails, h as AdapterUpdateDetails } from '../../index-
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, T as Table, F as FilterOperator, Q as Query, e as AdapterQueryDetails, B as BuilderRequirements, f as AdapterDeleteDetails, g as AdapterInsertDetails, h as AdapterUpdateDetails } from '../../index-2horhMcs.js';
|
|
2
2
|
import * as kysely from 'kysely';
|
|
3
3
|
|
|
4
4
|
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
@@ -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, type AdapterQueryDetails as e, type AdapterDeleteDetails as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, AdapterError as i,
|
|
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, type AdapterDeleteDetails as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, AdapterError 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, type AdapterQueryDetails as e, type AdapterDeleteDetails as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, AdapterError as i,
|
|
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, type AdapterDeleteDetails as f, type AdapterInsertDetails as g, type AdapterUpdateDetails as h, AdapterError 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 };
|