drizzle-kit 0.20.16 → 0.20.17-14a4eaa

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.

Potentially problematic release.


This version of drizzle-kit might be problematic. Click here for more details.

Files changed (58) hide show
  1. package/bin.cjs +87694 -47618
  2. package/cli/commands/migrate.d.ts +123 -106
  3. package/cli/commands/mysqlIntrospect.d.ts +2 -71
  4. package/cli/commands/mysqlPushUtils.d.ts +4 -8
  5. package/cli/commands/pgIntrospect.d.ts +7 -71
  6. package/cli/commands/pgPushUtils.d.ts +3 -6
  7. package/cli/commands/sqliteIntrospect.d.ts +13 -17
  8. package/cli/commands/sqlitePushUtils.d.ts +4 -10
  9. package/cli/commands/utils.d.ts +39 -255
  10. package/cli/connections.d.ts +13 -0
  11. package/cli/utils.d.ts +13 -0
  12. package/cli/validations/cli.d.ts +169 -0
  13. package/cli/validations/common.d.ts +208 -7
  14. package/cli/validations/mysql.d.ts +6 -342
  15. package/cli/validations/outputs.d.ts +3 -2
  16. package/cli/validations/pg.d.ts +16 -408
  17. package/cli/validations/sqlite.d.ts +22 -0
  18. package/cli/views.d.ts +7 -5
  19. package/global.d.ts +3 -1
  20. package/index.d.mts +25 -63
  21. package/index.d.ts +25 -63
  22. package/index.js +1 -0
  23. package/introspect-sqlite.d.ts +2 -2
  24. package/jsonDiffer.d.ts +14 -29
  25. package/jsonStatements.d.ts +38 -11
  26. package/package.json +29 -51
  27. package/payload.d.mts +5 -5
  28. package/payload.d.ts +5 -5
  29. package/payload.js +16600 -33803
  30. package/payload.mjs +16695 -33909
  31. package/schemaValidator.d.ts +74 -71
  32. package/serializer/mysqlImports.d.ts +3 -7
  33. package/serializer/mysqlSchema.d.ts +1404 -587
  34. package/serializer/mysqlSerializer.d.ts +6 -6
  35. package/serializer/pgImports.d.ts +2 -2
  36. package/serializer/pgSchema.d.ts +1268 -809
  37. package/serializer/pgSerializer.d.ts +2 -2
  38. package/serializer/sqliteImports.d.ts +2 -4
  39. package/serializer/sqliteSchema.d.ts +144 -570
  40. package/serializer/sqliteSerializer.d.ts +4 -4
  41. package/serializer/studio.d.ts +51 -0
  42. package/snapshotsDiffer.d.ts +2333 -1057
  43. package/utils/words.d.ts +1 -1
  44. package/utils-studio.d.mts +0 -1
  45. package/utils-studio.d.ts +0 -1
  46. package/utils-studio.js +3818 -170
  47. package/utils-studio.mjs +3818 -173
  48. package/utils.d.ts +20 -141
  49. package/utils.js +3904 -7075
  50. package/utils.mjs +3977 -7148
  51. package/cli/commands/mysqlUp.d.ts +0 -4
  52. package/cli/commands/pgConnect.d.ts +0 -5
  53. package/cli/commands/pgUp.d.ts +0 -4
  54. package/cli/commands/sqliteUtils.d.ts +0 -162
  55. package/cli/commands/upFolders.d.ts +0 -27
  56. package/drivers/index.d.ts +0 -39
  57. package/introspect-mysql.d.ts +0 -9
  58. package/introspect-pg.d.ts +0 -12
@@ -1,438 +1,46 @@
1
1
  import { TypeOf } from "zod";
