@prisma/query-plan-executor 7.5.0-dev.16 → 7.5.0-dev.18

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 CHANGED
@@ -845,6 +845,10 @@ declare interface ExecutionContext {
845
845
  * For compatibility with Wrangler 4.x.
846
846
  */
847
847
  props: any;
848
+ /**
849
+ * For compatibility with Wrangler 4.x.
850
+ */
851
+ exports?: any;
848
852
  }
849
853
 
850
854
  /**
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.16";
101328
+ var version = "7.5.0-dev.18";
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) {
@@ -106189,7 +106189,7 @@ function createConsoleLogger(logFormat, logLevel) {
106189
106189
  return new Logger(sink);
106190
106190
  }
106191
106191
 
106192
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/url.js
106192
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/url.js
106193
106193
  var splitPath = (path3) => {
106194
106194
  const paths = path3.split("/");
106195
106195
  if (paths[0] === "") {
@@ -106264,9 +106264,11 @@ var getPath = (request3) => {
106264
106264
  const charCode = url2.charCodeAt(i2);
106265
106265
  if (charCode === 37) {
106266
106266
  const queryIndex = url2.indexOf("?", i2);
106267
- const path3 = url2.slice(start, queryIndex === -1 ? void 0 : queryIndex);
106267
+ const hashIndex = url2.indexOf("#", i2);
106268
+ const end = queryIndex === -1 ? hashIndex === -1 ? void 0 : hashIndex : hashIndex === -1 ? queryIndex : Math.min(queryIndex, hashIndex);
106269
+ const path3 = url2.slice(start, end);
106268
106270
  return tryDecodeURI(path3.includes("%25") ? path3.replace(/%25/g, "%2525") : path3);
106269
- } else if (charCode === 63) {
106271
+ } else if (charCode === 63 || charCode === 35) {
106270
106272
  break;
106271
106273
  }
106272
106274
  }
@@ -106391,7 +106393,7 @@ var getQueryParams = (url2, key) => {
106391
106393
  };
106392
106394
  var decodeURIComponent_ = decodeURIComponent;
106393
106395
 
106394
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/cookie.js
106396
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/cookie.js
106395
106397
  var validCookieNameRegEx = /^[\w!#$%&'*.^`|~+-]+$/;
106396
106398
  var validCookieValueRegEx = /^[ !#-:<-[\]-~]*$/;
106397
106399
  var parse = (cookie, name6) => {
@@ -106424,7 +106426,7 @@ var parse = (cookie, name6) => {
106424
106426
  return parsedCookie;
106425
106427
  };
106426
106428
 
106427
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/helper/cookie/index.js
106429
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/helper/cookie/index.js
106428
106430
  var getCookie = (c2, key, prefix) => {
106429
106431
  const cookie = c2.req.raw.headers.get("Cookie");
106430
106432
  if (typeof key === "string") {
@@ -106447,7 +106449,7 @@ var getCookie = (c2, key, prefix) => {
106447
106449
  return obj;
106448
106450
  };
106449
106451
 
106450
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/http-exception.js
106452
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/http-exception.js
106451
106453
  var HTTPException = class extends Error {
106452
106454
  res;
106453
106455
  status;
@@ -106480,7 +106482,7 @@ var HTTPException = class extends Error {
106480
106482
  }
106481
106483
  };
106482
106484
 
106483
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/buffer.js
106485
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/buffer.js
106484
106486
  var bufferToFormData = (arrayBuffer, contentType) => {
106485
106487
  const response = new Response(arrayBuffer, {
106486
106488
  headers: {
@@ -106490,7 +106492,7 @@ var bufferToFormData = (arrayBuffer, contentType) => {
106490
106492
  return response.formData();
106491
106493
  };
106492
106494
 
106493
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/validator/validator.js
106495
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/validator/validator.js
106494
106496
  var jsonRegex = /^application\/([a-z-\.]+\+)?json(;\s*[a-zA-Z0-9\-]+\=([^;]+))*$/;
106495
106497
  var multipartRegex = /^multipart\/form-data(;\s?boundary=[a-zA-Z0-9'"()+_,\-./:=?]+)?$/;
106496
106498
  var urlencodedRegex = /^application\/x-www-form-urlencoded(;\s*[a-zA-Z0-9\-]+\=([^;]+))*$/;
@@ -106571,7 +106573,7 @@ var validator = (target, validationFunc) => {
106571
106573
  };
106572
106574
  };
106573
106575
 
106574
- // ../../node_modules/.pnpm/@hono+zod-validator@0.7.2_hono@4.11.7_zod@4.1.3/node_modules/@hono/zod-validator/dist/index.js
106576
+ // ../../node_modules/.pnpm/@hono+zod-validator@0.7.2_hono@4.12.0_zod@4.1.3/node_modules/@hono/zod-validator/dist/index.js
106575
106577
  var zValidator = (target, schema, hook, options) => (
106576
106578
  // @ts-expect-error not typed well
106577
106579
  validator(target, async (value, c2) => {
@@ -111810,7 +111812,7 @@ function createTimeoutIfDefined(cb, ms) {
111810
111812
  return ms !== void 0 ? setTimeout(cb, ms) : void 0;
111811
111813
  }
111812
111814
 
111813
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/compose.js
111815
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/compose.js
111814
111816
  var compose = (middleware, onError, onNotFound) => {
111815
111817
  return (context2, next) => {
111816
111818
  let index = -1;
@@ -111854,10 +111856,10 @@ var compose = (middleware, onError, onNotFound) => {
111854
111856
  };
111855
111857
  };
111856
111858
 
111857
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/request/constants.js
111859
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/request/constants.js
111858
111860
  var GET_MATCH_RESULT = /* @__PURE__ */ Symbol();
