@prisma/query-plan-executor 7.5.0-dev.35 → 7.5.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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -101325,7 +101325,7 @@ __export(index_exports, {
101325
101325
  module.exports = __toCommonJS(index_exports);
101326
101326
 
101327
101327
  // package.json
101328
- var version = "7.5.0-dev.35";
101328
+ var version = "7.5.0-dev.37";
101329
101329
 
101330
101330
  // ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
101331
101331
  function clampProp(e2, n2, t2, o2, r2) {
@@ -106737,20 +106737,20 @@ var PrismaClientValidationError = class extends Error {
106737
106737
  };
106738
106738
  setClassName(PrismaClientValidationError, "PrismaClientValidationError");
106739
106739
  var secret = Symbol();
106740
- var representations = /* @__PURE__ */ new WeakMap();
106741
106740
  var ObjectEnumValue = class {
106741
+ #representation;
106742
106742
  constructor(arg) {
106743
106743
  if (arg === secret) {
106744
- representations.set(this, `Prisma.${this._getName()}`);
106744
+ this.#representation = `Prisma.${this._getName()}`;
106745
106745
  } else {
106746
- representations.set(this, `new Prisma.${this._getNamespace()}.${this._getName()}()`);
106746
+ this.#representation = `new Prisma.${this._getNamespace()}.${this._getName()}()`;
106747
106747
  }
106748
106748
  }
106749
106749
  _getName() {
106750
106750
  return this.constructor.name;
106751
106751
  }
106752
106752
  toString() {
106753
- return representations.get(this);
106753
+ return this.#representation;
106754
106754
  }
106755
106755
  };
106756
106756
  function setClassName2(classObject, name6) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/query-plan-executor",
3
- "version": "7.5.0-dev.35",
3
+ "version": "7.5.0-dev.37",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,11 +19,11 @@
19
19
  "hono": "4.11.7",
20
20
  "temporal-polyfill": "0.3.0",
21
21
  "zod": "4.1.3",
22
- "@prisma/adapter-pg": "7.5.0-dev.35",
23
- "@prisma/adapter-mssql": "7.5.0-dev.35",
24
- "@prisma/client-engine-runtime": "7.5.0-dev.35",
25
- "@prisma/driver-adapter-utils": "7.5.0-dev.35",
26
- "@prisma/adapter-mariadb": "7.5.0-dev.35"
22
+ "@prisma/adapter-pg": "7.5.0-dev.37",
23
+ "@prisma/adapter-mssql": "7.5.0-dev.37",
24
+ "@prisma/client-engine-runtime": "7.5.0-dev.37",
25
+ "@prisma/driver-adapter-utils": "7.5.0-dev.37",
26
+ "@prisma/adapter-mariadb": "7.5.0-dev.37"
27
27
  },
28
28
  "files": [
29
29
  "dist"