@prisma/driver-adapter-utils 7.3.0-integration-prisma6-fix-cloudflare-engine.3 → 7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.1
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -209,6 +209,9 @@ export declare type MappedError = {
|
|
|
209
209
|
} | {
|
|
210
210
|
kind: 'ValueOutOfRange';
|
|
211
211
|
cause: string;
|
|
212
|
+
} | {
|
|
213
|
+
kind: 'InvalidInputValue';
|
|
214
|
+
message: string;
|
|
212
215
|
} | {
|
|
213
216
|
kind: 'MissingFullTextSearchIndex';
|
|
214
217
|
} | {
|
|
@@ -232,6 +235,7 @@ export declare type MappedError = {
|
|
|
232
235
|
code: number;
|
|
233
236
|
message: string;
|
|
234
237
|
state: string;
|
|
238
|
+
cause?: string;
|
|
235
239
|
} | {
|
|
236
240
|
kind: 'sqlite';
|
|
237
241
|
/**
|
|
@@ -301,7 +305,7 @@ export declare type Result<T> = {
|
|
|
301
305
|
/**
|
|
302
306
|
* Represents a value that can be returned for a column from `queryRaw`.
|
|
303
307
|
*/
|
|
304
|
-
export declare type ResultValue = number | string | boolean | null | ResultValue[];
|
|
308
|
+
export declare type ResultValue = number | string | boolean | null | ResultValue[] | Uint8Array;
|
|
305
309
|
|
|
306
310
|
export declare interface SqlDriverAdapter extends SqlQueryable {
|
|
307
311
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -209,6 +209,9 @@ export declare type MappedError = {
|
|
|
209
209
|
} | {
|
|
210
210
|
kind: 'ValueOutOfRange';
|
|
211
211
|
cause: string;
|
|
212
|
+
} | {
|
|
213
|
+
kind: 'InvalidInputValue';
|
|
214
|
+
message: string;
|
|
212
215
|
} | {
|
|
213
216
|
kind: 'MissingFullTextSearchIndex';
|
|
214
217
|
} | {
|
|
@@ -232,6 +235,7 @@ export declare type MappedError = {
|
|
|
232
235
|
code: number;
|
|
233
236
|
message: string;
|
|
234
237
|
state: string;
|
|
238
|
+
cause?: string;
|
|
235
239
|
} | {
|
|
236
240
|
kind: 'sqlite';
|
|
237
241
|
/**
|
|
@@ -301,7 +305,7 @@ export declare type Result<T> = {
|
|
|
301
305
|
/**
|
|
302
306
|
* Represents a value that can be returned for a column from `queryRaw`.
|
|
303
307
|
*/
|
|
304
|
-
export declare type ResultValue = number | string | boolean | null | ResultValue[];
|
|
308
|
+
export declare type ResultValue = number | string | boolean | null | ResultValue[] | Uint8Array;
|
|
305
309
|
|
|
306
310
|
export declare interface SqlDriverAdapter extends SqlQueryable {
|
|
307
311
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/driver-adapter-utils",
|
|
3
|
-
"version": "7.3.0-integration-
|
|
3
|
+
"version": "7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.1",
|
|
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.3.0-integration-
|
|
34
|
+
"@prisma/debug": "7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.1"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"dev": "DEV=true tsx helpers/build.ts",
|