@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/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).
|
|
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
|
|
@@ -5315,9 +5313,9 @@ LineString
|
|
|
5315
5313
|
|
|
5316
5314
|
Polygon
|
|
5317
5315
|
|
|
5318
|
-
|
|
5316
|
+
MultiPoint
|
|
5319
5317
|
|
|
5320
|
-
|
|
5318
|
+
MultiLineString
|
|
5321
5319
|
|
|
5322
5320
|
H3Index
|
|
5323
5321
|
|
|
@@ -5339,8 +5337,8 @@ var AttributeType;
|
|
|
5339
5337
|
AttributeType["Point"] = "Point";
|
|
5340
5338
|
AttributeType["LineString"] = "LineString";
|
|
5341
5339
|
AttributeType["Polygon"] = "Polygon";
|
|
5342
|
-
AttributeType["
|
|
5343
|
-
AttributeType["
|
|
5340
|
+
AttributeType["MultiPoint"] = "MultiPoint";
|
|
5341
|
+
AttributeType["MultiLineString"] = "MultiLineString";
|
|
5344
5342
|
AttributeType["H3Index"] = "H3Index";
|
|
5345
5343
|
AttributeType["Json"] = "Json";
|
|
5346
5344
|
AttributeType["MultiPolygon"] = "MultiPolygon";
|
|
@@ -5625,39 +5623,60 @@ var ErrorType;
|
|
|
5625
5623
|
/**
|
|
5626
5624
|
*
|
|
5627
5625
|
|
|
5628
|
-
|
|
5626
|
+
Unknown
|
|
5627
|
+
|
|
5628
|
+
Point
|
|
5629
|
+
|
|
5630
|
+
LineString
|
|
5631
|
+
|
|
5632
|
+
Polygon
|
|
5633
|
+
|
|
5634
|
+
MultiPoint
|
|
5635
|
+
|
|
5636
|
+
MultiLineString
|
|
5637
|
+
|
|
5638
|
+
MultiPolygon
|
|
5639
|
+
|
|
5640
|
+
GeometryCollection
|
|
5629
5641
|
|
|
5630
|
-
|
|
5642
|
+
CircularString
|
|
5631
5643
|
|
|
5632
|
-
|
|
5644
|
+
CompoundCurve
|
|
5633
5645
|
|
|
5634
|
-
|
|
5646
|
+
CurvePolygon
|
|
5635
5647
|
|
|
5636
|
-
|
|
5648
|
+
MultiCurve
|
|
5637
5649
|
|
|
5638
|
-
|
|
5650
|
+
MultiSurface
|
|
5639
5651
|
|
|
5640
|
-
|
|
5652
|
+
Curve
|
|
5641
5653
|
|
|
5642
|
-
|
|
5654
|
+
Surface
|
|
5643
5655
|
|
|
5644
|
-
|
|
5656
|
+
PolyhedralSurface
|
|
5645
5657
|
|
|
5646
|
-
|
|
5658
|
+
TIN
|
|
5647
5659
|
*/
|
|
5648
|
-
var
|
|
5649
|
-
(function (
|
|
5650
|
-
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5660
|
+
var OgcGeometryType;
|
|
5661
|
+
(function (OgcGeometryType) {
|
|
5662
|
+
OgcGeometryType["Unknown"] = "Unknown";
|
|
5663
|
+
OgcGeometryType["Point"] = "Point";
|
|
5664
|
+
OgcGeometryType["LineString"] = "LineString";
|
|
5665
|
+
OgcGeometryType["Polygon"] = "Polygon";
|
|
5666
|
+
OgcGeometryType["MultiPoint"] = "MultiPoint";
|
|
5667
|
+
OgcGeometryType["MultiLineString"] = "MultiLineString";
|
|
5668
|
+
OgcGeometryType["MultiPolygon"] = "MultiPolygon";
|
|
5669
|
+
OgcGeometryType["GeometryCollection"] = "GeometryCollection";
|
|
5670
|
+
OgcGeometryType["CircularString"] = "CircularString";
|
|
5671
|
+
OgcGeometryType["CompoundCurve"] = "CompoundCurve";
|
|
5672
|
+
OgcGeometryType["CurvePolygon"] = "CurvePolygon";
|
|
5673
|
+
OgcGeometryType["MultiCurve"] = "MultiCurve";
|
|
5674
|
+
OgcGeometryType["MultiSurface"] = "MultiSurface";
|
|
5675
|
+
OgcGeometryType["Curve"] = "Curve";
|
|
5676
|
+
OgcGeometryType["Surface"] = "Surface";
|
|
5677
|
+
OgcGeometryType["PolyhedralSurface"] = "PolyhedralSurface";
|
|
5678
|
+
OgcGeometryType["TIN"] = "TIN";
|
|
5679
|
+
})(OgcGeometryType || (OgcGeometryType = {}));
|
|
5661
5680
|
/**
|
|
5662
5681
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
5663
5682
|
|
|
@@ -5995,5 +6014,5 @@ var WorkerSettingsFieldType;
|
|
|
5995
6014
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
5996
6015
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
5997
6016
|
|
|
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,
|
|
6017
|
+
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, 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
6018
|
//# sourceMappingURL=api.esm.js.map
|