@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/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;