@prisma/driver-adapter-utils 7.10.0-dev.14 → 7.10.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/dist/index.d.mts CHANGED
@@ -174,6 +174,15 @@ export declare type MappedError = {
174
174
  } | {
175
175
  foreignKey: {};
176
176
  };
177
+ } | {
178
+ kind: 'RestrictViolation';
179
+ constraint?: {
180
+ fields: string[];
181
+ } | {
182
+ index: string;
183
+ } | {
184
+ foreignKey: {};
185
+ };
177
186
  } | {
178
187
  kind: 'DatabaseNotReachable';
179
188
  host?: string;
package/dist/index.d.ts CHANGED
@@ -174,6 +174,15 @@ export declare type MappedError = {
174
174
  } | {
175
175
  foreignKey: {};
176
176
  };
177
+ } | {
178
+ kind: 'RestrictViolation';
179
+ constraint?: {
180
+ fields: string[];
181
+ } | {
182
+ index: string;
183
+ } | {
184
+ foreignKey: {};
185
+ };
177
186
  } | {
178
187
  kind: 'DatabaseNotReachable';
179
188
  host?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/driver-adapter-utils",
3
- "version": "7.10.0-dev.14",
3
+ "version": "7.10.0-dev.16",
4
4
  "description": "Internal set of utilities and types for Prisma's driver adapters.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -31,7 +31,7 @@
31
31
  "license": "Apache-2.0",
32
32
  "sideEffects": false,
33
33
  "dependencies": {
34
- "@prisma/debug": "7.10.0-dev.14"
34
+ "@prisma/debug": "7.10.0-dev.16"
35
35
  },
36
36
  "scripts": {
37
37
  "dev": "DEV=true tsx helpers/build.ts",