2
- export declare const pgConnectionCli: import("zod").ZodUnion<[import("zod").ZodObject<{
3
- driver: import("zod").ZodLiteral<"pg">;
2
+ export declare const postgresCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
4
3
  host: import("zod").ZodString;
5
4
  port: import("zod").ZodOptional<import("zod").ZodNumber>;
6
5
  user: import("zod").ZodDefault<import("zod").ZodString>;
7
6
  password: import("zod").ZodOptional<import("zod").ZodString>;
8
7
  database: import("zod").ZodString;
9
8
  ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
10
- type: import("zod").ZodDefault<import("zod").ZodLiteral<"params">>;
11
9
  }, "strip", import("zod").ZodTypeAny, {
12
10
  port?: number | undefined;
13
11
  password?: string | undefined;
14
12
  ssl?: boolean | undefined;
15
- type: "params";
16
- driver: "pg";
17
13
  host: string;
18
14
  user: string;
19
15
  database: string;
20
16
  }, {
21
- type?: "params" | undefined;
22
17
  port?: number | undefined;
23
18
  user?: string | undefined;
24
19
  password?: string | undefined;
25
20
  ssl?: boolean | undefined;
26
- driver: "pg";
27
21
  host: string;
28
22
  database: string;
29
23
  }>, import("zod").ZodObject<{
30
- driver: import("zod").ZodLiteral<"pg">;
31
- connectionString: import("zod").ZodString;
32
- type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
24
+ url: import("zod").ZodString;
33
25
  }, "strip", import("zod").ZodTypeAny, {
34
- type: "url";
35
- driver: "pg";
36
- connectionString: string;
26
+ url: string;
37
27
  }, {
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
- driver: "pg";
257
- host: string;
258
- user: string;
259
- database: string;
260
- }, {
261
- type?: "params" | undefined;
262
- port?: number | undefined;
263
- user?: string | undefined;
264
- password?: string | undefined;
265
- ssl?: boolean | undefined;
266
- driver: "pg";
267
- host: string;
268
- database: string;
28
+ url: string;
269
29
  }>, 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
- }, {
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>;
30
+ driver: import("zod").ZodLiteral<"aws-data-api">;
306
31
  database: import("zod").ZodString;
307
- ssl: import("zod").ZodOptional<import("zod").ZodBoolean>;
308
- type: import("zod").ZodDefault<import("zod").ZodLiteral<"params">>;
32
+ secretArn: import("zod").ZodString;
33
+ resourceArn: import("zod").ZodString;
309
34
  }, "strip", import("zod").ZodTypeAny, {
310
- port?: number | undefined;
311
- password?: string | undefined;
312
- ssl?: boolean | undefined;
313
- type: "params";
314
- driver: "pg";
315
- host: string;
316
- user: string;
317
35
  database: string;
36
+ driver: "aws-data-api";
37
+ secretArn: string;
38
+ resourceArn: string;
318
39
  }, {
319
- type?: "params" | undefined;
320
- port?: number | undefined;
321
- user?: string | undefined;
322
- password?: string | undefined;
323
- ssl?: boolean | undefined;
324
- driver: "pg";
325
- host: string;
326
40
  database: string;
327
- }>, import("zod").ZodObject<{
328
- driver: import("zod").ZodLiteral<"pg">;
329
- connectionString: import("zod").ZodString;
330
- type: import("zod").ZodDefault<import("zod").ZodLiteral<"url">>;
331
- }, "strip", import("zod").ZodTypeAny, {
332
- type: "url";
333
- driver: "pg";
334
- connectionString: string;
335
- }, {
336
- type?: "url" | undefined;
337
- driver: "pg";
338
- 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>;
41
+ driver: "aws-data-api";
42
+ secretArn: string;
43
+ resourceArn: string;
44
+ }>]>;
45
+ export type PostgresCredentials = TypeOf<typeof postgresCredentials>;
46
+ export declare const printConfigConnectionIssues: (options: Record<string, unknown>) => void;
@@ -0,0 +1,22 @@
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
+ url: import("zod").ZodString;
16
+ }, "strip", import("zod").ZodTypeAny, {
17
+ url: string;
18
+ }, {
19
+ url: string;
20
+ }>]>;
21
+ export type SqliteCredentials = TypeOf<typeof sqliteCredentials>;
22
+ 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,79 +1,31 @@
1
- export type DbConnection = {
2
- driver: "turso";
3
- dbCredentials: {
4
- url: string;
5
- authToken?: string;
6
- };
7
- } | {
8
- driver: "better-sqlite";
9
- dbCredentials: {
10
- url: string;
11
- };
12
- } | {
13
- driver: "libsql";
14
- dbCredentials: {
15
- url: string;
16
- };
17
- } | {
18
- driver: "d1";
19
- dbCredentials: {
20
- wranglerConfigPath: string;
21
- dbName: string;
22
- };
23
- } | {
24
- driver: "pg";
25
- dbCredentials: {
26
- host: string;
27
- port?: number;
28
- user?: string;
29
- password?: string;
30
- database: string;
31
- ssl?: boolean;
32
- } | {
33
- connectionString: string;
34
- };
35
- } | {
36
- driver: "mysql2";
37
- dbCredentials: {
38
- host: string;
39
- port?: number;
40
- user?: string;
41
- password?: string;
42
- database: string;
43
- } | {
44
- uri: string;
45
- };
46
- };
1
+ import { Dialect } from "./schemaValidator";
47
2
  export type Config = {
48
- out?: string | undefined;
49
- breakpoints?: boolean | undefined;
50
- tablesFilter?: string | string[] | undefined;
51
- schemaFilter?: string | string[] | undefined;
3
+ dialect: Dialect;
4
+ out?: string;
5
+ breakpoints?: boolean;
6
+ tablesFilter?: string | string[];
7
+ schemaFilter?: string | string[];
52
8
  schema?: string | string[];
53
- verbose?: boolean | undefined;
54
- strict?: boolean | undefined;
9
+ verbose?: boolean;
10
+ strict?: boolean;
55
11
  } & {
56
12
  introspect?: {
57
13
  casing: "camel" | "preserve";
58
14
  };
59
15
  } & ({
16
+ dialect: "sqlite";
60
17
  driver: "turso";
61
18
  dbCredentials: {
62
19
  url: string;
63
20
  authToken?: string;
64
21
  };
65
22
  } | {
66
- driver: "better-sqlite";
67
- dbCredentials: {
68
- url: string;
69
- };
70
- } | {
71
- driver: "libsql";
23
+ dialect: "sqlite";
72
24
  dbCredentials: {
73
25
  url: string;
74
26
  };
75
27
  } | {
76
- driver: "pg";
28
+ dialect: "postgresql";
77
29
  dbCredentials: {
78
30
  host: string;
79
31
  port?: number;
@@ -82,10 +34,18 @@ export type Config = {
82
34
  database: string;
83
35
  ssl?: boolean;
84
36
  } | {
85
- connectionString: string;
37
+ url: string;
86
38
  };
87
39
  } | {
88
- driver: "mysql2";
40
+ dialect: "postgresql";
41
+ driver: "aws-data-api";
42
+ dbCredentials: {
43
+ database: string;
44
+ secretArn: string;
45
+ resourceArn: string;
46
+ };
47
+ } | {
48
+ dialect: "mysql";
89
49
  dbCredentials: {
90
50
  host: string;
91
51
  port?: number;
@@ -93,15 +53,17 @@ export type Config = {
93
53
  password?: string;
94
54
  database: string;
95
55
  } | {
96
- uri: string;
56
+ url: string;
97
57
  };
98
58
  } | {
99
- driver: "d1";
59
+ dialect: "sqlite";
60
+ driver: "d1-http";
100
61
  dbCredentials: {
101
62
  wranglerConfigPath: string;
102
63
  dbName: string;
103
64
  };
104
65
  } | {
66
+ dialect: "sqlite";
105
67
  driver: "expo";
106
68
  } | {});
107
69
  export declare function defineConfig(config: Config): Config;