prisma 6.7.0-dev.1 → 6.7.0-dev.10
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/build/index.js +1207 -1165
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +22 -12
- package/prisma-client/package.json +5 -4
- package/prisma-client/runtime/binary.js +3 -3
- package/prisma-client/runtime/binary.mjs +3 -3
- package/prisma-client/runtime/client.d.mts +43 -0
- package/prisma-client/runtime/client.d.ts +43 -0
- package/prisma-client/runtime/client.js +32 -32
- package/prisma-client/runtime/client.mjs +32 -32
- package/prisma-client/runtime/edge-esm.js +3 -3
- package/prisma-client/runtime/edge.d.ts +43 -0
- package/prisma-client/runtime/edge.js +3 -3
- package/prisma-client/runtime/library.d.mts +43 -0
- package/prisma-client/runtime/library.d.ts +43 -0
- package/prisma-client/runtime/library.js +5 -5
- package/prisma-client/runtime/library.mjs +5 -5
- package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
- package/prisma-client/runtime/react-native.d.ts +43 -0
- package/prisma-client/runtime/react-native.js +12 -12
- package/prisma-client/scripts/default-index.js +3 -3
|
@@ -1148,6 +1148,49 @@ declare type Error_2 = {
|
|
|
1148
1148
|
} | {
|
|
1149
1149
|
kind: 'InvalidIsolationLevel';
|
|
1150
1150
|
level: string;
|
|
1151
|
+
} | {
|
|
1152
|
+
kind: 'LengthMismatch';
|
|
1153
|
+
column?: string;
|
|
1154
|
+
} | {
|
|
1155
|
+
kind: 'UniqueConstraintViolation';
|
|
1156
|
+
fields: string[];
|
|
1157
|
+
} | {
|
|
1158
|
+
kind: 'NullConstraintViolation';
|
|
1159
|
+
fields: string[];
|
|
1160
|
+
} | {
|
|
1161
|
+
kind: 'ForeignKeyConstraintViolation';
|
|
1162
|
+
constraint?: {
|
|
1163
|
+
fields: string[];
|
|
1164
|
+
} | {
|
|
1165
|
+
index: string;
|
|
1166
|
+
} | {
|
|
1167
|
+
foreignKey: {};
|
|
1168
|
+
};
|
|
1169
|
+
} | {
|
|
1170
|
+
kind: 'DatabaseDoesNotExist';
|
|
1171
|
+
db?: string;
|
|
1172
|
+
} | {
|
|
1173
|
+
kind: 'DatabaseAlreadyExists';
|
|
1174
|
+
db?: string;
|
|
1175
|
+
} | {
|
|
1176
|
+
kind: 'DatabaseAccessDenied';
|
|
1177
|
+
db?: string;
|
|
1178
|
+
} | {
|
|
1179
|
+
kind: 'AuthenticationFailed';
|
|
1180
|
+
user?: string;
|
|
1181
|
+
} | {
|
|
1182
|
+
kind: 'TransactionWriteConflict';
|
|
1183
|
+
} | {
|
|
1184
|
+
kind: 'TableDoesNotExist';
|
|
1185
|
+
table?: string;
|
|
1186
|
+
} | {
|
|
1187
|
+
kind: 'ColumnNotFound';
|
|
1188
|
+
column?: string;
|
|
1189
|
+
} | {
|
|
1190
|
+
kind: 'TooManyConnections';
|
|
1191
|
+
cause: string;
|
|
1192
|
+
} | {
|
|
1193
|
+
kind: 'SocketTimeout';
|
|
1151
1194
|
} | {
|
|
1152
1195
|
kind: 'postgres';
|
|
1153
1196
|
code: string;
|
|
@@ -1148,6 +1148,49 @@ declare type Error_2 = {
|
|
|
1148
1148
|
} | {
|
|
1149
1149
|
kind: 'InvalidIsolationLevel';
|
|
1150
1150
|
level: string;
|
|
1151
|
+
} | {
|
|
1152
|
+
kind: 'LengthMismatch';
|
|
1153
|
+
column?: string;
|
|
1154
|
+
} | {
|
|
1155
|
+
kind: 'UniqueConstraintViolation';
|
|
1156
|
+
fields: string[];
|
|
1157
|
+
} | {
|
|
1158
|
+
kind: 'NullConstraintViolation';
|
|
1159
|
+
fields: string[];
|
|
1160
|
+
} | {
|
|
1161
|
+
kind: 'ForeignKeyConstraintViolation';
|
|
1162
|
+
constraint?: {
|
|
1163
|
+
fields: string[];
|
|
1164
|
+
} | {
|
|
1165
|
+
index: string;
|
|
1166
|
+
} | {
|
|
1167
|
+
foreignKey: {};
|
|
1168
|
+
};
|
|
1169
|
+
} | {
|
|
1170
|
+
kind: 'DatabaseDoesNotExist';
|
|
1171
|
+
db?: string;
|
|
1172
|
+
} | {
|
|
1173
|
+
kind: 'DatabaseAlreadyExists';
|
|
1174
|
+
db?: string;
|
|
1175
|
+
} | {
|
|
1176
|
+
kind: 'DatabaseAccessDenied';
|
|
1177
|
+
db?: string;
|
|
1178
|
+
} | {
|
|
1179
|
+
kind: 'AuthenticationFailed';
|
|
1180
|
+
user?: string;
|
|
1181
|
+
} | {
|
|
1182
|
+
kind: 'TransactionWriteConflict';
|
|
1183
|
+
} | {
|
|
1184
|
+
kind: 'TableDoesNotExist';
|
|
1185
|
+
table?: string;
|
|
1186
|
+
} | {
|
|
1187
|
+
kind: 'ColumnNotFound';
|
|
1188
|
+
column?: string;
|
|
1189
|
+
} | {
|
|
1190
|
+
kind: 'TooManyConnections';
|
|
1191
|
+
cause: string;
|
|
1192
|
+
} | {
|
|
1193
|
+
kind: 'SocketTimeout';
|
|
1151
1194
|
} | {
|
|
1152
1195
|
kind: 'postgres';
|
|
1153
1196
|
code: string;
|