@simplito/privmx-webendpoint 2.2.3 → 2.2.6

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.
Binary file
package/extra/files.js CHANGED
@@ -112,7 +112,7 @@ class FileUploader {
112
112
  static async uploadInboxFile({ inboxApi, inboxHandle, preparedFileUpload }) {
113
113
  const streamer = new FileUploader(preparedFileUpload.file, {
114
114
  closeFile() {
115
- return inboxApi.closeFile(preparedFileUpload.handle);
115
+ return Promise.resolve('');
116
116
  },
117
117
  writeToFile(chunk) {
118
118
  return inboxApi.writeToFile(inboxHandle, preparedFileUpload.handle, chunk);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplito/privmx-webendpoint",
3
- "version": "2.2.3",
3
+ "version": "2.2.6",
4
4
  "description": "PrivMX Web Endpoint library",
5
5
  "author": "Simplito",
6
6
  "license": "PrivMX Free License",
@@ -70,6 +70,7 @@
70
70
  "ts-jest": "^29.2.5"
71
71
  },
72
72
  "dependencies": {
73
+ "elliptic": "^6.6.1"
73
74
  }
74
75
  }
75
76