prisma 6.8.0-dev.2 → 6.8.0-dev.21
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/build/index.js +761 -787
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +15 -15
- package/prisma-client/generator-build/index.js +30 -63
- package/prisma-client/package.json +4 -4
- package/prisma-client/runtime/binary.js +53 -53
- package/prisma-client/runtime/binary.mjs +53 -53
- package/prisma-client/runtime/client.d.mts +1 -1
- package/prisma-client/runtime/client.d.ts +1 -1
- package/prisma-client/runtime/client.js +35 -35
- package/prisma-client/runtime/client.mjs +30 -30
- package/prisma-client/runtime/edge-esm.js +8 -8
- package/prisma-client/runtime/edge.d.ts +1 -1
- package/prisma-client/runtime/edge.js +8 -8
- package/prisma-client/runtime/library.d.mts +1 -1
- package/prisma-client/runtime/library.d.ts +1 -1
- package/prisma-client/runtime/library.js +32 -32
- package/prisma-client/runtime/library.mjs +32 -32
- package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
- package/prisma-client/runtime/react-native.d.ts +1 -1
- package/prisma-client/runtime/react-native.js +7 -7
- package/prisma-client/scripts/default-index.js +3 -3
- package/prisma-client/scripts/postinstall.js +1 -7
- package/prisma-client/scripts/default-deno-edge.ts +0 -9
@@ -73,7 +73,7 @@ export declare type Args_3<T, F extends Operation> = Args<T, F>;
|
|
73
73
|
* Query arguments marked with this type are sanitized before being sent to the database.
|
74
74
|
* Notice while a query argument may be `null`, `ArgType` is guaranteed to be defined.
|
75
75
|
*/
|
76
|
-
declare type ArgType = 'Int32' | 'Int64' | 'Float' | 'Double' | 'Text' | 'Enum' | 'EnumArray' | 'Bytes' | 'Boolean' | 'Char' | 'Array' | 'Numeric' | 'Json' | 'Xml' | 'Uuid' | 'DateTime' | 'Date' | 'Time';
|
76
|
+
declare type ArgType = 'Int32' | 'Int64' | 'Float' | 'Double' | 'Text' | 'Enum' | 'EnumArray' | 'Bytes' | 'Boolean' | 'Char' | 'Array' | 'Numeric' | 'Json' | 'Xml' | 'Uuid' | 'DateTime' | 'Date' | 'Time' | 'Unknown';
|
77
77
|
|
78
78
|
/**
|
79
79
|
* Attributes is a map from string to attribute values.
|
@@ -73,7 +73,7 @@ export declare type Args_3<T, F extends Operation> = Args<T, F>;
|
|
73
73
|
* Query arguments marked with this type are sanitized before being sent to the database.
|
74
74
|
* Notice while a query argument may be `null`, `ArgType` is guaranteed to be defined.
|
75
75
|
*/
|
76
|
-
declare type ArgType = 'Int32' | 'Int64' | 'Float' | 'Double' | 'Text' | 'Enum' | 'EnumArray' | 'Bytes' | 'Boolean' | 'Char' | 'Array' | 'Numeric' | 'Json' | 'Xml' | 'Uuid' | 'DateTime' | 'Date' | 'Time';
|
76
|
+
declare type ArgType = 'Int32' | 'Int64' | 'Float' | 'Double' | 'Text' | 'Enum' | 'EnumArray' | 'Bytes' | 'Boolean' | 'Char' | 'Array' | 'Numeric' | 'Json' | 'Xml' | 'Uuid' | 'DateTime' | 'Date' | 'Time' | 'Unknown';
|
77
77
|
|
78
78
|
/**
|
79
79
|
* Attributes is a map from string to attribute values.
|