@prisma/client-common 6.6.0-integration-feat-introduce-schema-engine-wasm.1 → 6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.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.
@@ -28,10 +28,10 @@ export type CompilerWasmLoadingConfig = {
28
28
  /**
29
29
  * WASM-bindgen runtime for corresponding module
30
30
  */
31
- getRuntime: () => {
31
+ getRuntime: () => Promise<{
32
32
  __wbg_set_wasm(exports: unknown): void;
33
33
  QueryCompiler: QueryCompilerConstructor;
34
- };
34
+ }>;
35
35
  /**
36
36
  * Loads the raw wasm module for the wasm compiler engine. This configuration is
37
37
  * generated specifically for each type of client, eg. Node.js client and Edge
@@ -3,10 +3,10 @@ export type EngineWasmLoadingConfig = {
3
3
  /**
4
4
  * WASM-bindgen runtime for corresponding module
5
5
  */
6
- getRuntime: () => {
6
+ getRuntime: () => Promise<{
7
7
  __wbg_set_wasm(exports: unknown): void;
8
8
  QueryEngine: QueryEngineConstructor;
9
- };
9
+ }>;
10
10
  /**
11
11
  * Loads the raw wasm module for the wasm query engine. This configuration is
12
12
  * generated specifically for each type of client, eg. Node.js client and Edge
@@ -11,13 +11,12 @@ import { RuntimeDataModel } from './runtimeDataModel';
11
11
  export type GetPrismaClientConfig = {
12
12
  runtimeDataModel: RuntimeDataModel;
13
13
  generator?: GeneratorConfig;
14
- relativeEnvPaths: {
14
+ relativeEnvPaths?: {
15
15
  rootEnvPath?: string | null;
16
16
  schemaEnvPath?: string | null;
17
17
  };
18
18
  relativePath: string;
19
19
  dirname: string;
20
- filename?: string;
21
20
  clientVersion: string;
22
21
  engineVersion: string;
23
22
  datasourceNames: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-common",
3
- "version": "6.6.0-integration-feat-introduce-schema-engine-wasm.1",
3
+ "version": "6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.1",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@prisma/dmmf": "6.6.0-integration-feat-introduce-schema-engine-wasm.1",
28
- "@prisma/driver-adapter-utils": "6.6.0-integration-feat-introduce-schema-engine-wasm.1",
29
- "@prisma/generator": "6.6.0-integration-feat-introduce-schema-engine-wasm.1",
30
- "@prisma/internals": "6.6.0-integration-feat-introduce-schema-engine-wasm.1"
27
+ "@prisma/dmmf": "6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.1",
28
+ "@prisma/driver-adapter-utils": "6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.1",
29
+ "@prisma/internals": "6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.1",
30
+ "@prisma/generator": "6.6.0-integration-feat-orm-764-driver-adapter-merge-pg-and-pg-worker-for-provider.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "vitest": "3.0.9"