drizzle-kit 0.20.16 → 0.20.17-7f33638

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 +28192 -26852
  2. package/cli/commands/migrate.d.ts +152 -135
  3. package/cli/commands/mysqlIntrospect.d.ts +15 -79
  4. package/cli/commands/mysqlPushUtils.d.ts +4 -8
  5. package/cli/commands/pgIntrospect.d.ts +12 -76
  6. package/cli/commands/pgPushUtils.d.ts +3 -6
  7. package/cli/commands/sqliteIntrospect.d.ts +26 -29
  8. package/cli/commands/sqlitePushUtils.d.ts +4 -10
  9. package/cli/commands/utils.d.ts +39 -255
  10. package/cli/utils.d.ts +12 -0
  11. package/cli/validations/cli.d.ts +169 -0
  12. package/cli/validations/common.d.ts +208 -7
  13. package/cli/validations/mysql.d.ts +7 -337
  14. package/cli/validations/outputs.d.ts +1 -0
  15. package/cli/validations/pg.d.ts +4 -405
  16. package/cli/validations/sqlite.d.ts +34 -0
  17. package/cli/views.d.ts +7 -5
  18. package/global.d.ts +3 -1
  19. package/index.d.mts +8 -6
  20. package/index.d.ts +8 -6
  21. package/index.js +1 -0
  22. package/introspect-sqlite.d.ts +2 -2
  23. package/jsonDiffer.d.ts +14 -29
  24. package/jsonStatements.d.ts +38 -11
  25. package/package.json +24 -52
  26. package/payload.d.mts +5 -5
  27. package/payload.d.ts +5 -5
  28. package/payload.js +34054 -32232
  29. package/payload.mjs +26477 -24666
  30. package/schemaValidator.d.ts +289 -286
  31. package/serializer/mysqlImports.d.ts +3 -7
  32. package/serializer/mysqlSchema.d.ts +2501 -1370
  33. package/serializer/mysqlSerializer.d.ts +6 -6
  34. package/serializer/pgImports.d.ts +2 -2
  35. package/serializer/pgSchema.d.ts +1741 -1282
  36. package/serializer/pgSerializer.d.ts +2 -2
  37. package/serializer/sqliteImports.d.ts +2 -4
  38. package/serializer/sqliteSchema.d.ts +553 -979
  39. package/serializer/sqliteSerializer.d.ts +4 -4
  40. package/snapshotsDiffer.d.ts +2486 -1209
  41. package/utils/words.d.ts +1 -1
  42. package/utils-studio.d.mts +0 -1
  43. package/utils-studio.d.ts +0 -1
  44. package/utils-studio.js +7056 -847
  45. package/utils-studio.mjs +7034 -828
  46. package/utils.d.ts +14 -141
  47. package/utils.js +4381 -6917
  48. package/utils.mjs +4594 -7130
  49. package/cli/commands/mysqlUp.d.ts +0 -4
  50. package/cli/commands/pgConnect.d.ts +0 -5
  51. package/cli/commands/pgUp.d.ts +0 -4
  52. package/cli/commands/sqliteUtils.d.ts +0 -162
  53. package/cli/commands/upFolders.d.ts +0 -27
  54. package/drivers/index.d.ts +0 -39
  55. package/introspect-mysql.d.ts +0 -9
  56. package/introspect-pg.d.ts +0 -12
@@ -1,5 +1,5 @@
1
1
  import { TypeOf } from "zod";
