@evergis/api 3.0.55 → 3.0.56
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/__generated__/StaticContentService.d.ts +12 -1
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +20 -0
- package/dist/__generated__/data-contracts.d.ts +73 -0
- package/dist/api.cjs.development.js +16 -0
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +16 -0
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -606,6 +606,22 @@ let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
|
606
606
|
value: function uploadFile(data) {
|
|
607
607
|
return this.http.post("/upload/file", toFormData(data)).json();
|
|
608
608
|
}
|
|
609
|
+
/**
|
|
610
|
+
* No description
|
|
611
|
+
*
|
|
612
|
+
* @tags StaticContentService
|
|
613
|
+
* @name DeleteFile
|
|
614
|
+
* @operationId StaticContentServiceController_DeleteFile
|
|
615
|
+
* @summary Delete file from temporary session storage.
|
|
616
|
+
* @request DELETE:/upload/file
|
|
617
|
+
* @response `200` Success
|
|
618
|
+
*/
|
|
619
|
+
|
|
620
|
+
}, {
|
|
621
|
+
key: "deleteFile",
|
|
622
|
+
value: function deleteFile(query) {
|
|
623
|
+
return this.http.delete("/upload/file", null, query).then(() => {});
|
|
624
|
+
}
|
|
609
625
|
}]);
|
|
610
626
|
|
|
611
627
|
return StaticContentService;
|