@prisma/query-plan-executor 6.18.0-dev.15 → 6.18.0-dev.17
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 +3 -0
- package/dist/index.js +5 -3
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Temporal } from 'temporal-spec';
|
|
2
|
+
import { version } from '../package.json';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* An interface that exposes some basic information about the
|
|
@@ -5242,6 +5243,8 @@ declare const validLogLevels: readonly ["debug", "query", "info", "warn", "error
|
|
|
5242
5243
|
|
|
5243
5244
|
declare type Variables = object;
|
|
5244
5245
|
|
|
5246
|
+
export { version }
|
|
5247
|
+
|
|
5245
5248
|
/**
|
|
5246
5249
|
* Logs a warning message using the active logger.
|
|
5247
5250
|
*
|
package/dist/index.js
CHANGED
|
@@ -97606,10 +97606,14 @@ __export(index_exports, {
|
|
|
97606
97606
|
parseLogFormat: () => parseLogFormat,
|
|
97607
97607
|
parseLogLevel: () => parseLogLevel,
|
|
97608
97608
|
parseSize: () => parseSize,
|
|
97609
|
+
version: () => version,
|
|
97609
97610
|
withActiveLogger: () => withActiveLogger
|
|
97610
97611
|
});
|
|
97611
97612
|
module.exports = __toCommonJS(index_exports);
|
|
97612
97613
|
|
|
97614
|
+
// package.json
|
|
97615
|
+
var version = "6.18.0-dev.17";
|
|
97616
|
+
|
|
97613
97617
|
// ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
|
|
97614
97618
|
function clampProp(e2, n2, t2, o2, r2) {
|
|
97615
97619
|
return clampEntity(n2, ((e3, n3) => {
|
|
@@ -109114,9 +109118,6 @@ function isPromiseLike(value) {
|
|
|
109114
109118
|
return value != null && typeof value["then"] === "function";
|
|
109115
109119
|
}
|
|
109116
109120
|
|
|
109117
|
-
// package.json
|
|
109118
|
-
var version = "6.18.0-dev.15";
|
|
109119
|
-
|
|
109120
109121
|
// src/utils/error.ts
|
|
109121
109122
|
function extractErrorFromUnknown(value) {
|
|
109122
109123
|
if (value instanceof Error) {
|
|
@@ -123720,6 +123721,7 @@ function getErrorResponse(error44, ctx) {
|
|
|
123720
123721
|
parseLogFormat,
|
|
123721
123722
|
parseLogLevel,
|
|
123722
123723
|
parseSize,
|
|
123724
|
+
version,
|
|
123723
123725
|
withActiveLogger
|
|
123724
123726
|
});
|
|
123725
123727
|
/*! Bundled license information:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "6.18.0-dev.
|
|
3
|
+
"version": "6.18.0-dev.17",
|
|
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-
|
|
24
|
-
"@prisma/adapter-
|
|
25
|
-
"@prisma/
|
|
26
|
-
"@prisma/
|
|
27
|
-
"@prisma/adapter-
|
|
23
|
+
"@prisma/adapter-pg": "6.18.0-dev.17",
|
|
24
|
+
"@prisma/adapter-mariadb": "6.18.0-dev.17",
|
|
25
|
+
"@prisma/adapter-mssql": "6.18.0-dev.17",
|
|
26
|
+
"@prisma/client-engine-runtime": "6.18.0-dev.17",
|
|
27
|
+
"@prisma/driver-adapter-utils": "6.18.0-dev.17"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist"
|