@prisma/config 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +19 -2
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -107,10 +107,22 @@ declare type Error_2 = {
107
107
  column?: string;
108
108
  } | {
109
109
  kind: 'UniqueConstraintViolation';
110
- fields: string[];
110
+ constraint?: {
111
+ fields: string[];
112
+ } | {
113
+ index: string;
114
+ } | {
115
+ foreignKey: {};
116
+ };
111
117
  } | {
112
118
  kind: 'NullConstraintViolation';
113
- fields: string[];
119
+ constraint?: {
120
+ fields: string[];
121
+ } | {
122
+ index: string;
123
+ } | {
124
+ foreignKey: {};
125
+ };
114
126
  } | {
115
127
  kind: 'ForeignKeyConstraintViolation';
116
128
  constraint?: {
@@ -143,6 +155,11 @@ declare type Error_2 = {
143
155
  } | {
144
156
  kind: 'TooManyConnections';
145
157
  cause: string;
158
+ } | {
159
+ kind: 'ValueOutOfRange';
160
+ cause: string;
161
+ } | {
162
+ kind: 'MissingFullTextSearchIndex';
146
163
  } | {
147
164
  kind: 'SocketTimeout';
148
165
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/config",
3
- "version": "6.10.0-dev.2",
3
+ "version": "6.10.0-dev.4",
4
4
  "description": "Internal package used to define and read Prisma configuration files",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,8 +21,8 @@
21
21
  "jest": "29.7.0",
22
22
  "jest-junit": "16.0.0",
23
23
  "cross-env": "7.0.3",
24
- "@prisma/driver-adapter-utils": "6.10.0-dev.2",
25
- "@prisma/get-platform": "6.10.0-dev.2"
24
+ "@prisma/driver-adapter-utils": "6.10.0-dev.4",
25
+ "@prisma/get-platform": "6.10.0-dev.4"
26
26
  },
27
27
  "files": [
28
28
  "dist"