drizzle-kit 0.20.14-d8f1e46 → 0.20.14-e8e7ed6

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.
Files changed (50) hide show
  1. package/bin.cjs +21878 -21519
  2. package/cli/commands/migrate.d.ts +121 -97
  3. package/cli/commands/mysqlIntrospect.d.ts +8 -14
  4. package/cli/commands/mysqlPushUtils.d.ts +2 -2
  5. package/cli/commands/pgConnect.d.ts +1 -1
  6. package/cli/commands/pgIntrospect.d.ts +18 -11
  7. package/cli/commands/pgPushUtils.d.ts +2 -2
  8. package/cli/commands/sqliteIntrospect.d.ts +9 -9
  9. package/cli/commands/sqlitePushUtils.d.ts +3 -3
  10. package/cli/commands/utils.d.ts +15 -259
  11. package/cli/validations/cli.d.ts +107 -0
  12. package/cli/validations/common.d.ts +205 -7
  13. package/cli/validations/mysql.d.ts +6 -1
  14. package/cli/validations/pg.d.ts +6 -1
  15. package/cli/validations/sqlite.d.ts +382 -0
  16. package/cli/views.d.ts +7 -5
  17. package/global.d.ts +3 -1
  18. package/index.d.mts +8 -6
  19. package/index.d.ts +8 -6
  20. package/index.js +1 -0
  21. package/introspect-mysql.d.ts +1 -1
  22. package/introspect-pg.d.ts +5 -2
  23. package/introspect-sqlite.d.ts +1 -1
  24. package/jsonDiffer.d.ts +14 -29
  25. package/jsonStatements.d.ts +38 -11
  26. package/package.json +18 -51
  27. package/payload.d.mts +18 -988
  28. package/payload.d.ts +18 -988
  29. package/payload.js +18030 -7175
  30. package/payload.mjs +9020 -9305
  31. package/schemaValidator.d.ts +73 -70
  32. package/serializer/mysqlImports.d.ts +3 -7
  33. package/serializer/mysqlSchema.d.ts +1624 -493
  34. package/serializer/mysqlSerializer.d.ts +4 -4
  35. package/serializer/pgImports.d.ts +2 -2
  36. package/serializer/pgSchema.d.ts +1260 -801
  37. package/serializer/sqliteImports.d.ts +2 -4
  38. package/serializer/sqliteSchema.d.ts +144 -570
  39. package/serializer/sqliteSerializer.d.ts +3 -3
  40. package/snapshotsDiffer.d.ts +1908 -1050
  41. package/utils/words.d.ts +1 -1
  42. package/utils-studio.js +4147 -83
  43. package/utils-studio.mjs +4147 -83
  44. package/utils.d.ts +6 -140
  45. package/utils.js +3903 -7064
  46. package/utils.mjs +3982 -7143
  47. package/cli/commands/mysqlUp.d.ts +0 -4
  48. package/cli/commands/pgUp.d.ts +0 -4
  49. package/cli/commands/sqliteUtils.d.ts +0 -162
  50. package/cli/commands/upFolders.d.ts +0 -27
@@ -239,6 +239,7 @@ export declare const mysqlCliIntrospectParams: import("zod").ZodIntersection<imp
239
239
  uri: string;
240
240
  }>]>>;
241
241
  export declare const mysqlCliPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
242
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
242
243
  schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
243
244
  tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
244
245
  schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
