@evergis/api 4.1.18 → 4.1.19
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/dist/api.esm.js +2 -2
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/services/FileUpload.d.ts +3 -3
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -1759,8 +1759,8 @@ class CatalogService extends Service {
|
|
|
1759
1759
|
}
|
|
1760
1760
|
|
|
1761
1761
|
class FileUpload extends CatalogService {
|
|
1762
|
-
upload(file, rewrite) {
|
|
1763
|
-
return this.createFile1({ file, rewrite: !!rewrite });
|
|
1762
|
+
upload(file, rewrite, parentId, fileName) {
|
|
1763
|
+
return this.createFile1({ file, rewrite: !!rewrite, parentId, fileName });
|
|
1764
1764
|
}
|
|
1765
1765
|
replaceFile(params) {
|
|
1766
1766
|
return this.createFile(params);
|