@evergis/api 4.1.48 → 4.1.50-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/__generated__/EqlService.d.ts +2 -2
- package/dist/__generated__/ExternalProvidersService.d.ts +2 -2
- package/dist/__generated__/FeedbackService.d.ts +3 -3
- package/dist/__generated__/LayersService.d.ts +13 -1
- package/dist/__generated__/ProjectsService.d.ts +1 -49
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +317 -344
- package/dist/api.esm.js +54 -92
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +53 -91
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -972,7 +972,7 @@ class ExternalProvidersService extends Service {
|
|
|
972
972
|
* @response `200` OK
|
|
973
973
|
*/
|
|
974
974
|
loginCallback() {
|
|
975
|
-
return this.http.get(`/account/external/login/callback`).
|
|
975
|
+
return this.http.get(`/account/external/login/callback`).json();
|
|
976
976
|
}
|
|
977
977
|
/**
|
|
978
978
|
* No description
|
|
@@ -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
|
|
@@ -1535,8 +1535,8 @@ class FeedbackService extends Service {
|
|
|
1535
1535
|
* @secure
|
|
1536
1536
|
* @response `200` OK
|
|
1537
1537
|
*/
|
|
1538
|
-
increaseResourcesLimit(
|
|
1539
|
-
return this.http.post(`/feedback/limits`,
|
|
1538
|
+
increaseResourcesLimit(data) {
|
|
1539
|
+
return this.http.post(`/feedback/limits`, data).json();
|
|
1540
1540
|
}
|
|
1541
1541
|
/**
|
|
1542
1542
|
* No description
|
|
@@ -1550,7 +1550,7 @@ class FeedbackService extends Service {
|
|
|
1550
1550
|
* @response `200` OK
|
|
1551
1551
|
*/
|
|
1552
1552
|
requestFullAccess() {
|
|
1553
|
-
return this.http.post(`/feedback/fullAccess`, null).
|
|
1553
|
+
return this.http.post(`/feedback/fullAccess`, null).json();
|
|
1554
1554
|
}
|
|
1555
1555
|
/**
|
|
1556
1556
|
* No description
|
|
@@ -3296,6 +3296,20 @@ class LayersService extends Service {
|
|
|
3296
3296
|
updateQueryLayerService(name, data) {
|
|
3297
3297
|
return this.http.patch(`/layers/${name}`, data, { type: "QueryLayerService" }).json();
|
|
3298
3298
|
}
|
|
3299
|
+
/**
|
|
3300
|
+
* No description
|
|
3301
|
+
*
|
|
3302
|
+
* @tags Layers
|
|
3303
|
+
* @name PatchQueryLayerService
|
|
3304
|
+
* @operationId LayersController_PatchQueryLayerService
|
|
3305
|
+
* @summary Patch EQL-based Query Layer Service.
|
|
3306
|
+
* @request PATCH:/layers/{name}/v2
|
|
3307
|
+
* @secure
|
|
3308
|
+
* @response `200` OK
|
|
3309
|
+
*/
|
|
3310
|
+
patchQueryLayerService(name, data) {
|
|
3311
|
+
return this.http.patch(`/layers/${name}/v2`, data).json();
|
|
3312
|
+
}
|
|
3299
3313
|
/**
|
|
3300
3314
|
* No description
|
|
3301
3315
|
*
|
|
@@ -4103,62 +4117,6 @@ class ProjectsService extends Service {
|
|
|
4103
4117
|
getProjectLayersExtendedInfo(name) {
|
|
4104
4118
|
return this.http.get(`/projects/${name}/extended-info`).json();
|
|
4105
4119
|
}
|
|
4106
|
-
/**
|
|
4107
|
-
* No description
|
|
4108
|
-
*
|
|
4109
|
-
* @tags Projects
|
|
4110
|
-
* @name PatchProjectConfiguration
|
|
4111
|
-
* @operationId ProjectsController_PatchProjectConfiguration
|
|
4112
|
-
* @summary Applies partial updates using JSON Patch.
|
|
4113
|
-
* @request PATCH:/projects/{name}/devConfiguration
|
|
4114
|
-
* @secure
|
|
4115
|
-
* @response `200` OK
|
|
4116
|
-
*/
|
|
4117
|
-
patchProjectConfiguration(name, data) {
|
|
4118
|
-
return this.http.patch(`/projects/${name}/devConfiguration`, data).json();
|
|
4119
|
-
}
|
|
4120
|
-
/**
|
|
4121
|
-
* No description
|
|
4122
|
-
*
|
|
4123
|
-
* @tags Projects
|
|
4124
|
-
* @name PutProjectConfiguration
|
|
4125
|
-
* @operationId ProjectsController_PutProjectConfiguration
|
|
4126
|
-
* @summary Creates or updates configuration (full replacement).
|
|
4127
|
-
* @request PUT:/projects/{name}/devConfiguration
|
|
4128
|
-
* @secure
|
|
4129
|
-
* @response `200` OK
|
|
4130
|
-
*/
|
|
4131
|
-
putProjectConfiguration(name, data) {
|
|
4132
|
-
return this.http.put(`/projects/${name}/devConfiguration`, data).json();
|
|
4133
|
-
}
|
|
4134
|
-
/**
|
|
4135
|
-
* No description
|
|
4136
|
-
*
|
|
4137
|
-
* @tags Projects
|
|
4138
|
-
* @name GetProjectConfiguration
|
|
4139
|
-
* @operationId ProjectsController_GetProjectConfiguration
|
|
4140
|
-
* @summary Gets configuration for a resource and type.
|
|
4141
|
-
* @request GET:/projects/{name}/devConfiguration
|
|
4142
|
-
* @secure
|
|
4143
|
-
* @response `200` OK
|
|
4144
|
-
*/
|
|
4145
|
-
getProjectConfiguration(name) {
|
|
4146
|
-
return this.http.get(`/projects/${name}/devConfiguration`).json();
|
|
4147
|
-
}
|
|
4148
|
-
/**
|
|
4149
|
-
* No description
|
|
4150
|
-
*
|
|
4151
|
-
* @tags Projects
|
|
4152
|
-
* @name DeleteProjectConfiguration
|
|
4153
|
-
* @operationId ProjectsController_DeleteProjectConfiguration
|
|
4154
|
-
* @summary Creates or updates configuration (full replacement).
|
|
4155
|
-
* @request DELETE:/projects/{name}/devConfiguration
|
|
4156
|
-
* @secure
|
|
4157
|
-
* @response `200` OK
|
|
4158
|
-
*/
|
|
4159
|
-
deleteProjectConfiguration(name) {
|
|
4160
|
-
return this.http.delete(`/projects/${name}/devConfiguration`, null).json();
|
|
4161
|
-
}
|
|
4162
4120
|
/**
|
|
4163
4121
|
* No description
|
|
4164
4122
|
*
|
|
@@ -4989,9 +4947,7 @@ class TablesService extends Service {
|
|
|
4989
4947
|
* @response `200` OK
|
|
4990
4948
|
*/
|
|
4991
4949
|
getTableData({ name, ...query }) {
|
|
4992
|
-
return this.http
|
|
4993
|
-
.get(`/tables/${name}/data`, query)
|
|
4994
|
-
.json();
|
|
4950
|
+
return this.http.get(`/tables/${name}/data`, query).json();
|
|
4995
4951
|
}
|
|
4996
4952
|
/**
|
|
4997
4953
|
* No description
|
|
@@ -5549,18 +5505,6 @@ var ConfigurationErrorEnum;
|
|
|
5549
5505
|
/**
|
|
5550
5506
|
*
|
|
5551
5507
|
|
|
5552
|
-
Default
|
|
5553
|
-
|
|
5554
|
-
DevConfiguration
|
|
5555
|
-
*/
|
|
5556
|
-
var ConfigurationType;
|
|
5557
|
-
(function (ConfigurationType) {
|
|
5558
|
-
ConfigurationType["Default"] = "Default";
|
|
5559
|
-
ConfigurationType["DevConfiguration"] = "DevConfiguration";
|
|
5560
|
-
})(ConfigurationType || (ConfigurationType = {}));
|
|
5561
|
-
/**
|
|
5562
|
-
*
|
|
5563
|
-
|
|
5564
5508
|
Skip
|
|
5565
5509
|
|
|
5566
5510
|
Overwrite
|
|
@@ -5678,6 +5622,39 @@ var ErrorType;
|
|
|
5678
5622
|
/**
|
|
5679
5623
|
*
|
|
5680
5624
|
|
|
5625
|
+
Point
|
|
5626
|
+
|
|
5627
|
+
MultiPoint
|
|
5628
|
+
|
|
5629
|
+
LineString
|
|
5630
|
+
|
|
5631
|
+
MultiLineString
|
|
5632
|
+
|
|
5633
|
+
Polygon
|
|
5634
|
+
|
|
5635
|
+
MultiPolygon
|
|
5636
|
+
|
|
5637
|
+
GeometryCollection
|
|
5638
|
+
|
|
5639
|
+
Feature
|
|
5640
|
+
|
|
5641
|
+
FeatureCollection
|
|
5642
|
+
*/
|
|
5643
|
+
var GeoJsonObjectType;
|
|
5644
|
+
(function (GeoJsonObjectType) {
|
|
5645
|
+
GeoJsonObjectType["Point"] = "Point";
|
|
5646
|
+
GeoJsonObjectType["MultiPoint"] = "MultiPoint";
|
|
5647
|
+
GeoJsonObjectType["LineString"] = "LineString";
|
|
5648
|
+
GeoJsonObjectType["MultiLineString"] = "MultiLineString";
|
|
5649
|
+
GeoJsonObjectType["Polygon"] = "Polygon";
|
|
5650
|
+
GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
|
|
5651
|
+
GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
|
|
5652
|
+
GeoJsonObjectType["Feature"] = "Feature";
|
|
5653
|
+
GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
|
|
5654
|
+
})(GeoJsonObjectType || (GeoJsonObjectType = {}));
|
|
5655
|
+
/**
|
|
5656
|
+
*
|
|
5657
|
+
|
|
5681
5658
|
unknown
|
|
5682
5659
|
|
|
5683
5660
|
point
|
|
@@ -5781,21 +5758,6 @@ var PolicyType;
|
|
|
5781
5758
|
PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
|
|
5782
5759
|
})(PolicyType || (PolicyType = {}));
|
|
5783
5760
|
/**
|
|
5784
|
-
* Stream quality.
|
|
5785
|
-
|
|
5786
|
-
Low
|
|
5787
|
-
|
|
5788
|
-
Medium
|
|
5789
|
-
|
|
5790
|
-
High
|
|
5791
|
-
*/
|
|
5792
|
-
var Quality;
|
|
5793
|
-
(function (Quality) {
|
|
5794
|
-
Quality["Low"] = "Low";
|
|
5795
|
-
Quality["Medium"] = "Medium";
|
|
5796
|
-
Quality["High"] = "High";
|
|
5797
|
-
})(Quality || (Quality = {}));
|
|
5798
|
-
/**
|
|
5799
5761
|
*
|
|
5800
5762
|
|
|
5801
5763
|
Init
|
|
@@ -6063,5 +6025,5 @@ var WorkerSettingsFieldType;
|
|
|
6063
6025
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
6064
6026
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
6065
6027
|
|
|
6066
|
-
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum,
|
|
6028
|
+
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, 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 };
|
|
6067
6029
|
//# sourceMappingURL=api.esm.js.map
|