drizzle-kit 0.20.5-c7dc2fe → 0.20.5-fd4dd75
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +4052 -2001
- package/cli/commands/pgIntrospect.d.ts +6 -1
- package/cli/commands/sqliteIntrospect.d.ts +6 -1
- package/cli/commands/utils.d.ts +1 -1
- package/cli/utils.d.ts +1 -0
- package/introspect-pg.d.ts +12 -0
- package/introspect-sqlite.d.ts +10 -0
- package/package.json +7 -6
- package/serializer/studioUtils.d.ts +15 -3
- package/utils-studio.js +1288 -1285
- package/utils-studio.mjs +1337 -1329
- package/utils.js +3645 -1771
- package/introspect.d.ts +0 -4
- package/sqlite-introspect.d.ts +0 -5
package/introspect.d.ts
DELETED
package/sqlite-introspect.d.ts
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
import "./@types/utils";
|
2
|
-
import type { ConfigIntrospectCasing } from "./cli/commands/utils";
|
3
|
-
import type { SQLiteSchema } from "./serializer/sqliteSchema";
|
4
|
-
export declare const indexName: (tableName: string, columns: string[]) => string;
|
5
|
-
export declare const schemaToTypeScript: (schema: SQLiteSchema, casing: ConfigIntrospectCasing["casing"]) => string;
|