@@ -248,6 +249,7 @@ export declare const mysqlCliPushParams: import("zod").ZodIntersection<import("z
248
249
  tablesFilter?: string | string[] | undefined;
249
250
  strict: boolean;
250
251
  schema: string | string[];
252
+ dialect: "mysql" | "pg" | "sqlite";
251
253
  schemaFilter: string | string[];
252
254
  verbose: boolean;
253
255
  }, {
@@ -256,6 +258,7 @@ export declare const mysqlCliPushParams: import("zod").ZodIntersection<import("z
256
258
  schemaFilter?: string | string[] | undefined;
257
259
  verbose?: boolean | undefined;
258
260
  schema: string | string[];
261
+ dialect: "mysql" | "pg" | "sqlite";
259
262
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
260
263
  driver: import("zod").ZodLiteral<"mysql2">;
261
264
  host: import("zod").ZodString;
@@ -288,6 +291,7 @@ export declare const mysqlCliPushParams: import("zod").ZodIntersection<import("z
288
291
  uri: string;
289
292
  }>]>>;
290
293
  export declare const mysqlConfigPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
294
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
291
295
  schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
292
296
  tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
293
297
  schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
@@ -297,6 +301,7 @@ export declare const mysqlConfigPushParams: import("zod").ZodIntersection<import
297
301
  tablesFilter?: string | string[] | undefined;
298
302
  strict: boolean;
299
303
  schema: string | string[];
304
+ dialect: "mysql" | "pg" | "sqlite";
300
305
  schemaFilter: string | string[];
301
306
  verbose: boolean;
302
307
  }, {
@@ -305,6 +310,7 @@ export declare const mysqlConfigPushParams: import("zod").ZodIntersection<import
305
310
  schemaFilter?: string | string[] | undefined;
306
311
  verbose?: boolean | undefined;
307
312
  schema: string | string[];
313
+ dialect: "mysql" | "pg" | "sqlite";
308
314
  }>, import("zod").ZodObject<{
309
315
  driver: import("zod").ZodLiteral<"mysql2">;
310
316
  dbCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
@@ -362,4 +368,3 @@ export type MySQLConnectionConfig = TypeOf<typeof mysqlConnectionConfig>;
362
368
  export declare const printCliConnectionIssues: (options: any) => void;
363
369
  export declare const printConfigConnectionIssues: (options: any) => void;
364
370
  export declare const validateMySqlIntrospect: (options: Record<string, any>) => Promise<MySQLConfigIntrospect>;
365
- export declare const validateMySqlPush: (options: Record<string, unknown>) => Promise<MySQLPushConfig>;
@@ -280,6 +280,7 @@ export declare const pgCliIntrospectParams: import("zod").ZodIntersection<import
280
280
  connectionString: string;
281
281
  }>]>>;
282
282
  export declare const pgCliPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
283
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
283
284
  schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
284
285
  tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
285
286
  schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
