@milaboratories/pl-middle-layer 1.60.3 → 1.60.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/pl-middle-layer",
3
- "version": "1.60.3",
3
+ "version": "1.60.4",
4
4
  "description": "Pl Middle Layer",
5
5
  "keywords": [],
6
6
  "license": "UNLICENSED",
@@ -33,20 +33,20 @@
33
33
  "@milaboratories/computable": "2.9.4",
34
34
  "@milaboratories/pf-spec-driver": "1.3.16",
35
35
  "@milaboratories/helpers": "1.14.2",
36
- "@milaboratories/pl-client": "3.5.0",
37
- "@milaboratories/pl-drivers": "1.14.7",
38
- "@milaboratories/pl-deployments": "2.17.18",
39
36
  "@milaboratories/pf-driver": "1.4.11",
37
+ "@milaboratories/pl-drivers": "1.14.8",
38
+ "@milaboratories/pl-client": "3.6.0",
39
+ "@milaboratories/pl-deployments": "2.17.18",
40
+ "@milaboratories/pl-errors": "1.4.8",
40
41
  "@milaboratories/pl-http": "1.2.4",
41
- "@milaboratories/pl-errors": "1.4.7",
42
42
  "@milaboratories/pl-model-common": "1.42.0",
43
+ "@milaboratories/pl-tree": "1.11.1",
44
+ "@milaboratories/pl-model-backend": "1.2.30",
43
45
  "@milaboratories/pl-model-middle-layer": "1.19.4",
44
46
  "@milaboratories/resolve-helper": "1.1.3",
45
- "@milaboratories/pl-model-backend": "1.2.29",
46
- "@milaboratories/pl-tree": "1.11.0",
47
- "@platforma-sdk/block-tools": "2.7.25",
48
- "@milaboratories/ts-helpers": "1.8.2",
49
47
  "@platforma-sdk/workflow-tengo": "5.24.0",
48
+ "@milaboratories/ts-helpers": "1.8.2",
49
+ "@platforma-sdk/block-tools": "2.7.25",
50
50
  "@platforma-sdk/model": "1.77.0"
51
51
  },
52
52
  "devDependencies": {
@@ -56,7 +56,7 @@
56
56
  "semver": "^7.7.2",
57
57
  "typescript": "~5.9.3",
58
58
  "vitest": "^4.1.3",
59
- "@milaboratories/ts-builder": "1.4.0",
59
+ "@milaboratories/ts-builder": "1.5.0",
60
60
  "@milaboratories/ts-configs": "1.2.3",
61
61
  "@milaboratories/build-configs": "2.0.0"
62
62
  },
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  AnyRef,
3
3
  AnyResourceRef,
4
+ asSignedResourceId,
4
5
  field,
5
6
  getField,
6
7
  isNotNullSignedResourceId,
@@ -9,7 +10,6 @@ import {
9
10
  PlClient,
10
11
  PlTransaction,
11
12
  ResourceData,
12
- SignedResourceId,
13
13
  TestHelpers,
14
14
  valErr,
15
15
  } from "@milaboratories/pl-client";
@@ -261,7 +261,7 @@ async function expectResource(tx: PlTransaction, res: ResourceData, fieldName: s
261
261
  const ve = await valErr(tx, f);
262
262
  expect(ve.error).toHaveLength(0);
263
263
  expect(isNotNullSignedResourceId(ve.valueId)).toBeTruthy();
264
- return await tx.getResourceData(ve.valueId as SignedResourceId, true);
264
+ return await tx.getResourceData(asSignedResourceId(ve.valueId), true);
265
265
  }
266
266
 
267
267
  async function expectData(tx: PlTransaction, result: ResourceData, fieldName: string) {