prisma 6.8.0-dev.3 → 6.8.0-dev.30
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/build/index.js +768 -794
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +15 -15
- package/prisma-client/generator-build/index.js +30 -63
- package/prisma-client/package.json +4 -4
- package/prisma-client/runtime/binary.js +53 -53
- package/prisma-client/runtime/binary.mjs +53 -53
- package/prisma-client/runtime/client.d.mts +1 -1
- package/prisma-client/runtime/client.d.ts +1 -1
- package/prisma-client/runtime/client.js +35 -35
- package/prisma-client/runtime/client.mjs +30 -30
- package/prisma-client/runtime/edge-esm.js +8 -8
- package/prisma-client/runtime/edge.d.ts +1 -1
- package/prisma-client/runtime/edge.js +8 -8
- package/prisma-client/runtime/library.d.mts +1 -1
- package/prisma-client/runtime/library.d.ts +1 -1
- package/prisma-client/runtime/library.js +32 -32
- package/prisma-client/runtime/library.mjs +32 -32
- package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
- package/prisma-client/runtime/react-native.d.ts +1 -1
- package/prisma-client/runtime/react-native.js +16 -16
- package/prisma-client/scripts/default-index.js +3 -3
- package/prisma-client/scripts/postinstall.js +1 -7
- package/prisma-client/scripts/default-deno-edge.ts +0 -9
@@ -26,13 +26,13 @@ __export(default_index_exports, {
|
|
26
26
|
});
|
27
27
|
module.exports = __toCommonJS(default_index_exports);
|
28
28
|
|
29
|
-
// ../../node_modules/.pnpm/@prisma+engines-version@6.8.0-
|
29
|
+
// ../../node_modules/.pnpm/@prisma+engines-version@6.8.0-35.7c820c0ac3c21b2c97a74c39067a820e9cee63f0/node_modules/@prisma/engines-version/package.json
|
30
30
|
var prisma = {
|
31
|
-
enginesVersion: "
|
31
|
+
enginesVersion: "7c820c0ac3c21b2c97a74c39067a820e9cee63f0"
|
32
32
|
};
|
33
33
|
|
34
34
|
// package.json
|
35
|
-
var version = "6.8.0-dev.
|
35
|
+
var version = "6.8.0-dev.30";
|
36
36
|
|
37
37
|
// src/runtime/utils/clientVersion.ts
|
38
38
|
var clientVersion = version;
|
@@ -201,10 +201,8 @@ function run(cmd, params, cwd = process.cwd()) {
|
|
201
201
|
async function createDefaultGeneratedThrowFiles() {
|
202
202
|
try {
|
203
203
|
const dotPrismaClientDir = path.join(__dirname, '../../../.prisma/client')
|
204
|
-
const denoPrismaClientDir = path.join(__dirname, '../../../.prisma/client/deno')
|
205
204
|
|
206
205
|
await makeDir(dotPrismaClientDir)
|
207
|
-
await makeDir(denoPrismaClientDir)
|
208
206
|
|
209
207
|
const defaultFileConfig = {
|
210
208
|
js: path.join(__dirname, 'default-index.js'),
|
@@ -223,10 +221,6 @@ async function createDefaultGeneratedThrowFiles() {
|
|
223
221
|
js: path.join(__dirname, 'default-index.js'),
|
224
222
|
ts: undefined,
|
225
223
|
},
|
226
|
-
'deno/edge': {
|
227
|
-
js: undefined,
|
228
|
-
ts: path.join(__dirname, 'default-deno-edge.ts'),
|
229
|
-
},
|
230
224
|
}
|
231
225
|
|
232
226
|
for (const file of Object.keys(defaultFiles)) {
|
@@ -298,7 +292,7 @@ function makeDir(input) {
|
|
298
292
|
*/
|
299
293
|
function getPostInstallTrigger() {
|
300
294
|
/*
|
301
|
-
npm_config_argv` is not officially documented so here are our research notes
|
295
|
+
npm_config_argv` is not officially documented so here are our research notes
|
302
296
|
|
303
297
|
`npm_config_argv` is available to the postinstall script when the containing package has been installed by npm into some project.
|
304
298
|
|