drizzle-kit 0.20.17-615c551 → 0.20.17-76a18b4
Sign up to get free protection for your applications and to get access to all the features.
- package/@types/utils.d.ts +0 -1
- package/bin.cjs +18632 -45491
- 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 +31 -31
- package/cli/validations/common.d.ts +35 -35
- package/cli/validations/mysql.d.ts +4 -4
- package/cli/validations/outputs.d.ts +2 -2
- package/cli/validations/pg.d.ts +4 -19
- package/cli/views.d.ts +0 -1
- package/index.d.mts +51 -5
- package/index.d.ts +51 -5
- package/package.json +1 -3
- package/payload.js +1090 -494
- package/payload.mjs +897 -301
- 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 +932 -829
- package/utils-studio.mjs +905 -802
- 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
|
};
|