@milaboratories/pl-middle-layer 1.41.0 → 1.41.2

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.41.0",
3
+ "version": "1.41.2",
4
4
  "description": "Pl Middle Layer",
5
5
  "engines": {
6
6
  "node": ">=20.16.0"
@@ -22,7 +22,7 @@
22
22
  "keywords": [],
23
23
  "license": "UNLICENSED",
24
24
  "dependencies": {
25
- "@milaboratories/pframes-rs-node": "1.0.53",
25
+ "@milaboratories/pframes-rs-node": "1.0.54",
26
26
  "canonicalize": "~2.1.0",
27
27
  "denque": "^2.1.0",
28
28
  "lru-cache": "^11.1.0",
@@ -33,21 +33,21 @@
33
33
  "zod": "~3.23.8",
34
34
  "remeda": "^2.22.6",
35
35
  "@milaboratories/pl-http": "^1.1.4",
36
+ "@platforma-sdk/block-tools": "^2.5.77",
36
37
  "@milaboratories/computable": "^2.6.2",
37
- "@milaboratories/pl-drivers": "^1.7.0",
38
38
  "@milaboratories/resolve-helper": "^1.1.0",
39
- "@milaboratories/pl-model-common": "~1.19.0",
40
- "@milaboratories/pl-model-middle-layer": "~1.8.3",
41
- "@milaboratories/pl-client": "^2.11.5",
42
- "@platforma-sdk/block-tools": "^2.5.76",
39
+ "@milaboratories/pl-drivers": "^1.7.1",
40
+ "@milaboratories/pl-model-common": "~1.19.1",
41
+ "@milaboratories/pl-model-middle-layer": "~1.8.4",
42
+ "@milaboratories/pl-model-backend": "~1.1.2",
43
43
  "@milaboratories/pl-tree": "~1.7.4",
44
44
  "@milaboratories/ts-helpers": "^1.4.2",
45
- "@milaboratories/pl-model-backend": "~1.1.2",
45
+ "@platforma-sdk/model": "~1.42.4",
46
+ "@milaboratories/pl-config": "^1.6.2",
47
+ "@platforma-sdk/workflow-tengo": "4.15.0",
46
48
  "@milaboratories/pl-errors": "^1.1.12",
47
- "@milaboratories/pl-deployments": "^2.4.6",
48
- "@platforma-sdk/model": "~1.42.1",
49
- "@platforma-sdk/workflow-tengo": "4.14.1",
50
- "@milaboratories/pl-config": "^1.6.2"
49
+ "@milaboratories/pl-client": "^2.11.5",
50
+ "@milaboratories/pl-deployments": "^2.4.6"
51
51
  },
52
52
  "devDependencies": {
53
53
  "semver": "^7.7.2",
@@ -60,8 +60,8 @@
60
60
  "jest": "^29.7.0",
61
61
  "@jest/globals": "^29.7.0",
62
62
  "ts-jest": "^29.2.6",
63
- "@milaboratories/build-configs": "1.0.5",
64
- "@milaboratories/eslint-config": "^1.0.4"
63
+ "@milaboratories/eslint-config": "^1.0.4",
64
+ "@milaboratories/build-configs": "1.0.5"
65
65
  },
66
66
  "scripts": {
67
67
  "type-check": "tsc --noEmit --composite false",
@@ -173,7 +173,7 @@ class PTableCache {
173
173
  }
174
174
 
175
175
  class PFrameHolder implements PFrameInternal.PFrameDataSource, AsyncDisposable {
176
- public readonly pFramePromise: Promise<PFrameInternal.PFrameV8>;
176
+ public readonly pFramePromise: Promise<PFrameInternal.PFrameV9>;
177
177
  private readonly abortController = new AbortController();
178
178
  private readonly blobIdToResource = new Map<string, ResourceInfo>();
179
179
  private readonly blobHandleComputables = new Map<
@@ -209,7 +209,7 @@ class PFrameHolder implements PFrameInternal.PFrameDataSource, AsyncDisposable {
209
209
  const promises: Promise<void>[] = [];
210
210
  for (const column of distinctСolumns) {
211
211
  pFrame.addColumnSpec(column.id, column.spec);
212
- promises.push(Promise.resolve(pFrame.setColumnData(column.id, column.data/* , this.disposeSignal */)));
212
+ promises.push(pFrame.setColumnData(column.id, column.data, { signal: this.disposeSignal }));
213
213
  }
214
214
  this.pFramePromise = Promise.all(promises)
215
215
  .then(() => pFrame)