@milaboratories/pl-model-middle-layer 1.11.3 → 1.11.4

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.
@@ -62,7 +62,7 @@ export type EvaluateQueryResponse = {
62
62
  * The data layer query representation with numeric indices,
63
63
  * suitable for execution by the data processing engine.
64
64
  */
65
- joinEntry: QueryData;
65
+ dataQuery: QueryData;
66
66
  };
67
67
  /**
68
68
  * Represents a legacy (V4) query format used before the unified QuerySpec.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/pl-model-middle-layer",
3
- "version": "1.11.3",
3
+ "version": "1.11.4",
4
4
  "description": "Common model between middle layer and non-block UI code",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -27,9 +27,9 @@
27
27
  "eslint": "^9.25.1",
28
28
  "typescript": "~5.6.3",
29
29
  "@types/node": "~24.5.2",
30
- "@platforma-sdk/eslint-config": "1.2.0",
31
- "@milaboratories/ts-builder": "1.2.4",
32
30
  "@milaboratories/build-configs": "1.4.0",
31
+ "@milaboratories/ts-builder": "1.2.4",
32
+ "@platforma-sdk/eslint-config": "1.2.0",
33
33
  "@milaboratories/ts-configs": "1.2.0"
34
34
  },
35
35
  "scripts": {
@@ -96,7 +96,7 @@ export type EvaluateQueryResponse = {
96
96
  * The data layer query representation with numeric indices,
97
97
  * suitable for execution by the data processing engine.
98
98
  */
99
- joinEntry: QueryData;
99
+ dataQuery: QueryData;
100
100
  };
101
101
 
102
102
  /**