drizzle-kit 0.20.14-1f2c838 → 0.20.14-1f99bf7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. package/bin.cjs +6833 -6983
  2. package/cli/commands/migrate.d.ts +24 -24
  3. package/cli/commands/mysqlIntrospect.d.ts +8 -8
  4. package/cli/commands/mysqlPushUtils.d.ts +2 -2
  5. package/cli/commands/mysqlUp.d.ts +2 -2
  6. package/cli/commands/pgConnect.d.ts +1 -1
  7. package/cli/commands/pgIntrospect.d.ts +9 -9
  8. package/cli/commands/pgPushUtils.d.ts +2 -2
  9. package/cli/commands/pgUp.d.ts +2 -2
  10. package/cli/commands/sqliteIntrospect.d.ts +9 -9
  11. package/cli/commands/sqlitePushUtils.d.ts +3 -3
  12. package/cli/commands/upFolders.d.ts +1 -1
  13. package/cli/commands/utils.d.ts +14 -259
  14. package/cli/validations/cli.d.ts +104 -0
  15. package/cli/validations/common.d.ts +205 -7
  16. package/cli/validations/mysql.d.ts +6 -1
  17. package/cli/validations/pg.d.ts +6 -1
  18. package/cli/validations/sqlite.d.ts +382 -0
  19. package/cli/views.d.ts +1 -1
  20. package/global.d.ts +1 -1
  21. package/index.d.mts +8 -6
  22. package/index.d.ts +8 -6
  23. package/index.js +1 -0
  24. package/introspect-mysql.d.ts +1 -1
  25. package/introspect-pg.d.ts +1 -1
  26. package/introspect-sqlite.d.ts +1 -1
  27. package/jsonStatements.d.ts +1 -1
  28. package/package.json +4 -3
  29. package/payload.js +3035 -2721
  30. package/payload.mjs +2448 -2135
  31. package/schemaValidator.d.ts +40 -40
  32. package/serializer/mysqlSchema.d.ts +1991 -753
  33. package/serializer/mysqlSerializer.d.ts +2 -2
  34. package/serializer/pgSchema.d.ts +1113 -788
  35. package/serializer/sqliteSchema.d.ts +144 -570
  36. package/serializer/sqliteSerializer.d.ts +2 -2
  37. package/snapshotsDiffer.d.ts +24 -20
  38. package/utils-studio.js +21 -8
  39. package/utils-studio.mjs +20 -8
  40. package/utils.d.ts +12 -12
  41. package/utils.js +849 -735
  42. package/utils.mjs +849 -736
  43. package/cli/commands/sqliteUtils.d.ts +0 -162
@@ -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,5 +1,5 @@
1
1
  import { Prompt, TaskView } from "hanji";
2
- import type { CommonSchema } from "src/schemaValidator";
2
+ import type { CommonSchema } from "../schemaValidator";
3
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;
package/global.d.ts CHANGED
@@ -1,4 +1,4 @@
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>;
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,7 +1,7 @@
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
6
  export declare const relationsToTypeScript: (schema: Record<string, Record<string, AnyPgTable<{}>>>, relations: Record<string, Relations<string, Record<string, Relation<string>>>>) => string;
7
7
  export declare const schemaToTypeScript: (schema: PgSchemaInternal, casing: ConfigIntrospectCasing) => {
@@ -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"]) => {
@@ -294,7 +294,7 @@ export interface JsonRenameSchema {
294
294
  export type JsonAlterColumnStatement = JsonRenameColumnStatement | JsonAlterColumnTypeStatement | JsonAlterColumnSetDefaultStatement | JsonAlterColumnDropDefaultStatement | JsonAlterColumnSetNotNullStatement | JsonAlterColumnDropNotNullStatement | JsonAlterColumnDropOnUpdateStatement | JsonAlterColumnSetOnUpdateStatement | JsonAlterColumnDropAutoincrementStatement | JsonAlterColumnSetAutoincrementStatement | JsonAlterColumnSetPrimaryKeyStatement | JsonAlterColumnDropPrimaryKeyStatement;
295
295
  export type JsonStatement = JsonAlterColumnStatement | JsonCreateTableStatement | JsonDropTableStatement | JsonRenameTableStatement | JsonCreateEnumStatement | JsonAddValueToEnumStatement | JsonDropColumnStatement | JsonAddColumnStatement | JsonCreateIndexStatement | JsonCreateReferenceStatement | JsonAlterReferenceStatement | JsonDeleteReferenceStatement | JsonDropIndexStatement | JsonReferenceStatement | JsonSqliteCreateTableStatement | JsonSqliteAddColumnStatement | JsonCreateCompositePK | JsonDeleteCompositePK | JsonAlterCompositePK | JsonCreateUniqueConstraint | JsonDeleteUniqueConstraint | JsonAlterUniqueConstraint | JsonCreateSchema | JsonDropSchema | JsonRenameSchema | JsonAlterTableSetSchema | JsonAlterTableRemoveFromSchema | JsonAlterTableSetNewSchema;
296
296
  export declare const preparePgCreateTableJson: (table: Table, json2: PgSchema) => JsonCreateTableStatement;
297
- export declare const prepareMySqlCreateTableJson: (table: Table, json2: PgSchema) => JsonCreateTableStatement;
297
+ export declare const prepareMySqlCreateTableJson: (table: Table, json2: MySqlSchema) => JsonCreateTableStatement;
298
298
  export declare const prepareSQLiteCreateTable: (table: Table) => JsonSqliteCreateTableStatement;
299
299
  export declare const prepareDropTableJson: (table: Table) => JsonDropTableStatement;
300
300
  export declare const prepareRenameTableJson: (tableFrom: Table, tableTo: Table) => JsonRenameTableStatement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-kit",
3
- "version": "0.20.14-1f2c838",
3
+ "version": "0.20.14-1f99bf7",
4
4
  "repository": "https://github.com/drizzle-team/drizzle-kit-mirror",
5
5
  "author": "Drizzle Team",
6
6
  "license": "MIT",
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
11
  "test:pg:push": "drizzle-kit push:pg",
12
12
  "payload": "tsx ./dev/payload.ts",
13
- "migrate:old": "drizzle-kit generate:pg --out ./dev/migrations-pg --schema ./dev/migrations-pg/schema2.ts",
13
+ "migrate:old": "drizzle-kit generate:mysql",
14
14
  "push": "node -r esbuild-register ./src/cli/index.ts push:mysql",
15
15
  "push:sqlite": "node -r ./src/loader.mjs ./src/cli/index.ts push:sqlite",
16
16
  "try1": "tsx ./src/t.ts",
@@ -87,7 +87,8 @@
87
87
  "better-sqlite3": "^8.4.0",
88
88
  "dockerode": "^3.3.4",
89
89
  "dotenv": "^16.0.3",
90
- "drizzle-orm": "0.29.0",
90
+ "drizzle-kit": "0.19.13",
91
+ "drizzle-orm": "0.29.3",
91
92
  "esbuild-node-externals": "^1.9.0",
92
93
  "eslint": "^8.29.0",
93
94
  "eslint-config-prettier": "^8.5.0",