@evergis/api 3.0.136 → 3.0.137

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
@@ -799,6 +799,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
799
799
  value: function getExternalWmsLayers(query) {
800
800
  return this.http.get("/import/wms", query).json();
801
801
  }
802
+ /**
803
+ * No description
804
+ *
805
+ * @tags ImportService
806
+ * @name GetExternalPbfLayers
807
+ * @operationId ImportServiceController_GetExternalPbfLayers
808
+ * @summary Get list of external PBF layers.
809
+ * @request GET:/import/pbf
810
+ * @response `200` Success
811
+ */
812
+
813
+ }, {
814
+ key: "getExternalPbfLayers",
815
+ value: function getExternalPbfLayers(query) {
816
+ return this.http.get("/import/pbf", query).json();
817
+ }
802
818
  /**
803
819
  * No description
804
820
  *
@@ -2837,6 +2853,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
2837
2853
  value: function updateTable(name, data) {
2838
2854
  return this.http.patch("/tables/" + name, data).json();
2839
2855
  }
2856
+ /**
2857
+ * No description
2858
+ *
2859
+ * @tags Tables
2860
+ * @name PutTable
2861
+ * @operationId TablesController_PutTable
2862
+ * @summary Override exists table.
2863
+ * @request PUT:/tables/{name}
2864
+ * @response `200` Success
2865
+ */
2866
+
2867
+ }, {
2868
+ key: "putTable",
2869
+ value: function putTable(name, data) {
2870
+ return this.http.put("/tables/" + name, data).json();
2871
+ }
2840
2872
  /**
2841
2873
  * No description
2842
2874
  *
@@ -3397,6 +3429,22 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
3397
3429
  value: function getProjectLayersExtendedInfo(name) {
3398
3430
  return this.http.get("/projects/" + name + "/extended-info").json();
3399
3431
  }
3432
+ /**
3433
+ * No description
3434
+ *
3435
+ * @tags Projects
3436
+ * @name GetTilesLayerImage
3437
+ * @operationId ProjectsController_GetTilesLayerImage
3438
+ * @summary Render tile.
3439
+ * @request GET:/projects/{name}/tile/{z}/{x}/{y}
3440
+ * @response `200` Success
3441
+ */
3442
+
3443
+ }, {
3444
+ key: "getTilesLayerImage",
3445
+ value: function getTilesLayerImage(name, x, y, z) {
3446
+ return this.http.createUrl("/projects/" + name + "/tile/" + z + "/" + x + "/" + y);
3447
+ }
3400
3448
  /**
3401
3449
  * No description
3402
3450
  *
@@ -7101,7 +7149,7 @@ point
7101
7149
 
7102
7150
  polyline
7103
7151
 
7104
- polygon
7152
+ multipolygon
7105
7153
 
7106
7154
  envelope
7107
7155
 
@@ -7115,7 +7163,7 @@ var GeometryType;
7115
7163
  GeometryType["Unknown"] = "unknown";
7116
7164
  GeometryType["Point"] = "point";
7117
7165
  GeometryType["Polyline"] = "polyline";
7118
- GeometryType["Polygon"] = "polygon";
7166
+ GeometryType["Polygon"] = "multipolygon";
7119
7167
  GeometryType["Envelope"] = "envelope";
7120
7168
  GeometryType["Multipoint"] = "multipoint";
7121
7169
  })(GeometryType || (GeometryType = {}));
@@ -7365,6 +7413,8 @@ var ServerTaskStatus;
7365
7413
  Basic
7366
7414
 
7367
7415
  PreserveTopology
7416
+
7417
+ VW
7368
7418
  */
7369
7419
 
7370
7420
 
@@ -7373,6 +7423,7 @@ var SimplifyType;
7373
7423
  (function (SimplifyType) {
7374
7424
  SimplifyType["Basic"] = "Basic";
7375
7425
  SimplifyType["PreserveTopology"] = "PreserveTopology";
7426
+ SimplifyType["VW"] = "VW";
7376
7427
  })(SimplifyType || (SimplifyType = {}));
7377
7428
  /**
7378
7429
  * The `StringSubType` provides information about string attribute subtype.