@evergis/api 4.0.10 → 4.0.12

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
@@ -2783,7 +2783,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
2783
2783
  * @response `200` OK
2784
2784
  */
2785
2785
  function get(id) {
2786
- return this.http.get("/filters/" + id).text();
2786
+ return this.http.get("/filters/" + id).json();
2787
2787
  }
2788
2788
  /**
2789
2789
  * No description
@@ -5884,6 +5884,22 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5884
5884
  value: function setPolicy(data) {
5885
5885
  return this.http.post("/security/policies", data).then(() => {});
5886
5886
  }
5887
+ /**
5888
+ * No description
5889
+ *
5890
+ * @tags SecurityService
5891
+ * @name OldCheckLimits
5892
+ * @operationId SecurityServiceController_OldCheckLimits
5893
+ * @summary Get limits of workspace.
5894
+ * @request GET:/security/checkLimits/{userName}
5895
+ * @response `200` OK
5896
+ */
5897
+
5898
+ }, {
5899
+ key: "oldCheckLimits",
5900
+ value: function oldCheckLimits(userName) {
5901
+ return this.http.get("/security/checkLimits/" + userName).json();
5902
+ }
5887
5903
  /**
5888
5904
  * No description
5889
5905
  *