drizzle-kit 0.20.2 → 0.20.4-2a3dc47
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +2888 -974
- package/cli/commands/pgIntrospect.d.ts +6 -1
- package/cli/commands/sqliteIntrospect.d.ts +6 -1
- package/cli/utils.d.ts +1 -0
- package/introspect-pg.d.ts +9 -0
- package/introspect-sqlite.d.ts +10 -0
- package/package.json +19 -4
- package/serializer/studioUtils.d.ts +15 -3
- package/utils-studio.d.mts +5 -0
- package/utils-studio.d.ts +1 -1
- package/utils-studio.js +13 -3
- package/utils-studio.mjs +3410 -0
- package/utils.js +2600 -814
- 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;
|