@evergis/api 4.0.11 → 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/__generated__/FiltersService.d.ts +4 -4
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/SecurityService.d.ts +11 -0
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +33 -25
- package/dist/api.cjs.development.js +18 -2
- 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 +18 -2
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
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).
|
|
2786
|
+
return this.http.get("/filters/" + id).json();
|
|
2787
2787
|
}
|
|
2788
2788
|
/**
|
|
2789
2789
|
* No description
|
|
@@ -2799,7 +2799,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2799
2799
|
}, {
|
|
2800
2800
|
key: "update",
|
|
2801
2801
|
value: function update(id, data) {
|
|
2802
|
-
return this.http.post("/filters/" + id, data).
|
|
2802
|
+
return this.http.post("/filters/" + id, data).json();
|
|
2803
2803
|
}
|
|
2804
2804
|
/**
|
|
2805
2805
|
* 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
|
*
|