@prisma/config 6.13.0-dev.12 → 6.13.0-dev.14
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/dist/index.d.ts +5 -0
- package/dist/index.js +2 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -252,6 +252,11 @@ declare type MigrationsConfigShape = {
|
|
|
252
252
|
* The path to the directory where Prisma should store migration files, and look for them.
|
|
253
253
|
*/
|
|
254
254
|
path?: string;
|
|
255
|
+
/**
|
|
256
|
+
* Provide a function to pass a SQL script that will be used to setup external tables during migration diffing.
|
|
257
|
+
* Also see `tables.external`.
|
|
258
|
+
*/
|
|
259
|
+
setupExternalTables?: string;
|
|
255
260
|
};
|
|
256
261
|
|
|
257
262
|
declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-better-sqlite3", "@prisma/adapter-d1", "@prisma/adapter-pg", "@prisma/adapter-mssql", "@prisma/adapter-mariadb"];
|
package/dist/index.js
CHANGED
|
@@ -22864,7 +22864,8 @@ var ErrorCapturingSqlMigrationAwareDriverAdapterFactoryShape = Schema_exports.de
|
|
|
22864
22864
|
}
|
|
22865
22865
|
);
|
|
22866
22866
|
var MigrationsConfigShape = Schema_exports.Struct({
|
|
22867
|
-
path: Schema_exports.optional(Schema_exports.String)
|
|
22867
|
+
path: Schema_exports.optional(Schema_exports.String),
|
|
22868
|
+
setupExternalTables: Schema_exports.optional(Schema_exports.String)
|
|
22868
22869
|
});
|
|
22869
22870
|
if (false) {
|
|
22870
22871
|
__testMigrationsConfigShapeValueA;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/config",
|
|
3
|
-
"version": "6.13.0-dev.
|
|
3
|
+
"version": "6.13.0-dev.14",
|
|
4
4
|
"description": "Internal package used to define and read Prisma configuration files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"effect": "3.16.12",
|
|
20
20
|
"vitest": "3.2.4",
|
|
21
|
-
"@prisma/driver-adapter-utils": "6.13.0-dev.
|
|
22
|
-
"@prisma/get-platform": "6.13.0-dev.
|
|
21
|
+
"@prisma/driver-adapter-utils": "6.13.0-dev.14",
|
|
22
|
+
"@prisma/get-platform": "6.13.0-dev.14"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist"
|