@evergis/api 4.0.5 → 4.0.7
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__/LayersService.d.ts +14 -113
- package/dist/__generated__/RemoteTaskManagerService.d.ts +11 -132
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -13
- package/dist/__generated__/data-contracts.d.ts +442 -694
- package/dist/api.cjs.development.js +110 -545
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +137 -572
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Layers.d.ts +2 -6
- package/dist/services/VectorTiles.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc,
|
|
1
|
+
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams8, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, ServiceInfoDc, ServiceListDc, SimpleSymbolDc, StyleDc, SubtractParams, SubtractPayload, TileCatalogServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -138,28 +138,6 @@ export declare class LayersService extends Service {
|
|
|
138
138
|
* @response `default` Error
|
|
139
139
|
*/
|
|
140
140
|
publishRemoteTileService(data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfoDc>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags Layers
|
|
145
|
-
* @name PublishLocalTileService
|
|
146
|
-
* @operationId LayersController_PublishLocalTileService
|
|
147
|
-
* @summary Creates new Local Tile Service.
|
|
148
|
-
* @request POST:/layers#type=LocalTileService
|
|
149
|
-
* @response `default` Error
|
|
150
|
-
*/
|
|
151
|
-
publishLocalTileService(data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
152
|
-
/**
|
|
153
|
-
* No description
|
|
154
|
-
*
|
|
155
|
-
* @tags Layers
|
|
156
|
-
* @name PublishPostgresLayerService
|
|
157
|
-
* @operationId LayersController_PublishPostgresLayerService
|
|
158
|
-
* @summary Creates new Postgres Layer Service.
|
|
159
|
-
* @request POST:/layers#type=PostgresLayerService
|
|
160
|
-
* @response `default` Error
|
|
161
|
-
*/
|
|
162
|
-
publishPostgresLayerService(data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
163
141
|
/**
|
|
164
142
|
* No description
|
|
165
143
|
*
|
|
@@ -181,29 +159,29 @@ export declare class LayersService extends Service {
|
|
|
181
159
|
* @request POST:/layers#type=PostgresTileLayerService
|
|
182
160
|
* @response `default` Error
|
|
183
161
|
*/
|
|
184
|
-
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<
|
|
162
|
+
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<TileCatalogServiceInfoDc>;
|
|
185
163
|
/**
|
|
186
164
|
* No description
|
|
187
165
|
*
|
|
188
166
|
* @tags Layers
|
|
189
|
-
* @name
|
|
190
|
-
* @operationId
|
|
191
|
-
* @summary
|
|
192
|
-
* @request
|
|
167
|
+
* @name PublishPythonService
|
|
168
|
+
* @operationId LayersController_PublishPythonService
|
|
169
|
+
* @summary Creates new python service.
|
|
170
|
+
* @request POST:/layers#type=Python
|
|
193
171
|
* @response `default` Error
|
|
194
172
|
*/
|
|
195
|
-
|
|
173
|
+
publishPythonService(data: PythonServiceConfigurationDc): Promise<PythonServiceInfoDc>;
|
|
196
174
|
/**
|
|
197
175
|
* No description
|
|
198
176
|
*
|
|
199
177
|
* @tags Layers
|
|
200
|
-
* @name
|
|
201
|
-
* @operationId
|
|
202
|
-
* @summary
|
|
203
|
-
* @request
|
|
178
|
+
* @name UpdateMapboxService
|
|
179
|
+
* @operationId LayersController_UpdateMapboxService
|
|
180
|
+
* @summary Update mapbox service.
|
|
181
|
+
* @request PATCH:/layers/{name}#type=Mapbox
|
|
204
182
|
* @response `default` Error
|
|
205
183
|
*/
|
|
206
|
-
|
|
184
|
+
updateMapboxService(name: string, data: PbfServiceConfigurationDc): Promise<PbfServiceInfoDc>;
|
|
207
185
|
/**
|
|
208
186
|
* No description
|
|
209
187
|
*
|
|
@@ -236,7 +214,7 @@ export declare class LayersService extends Service {
|
|
|
236
214
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
237
215
|
* @response `default` Error
|
|
238
216
|
*/
|
|
239
|
-
updateTileCatalogService(name: string, data: PostgresTileCatalogServiceConfigurationDc): Promise<
|
|
217
|
+
updateTileCatalogService(name: string, data: PostgresTileCatalogServiceConfigurationDc): Promise<TileCatalogServiceInfoDc>;
|
|
240
218
|
/**
|
|
241
219
|
* No description
|
|
242
220
|
*
|
|
@@ -248,28 +226,6 @@ export declare class LayersService extends Service {
|
|
|
248
226
|
* @response `default` Error
|
|
249
227
|
*/
|
|
250
228
|
updateRemoteTileService(name: string, data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfo>;
|
|
251
|
-
/**
|
|
252
|
-
* No description
|
|
253
|
-
*
|
|
254
|
-
* @tags Layers
|
|
255
|
-
* @name UpdateLocalTileService
|
|
256
|
-
* @operationId LayersController_UpdateLocalTileService
|
|
257
|
-
* @summary Update Local Tile Service.
|
|
258
|
-
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
259
|
-
* @response `default` Error
|
|
260
|
-
*/
|
|
261
|
-
updateLocalTileService(name: string, data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
262
|
-
/**
|
|
263
|
-
* No description
|
|
264
|
-
*
|
|
265
|
-
* @tags Layers
|
|
266
|
-
* @name UpdatePostgresLayerService
|
|
267
|
-
* @operationId LayersController_UpdatePostgresLayerService
|
|
268
|
-
* @summary Update Postgres Layer Service.
|
|
269
|
-
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
270
|
-
* @response `default` Error
|
|
271
|
-
*/
|
|
272
|
-
updatePostgresLayerService(name: string, data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
273
229
|
/**
|
|
274
230
|
* No description
|
|
275
231
|
*
|
|
@@ -347,17 +303,6 @@ export declare class LayersService extends Service {
|
|
|
347
303
|
* @response `200` OK
|
|
348
304
|
*/
|
|
349
305
|
updateFeature(name: string, data: UpdateFeaturePayload): Promise<LayerUpdateInfoDc>;
|
|
350
|
-
/**
|
|
351
|
-
* No description
|
|
352
|
-
*
|
|
353
|
-
* @tags Layers
|
|
354
|
-
* @name FeaturesContains
|
|
355
|
-
* @operationId LayersController_FeaturesContains
|
|
356
|
-
* @summary Gets filtered features with given filter.
|
|
357
|
-
* @request GET:/layers/{name}/features/contains
|
|
358
|
-
* @response `200` OK
|
|
359
|
-
*/
|
|
360
|
-
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<PagedFeaturesListDc>;
|
|
361
306
|
/**
|
|
362
307
|
* No description
|
|
363
308
|
*
|
|
@@ -446,28 +391,6 @@ export declare class LayersService extends Service {
|
|
|
446
391
|
* @response `200` OK
|
|
447
392
|
*/
|
|
448
393
|
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<EnvelopeDc>;
|
|
449
|
-
/**
|
|
450
|
-
* No description
|
|
451
|
-
*
|
|
452
|
-
* @tags Layers
|
|
453
|
-
* @name GetByGeometry
|
|
454
|
-
* @operationId LayersController_GetByGeometryAsync
|
|
455
|
-
* @summary Gets the features within the given geometry.
|
|
456
|
-
* @request GET:/layers/{name}/features/getByGeometry
|
|
457
|
-
* @response `200` OK
|
|
458
|
-
*/
|
|
459
|
-
getByGeometry({ name, ...query }: GetByGeometryParams): Promise<FeaturesListDc>;
|
|
460
|
-
/**
|
|
461
|
-
* No description
|
|
462
|
-
*
|
|
463
|
-
* @tags Layers
|
|
464
|
-
* @name GetByGeometryPost
|
|
465
|
-
* @operationId LayersController_GetByGeometryAsync_1
|
|
466
|
-
* @summary Gets the features within the given geometry.
|
|
467
|
-
* @request POST:/layers/{name}/features/getByGeometry
|
|
468
|
-
* @response `200` OK
|
|
469
|
-
*/
|
|
470
|
-
getByGeometryPost({ name, ...query }: GetByGeometryPostParams, data: GetByGeometryPostPayload): Promise<FeaturesListDc>;
|
|
471
394
|
/**
|
|
472
395
|
* No description
|
|
473
396
|
*
|
|
@@ -490,17 +413,6 @@ export declare class LayersService extends Service {
|
|
|
490
413
|
* @response `200` OK
|
|
491
414
|
*/
|
|
492
415
|
deleteByCondition({ name, ...query }: DeleteByConditionParams): Promise<LayerUpdateInfoDc>;
|
|
493
|
-
/**
|
|
494
|
-
* No description
|
|
495
|
-
*
|
|
496
|
-
* @tags Layers
|
|
497
|
-
* @name GetByGeometryGet
|
|
498
|
-
* @operationId LayersController_GetByGeometryAsync_2
|
|
499
|
-
* @summary Gets the features by click position.
|
|
500
|
-
* @request GET:/layers/{name}/features/getByGeometryByClick
|
|
501
|
-
* @response `200` OK
|
|
502
|
-
*/
|
|
503
|
-
getByGeometryGet({ name, ...query }: GetByGeometryGetParams): Promise<FeaturesListDc>;
|
|
504
416
|
/**
|
|
505
417
|
* No description
|
|
506
418
|
*
|
|
@@ -567,17 +479,6 @@ export declare class LayersService extends Service {
|
|
|
567
479
|
* @response `200` OK
|
|
568
480
|
*/
|
|
569
481
|
editAttributes(name: string, data: EditAttributesInfoDc): Promise<LayerUpdateInfoDc>;
|
|
570
|
-
/**
|
|
571
|
-
* No description
|
|
572
|
-
*
|
|
573
|
-
* @tags Layers
|
|
574
|
-
* @name SelectFeatures
|
|
575
|
-
* @operationId LayersController_SelectFeatures
|
|
576
|
-
* @summary Selects features from the given layers by the visual point on the map.
|
|
577
|
-
* @request GET:/layers/features/select
|
|
578
|
-
* @response `200` OK
|
|
579
|
-
*/
|
|
580
|
-
selectFeatures(query: SelectFeaturesParams): Promise<FeatureSelectionDc[]>;
|
|
581
482
|
/**
|
|
582
483
|
* No description
|
|
583
484
|
*
|
|
@@ -600,7 +501,7 @@ export declare class LayersService extends Service {
|
|
|
600
501
|
* @request GET:/layers/{name}/{id}/metadata
|
|
601
502
|
* @response `200` OK
|
|
602
503
|
*/
|
|
603
|
-
getRasterMeta({ name, id, ...query }:
|
|
504
|
+
getRasterMeta({ name, id, ...query }: GetRasterMetaParams8): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
|
|
604
505
|
/**
|
|
605
506
|
* No description
|
|
606
507
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActiveWorkerDc,
|
|
1
|
+
import { ActiveWorkerDc, CreatedTaskResultDto, GetTaskPrototypesParams, GetTaskResourceParams, GetTasksForPrototypeParams, SearchResultsDtoTaskDto, SearchResultsDtoTaskPrototypeDto, SubTasksDto, TaskConfigurationDc, TaskPrototypeDto, TaskPythonResourceUpdateDto, TaskResourceCreateDto, TaskSpResourceUpdateDto, UpdateTaskPrototypeDto, WorkerStartMethodDto } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -6,127 +6,6 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class RemoteTaskManagerService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags RemoteTaskManager
|
|
13
|
-
* @name CancelTask
|
|
14
|
-
* @operationId RemoteTaskManagerController_CancelTask
|
|
15
|
-
* @summary Cancel task execution by given id.
|
|
16
|
-
* @request POST:/scheduler/tasks/{id}/cancel
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
cancelTask(id: string): Promise<void>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags RemoteTaskManager
|
|
24
|
-
* @name StartCogCreateTask
|
|
25
|
-
* @operationId RemoteTaskManagerController_StartCogCreateTask
|
|
26
|
-
* @summary Plans the execution of a 'create raster cog' server task.
|
|
27
|
-
* @request POST:/scheduler/tasks#type=cogService_create
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
startCogCreateTask(data: CreateRasterCogTaskDc): Promise<string>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags RemoteTaskManager
|
|
35
|
-
* @name StartRasterVrtTask
|
|
36
|
-
* @operationId RemoteTaskManagerController_StartRasterVrtTask
|
|
37
|
-
* @summary Plans the execution of a 'create raster vrt' server task.
|
|
38
|
-
* @request POST:/scheduler/tasks#type=cogService_vrt
|
|
39
|
-
* @response `200` OK
|
|
40
|
-
*/
|
|
41
|
-
startRasterVrtTask(data: CreateRasterVrtTaskDc): Promise<string>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags RemoteTaskManager
|
|
46
|
-
* @name StartNetCdfTask
|
|
47
|
-
* @operationId RemoteTaskManagerController_StartNetCdfTask
|
|
48
|
-
* @summary Plans the execution of a 'create raster netcdf' server task.
|
|
49
|
-
* @request POST:/scheduler/tasks#type=cogService_netcdf
|
|
50
|
-
* @response `200` OK
|
|
51
|
-
*/
|
|
52
|
-
startNetCdfTask(data: CreateRasterNetCdfTaskDc): Promise<string>;
|
|
53
|
-
/**
|
|
54
|
-
* No description
|
|
55
|
-
*
|
|
56
|
-
* @tags RemoteTaskManager
|
|
57
|
-
* @name StartBufferTask
|
|
58
|
-
* @operationId RemoteTaskManagerController_StartBufferTask
|
|
59
|
-
* @summary Plans the execution of a 'create buffers' server task.
|
|
60
|
-
* @request POST:/scheduler/tasks#type=geoService_buffer
|
|
61
|
-
* @response `200` OK
|
|
62
|
-
*/
|
|
63
|
-
startBufferTask(data: BufferTaskDc): Promise<string>;
|
|
64
|
-
/**
|
|
65
|
-
* No description
|
|
66
|
-
*
|
|
67
|
-
* @tags RemoteTaskManager
|
|
68
|
-
* @name StartCopyTableTask
|
|
69
|
-
* @operationId RemoteTaskManagerController_StartCopyTableTask
|
|
70
|
-
* @summary Plans the execution of a 'copy table' server task.
|
|
71
|
-
* @request POST:/scheduler/tasks#type=geoService_copy
|
|
72
|
-
* @response `200` OK
|
|
73
|
-
*/
|
|
74
|
-
startCopyTableTask(data: CopyTableTaskDc): Promise<string>;
|
|
75
|
-
/**
|
|
76
|
-
* No description
|
|
77
|
-
*
|
|
78
|
-
* @tags RemoteTaskManager
|
|
79
|
-
* @name StartUnionTask
|
|
80
|
-
* @operationId RemoteTaskManagerController_StartUnionTask
|
|
81
|
-
* @summary Plans the execution of a 'create union' server task.
|
|
82
|
-
* @request POST:/scheduler/tasks#type=geoService_union
|
|
83
|
-
* @response `200` OK
|
|
84
|
-
*/
|
|
85
|
-
startUnionTask(data: UnionTaskDc): Promise<string>;
|
|
86
|
-
/**
|
|
87
|
-
* No description
|
|
88
|
-
*
|
|
89
|
-
* @tags RemoteTaskManager
|
|
90
|
-
* @name StartOverlayTask
|
|
91
|
-
* @operationId RemoteTaskManagerController_StartOverlayTask
|
|
92
|
-
* @summary Plans the execution of a 'create overlay' server task.
|
|
93
|
-
* @request POST:/scheduler/tasks#type=geoService_overlay
|
|
94
|
-
* @response `200` OK
|
|
95
|
-
*/
|
|
96
|
-
startOverlayTask(data: OverlayTaskDc): Promise<string>;
|
|
97
|
-
/**
|
|
98
|
-
* No description
|
|
99
|
-
*
|
|
100
|
-
* @tags RemoteTaskManager
|
|
101
|
-
* @name StartCopyTask
|
|
102
|
-
* @operationId RemoteTaskManagerController_StartCopyTask
|
|
103
|
-
* @summary Plans the execution of a 'copy storages' server task.
|
|
104
|
-
* @request POST:/scheduler/tasks#type=copyTask
|
|
105
|
-
* @response `200` OK
|
|
106
|
-
*/
|
|
107
|
-
startCopyTask(data: CopyTaskDc): Promise<string>;
|
|
108
|
-
/**
|
|
109
|
-
* No description
|
|
110
|
-
*
|
|
111
|
-
* @tags RemoteTaskManager
|
|
112
|
-
* @name StartAvailableAreaTask
|
|
113
|
-
* @operationId RemoteTaskManagerController_StartAvailableAreaTask
|
|
114
|
-
* @summary Plans the execution of a 'create available area' server task.
|
|
115
|
-
* @request POST:/scheduler/tasks#type=availabilityArea
|
|
116
|
-
* @response `200` OK
|
|
117
|
-
*/
|
|
118
|
-
startAvailableAreaTask(data: AvailableAreaTaskDc): Promise<string>;
|
|
119
|
-
/**
|
|
120
|
-
* No description
|
|
121
|
-
*
|
|
122
|
-
* @tags RemoteTaskManager
|
|
123
|
-
* @name StartGeocodeTask
|
|
124
|
-
* @operationId RemoteTaskManagerController_StartGeocodeTask
|
|
125
|
-
* @summary Plans the execution of a 'geocode' server task.
|
|
126
|
-
* @request POST:/scheduler/tasks#type=geocodeTask
|
|
127
|
-
* @response `200` OK
|
|
128
|
-
*/
|
|
129
|
-
startGeocodeTask(data: GeocodeTaskDc): Promise<string>;
|
|
130
9
|
/**
|
|
131
10
|
* No description
|
|
132
11
|
*
|
|
@@ -137,7 +16,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
137
16
|
* @request GET:/scheduler/task/{id}/subtasks
|
|
138
17
|
* @response `200` OK
|
|
139
18
|
*/
|
|
140
|
-
get(id: string): Promise<
|
|
19
|
+
get(id: string): Promise<SubTasksDto[]>;
|
|
141
20
|
/**
|
|
142
21
|
* No description
|
|
143
22
|
*
|
|
@@ -148,7 +27,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
148
27
|
* @request POST:/scheduler/task/{id}/stop
|
|
149
28
|
* @response `200` OK
|
|
150
29
|
*/
|
|
151
|
-
stop(id: string): Promise<
|
|
30
|
+
stop(id: string): Promise<string>;
|
|
152
31
|
/**
|
|
153
32
|
* No description
|
|
154
33
|
*
|
|
@@ -170,7 +49,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
170
49
|
* @request GET:/scheduler
|
|
171
50
|
* @response `200` OK
|
|
172
51
|
*/
|
|
173
|
-
getTaskPrototypes(query: GetTaskPrototypesParams): Promise<
|
|
52
|
+
getTaskPrototypes(query: GetTaskPrototypesParams): Promise<SearchResultsDtoTaskPrototypeDto>;
|
|
174
53
|
/**
|
|
175
54
|
* No description
|
|
176
55
|
*
|
|
@@ -181,7 +60,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
181
60
|
* @request PUT:/scheduler/{id}
|
|
182
61
|
* @response `200` OK
|
|
183
62
|
*/
|
|
184
|
-
updateTaskPrototype(id: string, data: UpdateTaskPrototypeDto): Promise<
|
|
63
|
+
updateTaskPrototype(id: string, data: UpdateTaskPrototypeDto): Promise<string>;
|
|
185
64
|
/**
|
|
186
65
|
* No description
|
|
187
66
|
*
|
|
@@ -192,7 +71,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
192
71
|
* @request DELETE:/scheduler/{id}
|
|
193
72
|
* @response `200` OK
|
|
194
73
|
*/
|
|
195
|
-
delete(id: string): Promise<
|
|
74
|
+
delete(id: string): Promise<string>;
|
|
196
75
|
/**
|
|
197
76
|
* No description
|
|
198
77
|
*
|
|
@@ -203,7 +82,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
203
82
|
* @request POST:/scheduler/{id}/enable/{enable}
|
|
204
83
|
* @response `200` OK
|
|
205
84
|
*/
|
|
206
|
-
setEnable(id: string, enable: boolean): Promise<
|
|
85
|
+
setEnable(id: string, enable: boolean): Promise<string>;
|
|
207
86
|
/**
|
|
208
87
|
* No description
|
|
209
88
|
*
|
|
@@ -214,7 +93,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
214
93
|
* @request GET:/scheduler/{id}/tasks
|
|
215
94
|
* @response `200` OK
|
|
216
95
|
*/
|
|
217
|
-
getTasksForPrototype({ id, ...query }: GetTasksForPrototypeParams): Promise<
|
|
96
|
+
getTasksForPrototype({ id, ...query }: GetTasksForPrototypeParams): Promise<SearchResultsDtoTaskDto>;
|
|
218
97
|
/**
|
|
219
98
|
* No description
|
|
220
99
|
*
|
|
@@ -225,7 +104,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
225
104
|
* @request POST:/scheduler/{id}/start/{taskId}
|
|
226
105
|
* @response `200` OK
|
|
227
106
|
*/
|
|
228
|
-
startTask(id: string, taskId: string): Promise<
|
|
107
|
+
startTask(id: string, taskId: string): Promise<CreatedTaskResultDto>;
|
|
229
108
|
/**
|
|
230
109
|
* No description
|
|
231
110
|
*
|
|
@@ -236,7 +115,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
236
115
|
* @request POST:/scheduler/{id}/start
|
|
237
116
|
* @response `200` OK
|
|
238
117
|
*/
|
|
239
|
-
startTask1(id: string): Promise<
|
|
118
|
+
startTask1(id: string): Promise<CreatedTaskResultDto>;
|
|
240
119
|
/**
|
|
241
120
|
* No description
|
|
242
121
|
*
|
|
@@ -247,7 +126,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
247
126
|
* @request GET:/scheduler/taskresource/{id}
|
|
248
127
|
* @response `200` OK
|
|
249
128
|
*/
|
|
250
|
-
getTaskResource({ id, ...query }: GetTaskResourceParams): Promise<
|
|
129
|
+
getTaskResource({ id, ...query }: GetTaskResourceParams): Promise<TaskConfigurationDc>;
|
|
251
130
|
/**
|
|
252
131
|
* No description
|
|
253
132
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams1, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -38,7 +38,7 @@ export declare class StatisticService extends Service {
|
|
|
38
38
|
* @request GET:/statistics/classify
|
|
39
39
|
* @response `200` OK
|
|
40
40
|
*/
|
|
41
|
-
classify(query:
|
|
41
|
+
classify(query: ClassifyParams1): Promise<ClassifyDc>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc,
|
|
1
|
+
import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams6, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTableListParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -38,7 +38,7 @@ export declare class TablesService extends Service {
|
|
|
38
38
|
* @request DELETE:/tables
|
|
39
39
|
* @response `200` OK
|
|
40
40
|
*/
|
|
41
|
-
deleteResources(query:
|
|
41
|
+
deleteResources(query: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
@@ -138,17 +138,6 @@ export declare class TablesService extends Service {
|
|
|
138
138
|
* @response `200` OK
|
|
139
139
|
*/
|
|
140
140
|
deleteTableData({ name, ...query }: DeleteTableDataParams): Promise<void>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags Tables
|
|
145
|
-
* @name GetUniqueDataRows
|
|
146
|
-
* @operationId TablesController_GetUniqueDataRowsAsync
|
|
147
|
-
* @summary Returns a single data row for each unique value defined by uniqueColumn.
|
|
148
|
-
* @request GET:/tables/{name}/data/unique-values
|
|
149
|
-
* @response `200` OK
|
|
150
|
-
*/
|
|
151
|
-
getUniqueDataRows({ name, ...query }: GetUniqueDataRowsParams): Promise<Record<string, any>[]>;
|
|
152
141
|
/**
|
|
153
142
|
* No description
|
|
154
143
|
*
|