2
- export declare const pgConnectionCli: import("zod").ZodUnion<[import("zod").ZodObject<{
2
+ export declare const postgresCredentials: 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,432 +7,31 @@ export declare const pgConnectionCli: import("zod").ZodUnion<[import("zod").ZodO
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">>;
11
10
  }, "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";
256
11
  driver: "pg";
257
12
  host: string;
258
13
  user: string;
259
14
  database: string;
260
- }, {
261
- type?: "params" | undefined;
262
15
  port?: number | undefined;
263
- user?: string | undefined;
264
16
  password?: string | undefined;
265
17
  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;
277
18
  }, {
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";
314
19
  driver: "pg";
315
20
  host: string;
316
- user: string;
317
21
  database: string;
318
- }, {
319
- type?: "params" | undefined;
320
22
  port?: number | undefined;
321
23
  user?: string | undefined;
322
24
  password?: string | undefined;
323
25
  ssl?: boolean | undefined;
324
- driver: "pg";
325
- host: string;
326
- database: string;
327
26
  }>, import("zod").ZodObject<{
328
27
  driver: import("zod").ZodLiteral<"pg">;
329
28
  connectionString: import("zod").ZodString;
330
- type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
331
29
  }, "strip", import("zod").ZodTypeAny, {
332
- type: "url";
333
30
  driver: "pg";
334
31
  connectionString: string;
335
32
  }, {
336
- type?: "url" | undefined;
337
33
  driver: "pg";
338
34
  connectionString: string;
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>;
35
+ }>]>;
36
+ export type PostgresCredentials = TypeOf<typeof postgresCredentials>;
37
+ export declare const printConfigConnectionIssues: (options: Record<string, unknown>) => void;
@@ -0,0 +1,34 @@
1
+ import { TypeOf } from "zod";
2
+ export declare const sqliteCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
3
+ driver: import("zod").ZodLiteral<"turso">;
4
+ url: import("zod").ZodString;
5
+ authToken: import("zod").ZodString;
6
+ }, "strip", import("zod").ZodTypeAny, {
7
+ url: string;
8
+ driver: "turso";
9
+ authToken: string;
10
+ }, {
11
+ url: string;
12
+ driver: "turso";
13
+ authToken: string;
14
+ }>, import("zod").ZodObject<{
15
+ driver: import("zod").ZodLiteral<"better-sqlite">;
16
+ url: import("zod").ZodString;
17
+ }, "strip", import("zod").ZodTypeAny, {
18
+ url: string;
19
+ driver: "better-sqlite";
20
+ }, {
21
+ url: string;
22
+ driver: "better-sqlite";
23
+ }>, import("zod").ZodObject<{
24
+ driver: import("zod").ZodLiteral<"libsql">;
25
+ url: import("zod").ZodString;
26
+ }, "strip", import("zod").ZodTypeAny, {
27
+ url: string;
28
+ driver: "libsql";
29
+ }, {
30
+ url: string;
31
+ driver: "libsql";
32
+ }>]>;
33
+ export type SqliteCredentials = TypeOf<typeof sqliteCredentials>;
34
+ export declare const printConfigConnectionIssues: (options: Record<string, unknown>) => void;
package/cli/views.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Prompt, TaskView } from "hanji";
2
- import type { CommonSchema } from "src/schemaValidator";
3
- import type { Named } from "./commands/migrate";
2
+ import type { CommonSchema } from "../schemaValidator";
3
+ import type { Named, NamedWithSchema } 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: T | RenamePropmtItem<T>) => item is RenamePropmtItem<T>;
13
+ export declare const isRenamePromptItem: <T extends Named>(item: RenamePropmtItem<T> | 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,10 +19,12 @@ 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 class ResolveTableSelect<T extends Named> extends Prompt<RenamePropmtItem<T> | T> {
22
+ export declare const tableKey: (it: NamedWithSchema) => string;
23
+ export declare class ResolveSelect<T extends NamedWithSchema> extends Prompt<RenamePropmtItem<T> | T> {
23
24
  private readonly base;
25
+ private readonly entityType;
24
26
  private readonly state;
25
- constructor(base: Named, data: (RenamePropmtItem<T> | T)[]);
27
+ constructor(base: T, data: (RenamePropmtItem<T> | T)[], entityType: "table" | "enum");
26
28
  render(status: "idle" | "submitted" | "aborted"): string;
27
29
  result(): RenamePropmtItem<T> | T;
28
30
  }
package/global.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export declare const originUUID = "00000000-0000-0000-0000-000000000000";
2
- export declare const snapshotVersion = "5";
2
+ export declare const snapshotVersion = "6";
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,3 +1,4 @@
1
+ import { Dialect } from "./schemaValidator";
1
2
  export type DbConnection = {
2
3
  driver: "turso";
3
4
  dbCredentials: {
@@ -45,13 +46,14 @@ export type DbConnection = {
45
46
  };
46
47
  };
47
48
  export type Config = {
48
- out?: string | undefined;
49
- breakpoints?: boolean | undefined;
50
- tablesFilter?: string | string[] | undefined;
51
- schemaFilter?: string | string[] | undefined;
49
+ dialect?: Dialect;
50
+ out?: string;
51
+ breakpoints?: boolean;
52
+ tablesFilter?: string | string[];
53
+ schemaFilter?: string | string[];
52
54
  schema?: string | string[];
53
- verbose?: boolean | undefined;
54
- strict?: boolean | undefined;
55
+ verbose?: boolean;
56
+ strict?: boolean;
55
57
  } & {
56
58
  introspect?: {
57
59
  casing: "camel" | "preserve";
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import { Dialect } from "./schemaValidator";
1
2
  export type DbConnection = {
2
3
  driver: "turso";
3
4
  dbCredentials: {
@@ -45,13 +46,14 @@ export type DbConnection = {
45
46
  };
46
47
  };
47
48
  export type Config = {
48
- out?: string | undefined;
49
- breakpoints?: boolean | undefined;
50
- tablesFilter?: string | string[] | undefined;
51
- schemaFilter?: string | string[] | undefined;
49
+ dialect?: Dialect;
50
+ out?: string;
51
+ breakpoints?: boolean;
52
+ tablesFilter?: string | string[];
53
+ schemaFilter?: string | string[];
52
54
  schema?: string | string[];
53
- verbose?: boolean | undefined;
54
- strict?: boolean | undefined;
55
+ verbose?: boolean;
56
+ strict?: boolean;
55
57
  } & {
56
58
  introspect?: {
57
59
  casing: "camel" | "preserve";
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __defProp = Object.defineProperty;
2
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
@@ -1,8 +1,8 @@
1
1
  import "./@types/utils";
2
- import type { ConfigIntrospectCasing } from "./cli/commands/utils";
2
+ import type { Casing } from "./cli/validations/common";
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: ConfigIntrospectCasing["casing"]) => {
5
+ export declare const schemaToTypeScript: (schema: SQLiteSchemaInternal, casing: Casing) => {
6
6
  file: string;
7
7
  imports: string;
8
8
  decalrations: string;
package/jsonDiffer.d.ts CHANGED
@@ -1,25 +1,16 @@
1
1
  export function diffForRenamedTables(pairs: any): any;
2
2
  export function diffForRenamedColumn(t1: any, t2: any): any;
3
+ export function diffSchemasOrTables(left: any, right: any): {
4
+ added: any[];
5
+ deleted: any[];
6
+ };
7
+ export function diffColumns(left: any, right: any): {
8
+ [k: string]: any;
9
+ };
3
10
  export function applyJsonDiff(json1: any, json2: any): {
4
- addedTables?: undefined;
5
- deletedTables?: undefined;
6
- alteredTablesWithColumns?: undefined;
7
- addedEnums?: undefined;
8
- deletedEnums?: undefined;
9
- alteredEnums?: undefined;
10
- addedSchemas?: undefined;
11
- deletedSchemas?: undefined;
12
- } | {
13
- addedTables: any[];
14
- deletedTables: any[];
15
11
  alteredTablesWithColumns: {
16
12
  name: any;
17
- schema: {
18
- type: string;
19
- value: any;
20
- };
21
- deleted: any[];
22
- added: any[];
13
+ schema: any;
23
14
  altered: any[];
24
15
  addedIndexes: {
25
16
  [k: string]: any;
@@ -58,19 +49,13 @@ export function applyJsonDiff(json1: any, json2: any): {
58
49
  [k: string]: any;
59
50
  };
60
51
  }[];
61
- addedEnums: {
62
- name: any;
63
- values: any[];
64
- }[];
65
- deletedEnums: {
66
- name: any;
67
- values: any[];
68
- }[];
69
52
  alteredEnums: {
70
- name: string;
71
- addedValues: any[];
53
+ name: any;
54
+ schema: any;
55
+ addedValues: {
56
+ before: any;
57
+ value: any;
58
+ }[];
72
59
  deletedValues: any[];
73
60
  }[];
74
- addedSchemas: any[];
75
- deletedSchemas: any[];
76
61
  };