@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/LICENSE +21 -21
- package/README.md +12 -12
- 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__/data-contracts.d.ts +175 -242
- package/dist/api.esm.js +19 -88
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +18 -87
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
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`).
|
|
976
|
+
return this.http.get(`/account/external/login/callback`).json();
|
|
977
977
|
}
|
|
978
978
|
/**
|
|
979
979
|
* No description
|
|
@@ -1536,8 +1536,8 @@ class FeedbackService extends Service {
|
|
|
1536
1536
|
* @secure
|
|
1537
1537
|
* @response `200` OK
|
|
1538
1538
|
*/
|
|
1539
|
-
increaseResourcesLimit(
|
|
1540
|
-
return this.http.post(`/feedback/limits`,
|
|
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).
|
|
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
|
*
|
|
@@ -5550,18 +5508,6 @@ exports.ConfigurationErrorEnum = void 0;
|
|
|
5550
5508
|
/**
|
|
5551
5509
|
*
|
|
5552
5510
|
|
|
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
5511
|
Skip
|
|
5566
5512
|
|
|
5567
5513
|
Overwrite
|
|
@@ -5782,21 +5728,6 @@ exports.PolicyType = void 0;
|
|
|
5782
5728
|
PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
|
|
5783
5729
|
})(exports.PolicyType || (exports.PolicyType = {}));
|
|
5784
5730
|
/**
|
|
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
5731
|
*
|
|
5801
5732
|
|
|
5802
5733
|
Init
|