drizzle-kit 0.20.17-7776aba → 0.20.17-7a1dd7a

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. package/bin.cjs +82842 -42140
  2. package/cli/commands/migrate.d.ts +152 -135
  3. package/cli/commands/mysqlIntrospect.d.ts +10 -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 +25 -29
  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 +2 -0
  16. package/cli/validations/pg.d.ts +17 -409
  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 -17
  21. package/index.d.ts +25 -17
  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 +15576 -32175
  30. package/payload.mjs +17078 -33688
  31. package/schemaValidator.d.ts +286 -283
  32. package/serializer/mysqlImports.d.ts +3 -7
  33. package/serializer/mysqlSchema.d.ts +2170 -1353
  34. package/serializer/mysqlSerializer.d.ts +6 -6
  35. package/serializer/pgImports.d.ts +2 -2
  36. package/serializer/pgSchema.d.ts +1741 -1282
  37. package/serializer/pgSerializer.d.ts +2 -2
  38. package/serializer/sqliteImports.d.ts +2 -4
  39. package/serializer/sqliteSchema.d.ts +553 -979
  40. package/serializer/sqliteSerializer.d.ts +4 -4
  41. package/serializer/studio.d.ts +51 -0
  42. package/snapshotsDiffer.d.ts +2486 -1209
  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 +4557 -803
  47. package/utils-studio.mjs +4533 -782
  48. package/utils.d.ts +20 -141
  49. package/utils.js +4370 -6916
  50. package/utils.mjs +4583 -7129
  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,365 +1,29 @@
1
1
  import { TypeOf } from "zod";
2
- export declare const mysqlConnectionCli: import("zod").ZodUnion<[import("zod").ZodObject<{
3
- driver: import("zod").ZodLiteral<"mysql2">;
2
+ export declare const mysqlCredentials: 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
  }, "strip", import("zod").ZodTypeAny, {
10
- port?: number | undefined;
11
- password?: string | undefined;
12
- driver: "mysql2";
13
9
  host: string;
14
10
  user: string;
15
11
  database: string;
16
- }, {
17
12
  port?: number | undefined;
18
- user?: string | undefined;
19
13
  password?: string | undefined;
20
- driver: "mysql2";
21
- host: string;
22
- database: string;
23
- }>, import("zod").ZodObject<{
24
- driver: import("zod").ZodLiteral<"mysql2">;
25
- uri: import("zod").ZodString;
26
- }, "strip", import("zod").ZodTypeAny, {
27
- driver: "mysql2";
28
- uri: string;
29
14
  }, {
30
- driver: "mysql2";
31
- uri: string;
32
- }>]>;
33
- export declare const mysql2credentials: import("zod").ZodUnion<[import("zod").ZodObject<{
34
- host: import("zod").ZodString;
35
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
36
- user: import("zod").ZodDefault<import("zod").ZodString>;
37
- password: import("zod").ZodOptional<import("zod").ZodString>;
38
- database: import("zod").ZodString;
39
- }, "strip", import("zod").ZodTypeAny, {
40
- port?: number | undefined;
41
- password?: string | undefined;
42
15
  host: string;
43
- user: string;
44
16
  database: string;
45
- }, {
46
17
  port?: number | undefined;
47
18
  user?: string | undefined;
48
19
  password?: string | undefined;
49
- host: string;
50
- database: string;
51
20
  }>, import("zod").ZodObject<{
52
- uri: import("zod").ZodString;
21
+ url: import("zod").ZodString;
53
22
  }, "strip", import("zod").ZodTypeAny, {
54
- uri: string;
23
+ url: string;
55
24
  }, {
56
- uri: string;
25
+ url: string;
57
26
  }>]>;
