drizzle-kit 0.20.17-4e262b7 → 0.20.17-7776aba

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. package/bin.cjs +22248 -23435
  2. package/cli/commands/migrate.d.ts +135 -152
  3. package/cli/commands/mysqlIntrospect.d.ts +79 -15
  4. package/cli/commands/mysqlPushUtils.d.ts +8 -4
  5. package/cli/commands/mysqlUp.d.ts +4 -0
  6. package/cli/commands/pgConnect.d.ts +5 -0
  7. package/cli/commands/pgIntrospect.d.ts +76 -12
  8. package/cli/commands/pgPushUtils.d.ts +6 -3
  9. package/cli/commands/pgUp.d.ts +4 -0
  10. package/cli/commands/sqliteIntrospect.d.ts +29 -26
  11. package/cli/commands/sqlitePushUtils.d.ts +10 -4
  12. package/cli/commands/sqliteUtils.d.ts +162 -0
  13. package/cli/commands/upFolders.d.ts +27 -0
  14. package/cli/commands/utils.d.ts +255 -39
  15. package/cli/validations/common.d.ts +7 -208
  16. package/cli/validations/mysql.d.ts +337 -7
  17. package/cli/validations/outputs.d.ts +0 -1
  18. package/cli/validations/pg.d.ts +405 -4
  19. package/cli/views.d.ts +5 -7
  20. package/drivers/index.d.ts +39 -0
  21. package/global.d.ts +1 -3
  22. package/index.d.mts +6 -8
  23. package/index.d.ts +6 -8
  24. package/index.js +0 -1
  25. package/introspect-mysql.d.ts +9 -0
  26. package/introspect-pg.d.ts +12 -0
  27. package/introspect-sqlite.d.ts +2 -2
  28. package/jsonDiffer.d.ts +29 -14
  29. package/jsonStatements.d.ts +11 -38
  30. package/package.json +52 -24
  31. package/payload.d.mts +5 -5
  32. package/payload.d.ts +5 -5
  33. package/payload.js +24222 -26044
  34. package/payload.mjs +19956 -21767
  35. package/schemaValidator.d.ts +286 -289
  36. package/serializer/mysqlImports.d.ts +7 -3
  37. package/serializer/mysqlSchema.d.ts +1323 -2454
  38. package/serializer/mysqlSerializer.d.ts +6 -6
  39. package/serializer/pgImports.d.ts +2 -2
  40. package/serializer/pgSchema.d.ts +1283 -1742
  41. package/serializer/pgSerializer.d.ts +2 -2
  42. package/serializer/sqliteImports.d.ts +4 -2
  43. package/serializer/sqliteSchema.d.ts +979 -553
  44. package/serializer/sqliteSerializer.d.ts +4 -4
  45. package/snapshotsDiffer.d.ts +1209 -2486
  46. package/utils/words.d.ts +1 -1
  47. package/utils-studio.d.mts +1 -0
  48. package/utils-studio.d.ts +1 -0
  49. package/utils-studio.js +849 -7058
  50. package/utils-studio.mjs +829 -7035
  51. package/utils.d.ts +141 -14
  52. package/utils.js +7161 -4625
  53. package/utils.mjs +7121 -4585
  54. package/cli/utils.d.ts +0 -12
  55. package/cli/validations/cli.d.ts +0 -169
  56. package/cli/validations/sqlite.d.ts +0 -34
@@ -1,5 +1,5 @@
1
1
  import { TypeOf } from "zod";