@@ -289,6 +290,7 @@ export declare const pgCliPushParams: import("zod").ZodIntersection<import("zod"
289
290
  tablesFilter?: string | string[] | undefined;
290
291
  strict: boolean;
291
292
  schema: string | string[];
293
+ dialect: "mysql" | "pg" | "sqlite";
292
294
  schemaFilter: string | string[];
293
295
  verbose: boolean;
294
296
  }, {
@@ -297,6 +299,7 @@ export declare const pgCliPushParams: import("zod").ZodIntersection<import("zod"
297
299
  schemaFilter?: string | string[] | undefined;
298
300
  verbose?: boolean | undefined;
299
301
  schema: string | string[];
302
+ dialect: "mysql" | "pg" | "sqlite";
300
303
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
301
304
  driver: import("zod").ZodLiteral<"pg">;
302
305
  host: import("zod").ZodString;
@@ -338,6 +341,7 @@ export declare const pgCliPushParams: import("zod").ZodIntersection<import("zod"
338
341
  connectionString: string;
339
342
  }>]>>;
340
343
  export declare const pgConfigPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
344
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
341
345
  schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
342
346
  tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
343
347
  schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
@@ -347,6 +351,7 @@ export declare const pgConfigPushParams: import("zod").ZodIntersection<import("z
347
351
  tablesFilter?: string | string[] | undefined;
348
352
  strict: boolean;
349
353
  schema: string | string[];
354
+ dialect: "mysql" | "pg" | "sqlite";
350
355
  schemaFilter: string | string[];
351
356
  verbose: boolean;
352
357
  }, {
@@ -355,6 +360,7 @@ export declare const pgConfigPushParams: import("zod").ZodIntersection<import("z
355
360
  schemaFilter?: string | string[] | undefined;
356
361
  verbose?: boolean | undefined;
357
362
  schema: string | string[];
363
+ dialect: "mysql" | "pg" | "sqlite";
358
364
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
359
365
  driver: import("zod").ZodLiteral<"pg">;
360
366
  dbCredentials: import("zod").ZodObject<{
@@ -435,4 +441,3 @@ export type PgCliIntrospect = TypeOf<typeof pgCliIntrospectParams>;
435
441
  export type PgConnectionConfig = TypeOf<typeof pgConnectionConfig>;
436
442
  export declare const printConfigConnectionIssues: (options: any) => void;
437
443
  export declare const validatePgIntrospect: (options: Record<string, any>) => Promise<PgConfigIntrospect>;
438
- export declare const validatePgPush: (options: Record<string, unknown>) => Promise<PgPushConfig>;
@@ -0,0 +1,382 @@
1
+ import { TypeOf } from "zod";
2
+ export declare const sqliteConnectionCli: 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 declare const sqliteConnectionSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
34
+ driver: import("zod").ZodLiteral<"turso">;
35
+ dbCredentials: import("zod").ZodObject<{
36
+ url: import("zod").ZodString;
37
+ authToken: import("zod").ZodOptional<import("zod").ZodString>;
38
+ }, "strip", import("zod").ZodTypeAny, {
39
+ authToken?: string | undefined;
40
+ url: string;
41
+ }, {
42
+ authToken?: string | undefined;
43
+ url: string;
44
+ }>;
45
+ }, "strip", import("zod").ZodTypeAny, {
46
+ driver: "turso";
47
+ dbCredentials: {
48
+ authToken?: string | undefined;
49
+ url: string;
50
+ };
51
+ }, {
52
+ driver: "turso";
53
+ dbCredentials: {
54
+ authToken?: string | undefined;
55
+ url: string;
56
+ };
57
+ }>, import("zod").ZodObject<{
58
+ driver: import("zod").ZodLiteral<"libsql">;
59
+ dbCredentials: import("zod").ZodObject<{
60
+ url: import("zod").ZodString;
61
+ }, "strip", import("zod").ZodTypeAny, {
62
+ url: string;
63
+ }, {
64
+ url: string;
65
+ }>;
66
+ }, "strip", import("zod").ZodTypeAny, {
67
+ driver: "libsql";
68
+ dbCredentials: {
69
+ url: string;
70
+ };
71
+ }, {
72
+ driver: "libsql";
73
+ dbCredentials: {
74
+ url: string;
75
+ };
76
+ }>, import("zod").ZodObject<{
77
+ driver: import("zod").ZodLiteral<"better-sqlite">;
78
+ dbCredentials: import("zod").ZodObject<{
79
+ url: import("zod").ZodString;
80
+ }, "strip", import("zod").ZodTypeAny, {
81
+ url: string;
82
+ }, {
83
+ url: string;
84
+ }>;
85
+ }, "strip", import("zod").ZodTypeAny, {
86
+ driver: "better-sqlite";
87
+ dbCredentials: {
88
+ url: string;
89
+ };
90
+ }, {
91
+ driver: "better-sqlite";
92
+ dbCredentials: {
93
+ url: string;
94
+ };
95
+ }>]>;
96
+ export declare const sqliteCliConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
97
+ schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
98
+ out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
99
+ breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
100
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
101
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
102
+ introspect: import("zod").ZodDefault<import("zod").ZodObject<{
103
+ casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
104
+ }, "strip", import("zod").ZodTypeAny, {
105
+ casing: "camel" | "preserve";
106
+ }, {
107
+ casing?: "camel" | "preserve" | undefined;
108
+ }>>;
109
+ }, "strip", import("zod").ZodTypeAny, {
110
+ schema?: string | string[] | undefined;
111
+ tablesFilter?: string | string[] | undefined;
112
+ out: string;
113
+ breakpoints: boolean;
114
+ schemaFilter: string | string[];
115
+ introspect: {
116
+ casing: "camel" | "preserve";
117
+ };
118
+ }, {
119
+ schema?: string | string[] | undefined;
120
+ out?: string | undefined;
121
+ breakpoints?: boolean | undefined;
122
+ tablesFilter?: string | string[] | undefined;
123
+ schemaFilter?: string | string[] | undefined;
124
+ introspect?: {
125
+ casing?: "camel" | "preserve" | undefined;
126
+ } | undefined;
127
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
128
+ driver: import("zod").ZodLiteral<"turso">;
129
+ dbCredentials: import("zod").ZodObject<{
130
+ url: import("zod").ZodString;
131
+ authToken: import("zod").ZodOptional<import("zod").ZodString>;
132
+ }, "strip", import("zod").ZodTypeAny, {
133
+ authToken?: string | undefined;
134
+ url: string;
135
+ }, {
136
+ authToken?: string | undefined;
137
+ url: string;
138
+ }>;
139
+ }, "strip", import("zod").ZodTypeAny, {
140
+ driver: "turso";
141
+ dbCredentials: {
142
+ authToken?: string | undefined;
143
+ url: string;
144
+ };
145
+ }, {
146
+ driver: "turso";
147
+ dbCredentials: {
148
+ authToken?: string | undefined;
149
+ url: string;
150
+ };
151
+ }>, import("zod").ZodObject<{
152
+ driver: import("zod").ZodLiteral<"libsql">;
153
+ dbCredentials: import("zod").ZodObject<{
154
+ url: import("zod").ZodString;
155
+ }, "strip", import("zod").ZodTypeAny, {
156
+ url: string;
157
+ }, {
158
+ url: string;
159
+ }>;
160
+ }, "strip", import("zod").ZodTypeAny, {
161
+ driver: "libsql";
162
+ dbCredentials: {
163
+ url: string;
164
+ };
165
+ }, {
166
+ driver: "libsql";
167
+ dbCredentials: {
168
+ url: string;
169
+ };
170
+ }>, import("zod").ZodObject<{
171
+ driver: import("zod").ZodLiteral<"better-sqlite">;
172
+ dbCredentials: import("zod").ZodObject<{
173
+ url: import("zod").ZodString;
174
+ }, "strip", import("zod").ZodTypeAny, {
175
+ url: string;
176
+ }, {
177
+ url: string;
178
+ }>;
179
+ }, "strip", import("zod").ZodTypeAny, {
180
+ driver: "better-sqlite";
181
+ dbCredentials: {
182
+ url: string;
183
+ };
184
+ }, {
185
+ driver: "better-sqlite";
186
+ dbCredentials: {
187
+ url: string;
188
+ };
189
+ }>]>>;
190
+ export type SQLiteCliConfig = TypeOf<typeof sqliteCliConfigSchema>;
191
+ export type SQLiteConnectionConfig = TypeOf<typeof sqliteConnectionSchema>;
192
+ export declare const sqliteCliIntrospectParams: import("zod").ZodIntersection<import("zod").ZodObject<{
193
+ schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
194
+ out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
195
+ breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
196
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
197
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
198
+ introspectCasing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
199
+ }, "strip", import("zod").ZodTypeAny, {
200
+ schema?: string | string[] | undefined;
201
+ tablesFilter?: string | string[] | undefined;
202
+ out: string;
203
+ breakpoints: boolean;
204
+ schemaFilter: string | string[];
205
+ introspectCasing: "camel" | "preserve";
206
+ }, {
207
+ schema?: string | string[] | undefined;
208
+ out?: string | undefined;
209
+ breakpoints?: boolean | undefined;
210
+ tablesFilter?: string | string[] | undefined;
211
+ schemaFilter?: string | string[] | undefined;
212
+ introspectCasing?: "camel" | "preserve" | undefined;
213
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
214
+ driver: import("zod").ZodLiteral<"turso">;
215
+ url: import("zod").ZodString;
216
+ authToken: import("zod").ZodString;
217
+ }, "strip", import("zod").ZodTypeAny, {
218
+ url: string;
219
+ driver: "turso";
220
+ authToken: string;
221
+ }, {
222
+ url: string;
223
+ driver: "turso";
224
+ authToken: string;
225
+ }>, import("zod").ZodObject<{
226
+ driver: import("zod").ZodLiteral<"better-sqlite">;
227
+ url: import("zod").ZodString;
228
+ }, "strip", import("zod").ZodTypeAny, {
229
+ url: string;
230
+ driver: "better-sqlite";
231
+ }, {
232
+ url: string;
233
+ driver: "better-sqlite";
234
+ }>, import("zod").ZodObject<{
235
+ driver: import("zod").ZodLiteral<"libsql">;
236
+ url: import("zod").ZodString;
237
+ }, "strip", import("zod").ZodTypeAny, {
238
+ url: string;
239
+ driver: "libsql";
240
+ }, {
241
+ url: string;
242
+ driver: "libsql";
243
+ }>]>>;
244
+ export declare const sqliteCliPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
245
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
246
+ schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
247
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
248
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
249
+ verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
250
+ strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
251
+ }, "strip", import("zod").ZodTypeAny, {
252
+ tablesFilter?: string | string[] | undefined;
253
+ strict: boolean;
254
+ schema: string | string[];
255
+ dialect: "mysql" | "pg" | "sqlite";
256
+ schemaFilter: string | string[];
257
+ verbose: boolean;
258
+ }, {
259
+ strict?: boolean | undefined;
260
+ tablesFilter?: string | string[] | undefined;
261
+ schemaFilter?: string | string[] | undefined;
262
+ verbose?: boolean | undefined;
263
+ schema: string | string[];
264
+ dialect: "mysql" | "pg" | "sqlite";
265
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
266
+ driver: import("zod").ZodLiteral<"turso">;
267
+ url: import("zod").ZodString;
268
+ authToken: import("zod").ZodString;
269
+ }, "strip", import("zod").ZodTypeAny, {
270
+ url: string;
271
+ driver: "turso";
272
+ authToken: string;
273
+ }, {
274
+ url: string;
275
+ driver: "turso";
276
+ authToken: string;
277
+ }>, import("zod").ZodObject<{
278
+ driver: import("zod").ZodLiteral<"better-sqlite">;
279
+ url: import("zod").ZodString;
280
+ }, "strip", import("zod").ZodTypeAny, {
281
+ url: string;
282
+ driver: "better-sqlite";
283
+ }, {
284
+ url: string;
285
+ driver: "better-sqlite";
286
+ }>, import("zod").ZodObject<{
287
+ driver: import("zod").ZodLiteral<"libsql">;
288
+ url: import("zod").ZodString;
289
+ }, "strip", import("zod").ZodTypeAny, {
290
+ url: string;
291
+ driver: "libsql";
292
+ }, {
293
+ url: string;
294
+ driver: "libsql";
295
+ }>]>>;
296
+ export declare const sqliteConfigPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
297
+ dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
298
+ schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
299
+ tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
300
+ schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
301
+ verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
302
+ strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
303
+ }, "strip", import("zod").ZodTypeAny, {
304
+ tablesFilter?: string | string[] | undefined;
305
+ strict: boolean;
306
+ schema: string | string[];
307
+ dialect: "mysql" | "pg" | "sqlite";
308
+ schemaFilter: string | string[];
309
+ verbose: boolean;
310
+ }, {
311
+ strict?: boolean | undefined;
312
+ tablesFilter?: string | string[] | undefined;
313
+ schemaFilter?: string | string[] | undefined;
314
+ verbose?: boolean | undefined;
315
+ schema: string | string[];
316
+ dialect: "mysql" | "pg" | "sqlite";
317
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
318
+ driver: import("zod").ZodLiteral<"turso">;
319
+ dbCredentials: import("zod").ZodObject<{
320
+ url: import("zod").ZodString;
321
+ authToken: import("zod").ZodOptional<import("zod").ZodString>;
322
+ }, "strip", import("zod").ZodTypeAny, {
323
+ authToken?: string | undefined;
324
+ url: string;
325
+ }, {
326
+ authToken?: string | undefined;
327
+ url: string;
328
+ }>;
329
+ }, "strip", import("zod").ZodTypeAny, {
330
+ driver: "turso";
331
+ dbCredentials: {
332
+ authToken?: string | undefined;
333
+ url: string;
334
+ };
335
+ }, {
336
+ driver: "turso";
337
+ dbCredentials: {
338
+ authToken?: string | undefined;
339
+ url: string;
340
+ };
341
+ }>, import("zod").ZodObject<{
342
+ driver: import("zod").ZodLiteral<"libsql">;
343
+ dbCredentials: import("zod").ZodObject<{
344
+ url: import("zod").ZodString;
345
+ }, "strip", import("zod").ZodTypeAny, {
346
+ url: string;
347
+ }, {
348
+ url: string;
349
+ }>;
350
+ }, "strip", import("zod").ZodTypeAny, {
351
+ driver: "libsql";
352
+ dbCredentials: {
353
+ url: string;
354
+ };
355
+ }, {
356
+ driver: "libsql";
357
+ dbCredentials: {
358
+ url: string;
359
+ };
360
+ }>, import("zod").ZodObject<{
361
+ driver: import("zod").ZodLiteral<"better-sqlite">;
362
+ dbCredentials: import("zod").ZodObject<{
363
+ url: import("zod").ZodString;
364
+ }, "strip", import("zod").ZodTypeAny, {
365
+ url: string;
366
+ }, {
367
+ url: string;
368
+ }>;
369
+ }, "strip", import("zod").ZodTypeAny, {
370
+ driver: "better-sqlite";
371
+ dbCredentials: {
372
+ url: string;
373
+ };
374
+ }, {
375
+ driver: "better-sqlite";
376
+ dbCredentials: {
377
+ url: string;
378
+ };
379
+ }>]>>;
380
+ export type SQLitePushConfig = TypeOf<typeof sqliteConfigPushParams>;
381
+ export declare const printConfigConnectionIssues: (options: any) => void;
382
+ export declare const validateIntrospect: (options: Record<string, any>) => Promise<SQLiteCliConfig>;
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,5 +1,5 @@
1
1
  import "./@types/utils";
