prisma 6.7.0-dev.3 → 6.7.0-dev.30
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 +1236 -1189
- 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 +22 -12
- package/prisma-client/package.json +5 -4
- package/prisma-client/runtime/binary.js +67 -67
- package/prisma-client/runtime/binary.mjs +68 -68
- package/prisma-client/runtime/client.d.mts +3 -10
- package/prisma-client/runtime/client.d.ts +3 -10
- package/prisma-client/runtime/client.js +36 -36
- package/prisma-client/runtime/client.mjs +36 -36
- package/prisma-client/runtime/edge-esm.js +18 -18
- package/prisma-client/runtime/edge.d.ts +3 -10
- package/prisma-client/runtime/edge.js +18 -18
- package/prisma-client/runtime/index-browser.d.ts +3 -3
- package/prisma-client/runtime/index-browser.js +1 -1
- package/prisma-client/runtime/library.d.mts +3 -10
- package/prisma-client/runtime/library.d.ts +3 -10
- package/prisma-client/runtime/library.js +55 -55
- package/prisma-client/runtime/library.mjs +51 -51
- 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 +3 -10
- package/prisma-client/runtime/react-native.js +28 -28
- package/prisma-client/scripts/default-index.js +3 -3
@@ -47,7 +47,7 @@ export declare type AllModelsToStringIndex<TypeMap extends TypeMapDef, Args exte
|
|
47
47
|
} : {};
|
48
48
|
|
49
49
|
declare class AnyNull extends NullTypesEnumValue {
|
50
|
-
private
|
50
|
+
#private;
|
51
51
|
}
|
52
52
|
|
53
53
|
export declare type ApplyOmit<T, OmitConfig> = Compute<{
|
@@ -384,7 +384,7 @@ declare type Datasources = {
|
|
384
384
|
};
|
385
385
|
|
386
386
|
declare class DbNull extends NullTypesEnumValue {
|
387
|
-
private
|
387
|
+
#private;
|
388
388
|
}
|
389
389
|
|
390
390
|
export declare const Debug: typeof debugCreate & {
|
@@ -832,12 +832,6 @@ declare type Document_2 = ReadonlyDeep_2<{
|
|
832
832
|
mappings: Mappings;
|
833
833
|
}>;
|
834
834
|
|
835
|
-
declare class DriverAdapterError extends Error {
|
836
|
-
name: string;
|
837
|
-
cause: Error_2;
|
838
|
-
constructor(payload: Error_2);
|
839
|
-
}
|
840
|
-
|
841
835
|
/**
|
842
836
|
* A generic driver adapter factory that allows the user to instantiate a
|
843
837
|
* driver adapter. The query and result types are specific to the adapter.
|
@@ -2027,7 +2021,7 @@ declare type JsonFieldSelection = {
|
|
2027
2021
|
};
|
2028
2022
|
|
2029
2023
|
declare class JsonNull extends NullTypesEnumValue {
|
2030
|
-
private
|
2024
|
+
#private;
|
2031
2025
|
}
|
2032
2026
|
|
2033
2027
|
/**
|
@@ -2890,7 +2884,6 @@ declare class RequestHandler {
|
|
2890
2884
|
handleRequestError({ error, clientMethod, callsite, transaction, args, modelName, globalOmit, }: HandleErrorParams): never;
|
2891
2885
|
sanitizeMessage(message: any): any;
|
2892
2886
|
unpack(data: unknown, dataPath: string[], unpacker?: Unpacker): any;
|
2893
|
-
convertAdapterToUserFacingError(err: DriverAdapterError): PrismaClientKnownRequestError | undefined;
|
2894
2887
|
get [Symbol.toStringTag](): string;
|
2895
2888
|
}
|
2896
2889
|
|
@@ -47,7 +47,7 @@ export declare type AllModelsToStringIndex<TypeMap extends TypeMapDef, Args exte
|
|
47
47
|
} : {};
|
48
48
|
|
49
49
|
declare class AnyNull extends NullTypesEnumValue {
|
50
|
-
private
|
50
|
+
#private;
|
51
51
|
}
|
52
52
|
|
53
53
|
export declare type ApplyOmit<T, OmitConfig> = Compute<{
|
@@ -384,7 +384,7 @@ declare type Datasources = {
|
|
384
384
|
};
|
385
385
|
|
386
386
|
declare class DbNull extends NullTypesEnumValue {
|
387
|
-
private
|
387
|
+
#private;
|
388
388
|
}
|
389
389
|
|
390
390
|
export declare const Debug: typeof debugCreate & {
|
@@ -832,12 +832,6 @@ declare type Document_2 = ReadonlyDeep_2<{
|
|
832
832
|
mappings: Mappings;
|
833
833
|
}>;
|
834
834
|
|
835
|
-
declare class DriverAdapterError extends Error {
|
836
|
-
name: string;
|
837
|
-
cause: Error_2;
|
838
|
-
constructor(payload: Error_2);
|
839
|
-
}
|
840
|
-
|
841
835
|
/**
|
842
836
|
* A generic driver adapter factory that allows the user to instantiate a
|
843
837
|
* driver adapter. The query and result types are specific to the adapter.
|
@@ -2027,7 +2021,7 @@ declare type JsonFieldSelection = {
|
|
2027
2021
|
};
|
2028
2022
|
|
2029
2023
|
declare class JsonNull extends NullTypesEnumValue {
|
2030
|
-
private
|
2024
|
+
#private;
|
2031
2025
|
}
|
2032
2026
|
|
2033
2027
|
/**
|
@@ -2890,7 +2884,6 @@ declare class RequestHandler {
|
|
2890
2884
|
handleRequestError({ error, clientMethod, callsite, transaction, args, modelName, globalOmit, }: HandleErrorParams): never;
|
2891
2885
|
sanitizeMessage(message: any): any;
|
2892
2886
|
unpack(data: unknown, dataPath: string[], unpacker?: Unpacker): any;
|
2893
|
-
convertAdapterToUserFacingError(err: DriverAdapterError): PrismaClientKnownRequestError | undefined;
|
2894
2887
|
get [Symbol.toStringTag](): string;
|
2895
2888
|
}
|
2896
2889
|
|