@evergis/api 4.1.54 → 4.1.55-alpha.1

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
@@ -4949,9 +4949,7 @@ class TablesService extends Service {
4949
4949
  * @response `200` OK
4950
4950
  */
4951
4951
  getTableData({ name, ...query }) {
4952
- return this.http
4953
- .get(`/tables/${name}/data`, query)
4954
- .json();
4952
+ return this.http.get(`/tables/${name}/data`, query).json();
4955
4953
  }
4956
4954
  /**
4957
4955
  * No description
@@ -5316,9 +5314,9 @@ LineString
5316
5314
 
5317
5315
  Polygon
5318
5316
 
5319
- Multipoint
5317
+ MultiPoint
5320
5318
 
5321
- Polyline
5319
+ MultiLineString
5322
5320
 
5323
5321
  H3Index
5324
5322
 
@@ -5340,8 +5338,8 @@ exports.AttributeType = void 0;
5340
5338
  AttributeType["Point"] = "Point";
5341
5339
  AttributeType["LineString"] = "LineString";
5342
5340
  AttributeType["Polygon"] = "Polygon";
5343
- AttributeType["Multipoint"] = "Multipoint";
5344
- AttributeType["Polyline"] = "Polyline";
5341
+ AttributeType["MultiPoint"] = "MultiPoint";
5342
+ AttributeType["MultiLineString"] = "MultiLineString";
5345
5343
  AttributeType["H3Index"] = "H3Index";
5346
5344
  AttributeType["Json"] = "Json";
5347
5345
  AttributeType["MultiPolygon"] = "MultiPolygon";
@@ -5626,39 +5624,60 @@ exports.ErrorType = void 0;
5626
5624
  /**
5627
5625
  *
5628
5626
 
5629
- unknown
5627
+ Unknown
5628
+
5629
+ Point
5630
+
5631
+ LineString
5632
+
5633
+ Polygon
5634
+
5635
+ MultiPoint
5636
+
5637
+ MultiLineString
5638
+
5639
+ MultiPolygon
5640
+
5641
+ GeometryCollection
5630
5642
 
5631
- point
5643
+ CircularString
5632
5644
 
5633
- polyline
5645
+ CompoundCurve
5634
5646
 
5635
- polygon
5647
+ CurvePolygon
5636
5648
 
5637
- envelope
5649
+ MultiCurve
5638
5650
 
5639
- multipoint
5651
+ MultiSurface
5640
5652
 
5641
- line
5653
+ Curve
5642
5654
 
5643
- ring
5655
+ Surface
5644
5656
 
5645
- multipolygon
5657
+ PolyhedralSurface
5646
5658
 
5647
- collection
5659
+ TIN
5648
5660
  */
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 = {}));
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 = {}));
5662
5681
  /**
5663
5682
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
5664
5683