2
- import { ConfigIntrospectCasing } from "./cli/commands/utils";
2
+ import type { ConfigIntrospectCasing } from "./cli/validations/common";
3
3
  import { MySqlSchemaInternal } from "./serializer/mysqlSchema";
4
4
  export declare const schemaToTypeScript: (schema: MySqlSchemaInternal, casing: ConfigIntrospectCasing["casing"]) => {
5
5
  file: string;
@@ -1,9 +1,12 @@
1
1
  import { AnyPgTable } from "drizzle-orm/pg-core";
2
2
  import { Relation, Relations } from "drizzle-orm/relations";
3
3
  import "./@types/utils";
4
- import { ConfigIntrospectCasing } from "./cli/commands/utils";
4
+ import type { ConfigIntrospectCasing } from "./cli/validations/common";
5
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;
6
+ export declare const relationsToTypeScriptForStudio: (schema: Record<string, Record<string, AnyPgTable<{}>>>, relations: Record<string, Relations<string, Record<string, Relation<string>>>>) => string;
7
+ export declare const relationsToTypeScript: (schema: PgSchemaInternal, casing: ConfigIntrospectCasing) => {
8
+ file: string;
9
+ };
7
10
  export declare const schemaToTypeScript: (schema: PgSchemaInternal, casing: ConfigIntrospectCasing) => {
8
11
  file: string;
9
12
  imports: string;
@@ -1,5 +1,5 @@
1
1
  import "./@types/utils";
2
- import type { ConfigIntrospectCasing } from "./cli/commands/utils";
2
+ import type { ConfigIntrospectCasing } from "./cli/validations/common";
3
3
  import type { SQLiteSchemaInternal } from "./serializer/sqliteSchema";
4
4
  export declare const indexName: (tableName: string, columns: string[]) => string;
5
5
  export declare const schemaToTypeScript: (schema: SQLiteSchemaInternal, casing: ConfigIntrospectCasing["casing"]) => {