@milaboratories/pl-drivers 1.12.22 → 1.13.0
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-drivers",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Drivers and a low-level clients for log streaming, downloading and uploading files from and to pl",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"tar-fs": "^3.0.9",
|
|
29
29
|
"undici": "~7.16.0",
|
|
30
30
|
"zod": "~3.25.76",
|
|
31
|
-
"@milaboratories/pl-client": "3.2.2",
|
|
32
31
|
"@milaboratories/computable": "2.9.3",
|
|
33
32
|
"@milaboratories/helpers": "1.14.1",
|
|
33
|
+
"@milaboratories/pl-model-common": "1.38.0",
|
|
34
34
|
"@milaboratories/ts-helpers": "1.8.1",
|
|
35
|
-
"@milaboratories/pl-
|
|
36
|
-
"@milaboratories/pl-
|
|
35
|
+
"@milaboratories/pl-tree": "1.9.22",
|
|
36
|
+
"@milaboratories/pl-client": "3.2.4"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/decompress": "^4.2.7",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"openapi-typescript": "^7.10.0",
|
|
44
44
|
"typescript": "~5.9.3",
|
|
45
45
|
"vitest": "^4.1.3",
|
|
46
|
+
"@milaboratories/ts-builder": "1.3.2",
|
|
46
47
|
"@milaboratories/build-configs": "2.0.0",
|
|
47
48
|
"@milaboratories/test-helpers": "1.2.1",
|
|
48
|
-
"@milaboratories/ts-builder": "1.3.2",
|
|
49
49
|
"@milaboratories/ts-configs": "1.2.3"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
@@ -42,6 +42,8 @@ test("should download a tar archive and extracts its content and then deleted",
|
|
|
42
42
|
|
|
43
43
|
c.resetState();
|
|
44
44
|
await c.awaitChange();
|
|
45
|
+
|
|
46
|
+
await driver.releaseAll();
|
|
45
47
|
});
|
|
46
48
|
}, 45000);
|
|
47
49
|
|
|
@@ -69,6 +71,8 @@ test(
|
|
|
69
71
|
expect(url2).not.toBeUndefined();
|
|
70
72
|
expect(url2?.error).not.toBeUndefined();
|
|
71
73
|
expect(url2?.url).toBeUndefined();
|
|
74
|
+
|
|
75
|
+
await driver.releaseAll();
|
|
72
76
|
});
|
|
73
77
|
},
|
|
74
78
|
60000,
|
|
@@ -94,6 +98,8 @@ test("should abort a downloading process when we reset a state of a computable",
|
|
|
94
98
|
|
|
95
99
|
const url2 = await c.getValue();
|
|
96
100
|
expect(url2).toBeUndefined();
|
|
101
|
+
|
|
102
|
+
await driver.releaseAll();
|
|
97
103
|
});
|
|
98
104
|
});
|
|
99
105
|
|