@evergis/api 4.1.48 → 4.1.49

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
@@ -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`).then(() => { });
975
+ return this.http.get(`/account/external/login/callback`).json();
976
976
  }
977
977
  /**
978
978
  * No description
@@ -1535,8 +1535,8 @@ class FeedbackService extends Service {
1535
1535
  * @secure
1536
1536
  * @response `200` OK
1537
1537
  */
1538
- increaseResourcesLimit(query) {
1539
- return this.http.post(`/feedback/limits`, null, query).json();
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).then(() => { });
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
  *
@@ -5549,18 +5507,6 @@ var ConfigurationErrorEnum;
5549
5507
  /**
5550
5508
  *
5551
5509
 
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
5510
  Skip
5565
5511
 
5566
5512
  Overwrite
@@ -5781,21 +5727,6 @@ var PolicyType;
5781
5727
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
5782
5728
  })(PolicyType || (PolicyType = {}));
5783
5729
  /**
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
5730
  *
5800
5731
 
5801
5732
  Init
@@ -6063,5 +5994,5 @@ var WorkerSettingsFieldType;
6063
5994
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
6064
5995
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
6065
5996
 
6066
- export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConfigurationType, 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, Quality, 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 };
5997
+ 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 };
6067
5998
  //# sourceMappingURL=api.esm.js.map