drizzle-kit 0.20.5-e91a5f5 → 0.20.5-fd4dd75
Sign up to get free protection for your applications and to get access to all the features.
- package/bin.cjs +35428 -33410
- package/cli/commands/pgIntrospect.d.ts +6 -1
- package/cli/commands/pgPushUtils.d.ts +14 -0
- package/cli/commands/sqliteIntrospect.d.ts +6 -1
- package/cli/commands/utils.d.ts +1 -1
- package/cli/selector-ui.d.ts +13 -0
- package/cli/utils.d.ts +12 -0
- package/cli/validations/mysql.d.ts +365 -0
- package/cli/validations/sqlite.d.ts +220 -0
- package/cli/validations/studio.d.ts +593 -0
- package/drivers/index.d.ts +0 -14
- package/global.d.ts +0 -1
- package/introspect-pg.d.ts +12 -0
- package/introspect-sqlite.d.ts +10 -0
- package/orm-extenstions/d1-driver/driver.d.ts +8 -0
- package/orm-extenstions/d1-driver/session.d.ts +51 -0
- package/orm-extenstions/d1-driver/wrangler-client.d.ts +3 -0
- package/package.json +9 -19
- package/serializer/mysqlImports.d.ts +0 -5
- package/serializer/mysqlSerializer.d.ts +2 -2
- package/serializer/sqliteImports.d.ts +0 -4
- package/serializer/studioUtils.d.ts +65 -0
- package/utils-studio.js +1289 -1285
- package/utils-studio.mjs +1337 -1328
- package/utils.d.ts +15 -1
- package/utils.js +54766 -3594
- package/introspect.d.ts +0 -4
- package/payload.js +0 -36761
- package/payload.mjs +0 -36809
- package/sqlite-introspect.d.ts +0 -5
- package/utils.mjs +0 -8055
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;
|