@evergis/api 4.1.55-alpha.0 → 4.1.56-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__/AccountService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +26 -170
- package/dist/__generated__/data-contracts.d.ts +173 -127
- package/dist/api.esm.js +36 -247
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +35 -246
- package/dist/index.js.map +1 -1
- package/dist/services/Layers.d.ts +5 -10
- package/package.json +2 -2
|
@@ -113,7 +113,7 @@ export declare class AccountService extends Service {
|
|
|
113
113
|
* @secure
|
|
114
114
|
* @response `200` OK
|
|
115
115
|
*/
|
|
116
|
-
registerUser(data: RegisterUserDc): Promise<
|
|
116
|
+
registerUser(data: RegisterUserDc): Promise<void>;
|
|
117
117
|
/**
|
|
118
118
|
* @description Only for users with Everpoint.Sdk.Security.Abstractions.ISecurityManager.SuperuserRole role.
|
|
119
119
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Service } from './Service';
|
|
2
|
-
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerServicePayload, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc,
|
|
2
|
+
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DetailedTableInfoDc, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, ExtendedProjectInfoDc, ExtendedProjectInfoDcV2, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerService1Payload, PatchQueryLayerServicePayload, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProjectInfoDc, ProjectInfoDcV2, ProxyServiceConfigurationDc, ProxyServiceInfoDc, PublishLayerInfoDc, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, RouteServiceConfigurationDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateTableDc, ValidateExpressionParams } from './data-contracts';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
5
|
* @version 1.5.1.0
|
|
@@ -53,199 +53,67 @@ export declare class LayersService extends Service {
|
|
|
53
53
|
* @secure
|
|
54
54
|
* @response `200` OK
|
|
55
55
|
*/
|
|
56
|
-
getLayerInfo(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc>;
|
|
56
|
+
getLayerInfo(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ProjectInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc>;
|
|
57
57
|
/**
|
|
58
58
|
* No description
|
|
59
59
|
*
|
|
60
60
|
* @tags Layers
|
|
61
|
-
* @name
|
|
62
|
-
* @operationId
|
|
63
|
-
* @summary
|
|
64
|
-
* @request
|
|
65
|
-
* @secure
|
|
66
|
-
* @response `200` OK
|
|
67
|
-
*/
|
|
68
|
-
getLayersInfo(query: GetLayersInfoParams): Promise<(ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc)[]>;
|
|
69
|
-
/**
|
|
70
|
-
* No description
|
|
71
|
-
*
|
|
72
|
-
* @tags Layers
|
|
73
|
-
* @name PublishMapboxService
|
|
74
|
-
* @operationId LayersController_PublishMapboxService
|
|
75
|
-
* @summary Creates new mapbox service.
|
|
76
|
-
* @request POST:/layers#type=Mapbox
|
|
77
|
-
* @secure
|
|
78
|
-
* @response `default` Error
|
|
79
|
-
*/
|
|
80
|
-
publishMapboxService(data: PbfServiceConfigurationDc): Promise<PbfServiceInfoDc>;
|
|
81
|
-
/**
|
|
82
|
-
* No description
|
|
83
|
-
*
|
|
84
|
-
* @tags Layers
|
|
85
|
-
* @name PublishProxyService
|
|
86
|
-
* @operationId LayersController_PublishProxyService
|
|
87
|
-
* @summary Creates new Proxy Service.
|
|
88
|
-
* @request POST:/layers#type=ProxyService
|
|
89
|
-
* @secure
|
|
90
|
-
* @response `default` Error
|
|
91
|
-
*/
|
|
92
|
-
publishProxyService(data: PublishProxyServicePayload): Promise<ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc>;
|
|
93
|
-
/**
|
|
94
|
-
* No description
|
|
95
|
-
*
|
|
96
|
-
* @tags Layers
|
|
97
|
-
* @name PublishRouteService
|
|
98
|
-
* @operationId LayersController_PublishRouteService
|
|
99
|
-
* @summary Creates new Route Service.
|
|
100
|
-
* @request POST:/layers#type=RouteService
|
|
101
|
-
* @secure
|
|
102
|
-
* @response `200` OK
|
|
103
|
-
*/
|
|
104
|
-
publishRouteService(data: RouteServiceConfigurationDc): Promise<void>;
|
|
105
|
-
/**
|
|
106
|
-
* No description
|
|
107
|
-
*
|
|
108
|
-
* @tags Layers
|
|
109
|
-
* @name PublishLinearService
|
|
110
|
-
* @operationId LayersController_PublishLinearService
|
|
111
|
-
* @summary Creates new Linear Service.
|
|
112
|
-
* @request POST:/layers#type=LinearService
|
|
113
|
-
* @secure
|
|
114
|
-
* @response `200` OK
|
|
115
|
-
*/
|
|
116
|
-
publishLinearService(data: LinearServiceConfigurationDc): Promise<void>;
|
|
117
|
-
/**
|
|
118
|
-
* No description
|
|
119
|
-
*
|
|
120
|
-
* @tags Layers
|
|
121
|
-
* @name PublishRemoteTileService
|
|
122
|
-
* @operationId LayersController_PublishRemoteTileService
|
|
123
|
-
* @summary Creates new Remote Tile Service.
|
|
124
|
-
* @request POST:/layers#type=RemoteTileService
|
|
125
|
-
* @secure
|
|
126
|
-
* @response `default` Error
|
|
127
|
-
*/
|
|
128
|
-
publishRemoteTileService(data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfoDc>;
|
|
129
|
-
/**
|
|
130
|
-
* No description
|
|
131
|
-
*
|
|
132
|
-
* @tags Layers
|
|
133
|
-
* @name PublishQueryLayerService
|
|
134
|
-
* @operationId LayersController_PublishQueryLayerService
|
|
135
|
-
* @summary Creates new EQL-based Query Layer Service.
|
|
136
|
-
* @request POST:/layers#type=QueryLayerService
|
|
137
|
-
* @secure
|
|
138
|
-
* @response `default` Error
|
|
139
|
-
*/
|
|
140
|
-
publishQueryLayerService(data: QueryLayerServiceConfigurationDc): Promise<QueryLayerServiceInfoDc>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags Layers
|
|
145
|
-
* @name PublishPostgresTileCatalogService
|
|
146
|
-
* @operationId LayersController_PublishPostgresTileCatalogService
|
|
147
|
-
* @summary Creates new Postgres Tile Catalog Service.
|
|
148
|
-
* @request POST:/layers#type=PostgresTileLayerService
|
|
149
|
-
* @secure
|
|
150
|
-
* @response `default` Error
|
|
151
|
-
*/
|
|
152
|
-
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<TileCatalogServiceInfoDc>;
|
|
153
|
-
/**
|
|
154
|
-
* No description
|
|
155
|
-
*
|
|
156
|
-
* @tags Layers
|
|
157
|
-
* @name PublishPythonService
|
|
158
|
-
* @operationId LayersController_PublishPythonService
|
|
159
|
-
* @summary Creates new python service.
|
|
160
|
-
* @request POST:/layers#type=Python
|
|
161
|
-
* @secure
|
|
162
|
-
* @response `default` Error
|
|
163
|
-
*/
|
|
164
|
-
publishPythonService(data: PythonServiceConfigurationDc): Promise<PythonServiceInfoDc>;
|
|
165
|
-
/**
|
|
166
|
-
* No description
|
|
167
|
-
*
|
|
168
|
-
* @tags Layers
|
|
169
|
-
* @name UpdateMapboxService
|
|
170
|
-
* @operationId LayersController_UpdateMapboxService
|
|
171
|
-
* @summary Update mapbox service.
|
|
172
|
-
* @request PATCH:/layers/{name}#type=Mapbox
|
|
173
|
-
* @secure
|
|
174
|
-
* @response `200` OK
|
|
175
|
-
*/
|
|
176
|
-
updateMapboxService(name: string, data: PbfServiceConfigurationDc): Promise<PbfServiceInfoDc>;
|
|
177
|
-
/**
|
|
178
|
-
* No description
|
|
179
|
-
*
|
|
180
|
-
* @tags Layers
|
|
181
|
-
* @name UpdatePythonService
|
|
182
|
-
* @operationId LayersController_UpdatePythonService
|
|
183
|
-
* @summary Update python service.
|
|
184
|
-
* @request PATCH:/layers/{name}#type=Python
|
|
185
|
-
* @secure
|
|
186
|
-
* @response `200` OK
|
|
187
|
-
*/
|
|
188
|
-
updatePythonService(name: string, data: PythonServiceConfigurationDc): Promise<PythonServiceInfoDc>;
|
|
189
|
-
/**
|
|
190
|
-
* No description
|
|
191
|
-
*
|
|
192
|
-
* @tags Layers
|
|
193
|
-
* @name UpdateProxyService
|
|
194
|
-
* @operationId LayersController_UpdateProxyService
|
|
195
|
-
* @summary Update Proxy Service.
|
|
196
|
-
* @request PATCH:/layers/{name}#type=ProxyService
|
|
61
|
+
* @name PatchQueryLayerService
|
|
62
|
+
* @operationId LayersController_PatchQueryLayerService
|
|
63
|
+
* @summary Patch EQL-based Query Layer Service.
|
|
64
|
+
* @request PATCH:/layers/{name}
|
|
197
65
|
* @secure
|
|
198
66
|
* @response `200` OK
|
|
199
67
|
*/
|
|
200
|
-
|
|
68
|
+
patchQueryLayerService(name: string, data: PatchQueryLayerServicePayload): Promise<LinearServiceConfigurationDc | ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc>;
|
|
201
69
|
/**
|
|
202
70
|
* No description
|
|
203
71
|
*
|
|
204
72
|
* @tags Layers
|
|
205
|
-
* @name
|
|
206
|
-
* @operationId
|
|
207
|
-
* @summary
|
|
208
|
-
* @request
|
|
73
|
+
* @name GetLayersInfo
|
|
74
|
+
* @operationId LayersController_GetLayersInfoAsync
|
|
75
|
+
* @summary Returns the layers information.
|
|
76
|
+
* @request GET:/layers/batchInfo
|
|
209
77
|
* @secure
|
|
210
78
|
* @response `200` OK
|
|
211
79
|
*/
|
|
212
|
-
|
|
80
|
+
getLayersInfo(query: GetLayersInfoParams): Promise<(ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ProjectInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc)[]>;
|
|
213
81
|
/**
|
|
214
82
|
* No description
|
|
215
83
|
*
|
|
216
84
|
* @tags Layers
|
|
217
|
-
* @name
|
|
218
|
-
* @operationId
|
|
219
|
-
* @summary
|
|
220
|
-
* @request
|
|
85
|
+
* @name PublishService
|
|
86
|
+
* @operationId LayersController_PublishServiceAsync
|
|
87
|
+
* @summary Publishes a service using the specified layer configuration parameters.
|
|
88
|
+
* @request POST:/layers
|
|
221
89
|
* @secure
|
|
222
90
|
* @response `200` OK
|
|
223
91
|
*/
|
|
224
|
-
|
|
92
|
+
publishService(data: PublishLayerInfoDc): Promise<void>;
|
|
225
93
|
/**
|
|
226
94
|
* No description
|
|
227
95
|
*
|
|
228
96
|
* @tags Layers
|
|
229
|
-
* @name
|
|
230
|
-
* @operationId
|
|
231
|
-
* @summary
|
|
232
|
-
* @request
|
|
97
|
+
* @name DeleteResources
|
|
98
|
+
* @operationId LayersController_DeleteResources
|
|
99
|
+
* @summary Bulk delete resources.
|
|
100
|
+
* @request DELETE:/layers
|
|
233
101
|
* @secure
|
|
234
102
|
* @response `200` OK
|
|
235
103
|
*/
|
|
236
|
-
|
|
104
|
+
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
237
105
|
/**
|
|
238
106
|
* No description
|
|
239
107
|
*
|
|
240
108
|
* @tags Layers
|
|
241
|
-
* @name
|
|
242
|
-
* @operationId
|
|
109
|
+
* @name PatchQueryLayerService1
|
|
110
|
+
* @operationId LayersController_PatchQueryLayerService_1
|
|
243
111
|
* @summary Patch EQL-based Query Layer Service.
|
|
244
112
|
* @request PATCH:/layers/{name}/v2
|
|
245
113
|
* @secure
|
|
246
114
|
* @response `200` OK
|
|
247
115
|
*/
|
|
248
|
-
|
|
116
|
+
patchQueryLayerService1(name: string, data: PatchQueryLayerService1Payload): Promise<Operation[]>;
|
|
249
117
|
/**
|
|
250
118
|
* No description
|
|
251
119
|
*
|
|
@@ -257,7 +125,7 @@ export declare class LayersService extends Service {
|
|
|
257
125
|
* @secure
|
|
258
126
|
* @response `default` Error
|
|
259
127
|
*/
|
|
260
|
-
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc |
|
|
128
|
+
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc>;
|
|
261
129
|
/**
|
|
262
130
|
* No description
|
|
263
131
|
*
|
|
@@ -534,16 +402,4 @@ export declare class LayersService extends Service {
|
|
|
534
402
|
* @response `200` OK
|
|
535
403
|
*/
|
|
536
404
|
getResourceReferences(name: string): Promise<ResourceDependenciesDc>;
|
|
537
|
-
/**
|
|
538
|
-
* No description
|
|
539
|
-
*
|
|
540
|
-
* @tags Layers
|
|
541
|
-
* @name DeleteResources
|
|
542
|
-
* @operationId LayersController_DeleteResources
|
|
543
|
-
* @summary Bulk delete resources.
|
|
544
|
-
* @request DELETE:/layers
|
|
545
|
-
* @secure
|
|
546
|
-
* @response `200` OK
|
|
547
|
-
*/
|
|
548
|
-
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
549
405
|
}
|