mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-22 21:30:44 +02:00
`upload(url, path, onProgress, { headers, method })` and
`download(url, path, onProgress, { headers, body })` replace the
positional optional arguments.
`headers` accepts both a `Map` and a plain object; previously a `Map`
was silently serialized as an empty object.
13 lines
446 B
Markdown
13 lines
446 B
Markdown
---
|
|
"upload-js": major
|
|
---
|
|
|
|
**Breaking:** `upload` and `download` now take an `options` object as their last argument instead of positional `headers`, `method` and `body` arguments:
|
|
|
|
```ts
|
|
await upload(url, filePath, onProgress, { headers, method: HttpMethod.Put })
|
|
await download(url, filePath, onProgress, { headers, body })
|
|
```
|
|
|
|
`headers` accepts both a `Map` and a plain object. Previously a `Map` was silently serialized as an empty object.
|