111859
111861
 
111860
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/body.js
111862
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/body.js
111861
111863
  var parseBody = async (request3, options = /* @__PURE__ */ Object.create(null)) => {
111862
111864
  const { all = false, dot = false } = options;
111863
111865
  const headers = request3 instanceof HonoRequest ? request3.raw.headers : request3.headers;
@@ -111926,7 +111928,7 @@ var handleParsingNestedValues = (form, key, value) => {
111926
111928
  });
111927
111929
  };
111928
111930
 
111929
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/request.js
111931
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/request.js
111930
111932
  var tryDecodeURIComponent = (str) => tryDecode(str, decodeURIComponent_);
111931
111933
  var HonoRequest = class {
111932
111934
  /**
@@ -112194,7 +112196,7 @@ var HonoRequest = class {
112194
112196
  }
112195
112197
  };
112196
112198
 
112197
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/html.js
112199
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/html.js
112198
112200
  var HtmlEscapedCallbackPhase = {
112199
112201
  Stringify: 1,
112200
112202
  BeforeStream: 2,
@@ -112236,7 +112238,7 @@ var resolveCallback = async (str, phase, preserveCallbacks, context2, buffer) =>
112236
112238
  }
112237
112239
  };
112238
112240
 
112239
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/context.js
112241
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/context.js
112240
112242
  var TEXT_PLAIN = "text/plain; charset=UTF-8";
112241
112243
  var setDefaultContentType = (contentType, headers) => {
112242
112244
  return {
@@ -112244,6 +112246,7 @@ var setDefaultContentType = (contentType, headers) => {
112244
112246
  ...headers
112245
112247
  };
112246
112248
  };
112249
+ var createResponseInstance = (body, init3) => new Response(body, init3);
112247
112250
  var Context = class {
112248
112251
  #rawRequest;
112249
112252
  #req;
@@ -112342,7 +112345,7 @@ var Context = class {
112342
112345
  * The Response object for the current request.
112343
112346
  */
112344
112347
  get res() {
112345
- return this.#res ||= new Response(null, {
112348
+ return this.#res ||= createResponseInstance(null, {
112346
112349
  headers: this.#preparedHeaders ??= new Headers()
112347
112350
  });
112348
112351
  }
