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