drizzle-kit 0.20.0-f39d8bc → 0.20.1-56e7be6
Sign up to get free protection for your applications and to get access to all the features.
- package/@types/utils.d.ts +12 -0
- package/{index.cjs → bin.cjs} +28995 -37098
- package/cli/commands/migrate.d.ts +260 -0
- package/cli/commands/mysqlUp.d.ts +4 -0
- package/cli/commands/pgConnect.d.ts +5 -0
- package/cli/commands/pgIntrospect.d.ts +116 -0
- package/cli/commands/pgPushUtils.d.ts +14 -0
- package/cli/commands/pgUp.d.ts +4 -0
- package/cli/commands/sqliteIntrospect.d.ts +102 -0
- package/cli/commands/sqliteUtils.d.ts +162 -0
- package/cli/commands/upFolders.d.ts +27 -0
- package/cli/commands/utils.d.ts +265 -0
- package/cli/selector-ui.d.ts +13 -0
- package/cli/utils.d.ts +11 -0
- package/cli/validations/common.d.ts +13 -0
- package/cli/validations/mysql.d.ts +365 -0
- package/cli/validations/outputs.d.ts +40 -0
- package/cli/validations/pg.d.ts +438 -0
- package/cli/validations/sqlite.d.ts +220 -0
- package/cli/validations/studio.d.ts +593 -0
- package/cli/views.d.ts +61 -0
- package/drivers/index.d.ts +25 -0
- package/global.d.ts +3 -0
- package/index.d.mts +105 -0
- package/index.d.ts +48 -1
- package/index.js +31 -0
- package/index.mjs +7 -0
- package/introspect.d.ts +4 -0
- package/jsonDiffer.d.ts +76 -0
- package/jsonStatements.d.ts +349 -0
- package/migrationPreparator.d.ts +35 -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 +26 -9
- package/schemaValidator.d.ts +1306 -0
- package/serializer/index.d.ts +9 -0
- package/serializer/mysqlImports.d.ts +6 -0
- package/serializer/mysqlSchema.d.ts +3833 -0
- package/serializer/mysqlSerializer.d.ts +7 -0
- package/serializer/pgImports.d.ts +11 -0
- package/serializer/pgSchema.d.ts +4244 -0
- package/serializer/pgSerializer.d.ts +9 -0
- package/serializer/sqliteImports.d.ts +5 -0
- package/serializer/sqliteSchema.d.ts +3227 -0
- package/serializer/sqliteSerializer.d.ts +8 -0
- package/serializer/studioUtils.d.ts +53 -0
- package/snapshotsDiffer.d.ts +2660 -0
- package/sqlgenerator.d.ts +33 -0
- package/sqlite-introspect.d.ts +5 -0
- package/utils/words.d.ts +7 -0
- package/utils-studio.d.ts +5 -0
- package/utils-studio.js +3367 -0
- package/utils.d.ts +211 -0
- package/utils.js +52586 -11755
- package/loader.mjs +0 -57
@@ -0,0 +1,33 @@
|
|
1
|
+
import { JsonCreateIndexStatement, JsonDropIndexStatement, JsonDropTableStatement, JsonRenameTableStatement, JsonSqliteAddColumnStatement, JsonSqliteCreateTableStatement, JsonStatement } from "./jsonStatements";
|
2
|
+
import { Dialect } from "./schemaValidator";
|
3
|
+
export declare const pgNativeTypes: Set<string>;
|
4
|
+
declare abstract class Convertor {
|
5
|
+
abstract can(statement: JsonStatement, dialect: Dialect): boolean;
|
6
|
+
abstract convert(statement: JsonStatement): string;
|
7
|
+
}
|
8
|
+
export declare class SQLiteCreateTableConvertor extends Convertor {
|
9
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
10
|
+
convert(st: JsonSqliteCreateTableStatement): string;
|
11
|
+
}
|
12
|
+
export declare class SQLiteDropTableConvertor extends Convertor {
|
13
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
14
|
+
convert(statement: JsonDropTableStatement): string;
|
15
|
+
}
|
16
|
+
export declare class SqliteRenameTableConvertor extends Convertor {
|
17
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
18
|
+
convert(statement: JsonRenameTableStatement): string;
|
19
|
+
}
|
20
|
+
export declare class SQLiteAlterTableAddColumnConvertor extends Convertor {
|
21
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
22
|
+
convert(statement: JsonSqliteAddColumnStatement): string;
|
23
|
+
}
|
24
|
+
export declare class CreateSqliteIndexConvertor extends Convertor {
|
25
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
26
|
+
convert(statement: JsonCreateIndexStatement): string;
|
27
|
+
}
|
28
|
+
export declare class SqliteDropIndexConvertor extends Convertor {
|
29
|
+
can(statement: JsonStatement, dialect: Dialect): boolean;
|
30
|
+
convert(statement: JsonDropIndexStatement): string;
|
31
|
+
}
|
32
|
+
export declare const fromJson: (statements: JsonStatement[], dialect: Dialect) => string[];
|
33
|
+
export {};
|
@@ -0,0 +1,5 @@
|
|
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;
|
package/utils/words.d.ts
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
export { toDrizzle as drizzleSchemaPg } from "./serializer/pgSerializer";
|
2
|
+
export { toDrizzle as drizzleSchemaSQLite } from "./serializer/sqliteSerializer";
|
3
|
+
export { sqlitePushIntrospect } from "./cli/commands/sqliteIntrospect";
|
4
|
+
export { pgPushIntrospect } from "./cli/commands/pgIntrospect";
|
5
|
+
export { DrizzleORMPgClient } from "./drivers";
|