@secrecy/lib 1.35.0 → 1.35.1

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.
@@ -116,7 +116,7 @@ export class SecrecyCloudClient {
116
116
  for (const [key, value] of Object.entries(part.fields)) {
117
117
  formData.append(key, value);
118
118
  }
119
- formData.append('data', new Blob([chunk.data]), `${uploadData.id}-${chunk.order}`);
119
+ formData.append('file', new Blob([chunk.data]), `${uploadData.id}-${chunk.order}`);
120
120
  await axios.post(part.url, formData, {
121
121
  onUploadProgress: (progressEvent) => {
122
122
  onProgress(part.order, progressEvent);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@secrecy/lib",
3
3
  "author": "Anonymize <anonymize@gmail.com>",
4
4
  "description": "Anonymize Secrecy Library",
5
- "version": "1.35.0",
5
+ "version": "1.35.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/anonymize-org/lib.git"