@milaboratories/pl-middle-layer 1.26.3 → 1.26.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/pl-middle-layer",
3
- "version": "1.26.3",
3
+ "version": "1.26.5",
4
4
  "description": "Pl Middle Layer",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -28,21 +28,21 @@
28
28
  "utility-types": "^3.11.0",
29
29
  "yaml": "^2.6.1",
30
30
  "zod": "~3.23.8",
31
- "@milaboratories/pl-http": "^1.0.3",
32
- "@platforma-sdk/block-tools": "^2.5.7",
33
- "@milaboratories/pl-drivers": "^1.5.11",
34
- "@milaboratories/pl-client": "^2.7.3",
35
31
  "@milaboratories/computable": "^2.3.4",
36
32
  "@milaboratories/resolve-helper": "^1.0.2",
37
- "@milaboratories/pl-model-middle-layer": "^1.7.1",
33
+ "@milaboratories/pl-http": "^1.0.3",
34
+ "@milaboratories/pl-client": "^2.7.3",
35
+ "@milaboratories/pl-model-common": "^1.10.4",
36
+ "@milaboratories/pl-drivers": "^1.5.12",
37
+ "@platforma-sdk/block-tools": "^2.5.7",
38
+ "@platforma-sdk/model": "^1.22.2",
38
39
  "@milaboratories/pl-tree": "^1.4.22",
40
+ "@milaboratories/pl-model-middle-layer": "^1.7.1",
39
41
  "@milaboratories/pl-model-backend": "^1.0.1",
40
42
  "@milaboratories/ts-helpers": "^1.1.3",
41
- "@milaboratories/pl-model-common": "^1.10.4",
42
- "@platforma-sdk/model": "^1.22.2",
43
43
  "@platforma-sdk/workflow-tengo": "2.9.9",
44
- "@milaboratories/pl-config": "^1.3.3",
45
- "@milaboratories/pl-local": "^1.10.0"
44
+ "@milaboratories/pl-local": "^1.10.0",
45
+ "@milaboratories/pl-config": "^1.3.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "semver": "^7.6.3",
@@ -123,7 +123,7 @@ class PFrameHolder implements PFrameInternal.PFrameDataSource, Disposable {
123
123
  }
124
124
 
125
125
  const createSpecPFrame = (): PFrameInternal.PFrameV2 => {
126
- const pFrame = new PFrame(getDebugFlags().logPFrameRequests ? logFunc : undefined);
126
+ const pFrame = getDebugFlags().logPFrameRequests ? new PFrame(logFunc) : new PFrame();
127
127
  for (const column of columns) {
128
128
  try {
129
129
  pFrame.addColumnSpec(column.id, column.spec);