prisma 6.6.0-dev.14 → 6.6.0-dev.16
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/build/index.js +85 -85
- package/package.json +12 -12
- package/prisma-client/generator-build/index.js +9 -3
- package/prisma-client/package.json +2 -2
- package/prisma-client/runtime/binary.js +2 -2
- package/prisma-client/runtime/client.js +2 -2
- package/prisma-client/runtime/edge-esm.js +2 -2
- package/prisma-client/runtime/edge.js +2 -2
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +1 -1
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "6.6.0-dev.
|
2
|
+
"version": "6.6.0-dev.16",
|
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": "
|
44
|
+
"prismaCommit": "e20ba3183527c1b8cbb59e9ebfd9d450a581c761"
|
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.
|
153
|
-
"@prisma/
|
154
|
-
"@prisma/
|
155
|
-
"@prisma/
|
156
|
-
"@prisma/generator-helper": "6.6.0-dev.
|
157
|
-
"@prisma/get-platform": "6.6.0-dev.
|
158
|
-
"@prisma/
|
159
|
-
"@prisma/
|
152
|
+
"@prisma/adapter-libsql": "6.6.0-dev.16",
|
153
|
+
"@prisma/debug": "6.6.0-dev.16",
|
154
|
+
"@prisma/fetch-engine": "6.6.0-dev.16",
|
155
|
+
"@prisma/client": "6.6.0-dev.16",
|
156
|
+
"@prisma/generator-helper": "6.6.0-dev.16",
|
157
|
+
"@prisma/get-platform": "6.6.0-dev.16",
|
158
|
+
"@prisma/migrate": "6.6.0-dev.16",
|
159
|
+
"@prisma/internals": "6.6.0-dev.16"
|
160
160
|
},
|
161
161
|
"dependencies": {
|
162
|
-
"@prisma/config": "6.6.0-dev.
|
163
|
-
"@prisma/engines": "6.6.0-dev.
|
162
|
+
"@prisma/config": "6.6.0-dev.16",
|
163
|
+
"@prisma/engines": "6.6.0-dev.16"
|
164
164
|
},
|
165
165
|
"optionalDependencies": {
|
166
166
|
"fsevents": "2.3.3"
|
@@ -3060,7 +3060,7 @@ var require_package2 = __commonJS({
|
|
3060
3060
|
"package.json"(exports2, module2) {
|
3061
3061
|
module2.exports = {
|
3062
3062
|
name: "@prisma/client",
|
3063
|
-
version: "6.6.0-dev.
|
3063
|
+
version: "6.6.0-dev.16",
|
3064
3064
|
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.",
|
3065
3065
|
keywords: [
|
3066
3066
|
"ORM",
|
@@ -3244,7 +3244,7 @@ var require_package2 = __commonJS({
|
|
3244
3244
|
devDependencies: {
|
3245
3245
|
"@cloudflare/workers-types": "4.20250214.0",
|
3246
3246
|
"@codspeed/benchmark.js-plugin": "4.0.0",
|
3247
|
-
"@faker-js/faker": "9.
|
3247
|
+
"@faker-js/faker": "9.6.0",
|
3248
3248
|
"@fast-check/jest": "2.0.3",
|
3249
3249
|
"@inquirer/prompts": "7.3.3",
|
3250
3250
|
"@jest/create-cache-key-function": "29.7.0",
|
@@ -9799,10 +9799,14 @@ async function buildClient({
|
|
9799
9799
|
main: "index.js",
|
9800
9800
|
types: "index.d.ts",
|
9801
9801
|
browser: "index-browser.js",
|
9802
|
+
// The order of exports is important:
|
9803
|
+
// * `./client` before `...clientPkg.exports` allows it to have a higher priority than the `./*` export in `clientPkg.exports`
|
9804
|
+
// * `.` after `...clientPkg.exports` makes it override the `.` export in `clientPkgs.exports`
|
9802
9805
|
exports: {
|
9806
|
+
"./client": exportsMapDefault,
|
9803
9807
|
...import_package.default.exports,
|
9804
9808
|
// TODO: remove on DA ga
|
9805
|
-
|
9809
|
+
".": exportsMapDefault
|
9806
9810
|
},
|
9807
9811
|
version: clientVersion2,
|
9808
9812
|
sideEffects: false
|
@@ -9815,6 +9819,8 @@ async function buildClient({
|
|
9815
9819
|
fileMap["index-browser.js"] = BrowserJS(nodeClient);
|
9816
9820
|
fileMap["edge.js"] = JS(edgeClient);
|
9817
9821
|
fileMap["edge.d.ts"] = TS(edgeClient);
|
9822
|
+
fileMap["client.js"] = JS(defaultClient);
|
9823
|
+
fileMap["client.d.ts"] = TS(defaultClient);
|
9818
9824
|
if (generator.previewFeatures.includes("reactNative")) {
|
9819
9825
|
fileMap["react-native.js"] = JS(rnTsClient);
|
9820
9826
|
fileMap["react-native.d.ts"] = TS(rnTsClient);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prisma/client",
|
3
|
-
"version": "6.6.0-dev.
|
3
|
+
"version": "6.6.0-dev.16",
|
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",
|
@@ -184,7 +184,7 @@
|
|
184
184
|
"devDependencies": {
|
185
185
|
"@cloudflare/workers-types": "4.20250214.0",
|
186
186
|
"@codspeed/benchmark.js-plugin": "4.0.0",
|
187
|
-
"@faker-js/faker": "9.
|
187
|
+
"@faker-js/faker": "9.6.0",
|
188
188
|
"@fast-check/jest": "2.0.3",
|
189
189
|
"@inquirer/prompts": "7.3.3",
|
190
190
|
"@jest/create-cache-key-function": "29.7.0",
|