@prisma/config 6.15.0-dev.3 → 6.15.0-dev.4
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.ts +9 -6
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -7,12 +7,15 @@ declare interface AdapterInfo {
|
|
|
7
7
|
readonly adapterName: (typeof officialPrismaAdapters)[number] | (string & {});
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
declare type ArgScalarType = 'string' | 'int' | 'bigint' | 'float' | 'decimal' | 'boolean' | 'enum' | 'uuid' | 'json' | 'datetime' | 'bytes' | 'unknown';
|
|
11
|
+
|
|
12
|
+
declare type ArgType = {
|
|
13
|
+
scalarType: ArgScalarType;
|
|
14
|
+
dbType?: string;
|
|
15
|
+
arity: Arity;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
declare type Arity = 'scalar' | 'list';
|
|
16
19
|
|
|
17
20
|
declare type ColumnType = (typeof ColumnTypeEnum)[keyof typeof ColumnTypeEnum];
|
|
18
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/config",
|
|
3
|
-
"version": "6.15.0-dev.
|
|
3
|
+
"version": "6.15.0-dev.4",
|
|
4
4
|
"description": "Internal package used to define and read Prisma configuration files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"vitest": "3.2.4",
|
|
22
|
-
"@prisma/driver-adapter-utils": "6.15.0-dev.
|
|
23
|
-
"@prisma/get-platform": "6.15.0-dev.
|
|
22
|
+
"@prisma/driver-adapter-utils": "6.15.0-dev.4",
|
|
23
|
+
"@prisma/get-platform": "6.15.0-dev.4"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|