@prisma/driver-adapter-utils 6.13.0-dev.2 → 6.13.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 +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -125,6 +125,10 @@ declare type Error_2 = {
|
|
|
125
125
|
} | {
|
|
126
126
|
foreignKey: {};
|
|
127
127
|
};
|
|
128
|
+
} | {
|
|
129
|
+
kind: 'DatabaseNotReachable';
|
|
130
|
+
host?: string;
|
|
131
|
+
port?: number;
|
|
128
132
|
} | {
|
|
129
133
|
kind: 'DatabaseDoesNotExist';
|
|
130
134
|
db?: string;
|
|
@@ -134,6 +138,11 @@ declare type Error_2 = {
|
|
|
134
138
|
} | {
|
|
135
139
|
kind: 'DatabaseAccessDenied';
|
|
136
140
|
db?: string;
|
|
141
|
+
} | {
|
|
142
|
+
kind: 'ConnectionClosed';
|
|
143
|
+
} | {
|
|
144
|
+
kind: 'TlsConnectionError';
|
|
145
|
+
reason: string;
|
|
137
146
|
} | {
|
|
138
147
|
kind: 'AuthenticationFailed';
|
|
139
148
|
user?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -125,6 +125,10 @@ declare type Error_2 = {
|
|
|
125
125
|
} | {
|
|
126
126
|
foreignKey: {};
|
|
127
127
|
};
|
|
128
|
+
} | {
|
|
129
|
+
kind: 'DatabaseNotReachable';
|
|
130
|
+
host?: string;
|
|
131
|
+
port?: number;
|
|
128
132
|
} | {
|
|
129
133
|
kind: 'DatabaseDoesNotExist';
|
|
130
134
|
db?: string;
|
|
@@ -134,6 +138,11 @@ declare type Error_2 = {
|
|
|
134
138
|
} | {
|
|
135
139
|
kind: 'DatabaseAccessDenied';
|
|
136
140
|
db?: string;
|
|
141
|
+
} | {
|
|
142
|
+
kind: 'ConnectionClosed';
|
|
143
|
+
} | {
|
|
144
|
+
kind: 'TlsConnectionError';
|
|
145
|
+
reason: string;
|
|
137
146
|
} | {
|
|
138
147
|
kind: 'AuthenticationFailed';
|
|
139
148
|
user?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/driver-adapter-utils",
|
|
3
|
-
"version": "6.13.0-dev.
|
|
3
|
+
"version": "6.13.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": "6.13.0-dev.
|
|
34
|
+
"@prisma/debug": "6.13.0-dev.20"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"dev": "DEV=true tsx helpers/build.ts",
|