prisma 6.6.0-dev.35 → 6.6.0-dev.37

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.6.0-dev.35",
2
+ "version": "6.6.0-dev.37",
3
3
  "name": "prisma",
4
4
  "description": "Prisma is an open-source database toolkit. It includes a JavaScript/TypeScript ORM for Node.js, migrations and a modern GUI to view and edit the data in your database. You can use Prisma in new projects or add it to an existing one.",
5
5
  "keywords": [
@@ -41,7 +41,7 @@
41
41
  "node": ">=18.18"
42
42
  },
43
43
  "prisma": {
44
- "prismaCommit": "0fa294aa0c67759375aeb92de78c6dc6b3135338"
44
+ "prismaCommit": "811339c8e6050085de04987f36f9e5746b51d11a"
45
45
  },
46
46
  "files": [
47
47
  "README.md",
@@ -149,18 +149,18 @@
149
149
  "typescript": "5.4.5",
150
150
  "xdg-app-paths": "8.3.0",
151
151
  "zx": "8.4.1",
152
- "@prisma/adapter-libsql": "6.6.0-dev.35",
153
- "@prisma/fetch-engine": "6.6.0-dev.35",
154
- "@prisma/debug": "6.6.0-dev.35",
155
- "@prisma/client": "6.6.0-dev.35",
156
- "@prisma/generator-helper": "6.6.0-dev.35",
157
- "@prisma/get-platform": "6.6.0-dev.35",
158
- "@prisma/migrate": "6.6.0-dev.35",
159
- "@prisma/internals": "6.6.0-dev.35"
152
+ "@prisma/adapter-libsql": "6.6.0-dev.37",
153
+ "@prisma/client": "6.6.0-dev.37",
154
+ "@prisma/fetch-engine": "6.6.0-dev.37",
155
+ "@prisma/debug": "6.6.0-dev.37",
156
+ "@prisma/generator-helper": "6.6.0-dev.37",
157
+ "@prisma/get-platform": "6.6.0-dev.37",
158
+ "@prisma/internals": "6.6.0-dev.37",
159
+ "@prisma/migrate": "6.6.0-dev.37"
160
160
  },
161
161
  "dependencies": {
162
- "@prisma/config": "6.6.0-dev.35",
163
- "@prisma/engines": "6.6.0-dev.35"
162
+ "@prisma/config": "6.6.0-dev.37",
163
+ "@prisma/engines": "6.6.0-dev.37"
164
164
  },
165
165
  "optionalDependencies": {
166
166
  "fsevents": "2.3.3"
@@ -3058,7 +3058,7 @@ var require_package2 = __commonJS({
3058
3058
  "package.json"(exports2, module2) {
3059
3059
  module2.exports = {
3060
3060
  name: "@prisma/client",
3061
- version: "6.6.0-dev.35",
3061
+ version: "6.6.0-dev.37",
3062
3062
  description: "Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.",
3063
3063
  keywords: [
3064
3064
  "ORM",
@@ -4391,40 +4391,6 @@ function getNodeAPIName(binaryTarget, type) {
4391
4391
  }
4392
4392
  }
4393
4393
 
4394
- // ../../node_modules/.pnpm/find-cache-dir@5.0.0/node_modules/find-cache-dir/index.js
4395
- var import_node_process = __toESM(require("node:process"), 1);
4396
- var import_common_path_prefix = __toESM(require_common_path_prefix(), 1);
4397
-
4398
- // ../../node_modules/.pnpm/find-up@6.3.0/node_modules/find-up/index.js
4399
- var findUpStop = Symbol("findUpStop");
4400
-
4401
- // ../../node_modules/.pnpm/find-cache-dir@5.0.0/node_modules/find-cache-dir/index.js
4402
- var { env, cwd } = import_node_process.default;
4403
-
4404
- // ../fetch-engine/src/utils.ts
4405
- var import_fs = __toESM(require("fs"));
4406
- var import_os = __toESM(require("os"));
4407
- var debug = src_default("prisma:fetch-engine:cache-dir");
4408
- async function overwriteFile(sourcePath, targetPath) {
4409
- if (import_os.default.platform() === "darwin") {
4410
- await removeFileIfExists(targetPath);
4411
- await import_fs.default.promises.copyFile(sourcePath, targetPath);
4412
- } else {
4413
- const tempPath = `${targetPath}.tmp${process.pid}`;
4414
- await import_fs.default.promises.copyFile(sourcePath, tempPath);
4415
- await import_fs.default.promises.rename(tempPath, targetPath);
4416
- }
4417
- }
4418
- async function removeFileIfExists(filePath) {
4419
- try {
4420
- await import_fs.default.promises.unlink(filePath);
4421
- } catch (e) {
4422
- if (e.code !== "ENOENT") {
4423
- throw e;
4424
- }
4425
- }
4426
- }
4427
-
4428
4394
  // ../internals/src/client/getClientEngineType.ts
4429
4395
  var DEFAULT_CLIENT_ENGINE_TYPE = "library" /* Library */;
4430
4396
  function getClientEngineType(generatorConfig) {
@@ -4469,6 +4435,40 @@ function parseEnvValue(object) {
4469
4435
  return object.value;
4470
4436
  }
4471
4437
 
4438
+ // ../../node_modules/.pnpm/find-cache-dir@5.0.0/node_modules/find-cache-dir/index.js
4439
+ var import_node_process = __toESM(require("node:process"), 1);
4440
+ var import_common_path_prefix = __toESM(require_common_path_prefix(), 1);
4441
+
4442
+ // ../../node_modules/.pnpm/find-up@6.3.0/node_modules/find-up/index.js
4443
+ var findUpStop = Symbol("findUpStop");
4444
+
4445
+ // ../../node_modules/.pnpm/find-cache-dir@5.0.0/node_modules/find-cache-dir/index.js
4446
+ var { env, cwd } = import_node_process.default;
4447
+
4448
+ // ../fetch-engine/src/utils.ts
4449
+ var import_fs = __toESM(require("fs"));
4450
+ var import_os = __toESM(require("os"));
4451
+ var debug = src_default("prisma:fetch-engine:cache-dir");
4452
+ async function overwriteFile(sourcePath, targetPath) {
4453
+ if (import_os.default.platform() === "darwin") {
4454
+ await removeFileIfExists(targetPath);
4455
+ await import_fs.default.promises.copyFile(sourcePath, targetPath);
4456
+ } else {
4457
+ const tempPath = `${targetPath}.tmp${process.pid}`;
4458
+ await import_fs.default.promises.copyFile(sourcePath, tempPath);
4459
+ await import_fs.default.promises.rename(tempPath, targetPath);
4460
+ }
4461
+ }
4462
+ async function removeFileIfExists(filePath) {
4463
+ try {
4464
+ await import_fs.default.promises.unlink(filePath);
4465
+ } catch (e) {
4466
+ if (e.code !== "ENOENT") {
4467
+ throw e;
4468
+ }
4469
+ }
4470
+ }
4471
+
4472
4472
  // ../internals/src/utils/path.ts
4473
4473
  var import_path = __toESM(require("path"));
4474
4474
  function pathToPosix(filePath) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client",
3
- "version": "6.6.0-dev.35",
3
+ "version": "6.6.0-dev.37",
4
4
  "description": "Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.",
5
5
  "keywords": [
6
6
  "ORM",