@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/__generated__/EqlService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +4 -4
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +267 -441
- package/dist/api.esm.js +32 -51
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +31 -50
- package/dist/index.js.map +1 -1
- package/dist/services/Layers.d.ts +2 -2
- package/package.json +2 -2
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).
|
|
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
|
|
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
|
-
|
|
5319
|
+
Multipoint
|
|
5318
5320
|
|
|
5319
|
-
|
|
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["
|
|
5342
|
-
AttributeType["
|
|
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
|
-
|
|
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
|
-
|
|
5631
|
+
point
|
|
5644
5632
|
|
|
5645
|
-
|
|
5633
|
+
polyline
|
|
5646
5634
|
|
|
5647
|
-
|
|
5635
|
+
polygon
|
|
5648
5636
|
|
|
5649
|
-
|
|
5637
|
+
envelope
|
|
5650
5638
|
|
|
5651
|
-
|
|
5639
|
+
multipoint
|
|
5652
5640
|
|
|
5653
|
-
|
|
5641
|
+
line
|
|
5654
5642
|
|
|
5655
|
-
|
|
5643
|
+
ring
|
|
5656
5644
|
|
|
5657
|
-
|
|
5645
|
+
multipolygon
|
|
5658
5646
|
|
|
5659
|
-
|
|
5647
|
+
collection
|
|
5660
5648
|
*/
|
|
5661
|
-
exports.
|
|
5662
|
-
(function (
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
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
|
|