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.
- package/api.d.mts +4 -1
- package/api.d.ts +4 -1
- package/api.js +311 -185
- package/api.mjs +312 -190
- package/bin.cjs +4063 -5708
- package/package.json +3 -4
- package/utils.js +71 -39
- 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
|
|
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
|
|
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;
|