@prisma/client-generator-ts 7.3.0-integration-aqrln-upskmmvouusz.1 → 7.3.0-integration-parameterization.7
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.js +3 -9
- package/dist/index.mjs +3 -9
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -3460,12 +3460,8 @@ function buildGetWasmModule({
|
|
|
3460
3460
|
if (buildNonEdgeLoader) {
|
|
3461
3461
|
wasmBindingsPath = `${wasmPathBase}.${extension}`;
|
|
3462
3462
|
wasmModulePath = `${wasmPathBase}.wasm-base64.${extension}`;
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
` : "";
|
|
3467
|
-
const resolveCall = moduleFormat === "esm" ? `__require.resolve(${JSON.stringify(wasmBindingsPath)})` : `require.resolve(${JSON.stringify(wasmBindingsPath)})`;
|
|
3468
|
-
return `${esmPreamble}async function decodeBase64AsWasm(wasmBase64: string): Promise<WebAssembly.Module> {
|
|
3463
|
+
return `
|
|
3464
|
+
async function decodeBase64AsWasm(wasmBase64: string): Promise<WebAssembly.Module> {
|
|
3469
3465
|
const { Buffer } = await import('node:buffer')
|
|
3470
3466
|
const wasmArray = Buffer.from(wasmBase64, 'base64')
|
|
3471
3467
|
return new WebAssembly.Module(wasmArray)
|
|
@@ -3479,8 +3475,6 @@ config.compilerWasm = {
|
|
|
3479
3475
|
return await decodeBase64AsWasm(wasm)
|
|
3480
3476
|
},
|
|
3481
3477
|
|
|
3482
|
-
getRuntimePath: () => ${resolveCall},
|
|
3483
|
-
|
|
3484
3478
|
importName: ${JSON.stringify(`./${artifactName}.js`)}
|
|
3485
3479
|
}`;
|
|
3486
3480
|
}
|
|
@@ -6428,7 +6422,7 @@ var import_internals7 = require("@prisma/internals");
|
|
|
6428
6422
|
var import_get_tsconfig = require("get-tsconfig");
|
|
6429
6423
|
|
|
6430
6424
|
// package.json
|
|
6431
|
-
var version = "7.3.0-integration-
|
|
6425
|
+
var version = "7.3.0-integration-parameterization.7";
|
|
6432
6426
|
|
|
6433
6427
|
// src/module-format.ts
|
|
6434
6428
|
function parseModuleFormat(format) {
|
package/dist/index.mjs
CHANGED
|
@@ -3453,12 +3453,8 @@ function buildGetWasmModule({
|
|
|
3453
3453
|
if (buildNonEdgeLoader) {
|
|
3454
3454
|
wasmBindingsPath = `${wasmPathBase}.${extension}`;
|
|
3455
3455
|
wasmModulePath = `${wasmPathBase}.wasm-base64.${extension}`;
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
` : "";
|
|
3460
|
-
const resolveCall = moduleFormat === "esm" ? `__require.resolve(${JSON.stringify(wasmBindingsPath)})` : `require.resolve(${JSON.stringify(wasmBindingsPath)})`;
|
|
3461
|
-
return `${esmPreamble}async function decodeBase64AsWasm(wasmBase64: string): Promise<WebAssembly.Module> {
|
|
3456
|
+
return `
|
|
3457
|
+
async function decodeBase64AsWasm(wasmBase64: string): Promise<WebAssembly.Module> {
|
|
3462
3458
|
const { Buffer } = await import('node:buffer')
|
|
3463
3459
|
const wasmArray = Buffer.from(wasmBase64, 'base64')
|
|
3464
3460
|
return new WebAssembly.Module(wasmArray)
|
|
@@ -3472,8 +3468,6 @@ config.compilerWasm = {
|
|
|
3472
3468
|
return await decodeBase64AsWasm(wasm)
|
|
3473
3469
|
},
|
|
3474
3470
|
|
|
3475
|
-
getRuntimePath: () => ${resolveCall},
|
|
3476
|
-
|
|
3477
3471
|
importName: ${JSON.stringify(`./${artifactName}.js`)}
|
|
3478
3472
|
}`;
|
|
3479
3473
|
}
|
|
@@ -6421,7 +6415,7 @@ import { parseEnvValue } from "@prisma/internals";
|
|
|
6421
6415
|
import { getTsconfig } from "get-tsconfig";
|
|
6422
6416
|
|
|
6423
6417
|
// package.json
|
|
6424
|
-
var version = "7.3.0-integration-
|
|
6418
|
+
var version = "7.3.0-integration-parameterization.7";
|
|
6425
6419
|
|
|
6426
6420
|
// src/module-format.ts
|
|
6427
6421
|
function parseModuleFormat(format) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-generator-ts",
|
|
3
|
-
"version": "7.3.0-integration-
|
|
3
|
+
"version": "7.3.0-integration-parameterization.7",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@antfu/ni": "0.21.12",
|
|
28
|
-
"@prisma/engines-version": "7.3.0-
|
|
28
|
+
"@prisma/engines-version": "7.3.0-14.parameterization-11aa30d30257422cbc5419b3ee255fa98d60bbab",
|
|
29
29
|
"fast-glob": "3.3.3",
|
|
30
30
|
"get-tsconfig": "4.10.0",
|
|
31
31
|
"indent-string": "4.0.0",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"package-up": "5.0.0",
|
|
34
34
|
"pluralize": "8.0.0",
|
|
35
35
|
"ts-pattern": "5.6.2",
|
|
36
|
-
"@prisma/
|
|
37
|
-
"@prisma/
|
|
38
|
-
"@prisma/
|
|
39
|
-
"@prisma/
|
|
40
|
-
"@prisma/
|
|
41
|
-
"@prisma/
|
|
42
|
-
"@prisma/
|
|
43
|
-
"@prisma/
|
|
44
|
-
"@prisma/
|
|
36
|
+
"@prisma/debug": "7.3.0-integration-parameterization.7",
|
|
37
|
+
"@prisma/dmmf": "7.3.0-integration-parameterization.7",
|
|
38
|
+
"@prisma/fetch-engine": "7.3.0-integration-parameterization.7",
|
|
39
|
+
"@prisma/client-common": "7.3.0-integration-parameterization.7",
|
|
40
|
+
"@prisma/generator": "7.3.0-integration-parameterization.7",
|
|
41
|
+
"@prisma/internals": "7.3.0-integration-parameterization.7",
|
|
42
|
+
"@prisma/ts-builders": "7.3.0-integration-parameterization.7",
|
|
43
|
+
"@prisma/get-platform": "7.3.0-integration-parameterization.7",
|
|
44
|
+
"@prisma/param-graph-builder": "7.3.0-integration-parameterization.7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/pluralize": "0.0.33",
|