drizzle-kit 0.31.4-e8ab855 → 0.31.5-7cb6516
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/api.d.mts +493 -3
- package/api.d.ts +493 -3
- package/api.js +161156 -43043
- package/api.mjs +160929 -42825
- package/bin.cjs +131 -72
- package/index.d.mts +319 -2
- package/index.d.ts +319 -2
- package/package.json +1 -1
- package/index-BAUrj6Ib.d.mts +0 -321
- package/index-BAUrj6Ib.d.ts +0 -321
package/api.d.mts
CHANGED
|
@@ -1,11 +1,478 @@
|
|
|
1
|
+
import { PGlite } from '@electric-sql/pglite';
|
|
1
2
|
import { LibSQLDatabase } from 'drizzle-orm/libsql';
|
|
2
3
|
import { MySql2Database } from 'drizzle-orm/mysql2';
|
|
3
4
|
import { PgDatabase } from 'drizzle-orm/pg-core';
|
|
4
5
|
import { SingleStoreDriverDatabase } from 'drizzle-orm/singlestore';
|
|
5
|
-
import { C as CasingType, a as Config } from './index-BAUrj6Ib.mjs';
|
|
6
6
|
import * as zod from 'zod';
|
|
7
7
|
import { TypeOf } from 'zod';
|
|
8
|
-
import 'tls';
|
|
8
|
+
import { ConnectionOptions } from 'tls';
|
|
9
|
+
|
|
10
|
+
declare const prefixes: readonly ["index", "timestamp", "supabase", "unix", "none"];
|
|
11
|
+
type Prefix = (typeof prefixes)[number];
|
|
12
|
+
declare const casingTypes: readonly ["snake_case", "camelCase"];
|
|
13
|
+
type CasingType = (typeof casingTypes)[number];
|
|
14
|
+
declare const drivers: readonly ["d1-http", "expo", "aws-data-api", "pglite", "durable-sqlite"];
|
|
15
|
+
type Driver = (typeof drivers)[number];
|
|
16
|
+
|
|
17
|
+
declare const mysqlCredentials: zod.ZodUnion<[zod.ZodObject<{
|
|
18
|
+
host: zod.ZodString;
|
|
19
|
+
port: zod.ZodOptional<zod.ZodNumber>;
|
|
20
|
+
user: zod.ZodOptional<zod.ZodString>;
|
|
21
|
+
password: zod.ZodOptional<zod.ZodString>;
|
|
22
|
+
database: zod.ZodString;
|
|
23
|
+
ssl: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
24
|
+
pfx: zod.ZodOptional<zod.ZodString>;
|
|
25
|
+
key: zod.ZodOptional<zod.ZodString>;
|
|
26
|
+
passphrase: zod.ZodOptional<zod.ZodString>;
|
|
27
|
+
cert: zod.ZodOptional<zod.ZodString>;
|
|
28
|
+
ca: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
29
|
+
crl: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
30
|
+
ciphers: zod.ZodOptional<zod.ZodString>;
|
|
31
|
+
rejectUnauthorized: zod.ZodOptional<zod.ZodBoolean>;
|
|
32
|
+
}, "strip", zod.ZodTypeAny, {
|
|
33
|
+
pfx?: string | undefined;
|
|
34
|
+
key?: string | undefined;
|
|
35
|
+
passphrase?: string | undefined;
|
|
36
|
+
cert?: string | undefined;
|
|
37
|
+
ca?: string | string[] | undefined;
|
|
38
|
+
crl?: string | string[] | undefined;
|
|
39
|
+
ciphers?: string | undefined;
|
|
40
|
+
rejectUnauthorized?: boolean | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
pfx?: string | undefined;
|
|
43
|
+
key?: string | undefined;
|
|
44
|
+
passphrase?: string | undefined;
|
|
45
|
+
cert?: string | undefined;
|
|
46
|
+
ca?: string | string[] | undefined;
|
|
47
|
+
crl?: string | string[] | undefined;
|
|
48
|
+
ciphers?: string | undefined;
|
|
49
|
+
rejectUnauthorized?: boolean | undefined;
|
|
50
|
+
}>]>>;
|
|
51
|
+
}, "strip", zod.ZodTypeAny, {
|
|
52
|
+
host: string;
|
|
53
|
+
database: string;
|
|
54
|
+
port?: number | undefined;
|
|
55
|
+
user?: string | undefined;
|
|
56
|
+
password?: string | undefined;
|
|
57
|
+
ssl?: string | {
|
|
58
|
+
pfx?: string | undefined;
|
|
59
|
+
key?: string | undefined;
|
|
60
|
+
passphrase?: string | undefined;
|
|
61
|
+
cert?: string | undefined;
|
|
62
|
+
ca?: string | string[] | undefined;
|
|
63
|
+
crl?: string | string[] | undefined;
|
|
64
|
+
ciphers?: string | undefined;
|
|
65
|
+
rejectUnauthorized?: boolean | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
host: string;
|
|
69
|
+
database: string;
|
|
70
|
+
port?: number | undefined;
|
|
71
|
+
user?: string | undefined;
|
|
72
|
+
password?: string | undefined;
|
|
73
|
+
ssl?: string | {
|
|
74
|
+
pfx?: string | undefined;
|
|
75
|
+
key?: string | undefined;
|
|
76
|
+
passphrase?: string | undefined;
|
|
77
|
+
cert?: string | undefined;
|
|
78
|
+
ca?: string | string[] | undefined;
|
|
79
|
+
crl?: string | string[] | undefined;
|
|
80
|
+
ciphers?: string | undefined;
|
|
81
|
+
rejectUnauthorized?: boolean | undefined;
|
|
82
|
+
} | undefined;
|
|
83
|
+
}>, zod.ZodObject<{
|
|
84
|
+
url: zod.ZodString;
|
|
85
|
+
}, "strip", zod.ZodTypeAny, {
|
|
86
|
+
url: string;
|
|
87
|
+
}, {
|
|
88
|
+
url: string;
|
|
89
|
+
}>]>;
|
|
90
|
+
type MysqlCredentials = TypeOf<typeof mysqlCredentials>;
|
|
91
|
+
|
|
92
|
+
declare const postgresCredentials: zod.ZodUnion<[zod.ZodEffects<zod.ZodObject<{
|
|
93
|
+
driver: zod.ZodUndefined;
|
|
94
|
+
host: zod.ZodString;
|
|
95
|
+
port: zod.ZodOptional<zod.ZodNumber>;
|
|
96
|
+
user: zod.ZodOptional<zod.ZodString>;
|
|
97
|
+
password: zod.ZodOptional<zod.ZodString>;
|
|
98
|
+
database: zod.ZodString;
|
|
99
|
+
ssl: zod.ZodOptional<zod.ZodUnion<[zod.ZodLiteral<"require">, zod.ZodLiteral<"allow">, zod.ZodLiteral<"prefer">, zod.ZodLiteral<"verify-full">, zod.ZodBoolean, zod.ZodObject<{}, "passthrough", zod.ZodTypeAny, zod.objectOutputType<{}, zod.ZodTypeAny, "passthrough">, zod.objectInputType<{}, zod.ZodTypeAny, "passthrough">>]>>;
|
|
100
|
+
}, "strip", zod.ZodTypeAny, {
|
|
101
|
+
host: string;
|
|
102
|
+
database: string;
|
|
103
|
+
driver?: undefined;
|
|
104
|
+
port?: number | undefined;
|
|
105
|
+
user?: string | undefined;
|
|
106
|
+
password?: string | undefined;
|
|
107
|
+
ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod.objectOutputType<{}, zod.ZodTypeAny, "passthrough"> | undefined;
|
|
108
|
+
}, {
|
|
109
|
+
host: string;
|
|
110
|
+
database: string;
|
|
111
|
+
driver?: undefined;
|
|
112
|
+
port?: number | undefined;
|
|
113
|
+
user?: string | undefined;
|
|
114
|
+
password?: string | undefined;
|
|
115
|
+
ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod.objectInputType<{}, zod.ZodTypeAny, "passthrough"> | undefined;
|
|
116
|
+
}>, Omit<{
|
|
117
|
+
host: string;
|
|
118
|
+
database: string;
|
|
119
|
+
driver?: undefined;
|
|
120
|
+
port?: number | undefined;
|
|
121
|
+
user?: string | undefined;
|
|
122
|
+
password?: string | undefined;
|
|
123
|
+
ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod.objectOutputType<{}, zod.ZodTypeAny, "passthrough"> | undefined;
|
|
124
|
+
}, "driver">, {
|
|
125
|
+
host: string;
|
|
126
|
+
database: string;
|
|
127
|
+
driver?: undefined;
|
|
128
|
+
port?: number | undefined;
|
|
129
|
+
user?: string | undefined;
|
|
130
|
+
password?: string | undefined;
|
|
131
|
+
ssl?: boolean | "require" | "allow" | "prefer" | "verify-full" | zod.objectInputType<{}, zod.ZodTypeAny, "passthrough"> | undefined;
|
|
132
|
+
}>, zod.ZodEffects<zod.ZodObject<{
|
|
133
|
+
driver: zod.ZodUndefined;
|
|
134
|
+
url: zod.ZodString;
|
|
135
|
+
}, "strip", zod.ZodTypeAny, {
|
|
136
|
+
url: string;
|
|
137
|
+
driver?: undefined;
|
|
138
|
+
}, {
|
|
139
|
+
url: string;
|
|
140
|
+
driver?: undefined;
|
|
141
|
+
}>, {
|
|
142
|
+
url: string;
|
|
143
|
+
}, {
|
|
144
|
+
url: string;
|
|
145
|
+
driver?: undefined;
|
|
146
|
+
}>, zod.ZodObject<{
|
|
147
|
+
driver: zod.ZodLiteral<"aws-data-api">;
|
|
148
|
+
database: zod.ZodString;
|
|
149
|
+
secretArn: zod.ZodString;
|
|
150
|
+
resourceArn: zod.ZodString;
|
|
151
|
+
}, "strip", zod.ZodTypeAny, {
|
|
152
|
+
driver: "aws-data-api";
|
|
153
|
+
database: string;
|
|
154
|
+
secretArn: string;
|
|
155
|
+
resourceArn: string;
|
|
156
|
+
}, {
|
|
157
|
+
driver: "aws-data-api";
|
|
158
|
+
database: string;
|
|
159
|
+
secretArn: string;
|
|
160
|
+
resourceArn: string;
|
|
161
|
+
}>, zod.ZodObject<{
|
|
162
|
+
driver: zod.ZodLiteral<"pglite">;
|
|
163
|
+
url: zod.ZodString;
|
|
164
|
+
}, "strip", zod.ZodTypeAny, {
|
|
165
|
+
url: string;
|
|
166
|
+
driver: "pglite";
|
|
167
|
+
}, {
|
|
168
|
+
url: string;
|
|
169
|
+
driver: "pglite";
|
|
170
|
+
}>]>;
|
|
171
|
+
type PostgresCredentials = TypeOf<typeof postgresCredentials>;
|
|
172
|
+
|
|
173
|
+
declare const singlestoreCredentials: zod.ZodUnion<[zod.ZodObject<{
|
|
174
|
+
host: zod.ZodString;
|
|
175
|
+
port: zod.ZodOptional<zod.ZodNumber>;
|
|
176
|
+
user: zod.ZodOptional<zod.ZodString>;
|
|
177
|
+
password: zod.ZodOptional<zod.ZodString>;
|
|
178
|
+
database: zod.ZodString;
|
|
179
|
+
ssl: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
180
|
+
pfx: zod.ZodOptional<zod.ZodString>;
|
|
181
|
+
key: zod.ZodOptional<zod.ZodString>;
|
|
182
|
+
passphrase: zod.ZodOptional<zod.ZodString>;
|
|
183
|
+
cert: zod.ZodOptional<zod.ZodString>;
|
|
184
|
+
ca: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
185
|
+
crl: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
186
|
+
ciphers: zod.ZodOptional<zod.ZodString>;
|
|
187
|
+
rejectUnauthorized: zod.ZodOptional<zod.ZodBoolean>;
|
|
188
|
+
}, "strip", zod.ZodTypeAny, {
|
|
189
|
+
pfx?: string | undefined;
|
|
190
|
+
key?: string | undefined;
|
|
191
|
+
passphrase?: string | undefined;
|
|
192
|
+
cert?: string | undefined;
|
|
193
|
+
ca?: string | string[] | undefined;
|
|
194
|
+
crl?: string | string[] | undefined;
|
|
195
|
+
ciphers?: string | undefined;
|
|
196
|
+
rejectUnauthorized?: boolean | undefined;
|
|
197
|
+
}, {
|
|
198
|
+
pfx?: string | undefined;
|
|
199
|
+
key?: string | undefined;
|
|
200
|
+
passphrase?: string | undefined;
|
|
201
|
+
cert?: string | undefined;
|
|
202
|
+
ca?: string | string[] | undefined;
|
|
203
|
+
crl?: string | string[] | undefined;
|
|
204
|
+
ciphers?: string | undefined;
|
|
205
|
+
rejectUnauthorized?: boolean | undefined;
|
|
206
|
+
}>]>>;
|
|
207
|
+
}, "strip", zod.ZodTypeAny, {
|
|
208
|
+
host: string;
|
|
209
|
+
database: string;
|
|
210
|
+
port?: number | undefined;
|
|
211
|
+
user?: string | undefined;
|
|
212
|
+
password?: string | undefined;
|
|
213
|
+
ssl?: string | {
|
|
214
|
+
pfx?: string | undefined;
|
|
215
|
+
key?: string | undefined;
|
|
216
|
+
passphrase?: string | undefined;
|
|
217
|
+
cert?: string | undefined;
|
|
218
|
+
ca?: string | string[] | undefined;
|
|
219
|
+
crl?: string | string[] | undefined;
|
|
220
|
+
ciphers?: string | undefined;
|
|
221
|
+
rejectUnauthorized?: boolean | undefined;
|
|
222
|
+
} | undefined;
|
|
223
|
+
}, {
|
|
224
|
+
host: string;
|
|
225
|
+
database: string;
|
|
226
|
+
port?: number | undefined;
|
|
227
|
+
user?: string | undefined;
|
|
228
|
+
password?: string | undefined;
|
|
229
|
+
ssl?: string | {
|
|
230
|
+
pfx?: string | undefined;
|
|
231
|
+
key?: string | undefined;
|
|
232
|
+
passphrase?: string | undefined;
|
|
233
|
+
cert?: string | undefined;
|
|
234
|
+
ca?: string | string[] | undefined;
|
|
235
|
+
crl?: string | string[] | undefined;
|
|
236
|
+
ciphers?: string | undefined;
|
|
237
|
+
rejectUnauthorized?: boolean | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
}>, zod.ZodObject<{
|
|
240
|
+
url: zod.ZodString;
|
|
241
|
+
}, "strip", zod.ZodTypeAny, {
|
|
242
|
+
url: string;
|
|
243
|
+
}, {
|
|
244
|
+
url: string;
|
|
245
|
+
}>]>;
|
|
246
|
+
type SingleStoreCredentials = TypeOf<typeof singlestoreCredentials>;
|
|
247
|
+
|
|
248
|
+
type SqliteCredentials = {
|
|
249
|
+
driver: 'd1-http';
|
|
250
|
+
accountId: string;
|
|
251
|
+
databaseId: string;
|
|
252
|
+
token: string;
|
|
253
|
+
} | {
|
|
254
|
+
url: string;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
declare const dialects: readonly ["postgresql", "mysql", "sqlite", "turso", "singlestore", "gel"];
|
|
258
|
+
type Dialect = (typeof dialects)[number];
|
|
259
|
+
|
|
260
|
+
type SslOptions = {
|
|
261
|
+
pfx?: string;
|
|
262
|
+
key?: string;
|
|
263
|
+
passphrase?: string;
|
|
264
|
+
cert?: string;
|
|
265
|
+
ca?: string | string[];
|
|
266
|
+
crl?: string | string[];
|
|
267
|
+
ciphers?: string;
|
|
268
|
+
rejectUnauthorized?: boolean;
|
|
269
|
+
};
|
|
270
|
+
type Verify<T, U extends T> = U;
|
|
271
|
+
/**
|
|
272
|
+
* **You are currently using version 0.21.0+ of drizzle-kit. If you have just upgraded to this version, please make sure to read the changelog to understand what changes have been made and what
|
|
273
|
+
* adjustments may be necessary for you. See https://orm.drizzle.team/kit-docs/upgrade-21#how-to-migrate-to-0210**
|
|
274
|
+
*
|
|
275
|
+
* **Config** usage:
|
|
276
|
+
*
|
|
277
|
+
* `dialect` - mandatory and is responsible for explicitly providing a databse dialect you are using for all the commands
|
|
278
|
+
* *Possible values*: `postgresql`, `mysql`, `sqlite`, `singlestore
|
|
279
|
+
*
|
|
280
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#dialect
|
|
281
|
+
*
|
|
282
|
+
* ---
|
|
283
|
+
* `schema` - param lets you define where your schema file/files live.
|
|
284
|
+
* You can have as many separate schema files as you want and define paths to them using glob or array of globs syntax.
|
|
285
|
+
*
|
|
286
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#schema
|
|
287
|
+
*
|
|
288
|
+
* ---
|
|
289
|
+
* `out` - allows you to define the folder for your migrations and a folder, where drizzle will introspect the schema and relations
|
|
290
|
+
*
|
|
291
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#out
|
|
292
|
+
*
|
|
293
|
+
* ---
|
|
294
|
+
* `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database
|
|
295
|
+
* *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`, `pglite`
|
|
296
|
+
* If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm.drizzle.team/kit-docs/upgrade-21
|
|
297
|
+
*
|
|
298
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#driver
|
|
299
|
+
*
|
|
300
|
+
* ---
|
|
301
|
+
*
|
|
302
|
+
* `dbCredentials` - an object to define your connection to the database. For more info please check the docs
|
|
303
|
+
*
|
|
304
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#dbcredentials
|
|
305
|
+
*
|
|
306
|
+
* ---
|
|
307
|
+
*
|
|
308
|
+
* `migrations` - param let’s use specify custom table and schema(PostgreSQL only) for migrations.
|
|
309
|
+
* By default, all information about executed migrations will be stored in the database inside
|
|
310
|
+
* the `__drizzle_migrations` table, and for PostgreSQL, inside the drizzle schema.
|
|
311
|
+
* However, you can configure where to store those records.
|
|
312
|
+
*
|
|
313
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#migrations
|
|
314
|
+
*
|
|
315
|
+
* ---
|
|
316
|
+
*
|
|
317
|
+
* `breakpoints` - param lets you enable/disable SQL statement breakpoints in generated migrations.
|
|
318
|
+
* It’s optional and true by default, it’s necessary to properly apply migrations on databases,
|
|
319
|
+
* that do not support multiple DDL alternation statements in one transaction(MySQL, SQLite, SingleStore) and
|
|
320
|
+
* Drizzle ORM has to apply them sequentially one by one.
|
|
321
|
+
*
|
|
322
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#breakpoints
|
|
323
|
+
*
|
|
324
|
+
* ---
|
|
325
|
+
*
|
|
326
|
+
* `tablesFilters` - param lets you filter tables with glob syntax for db push command.
|
|
327
|
+
* It’s useful when you have only one database avaialable for several separate projects with separate sql schemas.
|
|
328
|
+
*
|
|
329
|
+
* How to define multi-project tables with Drizzle ORM — see https://orm.drizzle.team/docs/goodies#multi-project-schema
|
|
330
|
+
*
|
|
331
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#tablesfilters
|
|
332
|
+
*
|
|
333
|
+
* ---
|
|
334
|
+
*
|
|
335
|
+
* `schemaFilter` - parameter allows you to define which schema in PostgreSQL should be used for either introspect or push commands.
|
|
336
|
+
* This parameter accepts a single schema as a string or an array of schemas as strings.
|
|
337
|
+
* No glob pattern is supported here. By default, drizzle will use the public schema for both commands,
|
|
338
|
+
* but you can add any schema you need.
|
|
339
|
+
*
|
|
340
|
+
* For example, having schemaFilter: ["my_schema"] will only look for tables in both the database and
|
|
341
|
+
* drizzle schema that are a part of the my_schema schema.
|
|
342
|
+
*
|
|
343
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#schemafilter
|
|
344
|
+
*
|
|
345
|
+
* ---
|
|
346
|
+
*
|
|
347
|
+
* `verbose` - command is used for drizzle-kit push commands and prints all statements that will be executed.
|
|
348
|
+
*
|
|
349
|
+
* > Note: This command will only print the statements that should be executed.
|
|
350
|
+
* To approve them before applying, please refer to the `strict` command.
|
|
351
|
+
*
|
|
352
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#verbose
|
|
353
|
+
*
|
|
354
|
+
* ---
|
|
355
|
+
*
|
|
356
|
+
* `strict` - command is used for drizzle-kit push commands and will always ask for your confirmation,
|
|
357
|
+
* either to execute all statements needed to sync your schema with the database or not.
|
|
358
|
+
*
|
|
359
|
+
* See https://orm.drizzle.team/kit-docs/config-reference#strict
|
|
360
|
+
*/
|
|
361
|
+
type Config = {
|
|
362
|
+
dialect: Dialect;
|
|
363
|
+
out?: string;
|
|
364
|
+
breakpoints?: boolean;
|
|
365
|
+
tablesFilter?: string | string[];
|
|
366
|
+
extensionsFilters?: 'postgis'[];
|
|
367
|
+
schemaFilter?: string | string[];
|
|
368
|
+
schema?: string | string[];
|
|
369
|
+
verbose?: boolean;
|
|
370
|
+
strict?: boolean;
|
|
371
|
+
casing?: 'camelCase' | 'snake_case';
|
|
372
|
+
migrations?: {
|
|
373
|
+
table?: string;
|
|
374
|
+
schema?: string;
|
|
375
|
+
prefix?: Prefix;
|
|
376
|
+
};
|
|
377
|
+
introspect?: {
|
|
378
|
+
casing: 'camel' | 'preserve';
|
|
379
|
+
};
|
|
380
|
+
entities?: {
|
|
381
|
+
roles?: boolean | {
|
|
382
|
+
provider?: 'supabase' | 'neon' | string & {};
|
|
383
|
+
exclude?: string[];
|
|
384
|
+
include?: string[];
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
} & ({
|
|
388
|
+
dialect: Verify<Dialect, 'turso'>;
|
|
389
|
+
dbCredentials: {
|
|
390
|
+
url: string;
|
|
391
|
+
authToken?: string;
|
|
392
|
+
};
|
|
393
|
+
} | {
|
|
394
|
+
dialect: Verify<Dialect, 'sqlite'>;
|
|
395
|
+
dbCredentials: {
|
|
396
|
+
url: string;
|
|
397
|
+
};
|
|
398
|
+
} | {
|
|
399
|
+
dialect: Verify<Dialect, 'postgresql'>;
|
|
400
|
+
dbCredentials: ({
|
|
401
|
+
host: string;
|
|
402
|
+
port?: number;
|
|
403
|
+
user?: string;
|
|
404
|
+
password?: string;
|
|
405
|
+
database: string;
|
|
406
|
+
ssl?: boolean | 'require' | 'allow' | 'prefer' | 'verify-full' | ConnectionOptions;
|
|
407
|
+
} & {}) | {
|
|
408
|
+
url: string;
|
|
409
|
+
};
|
|
410
|
+
} | {
|
|
411
|
+
dialect: Verify<Dialect, 'postgresql'>;
|
|
412
|
+
driver: Verify<Driver, 'aws-data-api'>;
|
|
413
|
+
dbCredentials: {
|
|
414
|
+
database: string;
|
|
415
|
+
secretArn: string;
|
|
416
|
+
resourceArn: string;
|
|
417
|
+
};
|
|
418
|
+
} | {
|
|
419
|
+
dialect: Verify<Dialect, 'postgresql'>;
|
|
420
|
+
driver: Verify<Driver, 'pglite'>;
|
|
421
|
+
dbCredentials: {
|
|
422
|
+
url: string;
|
|
423
|
+
};
|
|
424
|
+
} | {
|
|
425
|
+
dialect: Verify<Dialect, 'mysql'>;
|
|
426
|
+
dbCredentials: {
|
|
427
|
+
host: string;
|
|
428
|
+
port?: number;
|
|
429
|
+
user?: string;
|
|
430
|
+
password?: string;
|
|
431
|
+
database: string;
|
|
432
|
+
ssl?: string | SslOptions;
|
|
433
|
+
} | {
|
|
434
|
+
url: string;
|
|
435
|
+
};
|
|
436
|
+
} | {
|
|
437
|
+
dialect: Verify<Dialect, 'sqlite'>;
|
|
438
|
+
driver: Verify<Driver, 'd1-http'>;
|
|
439
|
+
dbCredentials: {
|
|
440
|
+
accountId: string;
|
|
441
|
+
databaseId: string;
|
|
442
|
+
token: string;
|
|
443
|
+
};
|
|
444
|
+
} | {
|
|
445
|
+
dialect: Verify<Dialect, 'sqlite'>;
|
|
446
|
+
driver: Verify<Driver, 'expo'>;
|
|
447
|
+
} | {
|
|
448
|
+
dialect: Verify<Dialect, 'sqlite'>;
|
|
449
|
+
driver: Verify<Driver, 'durable-sqlite'>;
|
|
450
|
+
} | {} | {
|
|
451
|
+
dialect: Verify<Dialect, 'singlestore'>;
|
|
452
|
+
dbCredentials: {
|
|
453
|
+
host: string;
|
|
454
|
+
port?: number;
|
|
455
|
+
user?: string;
|
|
456
|
+
password?: string;
|
|
457
|
+
database: string;
|
|
458
|
+
ssl?: string | SslOptions;
|
|
459
|
+
} | {
|
|
460
|
+
url: string;
|
|
461
|
+
};
|
|
462
|
+
} | {
|
|
463
|
+
dialect: Verify<Dialect, 'gel'>;
|
|
464
|
+
dbCredentials?: {
|
|
465
|
+
tlsSecurity?: 'insecure' | 'no_host_verification' | 'strict' | 'default';
|
|
466
|
+
} & ({
|
|
467
|
+
url: string;
|
|
468
|
+
} | ({
|
|
469
|
+
host: string;
|
|
470
|
+
port?: number;
|
|
471
|
+
user?: string;
|
|
472
|
+
password?: string;
|
|
473
|
+
database: string;
|
|
474
|
+
}));
|
|
475
|
+
});
|
|
9
476
|
|
|
10
477
|
declare const schema$2: zod.ZodObject<{
|
|
11
478
|
version: zod.ZodLiteral<"5">;
|
|
@@ -2627,6 +3094,14 @@ declare const pushSchema: (imports: Record<string, unknown>, drizzleInstance: Pg
|
|
|
2627
3094
|
statementsToExecute: string[];
|
|
2628
3095
|
apply: () => Promise<void>;
|
|
2629
3096
|
}>;
|
|
3097
|
+
declare const startStudioPostgresServer: (imports: Record<string, unknown>, credentials: PostgresCredentials | {
|
|
3098
|
+
driver: "pglite";
|
|
3099
|
+
client: PGlite;
|
|
3100
|
+
}, options?: {
|
|
3101
|
+
host?: string;
|
|
3102
|
+
port?: number;
|
|
3103
|
+
casing?: CasingType;
|
|
3104
|
+
}) => Promise<void>;
|
|
2630
3105
|
declare const generateSQLiteDrizzleJson: (imports: Record<string, unknown>, prevId?: string, casing?: CasingType) => Promise<SQLiteSchema>;
|
|
2631
3106
|
declare const generateSQLiteMigration: (prev: DrizzleSQLiteSnapshotJSON, cur: DrizzleSQLiteSnapshotJSON) => Promise<string[]>;
|
|
2632
3107
|
declare const pushSQLiteSchema: (imports: Record<string, unknown>, drizzleInstance: LibSQLDatabase<any>) => Promise<{
|
|
@@ -2635,6 +3110,11 @@ declare const pushSQLiteSchema: (imports: Record<string, unknown>, drizzleInstan
|
|
|
2635
3110
|
statementsToExecute: string[];
|
|
2636
3111
|
apply: () => Promise<void>;
|
|
2637
3112
|
}>;
|
|
3113
|
+
declare const startStudioSQLiteServer: (imports: Record<string, unknown>, credentials: SqliteCredentials, options?: {
|
|
3114
|
+
host?: string;
|
|
3115
|
+
port?: number;
|
|
3116
|
+
casing?: CasingType;
|
|
3117
|
+
}) => Promise<void>;
|
|
2638
3118
|
declare const generateMySQLDrizzleJson: (imports: Record<string, unknown>, prevId?: string, casing?: CasingType) => Promise<MySqlSchema>;
|
|
2639
3119
|
declare const generateMySQLMigration: (prev: DrizzleMySQLSnapshotJSON, cur: DrizzleMySQLSnapshotJSON) => Promise<string[]>;
|
|
2640
3120
|
declare const pushMySQLSchema: (imports: Record<string, unknown>, drizzleInstance: MySql2Database<any>, databaseName: string) => Promise<{
|
|
@@ -2643,6 +3123,11 @@ declare const pushMySQLSchema: (imports: Record<string, unknown>, drizzleInstanc
|
|
|
2643
3123
|
statementsToExecute: string[];
|
|
2644
3124
|
apply: () => Promise<void>;
|
|
2645
3125
|
}>;
|
|
3126
|
+
declare const startStudioMySQLServer: (imports: Record<string, unknown>, credentials: MysqlCredentials, options?: {
|
|
3127
|
+
host?: string;
|
|
3128
|
+
port?: number;
|
|
3129
|
+
casing?: CasingType;
|
|
3130
|
+
}) => Promise<void>;
|
|
2646
3131
|
declare const generateSingleStoreDrizzleJson: (imports: Record<string, unknown>, prevId?: string, casing?: CasingType) => Promise<SingleStoreSchema>;
|
|
2647
3132
|
declare const generateSingleStoreMigration: (prev: DrizzleSingleStoreSnapshotJSON, cur: DrizzleSingleStoreSnapshotJSON) => Promise<string[]>;
|
|
2648
3133
|
declare const pushSingleStoreSchema: (imports: Record<string, unknown>, drizzleInstance: SingleStoreDriverDatabase<any>, databaseName: string) => Promise<{
|
|
@@ -2651,6 +3136,11 @@ declare const pushSingleStoreSchema: (imports: Record<string, unknown>, drizzleI
|
|
|
2651
3136
|
statementsToExecute: string[];
|
|
2652
3137
|
apply: () => Promise<void>;
|
|
2653
3138
|
}>;
|
|
3139
|
+
declare const startStudioSingleStoreServer: (imports: Record<string, unknown>, credentials: SingleStoreCredentials, options?: {
|
|
3140
|
+
host?: string;
|
|
3141
|
+
port?: number;
|
|
3142
|
+
casing?: CasingType;
|
|
3143
|
+
}) => Promise<void>;
|
|
2654
3144
|
declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
|
|
2655
3145
|
version: "7";
|
|
2656
3146
|
dialect: "postgresql";
|
|
@@ -2843,4 +3333,4 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
|
|
|
2843
3333
|
} | undefined;
|
|
2844
3334
|
} | Record<string, unknown>;
|
|
2845
3335
|
|
|
2846
|
-
export { type DrizzleMySQLSnapshotJSON, type DrizzleSQLiteSnapshotJSON, type DrizzleSingleStoreSnapshotJSON, type DrizzleSnapshotJSON, generateDrizzleJson, generateMigration, generateMySQLDrizzleJson, generateMySQLMigration, generateSQLiteDrizzleJson, generateSQLiteMigration, generateSingleStoreDrizzleJson, generateSingleStoreMigration, pushMySQLSchema, pushSQLiteSchema, pushSchema, pushSingleStoreSchema, upPgSnapshot };
|
|
3336
|
+
export { type DrizzleMySQLSnapshotJSON, type DrizzleSQLiteSnapshotJSON, type DrizzleSingleStoreSnapshotJSON, type DrizzleSnapshotJSON, generateDrizzleJson, generateMigration, generateMySQLDrizzleJson, generateMySQLMigration, generateSQLiteDrizzleJson, generateSQLiteMigration, generateSingleStoreDrizzleJson, generateSingleStoreMigration, pushMySQLSchema, pushSQLiteSchema, pushSchema, pushSingleStoreSchema, startStudioMySQLServer, startStudioPostgresServer, startStudioSQLiteServer, startStudioSingleStoreServer, upPgSnapshot };
|