@evergis/api 3.0.92 → 3.0.93

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.
@@ -1545,6 +1545,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
1545
1545
  type: 'ProxyService'
1546
1546
  }).json();
1547
1547
  }
1548
+ /**
1549
+ * No description
1550
+ *
1551
+ * @tags Layers
1552
+ * @name PublishRouteService
1553
+ * @operationId LayersController_PublishRouteService
1554
+ * @summary Creates new Route Service.
1555
+ * @request POST:/layers#type=RouteService
1556
+ * @response `200` Success
1557
+ */
1558
+
1559
+ }, {
1560
+ key: "publishRouteService",
1561
+ value: function publishRouteService(data) {
1562
+ return this.http.post("/layers", data, {
1563
+ type: 'RouteService'
1564
+ }).then(() => {});
1565
+ }
1548
1566
  /**
1549
1567
  * No description
1550
1568
  *
@@ -2247,6 +2265,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
2247
2265
 
2248
2266
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
2249
2267
  }
2268
+ /**
2269
+ * No description
2270
+ *
2271
+ * @tags Layers
2272
+ * @name CreateRoute
2273
+ * @operationId LayersController_CreateRoute
2274
+ * @summary Create new route (feature) from source features.
2275
+ * @request POST:/layers/{name}/createRoute
2276
+ * @response `200` Success
2277
+ */
2278
+
2279
+ }, {
2280
+ key: "createRoute",
2281
+ value: function createRoute(name, data) {
2282
+ return this.http.post("/layers/" + name + "/createRoute", data).json();
2283
+ }
2250
2284
  /**
2251
2285
  * No description
2252
2286
  *
@@ -3862,8 +3896,24 @@ let GeneralService = /*#__PURE__*/function (_Service) {
3862
3896
 
3863
3897
  }, {
3864
3898
  key: "favicon",
3865
- value: function favicon() {
3866
- return this.http.createUrl("/favicon.ico");
3899
+ value: function favicon(query) {
3900
+ return this.http.createUrl("/favicon.ico", query);
3901
+ }
3902
+ /**
3903
+ * No description
3904
+ *
3905
+ * @tags General
3906
+ * @name Logo
3907
+ * @operationId GeneralController_Logo
3908
+ * @summary Returns logo.
3909
+ * @request GET:/logo.png
3910
+ * @response `200` Success
3911
+ */
3912
+
3913
+ }, {
3914
+ key: "logo",
3915
+ value: function logo(query) {
3916
+ return this.http.createUrl("/logo.png", query);
3867
3917
  }
3868
3918
  /**
3869
3919
  * No description
@@ -6309,6 +6359,7 @@ function isFeatureLayer(layer) {
6309
6359
  AggregationFunction["Sum"] = "Sum";
6310
6360
  AggregationFunction["Extent"] = "Extent";
6311
6361
  AggregationFunction["Count"] = "Count";
6362
+ AggregationFunction["DistinctCount"] = "DistinctCount";
6312
6363
  AggregationFunction["First"] = "First";
6313
6364
  AggregationFunction["Last"] = "Last";
6314
6365
  AggregationFunction["Median"] = "Median";
@@ -6340,7 +6391,7 @@ function isFeatureLayer(layer) {
6340
6391
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
6341
6392
  ClassificationType["EqualInterval"] = "equalInterval";
6342
6393
  ClassificationType["Quantile"] = "quantile";
6343
- ClassificationType["Distinct"] = "unique";
6394
+ ClassificationType["Unique"] = "unique";
6344
6395
  })(exports.ClassificationType || (exports.ClassificationType = {}));
6345
6396
 
6346
6397
  (function (ClassifyAttributeType) {
@@ -6370,6 +6421,7 @@ function isFeatureLayer(layer) {
6370
6421
  ConfigurationErrorEnum["ColumnLoadingError"] = "ColumnLoadingError";
6371
6422
  ConfigurationErrorEnum["InvalidAttributeFormat"] = "InvalidAttributeFormat";
6372
6423
  ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
6424
+ ConfigurationErrorEnum["DuplicateColumns"] = "DuplicateColumns";
6373
6425
  })(exports.ConfigurationErrorEnum || (exports.ConfigurationErrorEnum = {}));
6374
6426
 
6375
6427
  (function (ErrorDetailsType) {
@@ -6503,6 +6555,7 @@ function isFeatureLayer(layer) {
6503
6555
  ResourceType["Project"] = "project";
6504
6556
  ResourceType["File"] = "file";
6505
6557
  ResourceType["Feature"] = "feature";
6558
+ ResourceType["Tag"] = "tag";
6506
6559
  })(exports.ResourceType || (exports.ResourceType = {}));
6507
6560
 
6508
6561
  (function (ResourceTypeLink) {