@evergis/api 4.1.55-alpha.1 → 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
@@ -5314,9 +5316,9 @@ LineString
5314
5316
 
5315
5317
  Polygon
5316
5318
 
5317
- MultiPoint
5319
+ Multipoint
5318
5320
 
5319
- MultiLineString
5321
+ Polyline
5320
5322
 
5321
5323
  H3Index
5322
5324
 
@@ -5338,8 +5340,8 @@ exports.AttributeType = void 0;
5338
5340
  AttributeType["Point"] = "Point";
5339
5341
  AttributeType["LineString"] = "LineString";
5340
5342
  AttributeType["Polygon"] = "Polygon";
5341
- AttributeType["MultiPoint"] = "MultiPoint";
5342
- AttributeType["MultiLineString"] = "MultiLineString";
5343
+ AttributeType["Multipoint"] = "Multipoint";
5344
+ AttributeType["Polyline"] = "Polyline";
5343
5345
  AttributeType["H3Index"] = "H3Index";
5344
5346
  AttributeType["Json"] = "Json";
5345
5347
  AttributeType["MultiPolygon"] = "MultiPolygon";
@@ -5624,60 +5626,39 @@ exports.ErrorType = void 0;
5624
5626
  /**
5625
5627
  *
5626
5628
 
5627
- Unknown
5628
-
5629
- Point
5630
-
5631
- LineString
5632
-
5633
- Polygon
5634
-
5635
- MultiPoint
5636
-
5637
- MultiLineString
5638
-
5639
- MultiPolygon
5640
-
5641
- GeometryCollection
5629
+ unknown
5642
5630
 
5643
- CircularString
5631
+ point
5644
5632
 
5645
- CompoundCurve
5633
+ polyline
5646
5634
 
5647
- CurvePolygon
5635
+ polygon
5648
5636
 
5649
- MultiCurve
5637
+ envelope
5650
5638
 
5651
- MultiSurface
5639
+ multipoint
5652
5640
 
5653
- Curve
5641
+ line
5654
5642
 
5655
- Surface
5643
+ ring
5656
5644
 
5657
- PolyhedralSurface
5645
+ multipolygon
5658
5646
 
5659
- TIN
5647
+ collection
5660
5648
  */
5661
- exports.OgcGeometryType = void 0;
5662
- (function (OgcGeometryType) {
5663
- OgcGeometryType["Unknown"] = "Unknown";
5664
- OgcGeometryType["Point"] = "Point";
5665
- OgcGeometryType["LineString"] = "LineString";
5666
- OgcGeometryType["Polygon"] = "Polygon";
5667
- OgcGeometryType["MultiPoint"] = "MultiPoint";
5668
- OgcGeometryType["MultiLineString"] = "MultiLineString";
5669
- OgcGeometryType["MultiPolygon"] = "MultiPolygon";
5670
- OgcGeometryType["GeometryCollection"] = "GeometryCollection";
5671
- OgcGeometryType["CircularString"] = "CircularString";
5672
- OgcGeometryType["CompoundCurve"] = "CompoundCurve";
5673
- OgcGeometryType["CurvePolygon"] = "CurvePolygon";
5674
- OgcGeometryType["MultiCurve"] = "MultiCurve";
5675
- OgcGeometryType["MultiSurface"] = "MultiSurface";
5676
- OgcGeometryType["Curve"] = "Curve";
5677
- OgcGeometryType["Surface"] = "Surface";
5678
- OgcGeometryType["PolyhedralSurface"] = "PolyhedralSurface";
5679
- OgcGeometryType["TIN"] = "TIN";
5680
- })(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 = {}));
5681
5662
  /**
5682
5663
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
5683
5664