2
- export declare const postgresCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
2
+ export declare const pgConnectionCli: import("zod").ZodUnion<[import("zod").ZodObject<{
3
3
  driver: import("zod").ZodLiteral<"pg">;
4
4
  host: import("zod").ZodString;
5
5
  port: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -7,31 +7,432 @@ export declare const postgresCredentials: import("zod").ZodUnion<[import("zod").
7
7
  password: import("zod").ZodOptional<import("zod").ZodString>;
8
8
  database: import("zod").ZodString;
9
9
  ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
10
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"params">>;
10
11
  }, "strip", import("zod").ZodTypeAny, {
12
+ port?: number | undefined;
13
+ password?: string | undefined;
14
+ ssl?: boolean | undefined;
15
+ type: "params";
16
+ driver: "pg";
17
+ host: string;
18
+ user: string;
19
+ database: string;
20
+ }, {
21
+ type?: "params" | undefined;
22
+ port?: number | undefined;
23
+ user?: string | undefined;
24
+ password?: string | undefined;
25
+ ssl?: boolean | undefined;
26
+ driver: "pg";
27
+ host: string;
28
+ database: string;
29
+ }>, import("zod").ZodObject<{
30
+ driver: import("zod").ZodLiteral<"pg">;
31
+ connectionString: import("zod").ZodString;
32
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
33
+ }, "strip", import("zod").ZodTypeAny, {
34
+ type: "url";
35
+ driver: "pg";
36
+ connectionString: string;
37
+ }, {
38
+ type?: "url" | undefined;
39
+ driver: "pg";
40
+ connectionString: string;
41
+ }>]>;
42
+ export declare const pgConnectionConfig: import("zod").ZodUnion<[import("zod").ZodObject<{
43
+ driver: import("zod").ZodLiteral<"pg">;
44
+ dbCredentials: import("zod").ZodObject<{
45
+ host: import("zod").ZodString;
46
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
47
+ user: import("zod").ZodDefault<import("zod").ZodString>;
48
+ password: import("zod").ZodOptional<import("zod").ZodString>;
49
+ database: import("zod").ZodString;
50
+ ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
51
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"params">>>;
52
+ }, "strip", import("zod").ZodTypeAny, {
53
+ type?: "params" | undefined;
54
+ port?: number | undefined;
55
+ password?: string | undefined;
56
+ ssl?: boolean | undefined;
57
+ host: string;
58
+ user: string;
59
+ database: string;
60
+ }, {
61
+ type?: "params" | undefined;
62
+ port?: number | undefined;
63
+ user?: string | undefined;
64
+ password?: string | undefined;
65
+ ssl?: boolean | undefined;
66
+ host: string;
67
+ database: string;
68
+ }>;
69
+ }, "strip", import("zod").ZodTypeAny, {
70
+ driver: "pg";
71
+ dbCredentials: {
72
+ type?: "params" | undefined;
73
+ port?: number | undefined;
74
+ password?: string | undefined;
75
+ ssl?: boolean | undefined;
76
+ host: string;
77
+ user: string;
78
+ database: string;
79
+ };
80
+ }, {
81
+ driver: "pg";
82
+ dbCredentials: {
83
+ type?: "params" | undefined;
84
+ port?: number | undefined;
85
+ user?: string | undefined;
86
+ password?: string | undefined;
87
+ ssl?: boolean | undefined;
88
+ host: string;
89
+ database: string;
90
+ };
91
+ }>, import("zod").ZodObject<{
92
+ driver: import("zod").ZodLiteral<"pg">;
93
+ dbCredentials: import("zod").ZodObject<{
94
+ connectionString: import("zod").ZodString;
95
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"url">>>;
96
+ }, "strip", import("zod").ZodTypeAny, {
97
+ type?: "url" | undefined;
98
+ connectionString: string;
99
+ }, {
100
+ type?: "url" | undefined;
101
+ connectionString: string;
102
+ }>;
103
+ }, "strip", import("zod").ZodTypeAny, {
104
+ driver: "pg";
105
+ dbCredentials: {
106
+ type?: "url" | undefined;
107
+ connectionString: string;
108
+ };
109
+ }, {
110
+ driver: "pg";
111
+ dbCredentials: {
112
+ type?: "url" | undefined;
113
+ connectionString: string;
114
+ };
115
+ }>]>;
116
+ export declare const pgConfigIntrospectSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
117
+ schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
118
+ out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
119
+ breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
120
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
121
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
122
+ introspect: import("zod").ZodDefault<import("zod").ZodObject<{
123
+ casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
124
+ }, "strip", import("zod").ZodTypeAny, {
125
+ casing: "camel" | "preserve";
126
+ }, {
127
+ casing?: "camel" | "preserve" | undefined;
128
+ }>>;
129
+ }, "strip", import("zod").ZodTypeAny, {
130
+ schema?: string | string[] | undefined;
131
+ tablesFilter?: string | string[] | undefined;
132
+ out: string;
133
+ breakpoints: boolean;
134
+ schemaFilter: string | string[];
135
+ introspect: {
136
+ casing: "camel" | "preserve";
137
+ };
138
+ }, {
139
+ schema?: string | string[] | undefined;
140
+ out?: string | undefined;
141
+ breakpoints?: boolean | undefined;
142
+ tablesFilter?: string | string[] | undefined;
143
+ schemaFilter?: string | string[] | undefined;
144
+ introspect?: {
145
+ casing?: "camel" | "preserve" | undefined;
146
+ } | undefined;
147
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
148
+ driver: import("zod").ZodLiteral<"pg">;
149
+ dbCredentials: import("zod").ZodObject<{
150
+ host: import("zod").ZodString;
151
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
152
+ user: import("zod").ZodDefault<import("zod").ZodString>;
153
+ password: import("zod").ZodOptional<import("zod").ZodString>;
154
+ database: import("zod").ZodString;
155
+ ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
156
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"params">>>;
157
+ }, "strip", import("zod").ZodTypeAny, {
158
+ type?: "params" | undefined;
159
+ port?: number | undefined;
160
+ password?: string | undefined;
161
+ ssl?: boolean | undefined;
162
+ host: string;
163
+ user: string;
164
+ database: string;
165
+ }, {
166
+ type?: "params" | undefined;
167
+ port?: number | undefined;
168
+ user?: string | undefined;
169
+ password?: string | undefined;
170
+ ssl?: boolean | undefined;
171
+ host: string;
172
+ database: string;
173
+ }>;
174
+ }, "strip", import("zod").ZodTypeAny, {
175
+ driver: "pg";
176
+ dbCredentials: {
177
+ type?: "params" | undefined;
178
+ port?: number | undefined;
179
+ password?: string | undefined;
180
+ ssl?: boolean | undefined;
181
+ host: string;
182
+ user: string;
183
+ database: string;
184
+ };
185
+ }, {
186
+ driver: "pg";
187
+ dbCredentials: {
188
+ type?: "params" | undefined;
189
+ port?: number | undefined;
190
+ user?: string | undefined;
191
+ password?: string | undefined;
192
+ ssl?: boolean | undefined;
193
+ host: string;
194
+ database: string;
195
+ };
196
+ }>, import("zod").ZodObject<{
197
+ driver: import("zod").ZodLiteral<"pg">;
198
+ dbCredentials: import("zod").ZodObject<{
199
+ connectionString: import("zod").ZodString;
200
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"url">>>;
201
+ }, "strip", import("zod").ZodTypeAny, {
202
+ type?: "url" | undefined;
203
+ connectionString: string;
204
+ }, {
205
+ type?: "url" | undefined;
206
+ connectionString: string;
207
+ }>;
208
+ }, "strip", import("zod").ZodTypeAny, {
209
+ driver: "pg";
210
+ dbCredentials: {
211
+ type?: "url" | undefined;
212
+ connectionString: string;
213
+ };
214
+ }, {
215
+ driver: "pg";
216
+ dbCredentials: {
217
+ type?: "url" | undefined;
218
+ connectionString: string;
219
+ };
220
+ }>]>>;
221
+ export declare const pgCliIntrospectParams: import("zod").ZodIntersection<import("zod").ZodObject<{
222
+ schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
223
+ out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
224
+ breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
225
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
226
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
227
+ introspectCasing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
228
+ }, "strip", import("zod").ZodTypeAny, {
229
+ schema?: string | string[] | undefined;
230
+ tablesFilter?: string | string[] | undefined;
231
+ out: string;
232
+ breakpoints: boolean;
233
+ schemaFilter: string | string[];
234
+ introspectCasing: "camel" | "preserve";
235
+ }, {
236
+ schema?: string | string[] | undefined;
237
+ out?: string | undefined;
238
+ breakpoints?: boolean | undefined;
239
+ tablesFilter?: string | string[] | undefined;
240
+ schemaFilter?: string | string[] | undefined;
241
+ introspectCasing?: "camel" | "preserve" | undefined;
242
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
243
+ driver: import("zod").ZodLiteral<"pg">;
244
+ host: import("zod").ZodString;
245
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
246
+ user: import("zod").ZodDefault<import("zod").ZodString>;
247
+ password: import("zod").ZodOptional<import("zod").ZodString>;
248
+ database: import("zod").ZodString;
249
+ ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
250
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"params">>;
251
+ }, "strip", import("zod").ZodTypeAny, {
252
+ port?: number | undefined;
253
+ password?: string | undefined;
254
+ ssl?: boolean | undefined;
255
+ type: "params";
11
256
  driver: "pg";
12
257
  host: string;
13
258
  user: string;
14
259
  database: string;
260
+ }, {
261
+ type?: "params" | undefined;
15
262
  port?: number | undefined;
263
+ user?: string | undefined;
16
264
  password?: string | undefined;
17
265
  ssl?: boolean | undefined;
266
+ driver: "pg";
267
+ host: string;
268
+ database: string;
269
+ }>, import("zod").ZodObject<{
270
+ driver: import("zod").ZodLiteral<"pg">;
271
+ connectionString: import("zod").ZodString;
272
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
273
+ }, "strip", import("zod").ZodTypeAny, {
274
+ type: "url";
275
+ driver: "pg";
276
+ connectionString: string;
18
277
  }, {
278
+ type?: "url" | undefined;
279
+ driver: "pg";
280
+ connectionString: string;
281
+ }>]>>;
282
+ export declare const pgCliPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
283
+ schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
284
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
285
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
286
+ verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
287
+ strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
288
+ }, "strip", import("zod").ZodTypeAny, {
289
+ tablesFilter?: string | string[] | undefined;
290
+ strict: boolean;
291
+ schema: string | string[];
292
+ schemaFilter: string | string[];
293
+ verbose: boolean;
294
+ }, {
295
+ strict?: boolean | undefined;
296
+ tablesFilter?: string | string[] | undefined;
297
+ schemaFilter?: string | string[] | undefined;
298
+ verbose?: boolean | undefined;
299
+ schema: string | string[];
300
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
301
+ driver: import("zod").ZodLiteral<"pg">;
302
+ host: import("zod").ZodString;
303
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
304
+ user: import("zod").ZodDefault<import("zod").ZodString>;
305
+ password: import("zod").ZodOptional<import("zod").ZodString>;
306
+ database: import("zod").ZodString;
307
+ ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
308
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"params">>;
309
+ }, "strip", import("zod").ZodTypeAny, {
310
+ port?: number | undefined;
311
+ password?: string | undefined;
312
+ ssl?: boolean | undefined;
313
+ type: "params";
19
314
  driver: "pg";
20
315
  host: string;
316
+ user: string;
21
317
  database: string;
318
+ }, {
319
+ type?: "params" | undefined;
22
320
  port?: number | undefined;
23
321
  user?: string | undefined;
24
322
  password?: string | undefined;
25
323
  ssl?: boolean | undefined;
324
+ driver: "pg";
325
+ host: string;
326
+ database: string;
26
327
  }>, import("zod").ZodObject<{
27
328
  driver: import("zod").ZodLiteral<"pg">;
28
329
  connectionString: import("zod").ZodString;
330
+ type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
29
331
  }, "strip", import("zod").ZodTypeAny, {
332
+ type: "url";
30
333
  driver: "pg";
31
334
  connectionString: string;
32
335
  }, {
336
+ type?: "url" | undefined;
33
337
  driver: "pg";
34
338
  connectionString: string;
35
- }>]>;
36
- export type PostgresCredentials = TypeOf<typeof postgresCredentials>;
37
- export declare const printConfigConnectionIssues: (options: Record<string, unknown>) => void;
339
+ }>]>>;
340
+ export declare const pgConfigPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
341
+ schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
342
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
343
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
344
+ verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
345
+ strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
346
+ }, "strip", import("zod").ZodTypeAny, {
347
+ tablesFilter?: string | string[] | undefined;
348
+ strict: boolean;
349
+ schema: string | string[];
350
+ schemaFilter: string | string[];
351
+ verbose: boolean;
352
+ }, {
353
+ strict?: boolean | undefined;
354
+ tablesFilter?: string | string[] | undefined;
355
+ schemaFilter?: string | string[] | undefined;
356
+ verbose?: boolean | undefined;
357
+ schema: string | string[];
358
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
359
+ driver: import("zod").ZodLiteral<"pg">;
360
+ dbCredentials: import("zod").ZodObject<{
361
+ host: import("zod").ZodString;
362
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
363
+ user: import("zod").ZodDefault<import("zod").ZodString>;
364
+ password: import("zod").ZodOptional<import("zod").ZodString>;
365
+ database: import("zod").ZodString;
366
+ ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
367
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"params">>>;
368
+ }, "strip", import("zod").ZodTypeAny, {
369
+ type?: "params" | undefined;
370
+ port?: number | undefined;
371
+ password?: string | undefined;
372
+ ssl?: boolean | undefined;
373
+ host: string;
374
+ user: string;
375
+ database: string;
376
+ }, {
377
+ type?: "params" | undefined;
378
+ port?: number | undefined;
379
+ user?: string | undefined;
380
+ password?: string | undefined;
381
+ ssl?: boolean | undefined;
382
+ host: string;
383
+ database: string;
384
+ }>;
385
+ }, "strip", import("zod").ZodTypeAny, {
386
+ driver: "pg";
387
+ dbCredentials: {
388
+ type?: "params" | undefined;
389
+ port?: number | undefined;
390
+ password?: string | undefined;
391
+ ssl?: boolean | undefined;
392
+ host: string;
393
+ user: string;
394
+ database: string;
395
+ };
396
+ }, {
397
+ driver: "pg";
398
+ dbCredentials: {
399
+ type?: "params" | undefined;
400
+ port?: number | undefined;
401
+ user?: string | undefined;
402
+ password?: string | undefined;
403
+ ssl?: boolean | undefined;
404
+ host: string;
405
+ database: string;
406
+ };
407
+ }>, import("zod").ZodObject<{
408
+ driver: import("zod").ZodLiteral<"pg">;
409
+ dbCredentials: import("zod").ZodObject<{
410
+ connectionString: import("zod").ZodString;
411
+ type: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodLiteral<"url">>>;
412
+ }, "strip", import("zod").ZodTypeAny, {
413
+ type?: "url" | undefined;
414
+ connectionString: string;
415
+ }, {
416
+ type?: "url" | undefined;
417
+ connectionString: string;
418
+ }>;
419
+ }, "strip", import("zod").ZodTypeAny, {
420
+ driver: "pg";
421
+ dbCredentials: {
422
+ type?: "url" | undefined;
423
+ connectionString: string;
424
+ };
425
+ }, {
426
+ driver: "pg";
427
+ dbCredentials: {
428
+ type?: "url" | undefined;
429
+ connectionString: string;
430
+ };
431
+ }>]>>;
432
+ export type PgPushConfig = TypeOf<typeof pgConfigPushParams>;
433
+ export type PgConfigIntrospect = TypeOf<typeof pgConfigIntrospectSchema>;
434
+ export type PgCliIntrospect = TypeOf<typeof pgCliIntrospectParams>;
435
+ export type PgConnectionConfig = TypeOf<typeof pgConnectionConfig>;
436
+ export declare const printConfigConnectionIssues: (options: any) => void;
437
+ export declare const validatePgIntrospect: (options: Record<string, any>) => Promise<PgConfigIntrospect>;
438
+ export declare const validatePgPush: (options: Record<string, unknown>) => Promise<PgPushConfig>;
package/cli/views.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Prompt, TaskView } from "hanji";
2
- import type { CommonSchema } from "../schemaValidator";
3
- import type { Named, NamedWithSchema } from "./commands/migrate";
2
+ import type { CommonSchema } from "src/schemaValidator";
3
+ import type { Named } from "./commands/migrate";
4
4
  export declare const warning: (msg: string) => void;
