@milaboratories/pl-middle-layer 1.14.5 → 1.14.7
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 +10 -10
- package/src/pool/driver.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-middle-layer",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.7",
|
|
4
4
|
"description": "Pl Middle Layer",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
"yaml": "^2.6.0",
|
|
30
30
|
"zod": "^3.23.8",
|
|
31
31
|
"@milaboratories/computable": "^2.2.0",
|
|
32
|
+
"@platforma-sdk/block-tools": "^2.3.19",
|
|
32
33
|
"@milaboratories/pl-client": "^2.5.5",
|
|
33
|
-
"@platforma-sdk/block-tools": "^2.3.18",
|
|
34
|
-
"@milaboratories/pl-model-common": "^1.5.1",
|
|
35
|
-
"@milaboratories/pl-tree": "^1.4.6",
|
|
36
34
|
"@milaboratories/resolve-helper": "^1.0.1",
|
|
37
|
-
"@milaboratories/pl-drivers": "^1.3.
|
|
38
|
-
"@milaboratories/pl-model-
|
|
39
|
-
"@
|
|
35
|
+
"@milaboratories/pl-drivers": "^1.3.7",
|
|
36
|
+
"@milaboratories/pl-model-common": "^1.5.2",
|
|
37
|
+
"@milaboratories/pl-model-middle-layer": "^1.5.5",
|
|
38
|
+
"@platforma-sdk/model": "^1.7.20",
|
|
40
39
|
"@milaboratories/ts-helpers": "^1.1.0",
|
|
41
|
-
"@
|
|
42
|
-
"@milaboratories/pl-
|
|
43
|
-
"@
|
|
40
|
+
"@milaboratories/pl-tree": "^1.4.6",
|
|
41
|
+
"@milaboratories/pl-config": "^1.3.0",
|
|
42
|
+
"@platforma-sdk/workflow-tengo": "1.6.4",
|
|
43
|
+
"@milaboratories/pl-local": "^1.5.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"typescript": "~5.5.4",
|
package/src/pool/driver.ts
CHANGED
|
@@ -127,7 +127,7 @@ export class PFrameDriver implements SdkPFrameDriver {
|
|
|
127
127
|
fetchMethod: async (key) => await fsp.readFile(key),
|
|
128
128
|
sizeCalculation: (v) => v.length
|
|
129
129
|
});
|
|
130
|
-
const concurrencyLimiter = new ConcurrencyLimitingExecutor(
|
|
130
|
+
const concurrencyLimiter = new ConcurrencyLimitingExecutor(1);
|
|
131
131
|
this.blobContentCache = blobContentCache;
|
|
132
132
|
this.concurrencyLimiter = concurrencyLimiter;
|
|
133
133
|
this.pFrames = new (class extends RefCountResourcePool<InternalPFrameData, PFrameHolder> {
|