files.com 1.0.290 → 1.0.291

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/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.290
1
+ 1.0.291
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.290",
3
+ "version": "1.0.291",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -120,7 +120,7 @@ class File {
120
120
  const buffer = Buffer.concat(chunks)
121
121
  const nextFileUploadPart = await File._continueUpload(destinationPath, ++part, firstFileUploadPart, options)
122
122
 
123
- const upload_uri = File._determinePartUploadUri(nextFileUploadPart)
123
+ const upload_uri = this._determinePartUploadUri(nextFileUploadPart)
124
124
  const uploadPromise = Api.sendFilePart(upload_uri, 'PUT', buffer)
125
125
 
126
126
  if (firstFileUploadPart.parallel_parts) {
@@ -148,7 +148,7 @@ class File {
148
148
  const buffer = Buffer.concat(chunks)
149
149
  const nextFileUploadPart = await File._continueUpload(destinationPath, ++part, firstFileUploadPart, options)
150
150
 
151
- const upload_uri = File._determinePartUploadUri(nextFileUploadPart)
151
+ const upload_uri = this._determinePartUploadUri(nextFileUploadPart)
152
152
  concurrentUploads.push(Api.sendFilePart(upload_uri, 'PUT', buffer))
153
153
  }
154
154