@milaboratories/pl-middle-layer 1.31.1 → 1.31.3
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
- package/src/mutator/context_export.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-middle-layer",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.3",
|
|
4
4
|
"description": "Pl Middle Layer",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,21 +30,21 @@
|
|
|
30
30
|
"yaml": "^2.7.0",
|
|
31
31
|
"zod": "~3.23.8",
|
|
32
32
|
"@milaboratories/pl-http": "^1.1.1",
|
|
33
|
-
"@platforma-sdk/block-tools": "^2.5.24",
|
|
34
|
-
"@milaboratories/computable": "^2.4.1",
|
|
35
33
|
"@milaboratories/resolve-helper": "^1.1.0",
|
|
36
|
-
"@milaboratories/
|
|
37
|
-
"@
|
|
34
|
+
"@milaboratories/computable": "^2.4.1",
|
|
35
|
+
"@platforma-sdk/block-tools": "^2.5.24",
|
|
38
36
|
"@milaboratories/pl-client": "^2.7.13",
|
|
37
|
+
"@milaboratories/pl-drivers": "^1.5.32",
|
|
38
|
+
"@milaboratories/pl-model-common": "^1.11.1",
|
|
39
39
|
"@milaboratories/pl-model-middle-layer": "^1.7.11",
|
|
40
|
-
"@platforma-sdk/model": "^1.24.5",
|
|
41
40
|
"@milaboratories/pl-model-backend": "^1.0.2",
|
|
42
|
-
"@
|
|
41
|
+
"@platforma-sdk/model": "^1.24.5",
|
|
43
42
|
"@milaboratories/ts-helpers": "^1.1.4",
|
|
43
|
+
"@platforma-sdk/workflow-tengo": "3.0.2",
|
|
44
|
+
"@milaboratories/pl-tree": "^1.5.1",
|
|
44
45
|
"@milaboratories/pl-config": "^1.4.4",
|
|
45
|
-
"@platforma-sdk/workflow-tengo": "3.0.1",
|
|
46
46
|
"@milaboratories/pl-errors": "^1.0.2",
|
|
47
|
-
"@milaboratories/pl-deployments": "^1.
|
|
47
|
+
"@milaboratories/pl-deployments": "^1.7.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"semver": "^7.6.3",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"jest": "^29.7.0",
|
|
57
57
|
"@jest/globals": "^29.7.0",
|
|
58
58
|
"ts-jest": "^29.2.6",
|
|
59
|
-
"@milaboratories/
|
|
60
|
-
"@milaboratories/
|
|
59
|
+
"@milaboratories/platforma-build-configs": "1.0.3",
|
|
60
|
+
"@milaboratories/eslint-config": "^1.0.2"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"type-check": "tsc --noEmit --composite false",
|
|
@@ -19,7 +19,7 @@ let preparedTemplateEnvelop: TemplateEnvelop | undefined;
|
|
|
19
19
|
export async function getPreparedExportTemplateEnvelope(): Promise<TemplateEnvelop> {
|
|
20
20
|
if (preparedTemplateEnvelop === undefined) {
|
|
21
21
|
// (await import('@platforma-sdk/workflow-tengo')).Templates['pframes.export-pframe']
|
|
22
|
-
const preparedTemplate = await prepareTemplateSpec(SdkTemplates['pframes.export-pframe']);
|
|
22
|
+
const preparedTemplate = await prepareTemplateSpec(SdkTemplates['pframes.export-pframe-for-ui']);
|
|
23
23
|
if (preparedTemplate.type !== 'explicit') throw new Error('Unexpected prepared template type.');
|
|
24
24
|
const hash = createHash('sha256').update(preparedTemplate.content).digest('hex');
|
|
25
25
|
preparedTemplateEnvelop = { spec: preparedTemplate, hash };
|