@evergis/api 3.0.182 → 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
@@ -3989,6 +3989,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
3989
3989
 
3990
3990
  return this.http.get("/layers/" + name + "/features/count", query).json();
3991
3991
  }
3992
+ /**
3993
+ * No description
3994
+ *
3995
+ * @tags Layers
3996
+ * @name GetFilteredFeaturesCount1
3997
+ * @operationId LayersController_GetFilteredFeaturesCount_1
3998
+ * @summary Get features count according layer filter of the given name.
3999
+ * @request POST:/layers/{name}/features/count
4000
+ * @response `200` Success
4001
+ */
4002
+
4003
+ }, {
4004
+ key: "getFilteredFeaturesCount1",
4005
+ value: function getFilteredFeaturesCount1(name, data) {
4006
+ return this.http.post("/layers/" + name + "/features/count", data).json();
4007
+ }
3992
4008
  /**
3993
4009
  * No description
3994
4010
  *
@@ -4081,6 +4097,70 @@ let LayersService = /*#__PURE__*/function (_Service) {
4081
4097
  value: function createRoute(name, data) {
4082
4098
  return this.http.post("/layers/" + name + "/createRoute", data).json();
4083
4099
  }
4100
+ /**
4101
+ * No description
4102
+ *
4103
+ * @tags Layers
4104
+ * @name ApplyStyle
4105
+ * @operationId LayersController_ApplyStyle
4106
+ * @summary Create data layout and image layout for given style.
4107
+ * @request PUT:/layers/{name}/style
4108
+ * @response `200` Success
4109
+ */
4110
+
4111
+ }, {
4112
+ key: "applyStyle",
4113
+ value: function applyStyle(name, data) {
4114
+ return this.http.put("/layers/" + name + "/style", data).then(() => {});
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
+ }
4132
+ /**
4133
+ * No description
4134
+ *
4135
+ * @tags Layers
4136
+ * @name GetImageLayout
4137
+ * @operationId LayersController_GetImageLayout
4138
+ * @summary Get date layout.
4139
+ * @request GET:/layers/{name}/style/sprite.png
4140
+ * @response `200` Success
4141
+ */
4142
+
4143
+ }, {
4144
+ key: "getImageLayout",
4145
+ value: function getImageLayout(name) {
4146
+ return this.http.get("/layers/" + name + "/style/sprite.png").blob();
4147
+ }
4148
+ /**
4149
+ * No description
4150
+ *
4151
+ * @tags Layers
4152
+ * @name GetDataLayout
4153
+ * @operationId LayersController_GetDataLayout
4154
+ * @summary Get image layout.
4155
+ * @request GET:/layers/{name}/style/sprite.json
4156
+ * @response `200` Success
4157
+ */
4158
+
4159
+ }, {
4160
+ key: "getDataLayout",
4161
+ value: function getDataLayout(name) {
4162
+ return this.http.get("/layers/" + name + "/style/sprite.json").blob();
4163
+ }
4084
4164
  /**
4085
4165
  * No description
4086
4166
  *
@@ -6350,6 +6430,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6350
6430
  function statisticsDb(query) {
6351
6431
  return this.http.get("/statistics", query).json();
6352
6432
  }
6433
+ /**
6434
+ * No description
6435
+ *
6436
+ * @tags Statistic
6437
+ * @name StatisticsDb1
6438
+ * @operationId StatisticController_StatisticsDb_1
6439
+ * @summary Calculates statistics for layer attribute.
6440
+ * @request POST:/statistics
6441
+ * @response `200` Success
6442
+ */
6443
+
6444
+ }, {
6445
+ key: "statisticsDb1",
6446
+ value: function statisticsDb1(data) {
6447
+ return this.http.post("/statistics", data).json();
6448
+ }
6353
6449
  /**
6354
6450
  * No description
6355
6451
  *
@@ -6366,6 +6462,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6366
6462
  value: function classify(query) {
6367
6463
  return this.http.get("/statistics/classify", query).json();
6368
6464
  }
6465
+ /**
6466
+ * No description
6467
+ *
6468
+ * @tags Statistic
6469
+ * @name Classify1
6470
+ * @operationId StatisticController_Classify_1
6471
+ * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6472
+ * @request POST:/statistics/classify
6473
+ * @response `200` Success
6474
+ */
6475
+
6476
+ }, {
6477
+ key: "classify1",
6478
+ value: function classify1(data) {
6479
+ return this.http.post("/statistics/classify", data).json();
6480
+ }
6369
6481
  /**
6370
6482
  * No description
6371
6483
  *
@@ -6382,6 +6494,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6382
6494
  value: function sumOfProduct(query) {
6383
6495
  return this.http.get("/statistics/sumOfProduct", query).json();
6384
6496
  }
6497
+ /**
6498
+ * No description
6499
+ *
6500
+ * @tags Statistic
6501
+ * @name SumOfProduct1
6502
+ * @operationId StatisticController_SumOfProduct_1
6503
+ * @summary Sum of product.
6504
+ * @request POST:/statistics/sumOfProduct
6505
+ * @response `200` Success
6506
+ */
6507
+
6508
+ }, {
6509
+ key: "sumOfProduct1",
6510
+ value: function sumOfProduct1(data) {
6511
+ return this.http.post("/statistics/sumOfProduct", data).json();
6512
+ }
6385
6513
  }]);
6386
6514
 
6387
6515
  return StatisticService;
@@ -6403,11 +6531,21 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
6403
6531
  value: function getStatistic(params) {
6404
6532
  return this.statisticsDb(params);
6405
6533
  }
6534
+ }, {
6535
+ key: "postStatistic",
6536
+ value: function postStatistic(params) {
6537
+ return this.statisticsDb1(params);
6538
+ }
6406
6539
  }, {
6407
6540
  key: "getClassify",
6408
6541
  value: function getClassify(params) {
6409
6542
  return this.classify(params);
6410
6543
  }
6544
+ }, {
6545
+ key: "postClassify",
6546
+ value: function postClassify(params) {
6547
+ return this.classify1(params);
6548
+ }
6411
6549
  }]);
6412
6550
 
6413
6551
  return Statistic;