prisma 6.10.0-dev.7 → 6.10.0-dev.9
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 +7 -7
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +2 -4
- package/prisma-client/package.json +1 -3
- package/prisma-client/runtime/binary.js +2 -2
- package/prisma-client/runtime/binary.mjs +2 -2
- package/prisma-client/runtime/client.d.mts +2 -1
- package/prisma-client/runtime/client.d.ts +2 -1
- package/prisma-client/runtime/client.js +2 -2
- package/prisma-client/runtime/client.mjs +2 -2
- package/prisma-client/runtime/edge-esm.js +9 -9
- package/prisma-client/runtime/edge.d.ts +2 -1
- package/prisma-client/runtime/edge.js +8 -8
- package/prisma-client/runtime/library.d.mts +2 -1
- package/prisma-client/runtime/library.d.ts +2 -1
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/library.mjs +2 -2
- package/prisma-client/runtime/react-native.d.ts +2 -1
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +1 -1
@@ -255,6 +255,7 @@ declare type ComputedFieldsMap = {
|
|
255
255
|
declare type ConnectionInfo = {
|
256
256
|
schemaName?: string;
|
257
257
|
maxBindValues?: number;
|
258
|
+
supportsRelationJoins: boolean;
|
258
259
|
};
|
259
260
|
|
260
261
|
declare type ConnectorType = 'mysql' | 'mongodb' | 'sqlite' | 'postgresql' | 'postgres' | 'prisma+postgres' | 'sqlserver' | 'cockroachdb';
|
@@ -2400,7 +2401,7 @@ export declare const objectEnumValues: {
|
|
2400
2401
|
};
|
2401
2402
|
};
|
2402
2403
|
|
2403
|
-
declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg"
|
2404
|
+
declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg"];
|
2404
2405
|
|
2405
2406
|
export declare type Omission = Record<string, boolean | Skip>;
|
2406
2407
|
|