@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/LICENSE +21 -21
- package/README.md +12 -12
- 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 +441 -267
- package/dist/api.esm.js +51 -32
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +50 -31
- 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).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
|
-
|
|
5317
|
+
MultiPoint
|
|
5320
5318
|
|
|
5321
|
-
|
|
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["
|
|
5344
|
-
AttributeType["
|
|
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
|
-
|
|
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
|
-
|
|
5643
|
+
CircularString
|
|
5632
5644
|
|
|
5633
|
-
|
|
5645
|
+
CompoundCurve
|
|
5634
5646
|
|
|
5635
|
-
|
|
5647
|
+
CurvePolygon
|
|
5636
5648
|
|
|
5637
|
-
|
|
5649
|
+
MultiCurve
|
|
5638
5650
|
|
|
5639
|
-
|
|
5651
|
+
MultiSurface
|
|
5640
5652
|
|
|
5641
|
-
|
|
5653
|
+
Curve
|
|
5642
5654
|
|
|
5643
|
-
|
|
5655
|
+
Surface
|
|
5644
5656
|
|
|
5645
|
-
|
|
5657
|
+
PolyhedralSurface
|
|
5646
5658
|
|
|
5647
|
-
|
|
5659
|
+
TIN
|
|
5648
5660
|
*/
|
|
5649
|
-
exports.
|
|
5650
|
-
(function (
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
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
|
|