prisma 6.6.0-dev.15 → 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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.6.0-dev.15",
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": "71e66992da677f3d09246bc804f767116c165fa9"
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.15",
153
- "@prisma/client": "6.6.0-dev.15",
154
- "@prisma/debug": "6.6.0-dev.15",
155
- "@prisma/fetch-engine": "6.6.0-dev.15",
156
- "@prisma/generator-helper": "6.6.0-dev.15",
157
- "@prisma/get-platform": "6.6.0-dev.15",
158
- "@prisma/migrate": "6.6.0-dev.15",
159
- "@prisma/internals": "6.6.0-dev.15"
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.15",
163
- "@prisma/engines": "6.6.0-dev.15"
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.15",
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",
@@ -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
- ...{ ".": exportsMapDefault }
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.15",
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",