@milaboratories/pl-middle-layer 1.43.21 → 1.43.23
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.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
- package/src/index.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -16,6 +16,7 @@ var plClient = require('@milaboratories/pl-client');
|
|
|
16
16
|
var template_loading = require('./mutator/template/template_loading.cjs');
|
|
17
17
|
var render_template = require('./mutator/template/render_template.cjs');
|
|
18
18
|
var p_object_collection = require('./pool/p_object_collection.cjs');
|
|
19
|
+
var data = require('./pool/data.cjs');
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
|
|
@@ -49,6 +50,8 @@ exports.loadTemplate = template_loading.loadTemplate;
|
|
|
49
50
|
exports.prepareTemplateSpec = template_loading.prepareTemplateSpec;
|
|
50
51
|
exports.createRenderTemplate = render_template.createRenderTemplate;
|
|
51
52
|
exports.parseFinalPObjectCollection = p_object_collection.parseFinalPObjectCollection;
|
|
53
|
+
exports.deriveGlobalPObjectId = data.deriveGlobalPObjectId;
|
|
54
|
+
exports.deriveLocalPObjectId = data.deriveLocalPObjectId;
|
|
52
55
|
Object.keys(model).forEach(function (k) {
|
|
53
56
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
54
57
|
enumerable: true,
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -13,4 +13,5 @@ export * from './mutator/template/template_loading';
|
|
|
13
13
|
export * from './mutator/template/render_template';
|
|
14
14
|
export * from './model/template_spec';
|
|
15
15
|
export { parseFinalPObjectCollection } from './pool/p_object_collection';
|
|
16
|
+
export { deriveGlobalPObjectId, deriveLocalPObjectId } from './pool/data';
|
|
16
17
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,uCAAuC,CAAC;AACtD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AAExB,cAAc,+BAA+B,CAAC;AAG9C,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAGhD,cAAc,2BAA2B,CAAC;AAC1C,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzE,YAAY,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAGnE,cAAc,qCAAqC,CAAC;AACpD,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,uCAAuC,CAAC;AACtD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AAExB,cAAc,+BAA+B,CAAC;AAG9C,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAGhD,cAAc,2BAA2B,CAAC;AAC1C,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzE,YAAY,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAGnE,cAAc,qCAAqC,CAAC;AACpD,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC;AACzE,OAAO,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14,4 +14,5 @@ export * from '@milaboratories/pl-client';
|
|
|
14
14
|
export { TengoTemplateGet, TengoTemplateGetRegistry, TengoTemplateGetTemplate, TengoTemplateGetTemplateURI, TengoTemplatePack, TengoTemplatePackConvert, TengoTemplatePackConvertTemplate, TengoTemplatePackConvertTemplatePack, loadTemplate, prepareTemplateSpec } from './mutator/template/template_loading.js';
|
|
15
15
|
export { createRenderTemplate } from './mutator/template/render_template.js';
|
|
16
16
|
export { parseFinalPObjectCollection } from './pool/p_object_collection.js';
|
|
17
|
+
export { deriveGlobalPObjectId, deriveLocalPObjectId } from './pool/data.js';
|
|
17
18
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-middle-layer",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.23",
|
|
4
4
|
"description": "Pl Middle Layer",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.19.0"
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"zod": "~3.23.8",
|
|
28
28
|
"remeda": "^2.28.0",
|
|
29
29
|
"es-toolkit": "^1.39.10",
|
|
30
|
-
"@milaboratories/pl-
|
|
31
|
-
"@milaboratories/computable": "2.7.1",
|
|
30
|
+
"@milaboratories/pl-drivers": "1.11.11",
|
|
32
31
|
"@milaboratories/resolve-helper": "1.1.1",
|
|
33
|
-
"@milaboratories/
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
-
"@milaboratories/pl-
|
|
37
|
-
"@milaboratories/pl-model-
|
|
38
|
-
"@milaboratories/pl-model-
|
|
39
|
-
"@milaboratories/pl-
|
|
40
|
-
"@platforma-sdk/model": "1.44.5",
|
|
32
|
+
"@milaboratories/computable": "2.7.1",
|
|
33
|
+
"@milaboratories/pl-http": "1.2.0",
|
|
34
|
+
"@platforma-sdk/block-tools": "2.6.15",
|
|
35
|
+
"@milaboratories/pl-client": "2.16.0",
|
|
36
|
+
"@milaboratories/pl-model-common": "1.21.3",
|
|
37
|
+
"@milaboratories/pl-model-middle-layer": "1.8.34",
|
|
38
|
+
"@milaboratories/pl-model-backend": "1.1.17",
|
|
41
39
|
"@milaboratories/ts-helpers": "1.5.1",
|
|
42
|
-
"@
|
|
40
|
+
"@milaboratories/pl-tree": "1.8.7",
|
|
41
|
+
"@platforma-sdk/model": "1.44.8",
|
|
43
42
|
"@milaboratories/pl-config": "1.7.6",
|
|
44
|
-
"@
|
|
45
|
-
"@milaboratories/pl-
|
|
43
|
+
"@platforma-sdk/workflow-tengo": "5.3.4",
|
|
44
|
+
"@milaboratories/pl-errors": "1.1.32",
|
|
45
|
+
"@milaboratories/pl-deployments": "2.10.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"semver": "^7.7.2",
|
package/src/index.ts
CHANGED
|
@@ -22,3 +22,4 @@ export * from './mutator/template/template_loading';
|
|
|
22
22
|
export * from './mutator/template/render_template';
|
|
23
23
|
export * from './model/template_spec';
|
|
24
24
|
export { parseFinalPObjectCollection } from './pool/p_object_collection';
|
|
25
|
+
export { deriveGlobalPObjectId, deriveLocalPObjectId } from './pool/data';
|