drizzle-kit 0.31.8 → 0.31.10-a7a15d0

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.
Files changed (8) hide show
  1. package/api.d.mts +4 -1
  2. package/api.d.ts +4 -1
  3. package/api.js +311 -185
  4. package/api.mjs +312 -190
  5. package/bin.cjs +4063 -5708
  6. package/package.json +3 -4
  7. package/utils.js +71 -39
  8. package/utils.mjs +71 -39
package/api.d.mts CHANGED
@@ -3110,7 +3110,10 @@ declare const pushSQLiteSchema: (imports: Record<string, unknown>, drizzleInstan
3110
3110
  statementsToExecute: string[];
3111
3111
  apply: () => Promise<void>;
3112
3112
  }>;
3113
- declare const startStudioSQLiteServer: (imports: Record<string, unknown>, credentials: SqliteCredentials, options?: {
3113
+ declare const startStudioSQLiteServer: (imports: Record<string, unknown>, credentials: SqliteCredentials | {
3114
+ driver: "d1";
3115
+ binding: D1Database;
3116
+ }, options?: {
3114
3117
  host?: string;
3115
3118
  port?: number;
3116
3119
  casing?: CasingType;
package/api.d.ts CHANGED
@@ -3110,7 +3110,10 @@ declare const pushSQLiteSchema: (imports: Record<string, unknown>, drizzleInstan
3110
3110
  statementsToExecute: string[];
3111
3111
  apply: () => Promise<void>;
3112
3112
  }>;
3113
- declare const startStudioSQLiteServer: (imports: Record<string, unknown>, credentials: SqliteCredentials, options?: {
3113
+ declare const startStudioSQLiteServer: (imports: Record<string, unknown>, credentials: SqliteCredentials | {
3114
+ driver: "d1";
3115
+ binding: D1Database;
3116
+ }, options?: {
3114
3117
  host?: string;
3115
3118
  port?: number;
3116
3119
  casing?: CasingType;