@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/index.js CHANGED
@@ -973,7 +973,7 @@ class ExternalProvidersService extends Service {
973
973
  * @response `200` OK
974
974
  */
975
975
  loginCallback() {
976
- return this.http.get(`/account/external/login/callback`).then(() => { });
976
+ return this.http.get(`/account/external/login/callback`).json();
977
977
  }
978
978
  /**
979
979
  * No description
@@ -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).text();
1420
+ return this.http.get(`/eql/getParam`, query).then(() => { });
1421
1421
  }
1422
1422
  /**
1423
1423
  * No description
@@ -1536,8 +1536,8 @@ class FeedbackService extends Service {
1536
1536
  * @secure
1537
1537
  * @response `200` OK
1538
1538
  */
1539
- increaseResourcesLimit(query) {
1540
- return this.http.post(`/feedback/limits`, null, query).json();
1539
+ increaseResourcesLimit(data) {
1540
+ return this.http.post(`/feedback/limits`, data).json();
1541
1541
  }
1542
1542
  /**
1543
1543
  * No description
@@ -1551,7 +1551,7 @@ class FeedbackService extends Service {
1551
1551
  * @response `200` OK
1552
1552
  */
1553
1553
  requestFullAccess() {
1554
- return this.http.post(`/feedback/fullAccess`, null).then(() => { });
1554
+ return this.http.post(`/feedback/fullAccess`, null).json();
1555
1555
  }
1556
1556
  /**
1557
1557
  * No description
@@ -3297,6 +3297,20 @@ class LayersService extends Service {
3297
3297
  updateQueryLayerService(name, data) {
3298
3298
  return this.http.patch(`/layers/${name}`, data, { type: "QueryLayerService" }).json();
3299
3299
  }
3300
+ /**
3301
+ * No description
3302
+ *
3303
+ * @tags Layers
3304
+ * @name PatchQueryLayerService
3305
+ * @operationId LayersController_PatchQueryLayerService
3306
+ * @summary Patch EQL-based Query Layer Service.
3307
+ * @request PATCH:/layers/{name}/v2
3308
+ * @secure
3309
+ * @response `200` OK
3310
+ */
3311
+ patchQueryLayerService(name, data) {
3312
+ return this.http.patch(`/layers/${name}/v2`, data).json();
3313
+ }
3300
3314
  /**
3301
3315
  * No description
3302
3316
  *
@@ -4104,62 +4118,6 @@ class ProjectsService extends Service {
4104
4118
  getProjectLayersExtendedInfo(name) {
4105
4119
  return this.http.get(`/projects/${name}/extended-info`).json();
4106
4120
  }
4107
- /**
4108
- * No description
4109
- *
4110
- * @tags Projects
4111
- * @name PatchProjectConfiguration
4112
- * @operationId ProjectsController_PatchProjectConfiguration
4113
- * @summary Applies partial updates using JSON Patch.
4114
- * @request PATCH:/projects/{name}/devConfiguration
4115
- * @secure
4116
- * @response `200` OK
4117
- */
4118
- patchProjectConfiguration(name, data) {
4119
- return this.http.patch(`/projects/${name}/devConfiguration`, data).json();
4120
- }
4121
- /**
4122
- * No description
4123
- *
4124
- * @tags Projects
4125
- * @name PutProjectConfiguration
4126
- * @operationId ProjectsController_PutProjectConfiguration
4127
- * @summary Creates or updates configuration (full replacement).
4128
- * @request PUT:/projects/{name}/devConfiguration
4129
- * @secure
4130
- * @response `200` OK
4131
- */
4132
- putProjectConfiguration(name, data) {
4133
- return this.http.put(`/projects/${name}/devConfiguration`, data).json();
4134
- }
4135
- /**
4136
- * No description
4137
- *
4138
- * @tags Projects
4139
- * @name GetProjectConfiguration
4140
- * @operationId ProjectsController_GetProjectConfiguration
4141
- * @summary Gets configuration for a resource and type.
4142
- * @request GET:/projects/{name}/devConfiguration
4143
- * @secure
4144
- * @response `200` OK
4145
- */
4146
- getProjectConfiguration(name) {
4147
- return this.http.get(`/projects/${name}/devConfiguration`).json();
4148
- }
4149
- /**
4150
- * No description
4151
- *
4152
- * @tags Projects
4153
- * @name DeleteProjectConfiguration
4154
- * @operationId ProjectsController_DeleteProjectConfiguration
4155
- * @summary Creates or updates configuration (full replacement).
4156
- * @request DELETE:/projects/{name}/devConfiguration
4157
- * @secure
4158
- * @response `200` OK
4159
- */
4160
- deleteProjectConfiguration(name) {
4161
- return this.http.delete(`/projects/${name}/devConfiguration`, null).json();
4162
- }
4163
4121
  /**
4164
4122
  * No description
4165
4123
  *
@@ -4990,9 +4948,7 @@ class TablesService extends Service {
4990
4948
  * @response `200` OK
4991
4949
  */
4992
4950
  getTableData({ name, ...query }) {
4993
- return this.http
4994
- .get(`/tables/${name}/data`, query)
4995
- .json();
4951
+ return this.http.get(`/tables/${name}/data`, query).json();
4996
4952
  }
4997
4953
  /**
4998
4954
  * No description
@@ -5550,18 +5506,6 @@ exports.ConfigurationErrorEnum = void 0;
5550
5506
  /**
5551
5507
  *
5552
5508
 
5553
- Default
5554
-
5555
- DevConfiguration
5556
- */
5557
- exports.ConfigurationType = void 0;
5558
- (function (ConfigurationType) {
5559
- ConfigurationType["Default"] = "Default";
5560
- ConfigurationType["DevConfiguration"] = "DevConfiguration";
5561
- })(exports.ConfigurationType || (exports.ConfigurationType = {}));
5562
- /**
5563
- *
5564
-
5565
5509
  Skip
5566
5510
 
5567
5511
  Overwrite
@@ -5679,6 +5623,39 @@ exports.ErrorType = void 0;
5679
5623
  /**
5680
5624
  *
5681
5625
 
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
+ exports.GeoJsonObjectType = void 0;
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
+ })(exports.GeoJsonObjectType || (exports.GeoJsonObjectType = {}));
5656
+ /**
5657
+ *
5658
+
5682
5659
  unknown
5683
5660
 
5684
5661
  point
@@ -5782,21 +5759,6 @@ exports.PolicyType = void 0;
5782
5759
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
5783
5760
  })(exports.PolicyType || (exports.PolicyType = {}));
5784
5761
  /**
5785
- * Stream quality.
5786
-
5787
- Low
5788
-
5789
- Medium
5790
-
5791
- High
5792
- */
5793
- exports.Quality = void 0;
5794
- (function (Quality) {
5795
- Quality["Low"] = "Low";
5796
- Quality["Medium"] = "Medium";
5797
- Quality["High"] = "High";
5798
- })(exports.Quality || (exports.Quality = {}));
5799
- /**
5800
5762
  *
5801
5763
 
5802
5764
  Init