drizzle-kit 0.20.17-84934d2 → 0.20.17-92ad3af
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +26297 -25535
- package/cli/commands/migrate.d.ts +41 -41
- package/cli/commands/mysqlIntrospect.d.ts +8 -8
- package/cli/commands/pgIntrospect.d.ts +8 -8
- package/cli/commands/sqliteIntrospect.d.ts +12 -12
- package/cli/commands/utils.d.ts +2 -2
- package/cli/validations/cli.d.ts +28 -28
- package/cli/validations/common.d.ts +35 -35
- package/cli/validations/mysql.d.ts +4 -4
- package/cli/validations/outputs.d.ts +2 -1
- package/cli/validations/pg.d.ts +4 -4
- package/index.d.mts +48 -2
- package/index.d.ts +48 -2
- package/package.json +1 -1
- package/payload.js +1078 -474
- package/payload.mjs +885 -281
- package/schemaValidator.d.ts +222 -222
- package/serializer/mysqlSchema.d.ts +892 -892
- package/serializer/pgSchema.d.ts +749 -749
- package/serializer/sqliteSchema.d.ts +457 -457
- package/serializer/studio.d.ts +1 -1
- package/snapshotsDiffer.d.ts +316 -315
- package/utils-studio.js +947 -841
- package/utils-studio.mjs +920 -814
- package/utils.js +844 -219
- package/utils.mjs +819 -194
package/serializer/studio.d.ts
CHANGED
@@ -13,7 +13,7 @@ type CustomDefault = {
|
|
13
13
|
func: () => unknown;
|
14
14
|
};
|
15
15
|
export type Setup = {
|
16
|
-
dialect: "
|
16
|
+
dialect: "pg" | "mysql" | "sqlite";
|
17
17
|
proxy: (params: ProxyParams) => Promise<any[] | any>;
|
18
18
|
customDefaults: CustomDefault[];
|
19
19
|
};
|