@prisma/driver-adapter-utils 7.2.0-dev.19 → 7.2.0-dev.20
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -305,7 +305,7 @@ export declare type Result<T> = {
|
|
|
305
305
|
/**
|
|
306
306
|
* Represents a value that can be returned for a column from `queryRaw`.
|
|
307
307
|
*/
|
|
308
|
-
export declare type ResultValue = number | string | boolean | null | ResultValue[];
|
|
308
|
+
export declare type ResultValue = number | string | boolean | null | ResultValue[] | Uint8Array;
|
|
309
309
|
|
|
310
310
|
export declare interface SqlDriverAdapter extends SqlQueryable {
|
|
311
311
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -305,7 +305,7 @@ export declare type Result<T> = {
|
|
|
305
305
|
/**
|
|
306
306
|
* Represents a value that can be returned for a column from `queryRaw`.
|
|
307
307
|
*/
|
|
308
|
-
export declare type ResultValue = number | string | boolean | null | ResultValue[];
|
|
308
|
+
export declare type ResultValue = number | string | boolean | null | ResultValue[] | Uint8Array;
|
|
309
309
|
|
|
310
310
|
export declare interface SqlDriverAdapter extends SqlQueryable {
|
|
311
311
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/driver-adapter-utils",
|
|
3
|
-
"version": "7.2.0-dev.
|
|
3
|
+
"version": "7.2.0-dev.20",
|
|
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.2.0-dev.
|
|
34
|
+
"@prisma/debug": "7.2.0-dev.20"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"dev": "DEV=true tsx helpers/build.ts",
|