@evergis/api 4.1.53 → 4.1.55-alpha.0

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/api.esm.js CHANGED
@@ -1416,7 +1416,7 @@ class EqlService extends Service {
1416
1416
  * @response `200` OK
1417
1417
  */
1418
1418
  getLayerParameters(query) {
1419
- return this.http.get(`/eql/getParam`, query).text();
1419
+ return this.http.get(`/eql/getParam`, query).then(() => { });
1420
1420
  }
1421
1421
  /**
1422
1422
  * No description
@@ -4948,9 +4948,7 @@ class TablesService extends Service {
4948
4948
  * @response `200` OK
4949
4949
  */
4950
4950
  getTableData({ name, ...query }) {
4951
- return this.http
4952
- .get(`/tables/${name}/data`, query)
4953
- .json();
4951
+ return this.http.get(`/tables/${name}/data`, query).json();
4954
4952
  }
4955
4953
  /**
4956
4954
  * No description
@@ -5625,39 +5623,93 @@ var ErrorType;
5625
5623
  /**
5626
5624
  *
5627
5625
 
5628
- unknown
5626
+ Point
5627
+
5628
+ MultiPoint
5629
+
5630
+ LineString
5631
+
5632
+ MultiLineString
5633
+
5634
+ Polygon
5635
+
5636
+ MultiPolygon
5637
+
5638
+ GeometryCollection
5639
+
5640
+ Feature
5641
+
5642
+ FeatureCollection
5643
+ */
5644
+ var GeoJsonObjectType;
5645
+ (function (GeoJsonObjectType) {
5646
+ GeoJsonObjectType["Point"] = "Point";
5647
+ GeoJsonObjectType["MultiPoint"] = "MultiPoint";
5648
+ GeoJsonObjectType["LineString"] = "LineString";
5649
+ GeoJsonObjectType["MultiLineString"] = "MultiLineString";
5650
+ GeoJsonObjectType["Polygon"] = "Polygon";
5651
+ GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
5652
+ GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
5653
+ GeoJsonObjectType["Feature"] = "Feature";
5654
+ GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
5655
+ })(GeoJsonObjectType || (GeoJsonObjectType = {}));
5656
+ /**
5657
+ *
5658
+
5659
+ Unknown
5660
+
5661
+ Point
5662
+
5663
+ LineString
5664
+
5665
+ Polygon
5666
+
5667
+ MultiPoint
5668
+
5669
+ MultiLineString
5670
+
5671
+ MultiPolygon
5672
+
5673
+ GeometryCollection
5629
5674
 
5630
- point
5675
+ CircularString
5631
5676
 
5632
- polyline
5677
+ CompoundCurve
5633
5678
 
5634
- polygon
5679
+ CurvePolygon
5635
5680
 
5636
- envelope
5681
+ MultiCurve
5637
5682
 
5638
- multipoint
5683
+ MultiSurface
5639
5684
 
5640
- line
5685
+ Curve
5641
5686
 
5642
- ring
5687
+ Surface
5643
5688
 
5644
- multipolygon
5689
+ PolyhedralSurface
5645
5690
 
5646
- collection
5691
+ TIN
5647
5692
  */
5648
- var GeometryType;
5649
- (function (GeometryType) {
5650
- GeometryType["Unknown"] = "unknown";
5651
- GeometryType["Point"] = "point";
5652
- GeometryType["Polyline"] = "polyline";
5653
- GeometryType["Polygon"] = "polygon";
5654
- GeometryType["Envelope"] = "envelope";
5655
- GeometryType["Multipoint"] = "multipoint";
5656
- GeometryType["LineString"] = "line";
5657
- GeometryType["LinearRing"] = "ring";
5658
- GeometryType["MultiPolygon"] = "multipolygon";
5659
- GeometryType["GeometryCollection"] = "collection";
5660
- })(GeometryType || (GeometryType = {}));
5693
+ var OgcGeometryType;
5694
+ (function (OgcGeometryType) {
5695
+ OgcGeometryType["Unknown"] = "Unknown";
5696
+ OgcGeometryType["Point"] = "Point";
5697
+ OgcGeometryType["LineString"] = "LineString";
5698
+ OgcGeometryType["Polygon"] = "Polygon";
5699
+ OgcGeometryType["MultiPoint"] = "MultiPoint";
5700
+ OgcGeometryType["MultiLineString"] = "MultiLineString";
5701
+ OgcGeometryType["MultiPolygon"] = "MultiPolygon";
5702
+ OgcGeometryType["GeometryCollection"] = "GeometryCollection";
5703
+ OgcGeometryType["CircularString"] = "CircularString";
5704
+ OgcGeometryType["CompoundCurve"] = "CompoundCurve";
5705
+ OgcGeometryType["CurvePolygon"] = "CurvePolygon";
5706
+ OgcGeometryType["MultiCurve"] = "MultiCurve";
5707
+ OgcGeometryType["MultiSurface"] = "MultiSurface";
5708
+ OgcGeometryType["Curve"] = "Curve";
5709
+ OgcGeometryType["Surface"] = "Surface";
5710
+ OgcGeometryType["PolyhedralSurface"] = "PolyhedralSurface";
5711
+ OgcGeometryType["TIN"] = "TIN";
5712
+ })(OgcGeometryType || (OgcGeometryType = {}));
5661
5713
  /**
5662
5714
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
5663
5715
 
@@ -5995,5 +6047,5 @@ var WorkerSettingsFieldType;
5995
6047
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
5996
6048
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
5997
6049
 
5998
- export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, GeometryType, HttpClient, Import, Layers, Names, Notification, NotificationEvent, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
6050
+ export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, GeoJsonObjectType, Geocode, HttpClient, Import, Layers, Names, Notification, NotificationEvent, OgcGeometryType, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
5999
6051
  //# sourceMappingURL=api.esm.js.map