drizzle-kit 0.20.14-95be75d → 0.20.14-a77266f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin.cjs +41607 -41369
- package/cli/commands/migrate.d.ts +7 -7
- package/cli/commands/mysqlIntrospect.d.ts +3 -3
- package/cli/commands/mysqlPushUtils.d.ts +4 -4
- package/cli/commands/mysqlUp.d.ts +1 -1
- package/cli/commands/pgConnect.d.ts +1 -1
- package/cli/commands/pgIntrospect.d.ts +1 -1
- package/cli/commands/pgPushUtils.d.ts +2 -2
- package/cli/commands/pgUp.d.ts +1 -1
- package/cli/commands/sqlitePushUtils.d.ts +3 -3
- package/cli/commands/upFolders.d.ts +1 -1
- package/cli/commands/utils.d.ts +2 -11
- package/cli/validations/common.d.ts +1 -1
- package/cli/views.d.ts +1 -1
- package/drivers/index.d.ts +14 -0
- package/global.d.ts +1 -0
- package/package.json +15 -3
- package/payload.d.mts +33 -0
- package/payload.d.ts +33 -0
- package/payload.js +36792 -0
- package/payload.mjs +36811 -0
- package/schemaValidator.d.ts +1 -1
- package/serializer/mysqlImports.d.ts +5 -0
- package/serializer/mysqlSerializer.d.ts +4 -4
- package/serializer/sqliteImports.d.ts +4 -0
- package/serializer/sqliteSerializer.d.ts +2 -2
- package/utils-studio.js +7 -12
- package/utils-studio.mjs +7 -12
- package/utils.d.ts +1 -15
- package/utils.js +3631 -55067
- package/utils.mjs +8062 -0
- package/cli/commands/check.d.ts +0 -2
- package/cli/commands/drop.d.ts +0 -4
- package/cli/commands/push.d.ts +0 -6
- package/cli/commands/sqliteUp.d.ts +0 -2
- package/cli/index.d.ts +0 -71
- package/cli/utils.d.ts +0 -12
- package/cli/validations/sqlite.d.ts +0 -220
- package/cli/validations/studio.d.ts +0 -593
- package/orm-extenstions/d1-driver/driver.d.ts +0 -8
- package/orm-extenstions/d1-driver/session.d.ts +0 -51
- package/orm-extenstions/d1-driver/wrangler-client.d.ts +0 -3
- package/serializer/studioUtils.d.ts +0 -65
- package/utils/certs.d.ts +0 -4
package/schemaValidator.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeOf } from "zod";
|
|
2
|
-
|
|
2
|
+
declare const dialect: import("zod").ZodEnum<["pg", "mysql", "sqlite"]>;
|
|
3
3
|
export type Dialect = TypeOf<typeof dialect>;
|
|
4
4
|
declare const commonSquashedSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
5
5
|
version: import("zod").ZodLiteral<"5">;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { AnyMySqlTable, MySqlSchema } from "drizzle-orm/mysql-core";
|
|
2
|
+
export declare const prepareFromExports: (exports: Record<string, unknown>) => {
|
|
3
|
+
tables: AnyMySqlTable<{}>[];
|
|
4
|
+
enums: any[];
|
|
5
|
+
schemas: MySqlSchema<string>[];
|
|
6
|
+
};
|
|
2
7
|
export declare const prepareFromMySqlImports: (imports: string[]) => Promise<{
|
|
3
8
|
tables: AnyMySqlTable<{}>[];
|
|
4
9
|
enums: any[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AnyMySqlTable, MySqlSchema } from "drizzle-orm/mysql-core";
|
|
2
|
-
import { MySqlSchemaInternal } from "
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { MySqlSchemaInternal } from "src/serializer/mysqlSchema";
|
|
3
|
+
import { IntrospectStage, IntrospectStatus } from "src/cli/views";
|
|
4
|
+
import { DrizzleDbClient } from "src/drivers";
|
|
5
5
|
export declare const indexName: (tableName: string, columns: string[]) => string;
|
|
6
6
|
export declare const generateMySqlSnapshot: (tables: AnyMySqlTable[], enums: any[], mysqlSchemas: MySqlSchema[]) => MySqlSchemaInternal;
|
|
7
|
-
export declare const fromDatabase: (db:
|
|
7
|
+
export declare const fromDatabase: (db: DrizzleDbClient, inputSchema: string, tablesFilter?: (table: string) => boolean, progressCallback?: ((stage: IntrospectStage, count: number, status: IntrospectStatus) => void) | undefined) => Promise<MySqlSchemaInternal>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
|
|
2
|
+
export declare const prepareFromExports: (exports: Record<string, unknown>) => {
|
|
3
|
+
tables: AnySQLiteTable<{}>[];
|
|
4
|
+
enums: any[];
|
|
5
|
+
};
|
|
2
6
|
export declare const prepareFromSqliteImports: (imports: string[]) => Promise<{
|
|
3
7
|
tables: AnySQLiteTable<{}>[];
|
|
4
8
|
enums: any[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { SQLiteSchemaInternal } from "../serializer/sqliteSchema";
|
|
2
2
|
import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
|
|
3
|
-
import type { IntrospectStage, IntrospectStatus } from "
|
|
4
|
-
import type { DrizzleDbClient } from "
|
|
3
|
+
import type { IntrospectStage, IntrospectStatus } from "src/cli/views";
|
|
4
|
+
import type { DrizzleDbClient } from "src/drivers";
|
|
5
5
|
export declare const generateSqliteSnapshot: (tables: AnySQLiteTable[], enums: any[]) => SQLiteSchemaInternal;
|
|
6
6
|
export declare const fromDatabase: (db: DrizzleDbClient, tablesFilter?: (table: string) => boolean, progressCallback?: ((stage: IntrospectStage, count: number, status: IntrospectStatus) => void) | undefined) => Promise<SQLiteSchemaInternal>;
|
package/utils-studio.js
CHANGED
|
@@ -1081,14 +1081,6 @@ var init_views = __esm({
|
|
|
1081
1081
|
}
|
|
1082
1082
|
});
|
|
1083
1083
|
|
|
1084
|
-
// src/global.ts
|
|
1085
|
-
var originUUID;
|
|
1086
|
-
var init_global = __esm({
|
|
1087
|
-
"src/global.ts"() {
|
|
1088
|
-
originUUID = "00000000-0000-0000-0000-000000000000";
|
|
1089
|
-
}
|
|
1090
|
-
});
|
|
1091
|
-
|
|
1092
1084
|
// src/serializer/index.ts
|
|
1093
1085
|
var glob;
|
|
1094
1086
|
var init_serializer = __esm({
|
|
@@ -1579,7 +1571,7 @@ var init_pgSerializer = __esm({
|
|
|
1579
1571
|
--end;
|
|
1580
1572
|
return start > 0 || end < str.length ? str.substring(start, end) : str.toString();
|
|
1581
1573
|
};
|
|
1582
|
-
fromDatabase2 = async (db, tablesFilter = () => true, schemaFilters, progressCallback) => {
|
|
1574
|
+
fromDatabase2 = async (db, tablesFilter = (table) => true, schemaFilters, progressCallback) => {
|
|
1583
1575
|
const result = {};
|
|
1584
1576
|
const internals = { tables: {} };
|
|
1585
1577
|
const where = schemaFilters.map((t) => `table_schema = '${t}'`).join(" or ");
|
|
@@ -1639,7 +1631,7 @@ var init_pgSerializer = __esm({
|
|
|
1639
1631
|
END AS data_type, INFORMATION_SCHEMA.COLUMNS.table_name, INFORMATION_SCHEMA.COLUMNS.column_name, INFORMATION_SCHEMA.COLUMNS.column_default, INFORMATION_SCHEMA.COLUMNS.data_type as additional_dt
|
|
1640
1632
|
FROM pg_attribute a
|
|
1641
1633
|
JOIN INFORMATION_SCHEMA.COLUMNS ON INFORMATION_SCHEMA.COLUMNS.column_name = a.attname
|
|
1642
|
-
WHERE a.attrelid = '"${tableSchema}"."${tableName}"'::regclass and INFORMATION_SCHEMA.COLUMNS.table_name = '${tableName}'
|
|
1634
|
+
WHERE a.attrelid = '"${tableSchema}"."${tableName}"'::regclass and INFORMATION_SCHEMA.COLUMNS.table_name = '${tableName}' and INFORMATION_SCHEMA.COLUMNS.table_schema = '${tableSchema}'
|
|
1643
1635
|
AND a.attnum > 0
|
|
1644
1636
|
AND NOT a.attisdropped
|
|
1645
1637
|
ORDER BY a.attnum;`
|
|
@@ -2174,7 +2166,11 @@ var sqliteSchemaToDrizzle = (schema) => {
|
|
|
2174
2166
|
|
|
2175
2167
|
// src/cli/commands/sqliteIntrospect.ts
|
|
2176
2168
|
init_views();
|
|
2177
|
-
|
|
2169
|
+
|
|
2170
|
+
// src/global.ts
|
|
2171
|
+
var originUUID = "00000000-0000-0000-0000-000000000000";
|
|
2172
|
+
|
|
2173
|
+
// src/cli/commands/sqliteIntrospect.ts
|
|
2178
2174
|
init_sqliteSerializer();
|
|
2179
2175
|
|
|
2180
2176
|
// node_modules/.pnpm/camelcase@7.0.1/node_modules/camelcase/index.js
|
|
@@ -3360,7 +3356,6 @@ var import_relations = require("drizzle-orm/relations");
|
|
|
3360
3356
|
init_pgSerializer();
|
|
3361
3357
|
|
|
3362
3358
|
// src/cli/commands/pgIntrospect.ts
|
|
3363
|
-
init_global();
|
|
3364
3359
|
var pgPushIntrospect = async (connection, filters, schemaFilters) => {
|
|
3365
3360
|
const { client } = connection;
|
|
3366
3361
|
const matchers = filters.map((it) => {
|
package/utils-studio.mjs
CHANGED
|
@@ -1083,14 +1083,6 @@ var init_views = __esm({
|
|
|
1083
1083
|
}
|
|
1084
1084
|
});
|
|
1085
1085
|
|
|
1086
|
-
// src/global.ts
|
|
1087
|
-
var originUUID;
|
|
1088
|
-
var init_global = __esm({
|
|
1089
|
-
"src/global.ts"() {
|
|
1090
|
-
originUUID = "00000000-0000-0000-0000-000000000000";
|
|
1091
|
-
}
|
|
1092
|
-
});
|
|
1093
|
-
|
|
1094
1086
|
// src/serializer/index.ts
|
|
1095
1087
|
import * as glob from "glob";
|
|
1096
1088
|
var init_serializer = __esm({
|
|
@@ -1588,7 +1580,7 @@ var init_pgSerializer = __esm({
|
|
|
1588
1580
|
--end;
|
|
1589
1581
|
return start > 0 || end < str.length ? str.substring(start, end) : str.toString();
|
|
1590
1582
|
};
|
|
1591
|
-
fromDatabase2 = async (db, tablesFilter = () => true, schemaFilters, progressCallback) => {
|
|
1583
|
+
fromDatabase2 = async (db, tablesFilter = (table) => true, schemaFilters, progressCallback) => {
|
|
1592
1584
|
const result = {};
|
|
1593
1585
|
const internals = { tables: {} };
|
|
1594
1586
|
const where = schemaFilters.map((t) => `table_schema = '${t}'`).join(" or ");
|
|
@@ -1648,7 +1640,7 @@ var init_pgSerializer = __esm({
|
|
|
1648
1640
|
END AS data_type, INFORMATION_SCHEMA.COLUMNS.table_name, INFORMATION_SCHEMA.COLUMNS.column_name, INFORMATION_SCHEMA.COLUMNS.column_default, INFORMATION_SCHEMA.COLUMNS.data_type as additional_dt
|
|
1649
1641
|
FROM pg_attribute a
|
|
1650
1642
|
JOIN INFORMATION_SCHEMA.COLUMNS ON INFORMATION_SCHEMA.COLUMNS.column_name = a.attname
|
|
1651
|
-
WHERE a.attrelid = '"${tableSchema}"."${tableName}"'::regclass and INFORMATION_SCHEMA.COLUMNS.table_name = '${tableName}'
|
|
1643
|
+
WHERE a.attrelid = '"${tableSchema}"."${tableName}"'::regclass and INFORMATION_SCHEMA.COLUMNS.table_name = '${tableName}' and INFORMATION_SCHEMA.COLUMNS.table_schema = '${tableSchema}'
|
|
1652
1644
|
AND a.attnum > 0
|
|
1653
1645
|
AND NOT a.attisdropped
|
|
1654
1646
|
ORDER BY a.attnum;`
|
|
@@ -2208,7 +2200,11 @@ var sqliteSchemaToDrizzle = (schema) => {
|
|
|
2208
2200
|
|
|
2209
2201
|
// src/cli/commands/sqliteIntrospect.ts
|
|
2210
2202
|
init_views();
|
|
2211
|
-
|
|
2203
|
+
|
|
2204
|
+
// src/global.ts
|
|
2205
|
+
var originUUID = "00000000-0000-0000-0000-000000000000";
|
|
2206
|
+
|
|
2207
|
+
// src/cli/commands/sqliteIntrospect.ts
|
|
2212
2208
|
init_sqliteSerializer();
|
|
2213
2209
|
|
|
2214
2210
|
// node_modules/.pnpm/camelcase@7.0.1/node_modules/camelcase/index.js
|
|
@@ -3399,7 +3395,6 @@ import {
|
|
|
3399
3395
|
init_pgSerializer();
|
|
3400
3396
|
|
|
3401
3397
|
// src/cli/commands/pgIntrospect.ts
|
|
3402
|
-
init_global();
|
|
3403
3398
|
var pgPushIntrospect = async (connection, filters, schemaFilters) => {
|
|
3404
3399
|
const { client } = connection;
|
|
3405
3400
|
const matchers = filters.map((it) => {
|
package/utils.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { Dialect } from "./schemaValidator";
|
|
1
|
+
import type { Dialect } from "./schemaValidator";
|
|
2
2
|
import { NamedWithSchema } from "./cli/commands/migrate";
|
|
3
|
-
import { PgDatabase } from "drizzle-orm/pg-core";
|
|
4
|
-
import { PgSchema as PgSchemaKit } from "./serializer/pgSchema";
|
|
5
|
-
import { DbConnection } from ".";
|
|
6
3
|
export declare const assertV1OutFolder: (out: string, dialect: Dialect | "{dialect}") => void;
|
|
7
4
|
export type Journal = {
|
|
8
5
|
version: string;
|
|
@@ -22,7 +19,6 @@ export declare const prepareOutFolder: (out: string, dialect: Dialect) => {
|
|
|
22
19
|
snapshots: string[];
|
|
23
20
|
journal: any;
|
|
24
21
|
};
|
|
25
|
-
export declare const mapValues: <IN, OUT>(obj: Record<string, IN>, map: (input: IN) => OUT) => Record<string, OUT>;
|
|
26
22
|
export declare const validateWithReport: (snapshots: string[], dialect: Dialect) => {
|
|
27
23
|
malformed: string[];
|
|
28
24
|
nonLatest: string[];
|
|
@@ -201,13 +197,3 @@ export declare const statementsForDiffs: (in1: any, in2: any) => Promise<{
|
|
|
201
197
|
columns: {};
|
|
202
198
|
} | undefined;
|
|
203
199
|
}>;
|
|
204
|
-
export type DrizzleSnapshotJSON = PgSchemaKit;
|
|
205
|
-
export declare const generateDrizzleJson: (imports: Record<string, unknown>, prevId?: string) => PgSchemaKit;
|
|
206
|
-
export declare const generateMigration: (prev: DrizzleSnapshotJSON, cur: DrizzleSnapshotJSON) => Promise<string[]>;
|
|
207
|
-
export declare const pushSchema: (imports: Record<string, unknown>, db: PgDatabase<any>) => Promise<{
|
|
208
|
-
hasDataLoss: boolean;
|
|
209
|
-
warnings: string[];
|
|
210
|
-
statementsToExecute: string[];
|
|
211
|
-
apply: () => Promise<void>;
|
|
212
|
-
}>;
|
|
213
|
-
export declare const prepareFrom: (connection: DbConnection) => Promise<Record<string, any>>;
|