@evergis/api 3.0.183 → 3.0.184
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__/LayersService.d.ts +13 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +31 -7
- 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/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -4113,6 +4113,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4113
4113
|
value: function applyStyle(name, data) {
|
|
4114
4114
|
return this.http.put("/layers/" + name + "/style", data).then(() => {});
|
|
4115
4115
|
}
|
|
4116
|
+
/**
|
|
4117
|
+
* No description
|
|
4118
|
+
*
|
|
4119
|
+
* @tags Layers
|
|
4120
|
+
* @name GetStyle
|
|
4121
|
+
* @operationId LayersController_GetStyle
|
|
4122
|
+
* @summary Get style of the given layer.
|
|
4123
|
+
* @request GET:/layers/{name}/style
|
|
4124
|
+
* @response `200` Success
|
|
4125
|
+
*/
|
|
4126
|
+
|
|
4127
|
+
}, {
|
|
4128
|
+
key: "getStyle",
|
|
4129
|
+
value: function getStyle(name) {
|
|
4130
|
+
return this.http.get("/layers/" + name + "/style").json();
|
|
4131
|
+
}
|
|
4116
4132
|
/**
|
|
4117
4133
|
* No description
|
|
4118
4134
|
*
|