@prisma/driver-adapter-utils 6.10.0-dev.2 → 6.10.0-dev.4

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
@@ -99,10 +99,22 @@ declare type Error_2 = {
99
99
  column?: string;
100
100
  } | {
101
101
  kind: 'UniqueConstraintViolation';
102
- fields: string[];
102
+ constraint?: {
103
+ fields: string[];
104
+ } | {
105
+ index: string;
106
+ } | {
107
+ foreignKey: {};
108
+ };
103
109
  } | {
104
110
  kind: 'NullConstraintViolation';
105
- fields: string[];
111
+ constraint?: {
112
+ fields: string[];
113
+ } | {
114
+ index: string;
115
+ } | {
116
+ foreignKey: {};
117
+ };
106
118
  } | {
107
119
  kind: 'ForeignKeyConstraintViolation';
108
120
  constraint?: {
@@ -135,6 +147,11 @@ declare type Error_2 = {
135
147
  } | {
136
148
  kind: 'TooManyConnections';
137
149
  cause: string;
150
+ } | {
151
+ kind: 'ValueOutOfRange';
152
+ cause: string;
153
+ } | {
154
+ kind: 'MissingFullTextSearchIndex';
138
155
  } | {
139
156
  kind: 'SocketTimeout';
140
157
  } | {
package/dist/index.d.ts CHANGED
@@ -99,10 +99,22 @@ declare type Error_2 = {
99
99
  column?: string;
100
100
  } | {
101
101
  kind: 'UniqueConstraintViolation';
102
- fields: string[];
102
+ constraint?: {
103
+ fields: string[];
104
+ } | {
105
+ index: string;
106
+ } | {
107
+ foreignKey: {};
108
+ };
103
109
  } | {
104
110
  kind: 'NullConstraintViolation';
105
- fields: string[];
111
+ constraint?: {
112
+ fields: string[];
113
+ } | {
114
+ index: string;
115
+ } | {
116
+ foreignKey: {};
117
+ };
106
118
  } | {
107
119
  kind: 'ForeignKeyConstraintViolation';
108
120
  constraint?: {
@@ -135,6 +147,11 @@ declare type Error_2 = {
135
147
  } | {
136
148
  kind: 'TooManyConnections';
137
149
  cause: string;
150
+ } | {
151
+ kind: 'ValueOutOfRange';
152
+ cause: string;
153
+ } | {
154
+ kind: 'MissingFullTextSearchIndex';
138
155
  } | {
139
156
  kind: 'SocketTimeout';
140
157
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/driver-adapter-utils",
3
- "version": "6.10.0-dev.2",
3
+ "version": "6.10.0-dev.4",
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": "6.10.0-dev.2"
34
+ "@prisma/debug": "6.10.0-dev.4"
35
35
  },
36
36
  "scripts": {
37
37
  "dev": "DEV=true tsx helpers/build.ts",