@prisma/client-common 6.11.0-dev.43 → 6.11.0-dev.5

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.
@@ -15,7 +15,6 @@ export type CompactedBatchResponse = {
15
15
  export type QueryCompiler = {
16
16
  compile(request: string): {};
17
17
  compileBatch(batchRequest: string): BatchResponse;
18
- free(): void;
19
18
  };
20
19
  export type QueryCompilerOptions = {
21
20
  datamodel: string;
@@ -19,11 +19,6 @@ export type EngineWasmLoadingConfig = {
19
19
  export type QueryEngineInstance = {
20
20
  connect(headers: string, requestId: string): Promise<void>;
21
21
  disconnect(headers: string, requestId: string): Promise<void>;
22
- /**
23
- * Frees any resources allocated by the engine's WASM instance. This method is automatically created by WASM bindgen.
24
- * Noop for other engines.
25
- */
26
- free?(): void;
27
22
  /**
28
23
  * @param requestStr JSON.stringified `QueryEngineRequest | QueryEngineBatchRequest`
29
24
  * @param headersStr JSON.stringified `QueryEngineRequestHeaders`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-common",
3
- "version": "6.11.0-dev.43",
3
+ "version": "6.11.0-dev.5",
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.11.0-dev.43",
28
- "@prisma/driver-adapter-utils": "6.11.0-dev.43",
29
- "@prisma/generator": "6.11.0-dev.43",
30
- "@prisma/internals": "6.11.0-dev.43"
27
+ "@prisma/dmmf": "6.11.0-dev.5",
28
+ "@prisma/driver-adapter-utils": "6.11.0-dev.5",
29
+ "@prisma/internals": "6.11.0-dev.5",
30
+ "@prisma/generator": "6.11.0-dev.5"
31
31
  },
32
32
  "devDependencies": {
33
33
  "vitest": "3.0.9"