@prisma/config 6.7.0-dev.2 → 6.7.0-dev.3

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 +43 -0
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -102,6 +102,49 @@ declare type Error_2 = {
102
102
  } | {
103
103
  kind: 'InvalidIsolationLevel';
104
104
  level: string;
105
+ } | {
106
+ kind: 'LengthMismatch';
107
+ column?: string;
108
+ } | {
109
+ kind: 'UniqueConstraintViolation';
110
+ fields: string[];
111
+ } | {
112
+ kind: 'NullConstraintViolation';
113
+ fields: string[];
114
+ } | {
115
+ kind: 'ForeignKeyConstraintViolation';
116
+ constraint?: {
117
+ fields: string[];
118
+ } | {
119
+ index: string;
120
+ } | {
121
+ foreignKey: {};
122
+ };
123
+ } | {
124
+ kind: 'DatabaseDoesNotExist';
125
+ db?: string;
126
+ } | {
127
+ kind: 'DatabaseAlreadyExists';
128
+ db?: string;
129
+ } | {
130
+ kind: 'DatabaseAccessDenied';
131
+ db?: string;
132
+ } | {
133
+ kind: 'AuthenticationFailed';
134
+ user?: string;
135
+ } | {
136
+ kind: 'TransactionWriteConflict';
137
+ } | {
138
+ kind: 'TableDoesNotExist';
139
+ table?: string;
140
+ } | {
141
+ kind: 'ColumnNotFound';
142
+ column?: string;
143
+ } | {
144
+ kind: 'TooManyConnections';
145
+ cause: string;
146
+ } | {
147
+ kind: 'SocketTimeout';
105
148
  } | {
106
149
  kind: 'postgres';
107
150
  code: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/config",
3
- "version": "6.7.0-dev.2",
3
+ "version": "6.7.0-dev.3",
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",
@@ -22,8 +22,8 @@
22
22
  "esbuild-register": "3.6.0",
23
23
  "jest": "29.7.0",
24
24
  "jest-junit": "16.0.0",
25
- "@prisma/get-platform": "6.7.0-dev.2",
26
- "@prisma/driver-adapter-utils": "6.7.0-dev.2"
25
+ "@prisma/driver-adapter-utils": "6.7.0-dev.3",
26
+ "@prisma/get-platform": "6.7.0-dev.3"
27
27
  },
28
28
  "files": [
29
29
  "dist"