drizzle-kit 1.0.0-beta.1-84d9a79 → 1.0.0-beta.1-9fb1d0d
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/api.d.mts +1 -1
- package/api.d.ts +1 -1
- package/api.js +1546 -1569
- package/api.mjs +1546 -1569
- package/bin.cjs +2255 -293
- package/package.json +2 -2
package/api.d.mts
CHANGED
|
@@ -2621,7 +2621,7 @@ type DrizzleMySQLSnapshotJSON = MySqlSchema;
|
|
|
2621
2621
|
type DrizzleSingleStoreSnapshotJSON = SingleStoreSchema;
|
|
2622
2622
|
declare const generateDrizzleJson: (imports: Record<string, unknown>, prevId?: string, schemaFilters?: string[], casing?: CasingType) => PgSchema;
|
|
2623
2623
|
declare const generateMigration: (prev: DrizzleSnapshotJSON, cur: DrizzleSnapshotJSON) => Promise<string[]>;
|
|
2624
|
-
declare const pushSchema: (imports: Record<string, unknown>, drizzleInstance: PgDatabase<any, any, any, any
|
|
2624
|
+
declare const pushSchema: (imports: Record<string, unknown>, drizzleInstance: PgDatabase<any, any, any, any>, schemaFilters?: string[], tablesFilter?: string[], extensionsFilters?: Config["extensionsFilters"]) => Promise<{
|
|
2625
2625
|
hasDataLoss: boolean;
|
|
2626
2626
|
warnings: string[];
|
|
2627
2627
|
statementsToExecute: string[];
|
package/api.d.ts
CHANGED
|
@@ -2621,7 +2621,7 @@ type DrizzleMySQLSnapshotJSON = MySqlSchema;
|
|
|
2621
2621
|
type DrizzleSingleStoreSnapshotJSON = SingleStoreSchema;
|
|
2622
2622
|
declare const generateDrizzleJson: (imports: Record<string, unknown>, prevId?: string, schemaFilters?: string[], casing?: CasingType) => PgSchema;
|
|
2623
2623
|
declare const generateMigration: (prev: DrizzleSnapshotJSON, cur: DrizzleSnapshotJSON) => Promise<string[]>;
|
|
2624
|
-
declare const pushSchema: (imports: Record<string, unknown>, drizzleInstance: PgDatabase<any, any, any, any
|
|
2624
|
+
declare const pushSchema: (imports: Record<string, unknown>, drizzleInstance: PgDatabase<any, any, any, any>, schemaFilters?: string[], tablesFilter?: string[], extensionsFilters?: Config["extensionsFilters"]) => Promise<{
|
|
2625
2625
|
hasDataLoss: boolean;
|
|
2626
2626
|
warnings: string[];
|
|
2627
2627
|
statementsToExecute: string[];
|