@@ -112353,7 +112356,7 @@ var Context = class {
112353
112356
  */
112354
112357
  set res(_res) {
112355
112358
  if (this.#res && _res) {
112356
- _res = new Response(_res.body, _res);
112359
+ _res = createResponseInstance(_res.body, _res);
112357
112360
  for (const [k2, v2] of this.#res.headers.entries()) {
112358
112361
  if (k2 === "content-type") {
112359
112362
  continue;
@@ -112443,7 +112446,7 @@ var Context = class {
112443
112446
  */
112444
112447
  header = (name6, value, options) => {
112445
112448
  if (this.finalized) {
112446
- this.#res = new Response(this.#res.body, this.#res);
112449
+ this.#res = createResponseInstance(this.#res.body, this.#res);
112447
112450
  }
112448
112451
  const headers = this.#res ? this.#res.headers : this.#preparedHeaders ??= new Headers();
112449
112452
  if (value === void 0) {
@@ -112532,7 +112535,7 @@ var Context = class {
112532
112535
  }
112533
112536
  }
112534
112537
  const status = typeof arg === "number" ? arg : arg?.status ?? this.#status;
112535
- return new Response(data, { status, headers: responseHeaders });
112538
+ return createResponseInstance(data, { status, headers: responseHeaders });
112536
112539
  }
112537
112540
  newResponse = (...args) => this.#newResponse(...args);
112538
112541
  /**
@@ -112557,6 +112560,9 @@ var Context = class {
112557
112560
  * ```
112558
112561
  */
112559
112562
  body = (data, arg, headers) => this.#newResponse(data, arg, headers);
112563
+ #useFastPath() {
112564
+ return !this.#preparedHeaders && !this.#status && !this.finalized;
112565
+ }
112560
112566
  /**
112561
112567
  * `.text()` can render text as `Content-Type:text/plain`.
112562
112568
  *
@@ -112570,7 +112576,7 @@ var Context = class {
112570
112576
  * ```
112571
112577
  */
112572
112578
  text = (text, arg, headers) => {
112573
- return !this.#preparedHeaders && !this.#status && !arg && !headers && !this.finalized ? new Response(text) : this.#newResponse(
112579
+ return this.#useFastPath() && !arg && !headers ? createResponseInstance(text) : this.#newResponse(
112574
112580
  text,
112575
112581
  arg,
112576
112582
  setDefaultContentType(TEXT_PLAIN, headers)
@@ -112589,7 +112595,7 @@ var Context = class {
112589
112595
  * ```
112590
112596
  */
112591
112597
  json = (object2, arg, headers) => {
112592
- return this.#newResponse(
112598
+ return this.#useFastPath() && !arg && !headers ? Response.json(object2) : this.#newResponse(
112593
112599
  JSON.stringify(object2),
112594
112600
  arg,
112595
112601
  setDefaultContentType("application/json", headers)
@@ -112637,12 +112643,12 @@ var Context = class {
112637
112643
  * ```
112638
112644
  */
112639
112645
  notFound = () => {
112640
- this.#notFoundHandler ??= () => new Response();
112646
+ this.#notFoundHandler ??= () => createResponseInstance();
112641
112647
  return this.#notFoundHandler(this);
112642
112648
  };
112643
112649
  };
112644
112650
 
112645
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router.js
112651
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router.js
112646
112652
  var METHOD_NAME_ALL = "ALL";
112647
112653
  var METHOD_NAME_ALL_LOWERCASE = "all";
112648
112654
  var METHODS = ["get", "post", "put", "delete", "options", "patch"];
@@ -112650,10 +112656,10 @@ var MESSAGE_MATCHER_IS_ALREADY_BUILT = "Can not add a route since the matcher is
112650
112656
  var UnsupportedPathError = class extends Error {
112651
112657
  };
112652
112658
 
112653
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/utils/constants.js
112659
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/utils/constants.js
112654
112660
  var COMPOSED_HANDLER = "__COMPOSED_HANDLER";
112655
112661
 
112656
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/hono-base.js
112662
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/hono-base.js
112657
112663
  var notFoundHandler = (c2) => {
112658
112664
  return c2.text("404 Not Found", 404);
112659
112665
  };
@@ -113024,7 +113030,7 @@ var Hono = class _Hono {
113024
113030
  };
113025
113031
  };
113026
113032
 
113027
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/reg-exp-router/matcher.js
113033
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/reg-exp-router/matcher.js
113028
113034
  var emptyParam = [];
113029
113035
  function match(method, path3) {
113030
113036
  const matchers = this.buildAllMatchers();
@@ -113045,7 +113051,7 @@ function match(method, path3) {
113045
113051
  return match2(method, path3);
113046
113052
  }
113047
113053
 
113048
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/reg-exp-router/node.js
113054
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/reg-exp-router/node.js
113049
113055
  var LABEL_REG_EXP_STR = "[^/]+";
113050
113056
  var ONLY_WILDCARD_REG_EXP_STR = ".*";
113051
113057
  var TAIL_WILDCARD_REG_EXP_STR = "(?:|/.*)";
@@ -113153,7 +113159,7 @@ var Node = class _Node {
113153
113159
  }
113154
113160
  };
113155
113161
 
113156
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/reg-exp-router/trie.js
113162
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/reg-exp-router/trie.js
113157
113163
  var Trie = class {
113158
113164
  #context = { varIndex: 0 };
113159
113165
  #root = new Node();
@@ -113209,7 +113215,7 @@ var Trie = class {
113209
113215
  }
113210
113216
  };
113211
113217
 
113212
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/reg-exp-router/router.js
113218
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/reg-exp-router/router.js
113213
113219
  var nullMatcher = [/^$/, [], /* @__PURE__ */ Object.create(null)];
113214
113220
  var wildcardRegExpCache = /* @__PURE__ */ Object.create(null);
113215
113221
  function buildWildcardRegExp(path3) {
@@ -113388,7 +113394,7 @@ var RegExpRouter = class {
113388
113394
  }
113389
113395
  };
113390
113396
 
113391
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/smart-router/router.js
113397
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/smart-router/router.js
113392
113398
  var SmartRouter = class {
113393
113399
  name = "SmartRouter";
113394
113400
  #routers = [];
@@ -113443,8 +113449,14 @@ var SmartRouter = class {
113443
113449
  }
113444
113450
  };
113445
113451
 
113446
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/trie-router/node.js
113452
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/trie-router/node.js
113447
113453
  var emptyParams = /* @__PURE__ */ Object.create(null);
113454
+ var hasChildren = (children) => {
113455
+ for (const _3 in children) {
113456
+ return true;
113457
+ }
113458
+ return false;
113459
+ };
113448
113460
  var Node2 = class _Node2 {
113449
113461
  #methods;
113450
113462
  #children;
@@ -113494,8 +113506,7 @@ var Node2 = class _Node2 {
113494
113506
  });
113495
113507
  return curNode;
113496
113508
  }
113497
- #getHandlerSets(node, method, nodeParams, params) {
113498
- const handlerSets = [];
113509
+ #pushHandlerSets(handlerSets, node, method, nodeParams, params) {
113499
113510
  for (let i2 = 0, len = node.#methods.length; i2 < len; i2++) {
113500
113511
  const m2 = node.#methods[i2];
113501
113512
  const handlerSet = m2[method] || m2[METHOD_NAME_ALL];
@@ -113513,7 +113524,6 @@ var Node2 = class _Node2 {
113513
113524
  }
113514
113525
  }
113515
113526
  }
113516
- return handlerSets;
113517
113527
  }
113518
113528
  search(method, path3) {
113519
113529
  const handlerSets = [];
@@ -113522,7 +113532,9 @@ var Node2 = class _Node2 {
113522
113532
  let curNodes = [curNode];
113523
113533
  const parts = splitPath(path3);
113524
113534
  const curNodesQueue = [];
113525
- for (let i2 = 0, len = parts.length; i2 < len; i2++) {
113535
+ const len = parts.length;
113536
+ let partOffsets = null;
113537
+ for (let i2 = 0; i2 < len; i2++) {
113526
113538
  const part = parts[i2];
113527
113539
  const isLast = i2 === len - 1;
113528
113540
  const tempNodes = [];
@@ -113533,11 +113545,9 @@ var Node2 = class _Node2 {
113533
113545
  nextNode.#params = node.#params;
113534
113546
  if (isLast) {
113535
113547
  if (nextNode.#children["*"]) {
113536
- handlerSets.push(
113537
- ...this.#getHandlerSets(nextNode.#children["*"], method, node.#params)
113538
- );
113548
+ this.#pushHandlerSets(handlerSets, nextNode.#children["*"], method, node.#params);
113539
113549
  }
113540
- handlerSets.push(...this.#getHandlerSets(nextNode, method, node.#params));
113550
+ this.#pushHandlerSets(handlerSets, nextNode, method, node.#params);
113541
113551
  } else {
113542
113552
  tempNodes.push(nextNode);
113543
113553
  }
@@ -113548,7 +113558,7 @@ var Node2 = class _Node2 {
113548
113558
  if (pattern === "*") {
113549
113559
  const astNode = node.#children["*"];
113550
113560
  if (astNode) {
113551
- handlerSets.push(...this.#getHandlerSets(astNode, method, node.#params));
113561
+ this.#pushHandlerSets(handlerSets, astNode, method, node.#params);
113552
113562
  astNode.#params = params;
113553
113563
  tempNodes.push(astNode);
113554
113564
  }
@@ -113559,13 +113569,21 @@ var Node2 = class _Node2 {
113559
113569
  continue;
113560
113570
  }
113561
113571
  const child = node.#children[key];
113562
- const restPathString = parts.slice(i2).join("/");
113563
113572
  if (matcher instanceof RegExp) {
113573
+ if (partOffsets === null) {
113574
+ partOffsets = new Array(len);
113575
+ let offset = path3[0] === "/" ? 1 : 0;
113576
+ for (let p2 = 0; p2 < len; p2++) {
113577
+ partOffsets[p2] = offset;
113578
+ offset += parts[p2].length + 1;
113579
+ }
113580
+ }
113581
+ const restPathString = path3.substring(partOffsets[i2]);
113564
113582
  const m2 = matcher.exec(restPathString);
113565
113583
  if (m2) {
113566
113584
  params[name6] = m2[0];
113567
- handlerSets.push(...this.#getHandlerSets(child, method, node.#params, params));
113568
- if (Object.keys(child.#children).length) {
113585
+ this.#pushHandlerSets(handlerSets, child, method, node.#params, params);
113586
+ if (hasChildren(child.#children)) {
113569
113587
  child.#params = params;
113570
113588
  const componentCount = m2[0].match(/\//)?.length ?? 0;
113571
113589
  const targetCurNodes = curNodesQueue[componentCount] ||= [];
@@ -113577,10 +113595,14 @@ var Node2 = class _Node2 {
113577
113595
  if (matcher === true || matcher.test(part)) {
113578
113596
  params[name6] = part;
113579
113597
  if (isLast) {
113580
- handlerSets.push(...this.#getHandlerSets(child, method, params, node.#params));
113598
+ this.#pushHandlerSets(handlerSets, child, method, params, node.#params);
113581
113599
  if (child.#children["*"]) {
113582
- handlerSets.push(
113583
- ...this.#getHandlerSets(child.#children["*"], method, params, node.#params)
113600
+ this.#pushHandlerSets(
113601
+ handlerSets,
113602
+ child.#children["*"],
113603
+ method,
113604
+ params,
113605
+ node.#params
113584
113606
  );
113585
113607
  }
113586
113608
  } else {
@@ -113590,7 +113612,8 @@ var Node2 = class _Node2 {
113590
113612
  }
113591
113613
  }
113592
113614
  }
113593
- curNodes = tempNodes.concat(curNodesQueue.shift() ?? []);
113615
+ const shifted = curNodesQueue.shift();
113616
+ curNodes = shifted ? tempNodes.concat(shifted) : tempNodes;
113594
113617
  }
113595
113618
  if (handlerSets.length > 1) {
113596
113619
  handlerSets.sort((a2, b2) => {
@@ -113601,7 +113624,7 @@ var Node2 = class _Node2 {
113601
113624
  }
113602
113625
  };
113603
113626
 
113604
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/router/trie-router/router.js
113627
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/router/trie-router/router.js
113605
113628
  var TrieRouter = class {
113606
113629
  name = "TrieRouter";
113607
113630
  #node;
@@ -113623,7 +113646,7 @@ var TrieRouter = class {
113623
113646
  }
113624
113647
  };
113625
113648
 
113626
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/hono.js
113649
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/hono.js
113627
113650
  var Hono2 = class extends Hono {
113628
113651
  /**
113629
113652
  * Creates an instance of the Hono class.
@@ -116410,7 +116433,7 @@ function logQuery(event) {
116410
116433
  });
116411
116434
  }
116412
116435
 
116413
- // ../../node_modules/.pnpm/hono@4.11.7/node_modules/hono/dist/helper/factory/index.js
116436
+ // ../../node_modules/.pnpm/hono@4.12.0/node_modules/hono/dist/helper/factory/index.js
116414
116437
  var createMiddleware = (middleware) => middleware;
116415
116438
 
116416
116439
  // src/server/middleware/client-telemetry.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/query-plan-executor",
3
- "version": "7.5.0-dev.16",
3
+ "version": "7.5.0-dev.18",
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",
@@ -20,11 +20,11 @@
20
20
  "temporal-polyfill": "0.3.0",
21
21
  "vitest": "3.2.4",
22
22
  "zod": "4.1.3",
23
- "@prisma/adapter-pg": "7.5.0-dev.16",
24
- "@prisma/adapter-mariadb": "7.5.0-dev.16",
25
- "@prisma/adapter-mssql": "7.5.0-dev.16",
26
- "@prisma/client-engine-runtime": "7.5.0-dev.16",
27
- "@prisma/driver-adapter-utils": "7.5.0-dev.16"
23
+ "@prisma/adapter-pg": "7.5.0-dev.18",
24
+ "@prisma/adapter-mssql": "7.5.0-dev.18",
25
+ "@prisma/client-engine-runtime": "7.5.0-dev.18",
26
+ "@prisma/driver-adapter-utils": "7.5.0-dev.18",
27
+ "@prisma/adapter-mariadb": "7.5.0-dev.18"
28
28
  },
29
29
  "files": [
30
30
  "dist"