prisma 6.10.0-integration-engines-6-10-0-10-push-smusznrwrttt-04e7f91b2ba99c26561ab62566d82f309e664ecd.1 → 6.10.0-integration-engines-6-10-0-14-push-smusznrwrttt-f611a4c4bbe7cf1f24e10f2514574b061d14bdb8.1
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 +698 -698
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +11 -13
- package/prisma-client/package.json +4 -6
- package/prisma-client/runtime/binary.js +18 -18
- package/prisma-client/runtime/binary.mjs +17 -17
- package/prisma-client/runtime/client.d.mts +4 -3
- package/prisma-client/runtime/client.d.ts +4 -3
- package/prisma-client/runtime/client.js +19 -19
- package/prisma-client/runtime/client.mjs +17 -17
- package/prisma-client/runtime/edge-esm.js +14 -14
- package/prisma-client/runtime/edge.d.ts +4 -3
- package/prisma-client/runtime/edge.js +14 -14
- package/prisma-client/runtime/library.d.mts +4 -3
- package/prisma-client/runtime/library.d.ts +4 -3
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/library.mjs +2 -2
- package/prisma-client/runtime/query_compiler_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.mysql.mjs +2 -2
- package/prisma-client/runtime/query_compiler_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.postgresql.mjs +2 -2
- package/prisma-client/runtime/query_compiler_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_compiler_bg.sqlite.mjs +2 -2
- 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 +4 -3
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +3 -3
@@ -209,7 +209,7 @@ declare const ColumnTypeEnum: {
|
|
209
209
|
|
210
210
|
declare type CompactedBatchResponse = {
|
211
211
|
type: 'compacted';
|
212
|
-
plan:
|
212
|
+
plan: {};
|
213
213
|
arguments: Record<string, {}>[];
|
214
214
|
nestedSelection: string[];
|
215
215
|
keys: string[];
|
@@ -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
|
|
@@ -2716,7 +2717,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2716
2717
|
}
|
2717
2718
|
|
2718
2719
|
declare type QueryCompiler = {
|
2719
|
-
compile(request: string):
|
2720
|
+
compile(request: string): {};
|
2720
2721
|
compileBatch(batchRequest: string): BatchResponse;
|
2721
2722
|
};
|
2722
2723
|
|
@@ -209,7 +209,7 @@ declare const ColumnTypeEnum: {
|
|
209
209
|
|
210
210
|
declare type CompactedBatchResponse = {
|
211
211
|
type: 'compacted';
|
212
|
-
plan:
|
212
|
+
plan: {};
|
213
213
|
arguments: Record<string, {}>[];
|
214
214
|
nestedSelection: string[];
|
215
215
|
keys: string[];
|
@@ -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
|
|
@@ -2716,7 +2717,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2716
2717
|
}
|
2717
2718
|
|
2718
2719
|
declare type QueryCompiler = {
|
2719
|
-
compile(request: string):
|
2720
|
+
compile(request: string): {};
|
2720
2721
|
compileBatch(batchRequest: string): BatchResponse;
|
2721
2722
|
};
|
2722
2723
|
|