58
- export declare const mysqlConnectionConfig: import("zod").ZodObject<{
59
- driver: import("zod").ZodLiteral<"mysql2">;
60
- dbCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
61
- host: import("zod").ZodString;
62
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
63
- user: import("zod").ZodDefault<import("zod").ZodString>;
64
- password: import("zod").ZodOptional<import("zod").ZodString>;
65
- database: import("zod").ZodString;
66
- }, "strip", import("zod").ZodTypeAny, {
67
- port?: number | undefined;
68
- password?: string | undefined;
69
- host: string;
70
- user: string;
71
- database: string;
72
- }, {
73
- port?: number | undefined;
74
- user?: string | undefined;
75
- password?: string | undefined;
76
- host: string;
77
- database: string;
78
- }>, import("zod").ZodObject<{
79
- uri: import("zod").ZodString;
80
- }, "strip", import("zod").ZodTypeAny, {
81
- uri: string;
82
- }, {
83
- uri: string;
84
- }>]>;
85
- }, "strip", import("zod").ZodTypeAny, {
86
- driver: "mysql2";
87
- dbCredentials: {
88
- port?: number | undefined;
89
- password?: string | undefined;
90
- host: string;
91
- user: string;
92
- database: string;
93
- } | {
94
- uri: string;
95
- };
96
- }, {
97
- driver: "mysql2";
98
- dbCredentials: {
99
- port?: number | undefined;
100
- user?: string | undefined;
101
- password?: string | undefined;
102
- host: string;
103
- database: string;
104
- } | {
105
- uri: string;
106
- };
107
- }>;
108
- export declare const mysqlConfigIntrospectSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
109
- schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
110
- out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
111
- breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
112
- tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
113
- schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
114
- introspect: import("zod").ZodDefault<import("zod").ZodObject<{
115
- casing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
116
- }, "strip", import("zod").ZodTypeAny, {
117
- casing: "camel" | "preserve";
118
- }, {
119
- casing?: "camel" | "preserve" | undefined;
120
- }>>;
121
- }, "strip", import("zod").ZodTypeAny, {
122
- schema?: string | string[] | undefined;
123
- tablesFilter?: string | string[] | undefined;
124
- out: string;
125
- breakpoints: boolean;
126
- schemaFilter: string | string[];
127
- introspect: {
128
- casing: "camel" | "preserve";
129
- };
130
- }, {
131
- schema?: string | string[] | undefined;
132
- out?: string | undefined;
133
- breakpoints?: boolean | undefined;
134
- tablesFilter?: string | string[] | undefined;
135
- schemaFilter?: string | string[] | undefined;
136
- introspect?: {
137
- casing?: "camel" | "preserve" | undefined;
138
- } | undefined;
139
- }>, import("zod").ZodObject<{
140
- driver: import("zod").ZodLiteral<"mysql2">;
141
- dbCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
142
- host: import("zod").ZodString;
143
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
144
- user: import("zod").ZodDefault<import("zod").ZodString>;
145
- password: import("zod").ZodOptional<import("zod").ZodString>;
146
- database: import("zod").ZodString;
147
- }, "strip", import("zod").ZodTypeAny, {
148
- port?: number | undefined;
149
- password?: string | undefined;
150
- host: string;
151
- user: string;
152
- database: string;
153
- }, {
154
- port?: number | undefined;
155
- user?: string | undefined;
156
- password?: string | undefined;
157
- host: string;
158
- database: string;
159
- }>, import("zod").ZodObject<{
160
- uri: import("zod").ZodString;
161
- }, "strip", import("zod").ZodTypeAny, {
162
- uri: string;
163
- }, {
164
- uri: string;
165
- }>]>;
166
- }, "strip", import("zod").ZodTypeAny, {
167
- driver: "mysql2";
168
- dbCredentials: {
169
- port?: number | undefined;
170
- password?: string | undefined;
171
- host: string;
172
- user: string;
173
- database: string;
174
- } | {
175
- uri: string;
176
- };
177
- }, {
178
- driver: "mysql2";
179
- dbCredentials: {
180
- port?: number | undefined;
181
- user?: string | undefined;
182
- password?: string | undefined;
183
- host: string;
184
- database: string;
185
- } | {
186
- uri: string;
187
- };
188
- }>>;
189
- export declare const mysqlCliIntrospectParams: import("zod").ZodIntersection<import("zod").ZodObject<{
190
- schema: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
191
- out: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
192
- breakpoints: import("zod").ZodDefault<import("zod").ZodBoolean>;
193
- tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
194
- schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
195
- introspectCasing: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"camel">, import("zod").ZodLiteral<"preserve">]>>;
196
- }, "strip", import("zod").ZodTypeAny, {
197
- schema?: string | string[] | undefined;
198
- tablesFilter?: string | string[] | undefined;
199
- out: string;
200
- breakpoints: boolean;
201
- schemaFilter: string | string[];
202
- introspectCasing: "camel" | "preserve";
203
- }, {
204
- schema?: string | string[] | undefined;
205
- out?: string | undefined;
206
- breakpoints?: boolean | undefined;
207
- tablesFilter?: string | string[] | undefined;
208
- schemaFilter?: string | string[] | undefined;
209
- introspectCasing?: "camel" | "preserve" | undefined;
210
- }>, import("zod").ZodUnion<[import("zod").ZodObject<{
211
- driver: import("zod").ZodLiteral<"mysql2">;
212
- host: import("zod").ZodString;
213
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
214
- user: import("zod").ZodDefault<import("zod").ZodString>;
215
- password: import("zod").ZodOptional<import("zod").ZodString>;
216
- database: import("zod").ZodString;
217
- }, "strip", import("zod").ZodTypeAny, {
218
- port?: number | undefined;
219
- password?: string | undefined;
220
- driver: "mysql2";
221
- host: string;
222
- user: string;
223
- database: string;
224
- }, {
225
- port?: number | undefined;
226
- user?: string | undefined;
227
- password?: string | undefined;
228
- driver: "mysql2";
229
- host: string;
230
- database: string;
231
- }>, import("zod").ZodObject<{
232
- driver: import("zod").ZodLiteral<"mysql2">;
233
- uri: import("zod").ZodString;
234
- }, "strip", import("zod").ZodTypeAny, {
235
- driver: "mysql2";
236
- uri: string;
237
- }, {
238
- driver: "mysql2";
239
- uri: string;
240
- }>]>>;
241
- export declare const mysqlCliPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
242
- schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
243
- tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
244
- schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
245
- verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
246
- strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
247
- }, "strip", import("zod").ZodTypeAny, {
248
- tablesFilter?: string | string[] | undefined;
249
- strict: boolean;
250
- schema: string | string[];
251
- schemaFilter: string | string[];
252
- verbose: boolean;
253
- }, {
254
- strict?: boolean | undefined;
255
- tablesFilter?: string | string[] | undefined;
256
- schemaFilter?: string | string[] | undefined;
257
- verbose?: boolean | undefined;
258
- schema: string | string[];
259
- }>, import("zod").ZodUnion<[import("zod").ZodObject<{
260
- driver: import("zod").ZodLiteral<"mysql2">;
261
- host: import("zod").ZodString;
262
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
263
- user: import("zod").ZodDefault<import("zod").ZodString>;
264
- password: import("zod").ZodOptional<import("zod").ZodString>;
265
- database: import("zod").ZodString;
266
- }, "strip", import("zod").ZodTypeAny, {
267
- port?: number | undefined;
268
- password?: string | undefined;
269
- driver: "mysql2";
270
- host: string;
271
- user: string;
272
- database: string;
273
- }, {
274
- port?: number | undefined;
275
- user?: string | undefined;
276
- password?: string | undefined;
277
- driver: "mysql2";
278
- host: string;
279
- database: string;
280
- }>, import("zod").ZodObject<{
281
- driver: import("zod").ZodLiteral<"mysql2">;
282
- uri: import("zod").ZodString;
283
- }, "strip", import("zod").ZodTypeAny, {
284
- driver: "mysql2";
285
- uri: string;
286
- }, {
287
- driver: "mysql2";
288
- uri: string;
289
- }>]>>;
290
- export declare const mysqlConfigPushParams: import("zod").ZodIntersection<import("zod").ZodObject<{
291
- schema: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
292
- tablesFilter: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
293
- schemaFilter: import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
294
- verbose: import("zod").ZodDefault<import("zod").ZodBoolean>;
295
- strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
296
- }, "strip", import("zod").ZodTypeAny, {
297
- tablesFilter?: string | string[] | undefined;
298
- strict: boolean;
299
- schema: string | string[];
300
- schemaFilter: string | string[];
301
- verbose: boolean;
302
- }, {
303
- strict?: boolean | undefined;
304
- tablesFilter?: string | string[] | undefined;
305
- schemaFilter?: string | string[] | undefined;
306
- verbose?: boolean | undefined;
307
- schema: string | string[];
308
- }>, import("zod").ZodObject<{
309
- driver: import("zod").ZodLiteral<"mysql2">;
310
- dbCredentials: import("zod").ZodUnion<[import("zod").ZodObject<{
311
- host: import("zod").ZodString;
312
- port: import("zod").ZodOptional<import("zod").ZodNumber>;
313
- user: import("zod").ZodDefault<import("zod").ZodString>;
314
- password: import("zod").ZodOptional<import("zod").ZodString>;
315
- database: import("zod").ZodString;
316
- }, "strip", import("zod").ZodTypeAny, {
317
- port?: number | undefined;
318
- password?: string | undefined;
319
- host: string;
320
- user: string;
321
- database: string;
322
- }, {
323
- port?: number | undefined;
324
- user?: string | undefined;
325
- password?: string | undefined;
326
- host: string;
327
- database: string;
328
- }>, import("zod").ZodObject<{
329
- uri: import("zod").ZodString;
330
- }, "strip", import("zod").ZodTypeAny, {
331
- uri: string;
332
- }, {
333
- uri: string;
334
- }>]>;
335
- }, "strip", import("zod").ZodTypeAny, {
336
- driver: "mysql2";
337
- dbCredentials: {
338
- port?: number | undefined;
339
- password?: string | undefined;
340
- host: string;
341
- user: string;
342
- database: string;
343
- } | {
344
- uri: string;
345
- };
346
- }, {
347
- driver: "mysql2";
348
- dbCredentials: {
349
- port?: number | undefined;
350
- user?: string | undefined;
351
- password?: string | undefined;
352
- host: string;
353
- database: string;
354
- } | {
355
- uri: string;
356
- };
357
- }>>;
358
- export type MySQLPushConfig = TypeOf<typeof mysqlConfigPushParams>;
359
- export type MySQLConfigIntrospect = TypeOf<typeof mysqlConfigIntrospectSchema>;
360
- export type MySQLCliIntrospect = TypeOf<typeof mysqlCliIntrospectParams>;
361
- export type MySQLConnectionConfig = TypeOf<typeof mysqlConnectionConfig>;
27
+ export type MysqlCredentials = TypeOf<typeof mysqlCredentials>;
362
28
  export declare const printCliConnectionIssues: (options: any) => void;
363
- export declare const printConfigConnectionIssues: (options: any) => void;
364
- export declare const validateMySqlIntrospect: (options: Record<string, any>) => Promise<MySQLConfigIntrospect>;
365
- export declare const validateMySqlPush: (options: Record<string, unknown>) => Promise<MySQLPushConfig>;
29
+ export declare const printConfigConnectionIssues: (options: Record<string, unknown>) => void;
@@ -10,6 +10,7 @@ export declare const outputs: {
10
10
  drivers: (param: string) => string;
11
11
  noCredentials: () => string;
12
12
  noDriver: () => string;
13
+ noDialect: () => string;
13
14
  };
14
15
  common: {
15
16
  ambiguousParams: (command: string) => string;
@@ -20,6 +21,7 @@ export declare const outputs: {
20
21
  connection: {
21
22
  driver: () => string;
22
23
  required: () => string;
24
+ awsDataApi: () => void;
23
25
  };
24
26
  };
25
27
  mysql: {