whio-api-sdk 1.0.215-beta-staging → 1.0.216-beta-staging
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.
|
@@ -96,6 +96,7 @@ export class BaseClient {
|
|
|
96
96
|
}
|
|
97
97
|
return new Promise((resolve, reject) => {
|
|
98
98
|
const xhr = new XMLHttpRequest();
|
|
99
|
+
console.log('Uploading file to:', url);
|
|
99
100
|
xhr.upload.addEventListener('progress', (event) => {
|
|
100
101
|
console.log('Upload progress:', event);
|
|
101
102
|
if (event.lengthComputable && onProgress) {
|
package/package.json
CHANGED
|
@@ -106,7 +106,7 @@ export class BaseClient {
|
|
|
106
106
|
|
|
107
107
|
return new Promise((resolve, reject) => {
|
|
108
108
|
const xhr = new XMLHttpRequest();
|
|
109
|
-
|
|
109
|
+
console.log('Uploading file to:', url);
|
|
110
110
|
xhr.upload.addEventListener('progress', (event) => {
|
|
111
111
|
console.log('Upload progress:', event);
|
|
112
112
|
if (event.lengthComputable && onProgress) {
|