@milaboratories/pl-drivers 1.3.12 → 1.3.14

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.12",
3
+ "version": "1.3.14",
4
4
  "description": "Drivers and a low-level clients for log streaming, downloading and uploading files from and to pl",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -27,10 +27,10 @@
27
27
  "undici": "^6.20.1",
28
28
  "zod": "^3.23.8",
29
29
  "@milaboratories/ts-helpers": "^1.1.1",
30
+ "@milaboratories/pl-client": "^2.5.9",
31
+ "@milaboratories/pl-tree": "^1.4.10",
30
32
  "@milaboratories/computable": "^2.2.1",
31
- "@milaboratories/pl-client": "^2.5.8",
32
- "@milaboratories/pl-tree": "^1.4.9",
33
- "@milaboratories/pl-model-common": "^1.5.2"
33
+ "@milaboratories/pl-model-common": "^1.6.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "typescript": "~5.5.4",
package/src/drivers/ls.ts CHANGED
@@ -230,6 +230,12 @@ export class LsDriver implements InternalLsDriver {
230
230
  }
231
231
  }
232
232
 
233
+ public async fileToImportHandle(file: sdk.FileLike): Promise<sdk.ImportFileHandle> {
234
+ throw new Error(
235
+ 'Not implemented. This method must be implemented and intercepted in desktop preload script.'
236
+ );
237
+ }
238
+
233
239
  public static async init(
234
240
  logger: MiLogger,
235
241
  client: PlClient,