@evergis/api 4.1.49 → 4.1.50-alpha.0

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/index.js CHANGED
@@ -1417,7 +1417,7 @@ class EqlService extends Service {
1417
1417
  * @response `200` OK
1418
1418
  */
1419
1419
  getLayerParameters(query) {
1420
- return this.http.get(`/eql/getParam`, query).text();
1420
+ return this.http.get(`/eql/getParam`, query).then(() => { });
1421
1421
  }
1422
1422
  /**
1423
1423
  * No description
@@ -4948,9 +4948,7 @@ class TablesService extends Service {
4948
4948
  * @response `200` OK
4949
4949
  */
4950
4950
  getTableData({ name, ...query }) {
4951
- return this.http
4952
- .get(`/tables/${name}/data`, query)
4953
- .json();
4951
+ return this.http.get(`/tables/${name}/data`, query).json();
4954
4952
  }
4955
4953
  /**
4956
4954
  * No description
@@ -5625,6 +5623,39 @@ exports.ErrorType = void 0;
5625
5623
  /**
5626
5624
  *
5627
5625
 
5626
+ Point
5627
+
5628
+ MultiPoint
5629
+
5630
+ LineString
5631
+
5632
+ MultiLineString
5633
+
5634
+ Polygon
5635
+
5636
+ MultiPolygon
5637
+
5638
+ GeometryCollection
5639
+
5640
+ Feature
5641
+
5642
+ FeatureCollection
5643
+ */
5644
+ exports.GeoJsonObjectType = void 0;
5645
+ (function (GeoJsonObjectType) {
5646
+ GeoJsonObjectType["Point"] = "Point";
5647
+ GeoJsonObjectType["MultiPoint"] = "MultiPoint";
5648
+ GeoJsonObjectType["LineString"] = "LineString";
5649
+ GeoJsonObjectType["MultiLineString"] = "MultiLineString";
5650
+ GeoJsonObjectType["Polygon"] = "Polygon";
5651
+ GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
5652
+ GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
5653
+ GeoJsonObjectType["Feature"] = "Feature";
5654
+ GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
5655
+ })(exports.GeoJsonObjectType || (exports.GeoJsonObjectType = {}));
5656
+ /**
5657
+ *
5658
+
5628
5659
  unknown
5629
5660
 
5630
5661
  point