prisma 6.6.0-dev.94 → 6.6.0-dev.96

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.
@@ -219,10 +219,10 @@ declare type CompilerWasmLoadingConfig = {
219
219
  /**
220
220
  * WASM-bindgen runtime for corresponding module
221
221
  */
222
- getRuntime: () => {
222
+ getRuntime: () => Promise<{
223
223
  __wbg_set_wasm(exports: unknown): void;
224
224
  QueryCompiler: QueryCompilerConstructor;
225
- };
225
+ }>;
226
226
  /**
227
227
  * Loads the raw wasm module for the wasm compiler engine. This configuration is
228
228
  * generated specifically for each type of client, eg. Node.js client and Edge
@@ -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
  /**
@@ -1108,10 +1106,10 @@ declare type EngineWasmLoadingConfig = {
1108
1106
  /**
1109
1107
  * WASM-bindgen runtime for corresponding module
1110
1108
  */
1111
- getRuntime: () => {
1109
+ getRuntime: () => Promise<{
1112
1110
  __wbg_set_wasm(exports: unknown): void;
1113
1111
  QueryEngine: QueryEngineConstructor;
1114
- };
1112
+ }>;
1115
1113
  /**
1116
1114
  * Loads the raw wasm module for the wasm query engine. This configuration is
1117
1115
  * generated specifically for each type of client, eg. Node.js client and Edge
@@ -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[];