@milaboratories/pl-drivers 1.11.33 → 1.11.34

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.11.33",
3
+ "version": "1.11.34",
4
4
  "engines": {
5
5
  "node": ">=22"
6
6
  },
@@ -34,10 +34,10 @@
34
34
  "zod": "~3.23.8",
35
35
  "@milaboratories/ts-helpers": "1.5.4",
36
36
  "@milaboratories/computable": "2.7.5",
37
- "@milaboratories/pl-client": "2.16.16",
37
+ "@milaboratories/pl-client": "2.16.17",
38
+ "@milaboratories/pl-model-common": "1.21.10",
38
39
  "@milaboratories/helpers": "1.12.1",
39
- "@milaboratories/pl-tree": "1.8.24",
40
- "@milaboratories/pl-model-common": "1.21.10"
40
+ "@milaboratories/pl-tree": "1.8.25"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/decompress": "^4.2.7",
@@ -48,11 +48,11 @@
48
48
  "eslint": "^9.25.1",
49
49
  "typescript": "~5.6.3",
50
50
  "vitest": "^4.0.16",
51
- "@milaboratories/eslint-config": "1.0.5",
52
51
  "@milaboratories/build-configs": "1.2.1",
53
- "@milaboratories/test-helpers": "1.1.2",
54
52
  "@milaboratories/ts-builder": "1.2.1",
55
- "@milaboratories/ts-configs": "1.2.0"
53
+ "@milaboratories/ts-configs": "1.2.0",
54
+ "@milaboratories/test-helpers": "1.1.2",
55
+ "@milaboratories/eslint-config": "1.0.5"
56
56
  },
57
57
  "scripts": {
58
58
  "type-check": "ts-builder types --target node",
@@ -9,7 +9,7 @@ import * as path from 'node:path';
9
9
  import { DownloadUrlDriver } from './driver';
10
10
  import { test, expect } from 'vitest';
11
11
 
12
- test.skip('should download a tar archive and extracts its content and then deleted', async () => {
12
+ test('should download a tar archive and extracts its content and then deleted', async () => {
13
13
  await TestHelpers.withTempRoot(async (client) => {
14
14
  const logger = new ConsoleLoggerAdapter();
15
15
  const dir = await fsp.mkdtemp(path.join(os.tmpdir(), 'test1-'));