@prisma/driver-adapter-utils 7.2.0-dev.5 → 7.2.0-dev.7

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 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
  } | {
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
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/driver-adapter-utils",
3
- "version": "7.2.0-dev.5",
3
+ "version": "7.2.0-dev.7",
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.5"
34
+ "@prisma/debug": "7.2.0-dev.7"
35
35
  },
36
36
  "scripts": {
37
37
  "dev": "DEV=true tsx helpers/build.ts",