@evergis/api 4.1.55-alpha.0 → 4.1.55

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).then(() => { });
1420
+ return this.http.get(`/eql/getParam`, query).text();
1421
1421
  }
1422
1422
  /**
1423
1423
  * No description
@@ -4949,7 +4949,9 @@ class TablesService extends Service {
4949
4949
  * @response `200` OK
4950
4950
  */
4951
4951
  getTableData({ name, ...query }) {
4952
- return this.http.get(`/tables/${name}/data`, query).json();
4952
+ return this.http
4953
+ .get(`/tables/${name}/data`, query)
4954
+ .json();
4953
4955
  }
4954
4956
  /**
4955
4957
  * No description
@@ -5624,93 +5626,39 @@ exports.ErrorType = void 0;
5624
5626
  /**
5625
5627
  *
5626
5628
 
5627
- Point
5628
-
5629
- MultiPoint
5630
-
5631
- LineString
5632
-
5633
- MultiLineString
5634
-
5635
- Polygon
5636
-
5637
- MultiPolygon
5638
-
5639
- GeometryCollection
5640
-
5641
- Feature
5642
-
5643
- FeatureCollection
5644
- */
5645
- exports.GeoJsonObjectType = void 0;
5646
- (function (GeoJsonObjectType) {
5647
- GeoJsonObjectType["Point"] = "Point";
5648
- GeoJsonObjectType["MultiPoint"] = "MultiPoint";
5649
- GeoJsonObjectType["LineString"] = "LineString";
5650
- GeoJsonObjectType["MultiLineString"] = "MultiLineString";
5651
- GeoJsonObjectType["Polygon"] = "Polygon";
5652
- GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
5653
- GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
5654
- GeoJsonObjectType["Feature"] = "Feature";
5655
- GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
5656
- })(exports.GeoJsonObjectType || (exports.GeoJsonObjectType = {}));
5657
- /**
5658
- *
5659
-
5660
- Unknown
5661
-
5662
- Point
5663
-
5664
- LineString
5665
-
5666
- Polygon
5667
-
5668
- MultiPoint
5669
-
5670
- MultiLineString
5671
-
5672
- MultiPolygon
5673
-
5674
- GeometryCollection
5629
+ unknown
5675
5630
 
5676
- CircularString
5631
+ point
5677
5632
 
5678
- CompoundCurve
5633
+ polyline
5679
5634
 
5680
- CurvePolygon
5635
+ polygon
5681
5636
 
5682
- MultiCurve
5637
+ envelope
5683
5638
 
5684
- MultiSurface
5639
+ multipoint
5685
5640
 
5686
- Curve
5641
+ line
5687
5642
 
5688
- Surface
5643
+ ring
5689
5644
 
5690
- PolyhedralSurface
5645
+ multipolygon
5691
5646
 
5692
- TIN
5647
+ collection
5693
5648
  */
5694
- exports.OgcGeometryType = void 0;
5695
- (function (OgcGeometryType) {
5696
- OgcGeometryType["Unknown"] = "Unknown";
5697
- OgcGeometryType["Point"] = "Point";
5698
- OgcGeometryType["LineString"] = "LineString";
5699
- OgcGeometryType["Polygon"] = "Polygon";
5700
- OgcGeometryType["MultiPoint"] = "MultiPoint";
5701
- OgcGeometryType["MultiLineString"] = "MultiLineString";
5702
- OgcGeometryType["MultiPolygon"] = "MultiPolygon";
5703
- OgcGeometryType["GeometryCollection"] = "GeometryCollection";
5704
- OgcGeometryType["CircularString"] = "CircularString";
5705
- OgcGeometryType["CompoundCurve"] = "CompoundCurve";
5706
- OgcGeometryType["CurvePolygon"] = "CurvePolygon";
5707
- OgcGeometryType["MultiCurve"] = "MultiCurve";
5708
- OgcGeometryType["MultiSurface"] = "MultiSurface";
5709
- OgcGeometryType["Curve"] = "Curve";
5710
- OgcGeometryType["Surface"] = "Surface";
5711
- OgcGeometryType["PolyhedralSurface"] = "PolyhedralSurface";
5712
- OgcGeometryType["TIN"] = "TIN";
5713
- })(exports.OgcGeometryType || (exports.OgcGeometryType = {}));
5649
+ exports.GeometryType = void 0;
5650
+ (function (GeometryType) {
5651
+ GeometryType["Unknown"] = "unknown";
5652
+ GeometryType["Point"] = "point";
5653
+ GeometryType["Polyline"] = "polyline";
5654
+ GeometryType["Polygon"] = "polygon";
5655
+ GeometryType["Envelope"] = "envelope";
5656
+ GeometryType["Multipoint"] = "multipoint";
5657
+ GeometryType["LineString"] = "line";
5658
+ GeometryType["LinearRing"] = "ring";
5659
+ GeometryType["MultiPolygon"] = "multipolygon";
5660
+ GeometryType["GeometryCollection"] = "collection";
5661
+ })(exports.GeometryType || (exports.GeometryType = {}));
5714
5662
  /**
5715
5663
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
5716
5664