prisma 6.6.0-dev.94 → 6.6.0-dev.95
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 +269 -269
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +3 -2
- package/prisma-client/package.json +2 -1
- package/prisma-client/runtime/binary.js +75 -75
- package/prisma-client/runtime/binary.mjs +76 -76
- package/prisma-client/runtime/client.d.mts +0 -3
- package/prisma-client/runtime/client.d.ts +0 -3
- package/prisma-client/runtime/client.js +20 -20
- package/prisma-client/runtime/client.mjs +19 -19
- package/prisma-client/runtime/edge-esm.js +10 -10
- package/prisma-client/runtime/edge.d.ts +0 -3
- package/prisma-client/runtime/edge.js +9 -9
- package/prisma-client/runtime/library.d.mts +0 -3
- package/prisma-client/runtime/library.d.ts +0 -3
- package/prisma-client/runtime/library.js +33 -33
- package/prisma-client/runtime/library.mjs +26 -26
- package/prisma-client/runtime/react-native.d.ts +0 -3
- package/prisma-client/runtime/react-native.js +14 -14
- package/prisma-client/scripts/default-index.js +1 -1
@@ -1008,7 +1008,6 @@ declare interface Engine<InteractiveTransactionPayload = unknown> {
|
|
1008
1008
|
declare interface EngineConfig {
|
1009
1009
|
cwd: string;
|
1010
1010
|
dirname: string;
|
1011
|
-
datamodelPath: string;
|
1012
1011
|
enableDebugLogs?: boolean;
|
1013
1012
|
allowTriggerPanic?: boolean;
|
1014
1013
|
prismaPath?: string;
|
@@ -1038,7 +1037,6 @@ declare interface EngineConfig {
|
|
1038
1037
|
adapter?: SqlDriverAdapterFactory;
|
1039
1038
|
/**
|
1040
1039
|
* The contents of the schema encoded into a string
|
1041
|
-
* @remarks only used by DataProxyEngine.ts
|
1042
1040
|
*/
|
1043
1041
|
inlineSchema: string;
|
1044
1042
|
/**
|
@@ -1639,7 +1637,6 @@ declare type GetPrismaClientConfig = {
|
|
1639
1637
|
};
|
1640
1638
|
relativePath: string;
|
1641
1639
|
dirname: string;
|
1642
|
-
filename?: string;
|
1643
1640
|
clientVersion: string;
|
1644
1641
|
engineVersion: string;
|
1645
1642
|
datasourceNames: string[];
|
@@ -1008,7 +1008,6 @@ declare interface Engine<InteractiveTransactionPayload = unknown> {
|
|
1008
1008
|
declare interface EngineConfig {
|
1009
1009
|
cwd: string;
|
1010
1010
|
dirname: string;
|
1011
|
-
datamodelPath: string;
|
1012
1011
|
enableDebugLogs?: boolean;
|
1013
1012
|
allowTriggerPanic?: boolean;
|
1014
1013
|
prismaPath?: string;
|
@@ -1038,7 +1037,6 @@ declare interface EngineConfig {
|
|
1038
1037
|
adapter?: SqlDriverAdapterFactory;
|
1039
1038
|
/**
|
1040
1039
|
* The contents of the schema encoded into a string
|
1041
|
-
* @remarks only used by DataProxyEngine.ts
|
1042
1040
|
*/
|
1043
1041
|
inlineSchema: string;
|
1044
1042
|
/**
|
@@ -1639,7 +1637,6 @@ declare type GetPrismaClientConfig = {
|
|
1639
1637
|
};
|
1640
1638
|
relativePath: string;
|
1641
1639
|
dirname: string;
|
1642
|
-
filename?: string;
|
1643
1640
|
clientVersion: string;
|
1644
1641
|
engineVersion: string;
|
1645
1642
|
datasourceNames: string[];
|