drizzle-kit 0.20.17-a2979a1 → 0.20.17-b08243d
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +25462 -26322
- 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 +29 -29
- package/cli/validations/common.d.ts +35 -35
- package/cli/validations/mysql.d.ts +4 -4
- package/cli/validations/outputs.d.ts +1 -2
- package/cli/validations/pg.d.ts +4 -4
- package/index.d.mts +2 -48
- package/index.d.ts +2 -48
- package/package.json +1 -1
- package/payload.js +476 -1080
- package/payload.mjs +283 -887
- package/schemaValidator.d.ts +222 -222
- package/serializer/mysqlSchema.d.ts +890 -890
- package/serializer/pgSchema.d.ts +745 -745
- package/serializer/sqliteSchema.d.ts +457 -457
- package/serializer/studio.d.ts +1 -1
- package/snapshotsDiffer.d.ts +315 -316
- package/utils-studio.js +841 -947
- package/utils-studio.mjs +814 -920
- package/utils.js +219 -844
- package/utils.mjs +194 -819
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: "postgresql" | "mysql" | "sqlite";
|
17
17
|
proxy: (params: ProxyParams) => Promise<any[] | any>;
|
18
18
|
customDefaults: CustomDefault[];
|
19
19
|
};
|