prisma 6.6.0-dev.9 → 6.6.0-dev.91
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 +4023 -1167
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/public/assets/index.js +1 -1
- package/package.json +21 -19
- package/preinstall/index.js +4 -4
- package/prisma-client/generator-build/index.js +15466 -9300
- package/prisma-client/package.json +43 -24
- package/prisma-client/runtime/binary.js +120 -120
- package/prisma-client/runtime/binary.mjs +291 -0
- package/prisma-client/runtime/client.d.mts +3604 -0
- package/prisma-client/runtime/client.d.ts +421 -290
- package/prisma-client/runtime/client.js +41 -38
- package/prisma-client/runtime/client.mjs +113 -0
- package/prisma-client/runtime/edge-esm.js +18 -18
- package/prisma-client/runtime/edge.d.ts +3604 -0
- package/prisma-client/runtime/edge.js +18 -18
- package/prisma-client/runtime/index-browser.js +1 -1
- package/prisma-client/runtime/library.d.mts +3604 -0
- package/prisma-client/runtime/library.d.ts +421 -290
- package/prisma-client/runtime/library.js +65 -65
- package/prisma-client/runtime/library.mjs +150 -0
- package/prisma-client/runtime/query_compiler_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.mysql.mjs +2 -0
- package/prisma-client/runtime/query_compiler_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.postgresql.mjs +2 -0
- package/prisma-client/runtime/query_compiler_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.sqlite.mjs +2 -0
- package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.mjs +2 -0
- package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.postgresql.mjs +2 -0
- package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_engine_bg.sqlite.mjs +2 -0
- package/prisma-client/runtime/react-native.d.ts +421 -290
- package/prisma-client/runtime/react-native.js +26 -26
- package/prisma-client/scripts/default-index.js +3 -3
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prisma/client",
|
3
|
-
"version": "6.6.0-dev.
|
3
|
+
"version": "6.6.0-dev.91",
|
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",
|
@@ -87,26 +87,44 @@
|
|
87
87
|
"./wasm": {
|
88
88
|
"types": "./wasm.d.ts",
|
89
89
|
"require": "./wasm.js",
|
90
|
-
"import": "./wasm.
|
91
|
-
"default": "./wasm.
|
90
|
+
"import": "./wasm.mjs",
|
91
|
+
"default": "./wasm.mjs"
|
92
92
|
},
|
93
93
|
"./runtime/client": {
|
94
94
|
"types": "./runtime/client.d.ts",
|
95
95
|
"require": "./runtime/client.js",
|
96
|
-
"import": "./runtime/client.
|
97
|
-
"default": "./runtime/client.
|
96
|
+
"import": "./runtime/client.mjs",
|
97
|
+
"default": "./runtime/client.mjs"
|
98
98
|
},
|
99
99
|
"./runtime/library": {
|
100
100
|
"types": "./runtime/library.d.ts",
|
101
101
|
"require": "./runtime/library.js",
|
102
|
-
"import": "./runtime/library.
|
103
|
-
"default": "./runtime/library.
|
102
|
+
"import": "./runtime/library.mjs",
|
103
|
+
"default": "./runtime/library.mjs"
|
104
104
|
},
|
105
105
|
"./runtime/binary": {
|
106
106
|
"types": "./runtime/binary.d.ts",
|
107
107
|
"require": "./runtime/binary.js",
|
108
|
-
"import": "./runtime/binary.
|
109
|
-
"default": "./runtime/binary.
|
108
|
+
"import": "./runtime/binary.mjs",
|
109
|
+
"default": "./runtime/binary.mjs"
|
110
|
+
},
|
111
|
+
"./runtime/wasm": {
|
112
|
+
"types": "./runtime/wasm.d.ts",
|
113
|
+
"require": "./runtime/wasm.js",
|
114
|
+
"import": "./runtime/wasm.mjs",
|
115
|
+
"default": "./runtime/wasm.mjs"
|
116
|
+
},
|
117
|
+
"./runtime/edge": {
|
118
|
+
"types": "./runtime/edge.d.ts",
|
119
|
+
"require": "./runtime/edge.js",
|
120
|
+
"import": "./runtime/edge-esm.js",
|
121
|
+
"default": "./runtime/edge-esm.js"
|
122
|
+
},
|
123
|
+
"./runtime/react-native": {
|
124
|
+
"types": "./runtime/react-native.d.ts",
|
125
|
+
"require": "./runtime/react-native.js",
|
126
|
+
"import": "./runtime/react-native.js",
|
127
|
+
"default": "./runtime/react-native.js"
|
110
128
|
},
|
111
129
|
"./generator-build": {
|
112
130
|
"require": "./generator-build/index.js",
|
@@ -184,7 +202,7 @@
|
|
184
202
|
"devDependencies": {
|
185
203
|
"@cloudflare/workers-types": "4.20250214.0",
|
186
204
|
"@codspeed/benchmark.js-plugin": "4.0.0",
|
187
|
-
"@faker-js/faker": "9.
|
205
|
+
"@faker-js/faker": "9.6.0",
|
188
206
|
"@fast-check/jest": "2.0.3",
|
189
207
|
"@inquirer/prompts": "7.3.3",
|
190
208
|
"@jest/create-cache-key-function": "29.7.0",
|
@@ -193,7 +211,7 @@
|
|
193
211
|
"@libsql/client": "0.8.0",
|
194
212
|
"@neondatabase/serverless": "0.10.2",
|
195
213
|
"@opentelemetry/api": "1.9.0",
|
196
|
-
"@opentelemetry/context-async-hooks": "
|
214
|
+
"@opentelemetry/context-async-hooks": "2.0.0",
|
197
215
|
"@opentelemetry/instrumentation": "0.57.2",
|
198
216
|
"@opentelemetry/resources": "1.30.1",
|
199
217
|
"@opentelemetry/sdk-trace-base": "1.30.1",
|
@@ -205,13 +223,18 @@
|
|
205
223
|
"@prisma/adapter-pg": "workspace:*",
|
206
224
|
"@prisma/adapter-pg-worker": "workspace:*",
|
207
225
|
"@prisma/adapter-planetscale": "workspace:*",
|
226
|
+
"@prisma/client-common": "workspace:*",
|
208
227
|
"@prisma/client-engine-runtime": "workspace:*",
|
228
|
+
"@prisma/client-generator-js": "workspace:*",
|
229
|
+
"@prisma/client-generator-ts": "workspace:*",
|
209
230
|
"@prisma/config": "workspace:*",
|
210
231
|
"@prisma/debug": "workspace:*",
|
232
|
+
"@prisma/dmmf": "workspace:*",
|
211
233
|
"@prisma/driver-adapter-utils": "workspace:*",
|
212
234
|
"@prisma/engines": "workspace:*",
|
213
|
-
"@prisma/engines-version": "6.6.0-
|
235
|
+
"@prisma/engines-version": "6.6.0-45.fbda4d61f6cc9c7361b803e72f3a0ffeb87db447",
|
214
236
|
"@prisma/fetch-engine": "workspace:*",
|
237
|
+
"@prisma/generator": "workspace:*",
|
215
238
|
"@prisma/generator-helper": "workspace:*",
|
216
239
|
"@prisma/get-platform": "workspace:*",
|
217
240
|
"@prisma/instrumentation": "workspace:*",
|
@@ -219,8 +242,9 @@
|
|
219
242
|
"@prisma/migrate": "workspace:*",
|
220
243
|
"@prisma/mini-proxy": "0.9.5",
|
221
244
|
"@prisma/pg-worker": "workspace:*",
|
222
|
-
"@prisma/query-compiler-wasm": "6.6.0-
|
223
|
-
"@prisma/query-engine-wasm": "6.6.0-
|
245
|
+
"@prisma/query-compiler-wasm": "6.6.0-45.fbda4d61f6cc9c7361b803e72f3a0ffeb87db447",
|
246
|
+
"@prisma/query-engine-wasm": "6.6.0-45.fbda4d61f6cc9c7361b803e72f3a0ffeb87db447",
|
247
|
+
"@prisma/ts-builders": "workspace:*",
|
224
248
|
"@snaplet/copycat": "6.0.0",
|
225
249
|
"@swc-node/register": "1.10.9",
|
226
250
|
"@swc/core": "1.11.5",
|
@@ -235,13 +259,10 @@
|
|
235
259
|
"@types/pg": "8.11.11",
|
236
260
|
"arg": "5.0.2",
|
237
261
|
"benchmark": "2.1.4",
|
238
|
-
"ci-info": "4.1.0",
|
239
262
|
"decimal.js": "10.5.0",
|
240
|
-
"
|
241
|
-
"esbuild": "0.24.2",
|
263
|
+
"esbuild": "0.25.1",
|
242
264
|
"execa": "5.1.1",
|
243
265
|
"expect-type": "1.2.0",
|
244
|
-
"flat-map-polyfill": "0.3.8",
|
245
266
|
"fs-extra": "11.3.0",
|
246
267
|
"get-stream": "6.0.1",
|
247
268
|
"globby": "11.1.0",
|
@@ -260,13 +281,11 @@
|
|
260
281
|
"new-github-issue-url": "0.2.1",
|
261
282
|
"node-fetch": "3.3.2",
|
262
283
|
"p-retry": "4.6.2",
|
263
|
-
"pg": "8.
|
264
|
-
"pkg-up": "3.1.0",
|
265
|
-
"pluralize": "8.0.0",
|
284
|
+
"pg": "8.14.1",
|
266
285
|
"resolve": "1.22.10",
|
267
286
|
"rimraf": "6.0.1",
|
268
|
-
"simple-statistics": "7.8.
|
269
|
-
"sort-keys": "
|
287
|
+
"simple-statistics": "7.8.8",
|
288
|
+
"sort-keys": "5.1.0",
|
270
289
|
"source-map-support": "0.5.21",
|
271
290
|
"sql-template-tag": "5.2.1",
|
272
291
|
"stacktrace-parser": "0.1.11",
|
@@ -278,7 +297,7 @@
|
|
278
297
|
"typescript": "5.4.5",
|
279
298
|
"undici": "7.4.0",
|
280
299
|
"wrangler": "3.111.0",
|
281
|
-
"zx": "
|
300
|
+
"zx": "8.4.1"
|
282
301
|
},
|
283
302
|
"peerDependencies": {
|
284
303
|
"prisma": "*",
|