@milaboratories/pl-drivers 1.5.54 → 1.5.56

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.5.54",
3
+ "version": "1.5.56",
4
4
  "engines": {
5
5
  "node": ">=20"
6
6
  },
@@ -30,11 +30,11 @@
30
30
  "tar-fs": "^3.0.8",
31
31
  "undici": "~7.5.0",
32
32
  "zod": "~3.23.8",
33
- "@milaboratories/computable": "^2.4.7",
33
+ "@milaboratories/ts-helpers": "^1.2.0",
34
34
  "@milaboratories/pl-tree": "^1.6.1",
35
+ "@milaboratories/computable": "^2.4.7",
35
36
  "@milaboratories/pl-client": "^2.9.0",
36
- "@milaboratories/pl-model-common": "^1.14.0",
37
- "@milaboratories/ts-helpers": "^1.2.0"
37
+ "@milaboratories/pl-model-common": "^1.14.1"
38
38
  },
39
39
  "devDependencies": {
40
40
  "eslint": "^9.25.1",
@@ -44,8 +44,8 @@
44
44
  "@types/node": "~20.16.15",
45
45
  "vitest": "^2.1.8",
46
46
  "@types/tar-fs": "^2.0.4",
47
- "@milaboratories/platforma-build-configs": "1.0.3",
48
- "@milaboratories/eslint-config": "^1.0.4"
47
+ "@milaboratories/eslint-config": "^1.0.4",
48
+ "@milaboratories/platforma-build-configs": "1.0.3"
49
49
  },
50
50
  "scripts": {
51
51
  "type-check": "tsc --noEmit --composite false",
@@ -291,11 +291,11 @@ function isImportResourceOutputSet(res: ImportResourceSnapshot) {
291
291
  : res.fields.incarnation !== undefined;
292
292
  }
293
293
 
294
- function isUpload(res: ResourceInfo) {
294
+ export function isUpload(res: ResourceInfo) {
295
295
  return res.type.name.startsWith('BlobUpload');
296
296
  }
297
297
 
298
- function isSignMatch(signer: Signer, path: string, signature: string): boolean {
298
+ export function isSignMatch(signer: Signer, path: string, signature: string): boolean {
299
299
  try {
300
300
  signer.verify(path, signature);
301
301
  return true;