5
5
  export declare const err: (msg: string) => void;
6
6
  export declare const info: (msg: string, greyMsg?: string) => string;
@@ -10,7 +10,7 @@ export interface RenamePropmtItem<T> {
10
10
  from: T;
11
11
  to: T;
12
12
  }
13
- export declare const isRenamePromptItem: <T extends Named>(item: RenamePropmtItem<T> | T) => item is RenamePropmtItem<T>;
13
+ export declare const isRenamePromptItem: <T extends Named>(item: T | RenamePropmtItem<T>) => item is RenamePropmtItem<T>;
14
14
  export declare class ResolveColumnSelect<T extends Named> extends Prompt<RenamePropmtItem<T> | T> {
15
15
  private readonly tableName;
16
16
  private readonly base;
@@ -19,12 +19,10 @@ export declare class ResolveColumnSelect<T extends Named> extends Prompt<RenameP
19
19
  render(status: "idle" | "submitted" | "aborted"): string;
20
20
  result(): RenamePropmtItem<T> | T;
21
21
  }
22
- export declare const tableKey: (it: NamedWithSchema) => string;
23
- export declare class ResolveSelect<T extends NamedWithSchema> extends Prompt<RenamePropmtItem<T> | T> {
22
+ export declare class ResolveTableSelect<T extends Named> extends Prompt<RenamePropmtItem<T> | T> {
24
23
  private readonly base;
25
- private readonly entityType;
26
24
  private readonly state;
27
- constructor(base: T, data: (RenamePropmtItem<T> | T)[], entityType: "table" | "enum");
25
+ constructor(base: Named, data: (RenamePropmtItem<T> | T)[]);
28
26
  render(status: "idle" | "submitted" | "aborted"): string;
29
27
  result(): RenamePropmtItem<T> | T;
30
28
  }
@@ -0,0 +1,39 @@
1
+ import type { Client } from "@libsql/client";
2
+ import { BetterSQLite3Database } from "drizzle-orm/better-sqlite3";
3
+ import { MySql2Database } from "drizzle-orm/mysql2";
4
+ import type { PgDatabase } from "drizzle-orm/pg-core";
5
+ import type { Client as PgClient } from "pg";
6
+ export declare abstract class DrizzleDbClient<T = any> {
7
+ protected db: T;
8
+ constructor(db: T);
9
+ abstract query<K = any>(query: string, values?: any[]): Promise<K[]>;
10
+ abstract run(query: string): Promise<void>;
11
+ }
12
+ export declare class DrizzleORMPgClient extends DrizzleDbClient<PgDatabase<any>> {
13
+ query<K = any>(query: string, values?: any[] | undefined): Promise<K[]>;
14
+ run(query: string): Promise<void>;
15
+ }
16
+ export declare class DrizzleORMMySQLClient extends DrizzleDbClient<MySql2Database<any>> {
17
+ query<K = any>(query: string, values?: any[] | undefined): Promise<K[]>;
18
+ run(query: string): Promise<void>;
19
+ }
20
+ export declare class DrizzleORMSQLiteClient extends DrizzleDbClient<BetterSQLite3Database<any>> {
21
+ query<K = any>(query: string, values?: any[] | undefined): Promise<K[]>;
22
+ run(query: string): Promise<void>;
23
+ }
24
+ export declare class BetterSqlite extends DrizzleDbClient {
25
+ run(query: string): Promise<void>;
26
+ query(query: string): Promise<any[]>;
27
+ }
28
+ export declare class MySQL2Client extends DrizzleDbClient {
29
+ run(query: string): Promise<void>;
30
+ query(query: string): Promise<any>;
31
+ }
32
+ export declare class TursoSqlite extends DrizzleDbClient<Client> {
33
+ run(query: string): Promise<void>;
34
+ query(query: string): Promise<any[]>;
35
+ }
36
+ export declare class PgPostgres extends DrizzleDbClient<PgClient> {
37
+ query<K = any>(query: string, values?: any[]): Promise<K[]>;
38
+ run(query: string): Promise<void>;
39
+ }
package/global.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  export declare const originUUID = "00000000-0000-0000-0000-000000000000";
2
- export declare const snapshotVersion = "6";
2
+ export declare const snapshotVersion = "5";
3
3
  export declare function assertUnreachable(x: never): never;
4
4
  export declare const mapValues: <IN, OUT>(obj: Record<string, IN>, map: (input: IN) => OUT) => Record<string, OUT>;
5
- export declare const mapKeys: <T>(obj: Record<string, T>, map: (key: string, value: T) => string) => Record<string, T>;
6
- export declare const mapEntries: <T>(obj: Record<string, T>, map: (key: string, value: T) => [string, T]) => Record<string, T>;
package/index.d.mts CHANGED
@@ -1,4 +1,3 @@
1
- import { Dialect } from "./schemaValidator";
2
1
  export type DbConnection = {
3
2
  driver: "turso";
4
3
  dbCredentials: {
@@ -46,14 +45,13 @@ export type DbConnection = {
46
45
  };
47
46
  };
48
47
  export type Config = {
49
- dialect: Dialect;
50
- out?: string;
51
- breakpoints?: boolean;
52
- tablesFilter?: string | string[];
53
- schemaFilter?: string | string[];
48
+ out?: string | undefined;
49
+ breakpoints?: boolean | undefined;
50
+ tablesFilter?: string | string[] | undefined;
51
+ schemaFilter?: string | string[] | undefined;
54
52
  schema?: string | string[];
55
- verbose?: boolean;
56
- strict?: boolean;
53
+ verbose?: boolean | undefined;
54
+ strict?: boolean | undefined;
57
55
  } & {
58
56
  introspect?: {
59
57
  casing: "camel" | "preserve";
package/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { Dialect } from "./schemaValidator";
2
1
  export type DbConnection = {
3
2
  driver: "turso";
4
3
  dbCredentials: {
@@ -46,14 +45,13 @@ export type DbConnection = {
46
45
  };
47
46
  };
48
47
  export type Config = {
49
- dialect: Dialect;
50
- out?: string;
51
- breakpoints?: boolean;
52
- tablesFilter?: string | string[];
53
- schemaFilter?: string | string[];
48
+ out?: string | undefined;
49
+ breakpoints?: boolean | undefined;
50
+ tablesFilter?: string | string[] | undefined;
51
+ schemaFilter?: string | string[] | undefined;
54
52
  schema?: string | string[];
55
- verbose?: boolean;
56
- strict?: boolean;
53
+ verbose?: boolean | undefined;
54
+ strict?: boolean | undefined;
57
55
  } & {
58
56
  introspect?: {
59
57
  casing: "camel" | "preserve";
package/index.js CHANGED
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var __defProp = Object.defineProperty;
3
2
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
@@ -0,0 +1,9 @@
1
+ import "./@types/utils";
2
+ import { ConfigIntrospectCasing } from "./cli/commands/utils";
3
+ import { MySqlSchemaInternal } from "./serializer/mysqlSchema";
4
+ export declare const schemaToTypeScript: (schema: MySqlSchemaInternal, casing: ConfigIntrospectCasing["casing"]) => {
5
+ file: string;
6
+ imports: string;
7
+ decalrations: string;
8
+ schemaEntry: string;
9
+ };
@@ -0,0 +1,12 @@
1
+ import { AnyPgTable } from "drizzle-orm/pg-core";
2
+ import { Relation, Relations } from "drizzle-orm/relations";
3
+ import "./@types/utils";
4
+ import { ConfigIntrospectCasing } from "./cli/commands/utils";
5
+ import { PgSchemaInternal } from "./serializer/pgSchema";
6
+ export declare const relationsToTypeScript: (schema: Record<string, Record<string, AnyPgTable<{}>>>, relations: Record<string, Relations<string, Record<string, Relation<string>>>>) => string;
7
+ export declare const schemaToTypeScript: (schema: PgSchemaInternal, casing: ConfigIntrospectCasing) => {
8
+ file: string;
9
+ imports: string;
10
+ decalrations: string;
11
+ schemaEntry: string;
12
+ };
@@ -1,8 +1,8 @@
1
1
  import "./@types/utils";
2
- import type { Casing } from "./cli/validations/common";
2
+ import type { ConfigIntrospectCasing } from "./cli/commands/utils";
3
3
  import type { SQLiteSchemaInternal } from "./serializer/sqliteSchema";
4
4
  export declare const indexName: (tableName: string, columns: string[]) => string;
5
- export declare const schemaToTypeScript: (schema: SQLiteSchemaInternal, casing: Casing) => {
5
+ export declare const schemaToTypeScript: (schema: SQLiteSchemaInternal, casing: ConfigIntrospectCasing["casing"]) => {
6
6
  file: string;
7
7
  imports: string;
8
8
  decalrations: string;