@evergis/api 3.0.92 → 3.0.93
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 +4 -4
- package/dist/__generated__/BulkOperationsService.d.ts +2 -2
- package/dist/__generated__/FiltersService.d.ts +3 -3
- package/dist/__generated__/GeneralService.d.ts +13 -2
- package/dist/__generated__/ImportService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +45 -23
- package/dist/__generated__/NamespaceService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +8 -8
- package/dist/__generated__/SchedulerService.d.ts +12 -12
- package/dist/__generated__/SecurityService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/StyleService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +12 -12
- package/dist/__generated__/TagsService.d.ts +31 -0
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +899 -1970
- package/dist/api.cjs.development.js +56 -3
- 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 +174 -15
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Layers.d.ts +5 -5
- package/dist/services/Projects.d.ts +4 -4
- package/dist/services/Tables.d.ts +3 -3
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams,
|
|
1
|
+
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, ListResponseExtendedUserInfoDc, ListResponseRoleInfoDc, ListResponseUserInfoDc, LoginDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class AccountService extends Service {
|
|
|
16
16
|
* @request GET:/account/user/list
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getUsers(query: GetUsersParams): Promise<ListResponseUserInfoDc
|
|
19
|
+
getUsers(query: GetUsersParams): Promise<ListResponseUserInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -27,7 +27,7 @@ export declare class AccountService extends Service {
|
|
|
27
27
|
* @request GET:/account/user/extendedlist
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
getExtendedUsers(query: GetExtendedUsersParams): Promise<
|
|
30
|
+
getExtendedUsers(query: GetExtendedUsersParams): Promise<ListResponseExtendedUserInfoDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -291,7 +291,7 @@ export declare class AccountService extends Service {
|
|
|
291
291
|
* @request GET:/account/role/list
|
|
292
292
|
* @response `200` Success
|
|
293
293
|
*/
|
|
294
|
-
getRoles(query: GetRolesParams): Promise<
|
|
294
|
+
getRoles(query: GetRolesParams): Promise<ListResponseRoleInfoDc>;
|
|
295
295
|
/**
|
|
296
296
|
* No description
|
|
297
297
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BatchResourcesAclDc, BulkOperationResultDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,5 +16,5 @@ export declare class BulkOperationsService extends Service {
|
|
|
16
16
|
* @request PUT:/bulk/resources/permissions
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
batchResourcesPermissionsSet(data:
|
|
19
|
+
batchResourcesPermissionsSet(data: BatchResourcesAclDc): Promise<BulkOperationResultDc[]>;
|
|
20
20
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FilterCreationResponseDc, FilterDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class FiltersService extends Service {
|
|
|
27
27
|
* @request POST:/filters/{id}
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
update(id: string, data:
|
|
30
|
+
update(id: string, data: FilterDc): Promise<FilterCreationResponseDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -38,5 +38,5 @@ export declare class FiltersService extends Service {
|
|
|
38
38
|
* @request POST:/filters
|
|
39
39
|
* @response `200` Success
|
|
40
40
|
*/
|
|
41
|
-
create(data:
|
|
41
|
+
create(data: FilterDc): Promise<FilterCreationResponseDc>;
|
|
42
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FunctionInfoDc, ServerInfoDc } from './data-contracts';
|
|
1
|
+
import { FaviconParams, FunctionInfoDc, LogoParams, ServerInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,18 @@ export declare class GeneralService extends Service {
|
|
|
27
27
|
* @request GET:/favicon.ico
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
favicon(): string;
|
|
30
|
+
favicon(query: FaviconParams): string;
|
|
31
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags General
|
|
35
|
+
* @name Logo
|
|
36
|
+
* @operationId GeneralController_Logo
|
|
37
|
+
* @summary Returns logo.
|
|
38
|
+
* @request GET:/logo.png
|
|
39
|
+
* @response `200` Success
|
|
40
|
+
*/
|
|
41
|
+
logo(query: LogoParams): string;
|
|
31
42
|
/**
|
|
32
43
|
* No description
|
|
33
44
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetDataSchemaParams, GetExternalWmsLayersParams,
|
|
1
|
+
import { GetDataSchemaParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class ImportService extends Service {
|
|
|
27
27
|
* @request POST:/import/count
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
getFeaturesCount(data:
|
|
30
|
+
getFeaturesCount(data: ImportFileFeaturesCountDc): Promise<number>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc,
|
|
1
|
+
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersListParams, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LocalTileServiceConfigurationDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceConfigurationDc, ProxyServiceInfoDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class LayersService extends Service {
|
|
|
16
16
|
* @request GET:/layers
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getLayersList(query: GetLayersListParams): Promise<
|
|
19
|
+
getLayersList(query: GetLayersListParams): Promise<import("./data-contracts").ListResponseServiceListItemDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -49,7 +49,7 @@ export declare class LayersService extends Service {
|
|
|
49
49
|
* @request GET:/layers/{name}
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
getLayerInfo(name: string): Promise<
|
|
52
|
+
getLayerInfo(name: string): Promise<ResourceInfoDc | ServiceInfoDc>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -71,7 +71,18 @@ export declare class LayersService extends Service {
|
|
|
71
71
|
* @request POST:/layers#type=ProxyService
|
|
72
72
|
* @response `default` Error
|
|
73
73
|
*/
|
|
74
|
-
publishProxyService(data:
|
|
74
|
+
publishProxyService(data: ProxyServiceConfigurationDc): Promise<ProxyServiceInfoDc>;
|
|
75
|
+
/**
|
|
76
|
+
* No description
|
|
77
|
+
*
|
|
78
|
+
* @tags Layers
|
|
79
|
+
* @name PublishRouteService
|
|
80
|
+
* @operationId LayersController_PublishRouteService
|
|
81
|
+
* @summary Creates new Route Service.
|
|
82
|
+
* @request POST:/layers#type=RouteService
|
|
83
|
+
* @response `200` Success
|
|
84
|
+
*/
|
|
85
|
+
publishRouteService(data: RouteServiceConfigurationDc): Promise<void>;
|
|
75
86
|
/**
|
|
76
87
|
* No description
|
|
77
88
|
*
|
|
@@ -82,7 +93,7 @@ export declare class LayersService extends Service {
|
|
|
82
93
|
* @request POST:/layers#type=RemoteTileService
|
|
83
94
|
* @response `default` Error
|
|
84
95
|
*/
|
|
85
|
-
publishRemoteTileService(data:
|
|
96
|
+
publishRemoteTileService(data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfoDc>;
|
|
86
97
|
/**
|
|
87
98
|
* No description
|
|
88
99
|
*
|
|
@@ -93,7 +104,7 @@ export declare class LayersService extends Service {
|
|
|
93
104
|
* @request POST:/layers#type=LocalTileService
|
|
94
105
|
* @response `default` Error
|
|
95
106
|
*/
|
|
96
|
-
publishLocalTileService(data:
|
|
107
|
+
publishLocalTileService(data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
97
108
|
/**
|
|
98
109
|
* No description
|
|
99
110
|
*
|
|
@@ -104,7 +115,7 @@ export declare class LayersService extends Service {
|
|
|
104
115
|
* @request POST:/layers#type=PostgresLayerService
|
|
105
116
|
* @response `default` Error
|
|
106
117
|
*/
|
|
107
|
-
publishPostgresLayerService(data:
|
|
118
|
+
publishPostgresLayerService(data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
108
119
|
/**
|
|
109
120
|
* No description
|
|
110
121
|
*
|
|
@@ -115,7 +126,7 @@ export declare class LayersService extends Service {
|
|
|
115
126
|
* @request POST:/layers#type=PostgresTileLayerService
|
|
116
127
|
* @response `default` Error
|
|
117
128
|
*/
|
|
118
|
-
publishPostgresTileCatalogService(data:
|
|
129
|
+
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
119
130
|
/**
|
|
120
131
|
* No description
|
|
121
132
|
*
|
|
@@ -126,7 +137,7 @@ export declare class LayersService extends Service {
|
|
|
126
137
|
* @request PATCH:/layers/{name}#type=ProxyService
|
|
127
138
|
* @response `default` Error
|
|
128
139
|
*/
|
|
129
|
-
updateProxyService(name: string, data:
|
|
140
|
+
updateProxyService(name: string, data: ProxyServiceConfigurationDc): Promise<ProxyServiceInfoDc>;
|
|
130
141
|
/**
|
|
131
142
|
* No description
|
|
132
143
|
*
|
|
@@ -137,7 +148,7 @@ export declare class LayersService extends Service {
|
|
|
137
148
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
138
149
|
* @response `default` Error
|
|
139
150
|
*/
|
|
140
|
-
updateTileCatalogService(name: string, data:
|
|
151
|
+
updateTileCatalogService(name: string, data: PostgresTileCatalogServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
141
152
|
/**
|
|
142
153
|
* No description
|
|
143
154
|
*
|
|
@@ -148,7 +159,7 @@ export declare class LayersService extends Service {
|
|
|
148
159
|
* @request POST:/layers#type=StyledFeatureLayer
|
|
149
160
|
* @response `default` Error
|
|
150
161
|
*/
|
|
151
|
-
publishStyledLayerService(data:
|
|
162
|
+
publishStyledLayerService(data: StyledLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
152
163
|
/**
|
|
153
164
|
* No description
|
|
154
165
|
*
|
|
@@ -159,7 +170,7 @@ export declare class LayersService extends Service {
|
|
|
159
170
|
* @request POST:/layers#type=CompositeService
|
|
160
171
|
* @response `default` Error
|
|
161
172
|
*/
|
|
162
|
-
publishCompositeService(data:
|
|
173
|
+
publishCompositeService(data: CompositeServiceConfigurationDc): Promise<CompositeServiceInfoDc>;
|
|
163
174
|
/**
|
|
164
175
|
* No description
|
|
165
176
|
*
|
|
@@ -170,7 +181,7 @@ export declare class LayersService extends Service {
|
|
|
170
181
|
* @request PATCH:/layers/{name}#type=RemoteTileService
|
|
171
182
|
* @response `default` Error
|
|
172
183
|
*/
|
|
173
|
-
updateRemoteTileService(name: string, data:
|
|
184
|
+
updateRemoteTileService(name: string, data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfo>;
|
|
174
185
|
/**
|
|
175
186
|
* No description
|
|
176
187
|
*
|
|
@@ -181,7 +192,7 @@ export declare class LayersService extends Service {
|
|
|
181
192
|
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
182
193
|
* @response `default` Error
|
|
183
194
|
*/
|
|
184
|
-
updateLocalTileService(name: string, data:
|
|
195
|
+
updateLocalTileService(name: string, data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
185
196
|
/**
|
|
186
197
|
* No description
|
|
187
198
|
*
|
|
@@ -192,7 +203,7 @@ export declare class LayersService extends Service {
|
|
|
192
203
|
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
193
204
|
* @response `default` Error
|
|
194
205
|
*/
|
|
195
|
-
updatePostgresLayerService(name: string, data:
|
|
206
|
+
updatePostgresLayerService(name: string, data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
196
207
|
/**
|
|
197
208
|
* No description
|
|
198
209
|
*
|
|
@@ -203,7 +214,7 @@ export declare class LayersService extends Service {
|
|
|
203
214
|
* @request PATCH:/layers/{name}#type=CompositeService
|
|
204
215
|
* @response `default` Error
|
|
205
216
|
*/
|
|
206
|
-
updateCompositeService(name: string, data:
|
|
217
|
+
updateCompositeService(name: string, data: CompositeServiceConfigurationDc): Promise<CompositeServiceInfoDc>;
|
|
207
218
|
/**
|
|
208
219
|
* No description
|
|
209
220
|
*
|
|
@@ -214,7 +225,7 @@ export declare class LayersService extends Service {
|
|
|
214
225
|
* @request GET:/layers/{name}/reload
|
|
215
226
|
* @response `default` Error
|
|
216
227
|
*/
|
|
217
|
-
reloadService(name: string): Promise<
|
|
228
|
+
reloadService(name: string): Promise<ResourceInfoDc | ServiceInfoDc>;
|
|
218
229
|
/**
|
|
219
230
|
* No description
|
|
220
231
|
*
|
|
@@ -225,7 +236,7 @@ export declare class LayersService extends Service {
|
|
|
225
236
|
* @request GET:/layers/{name}/features
|
|
226
237
|
* @response `200` Success
|
|
227
238
|
*/
|
|
228
|
-
getFeatures({ name, ...query }: GetFeaturesParams): Promise<
|
|
239
|
+
getFeatures({ name, ...query }: GetFeaturesParams): Promise<import("./data-contracts").ListResponseFeatureDc>;
|
|
229
240
|
/**
|
|
230
241
|
* No description
|
|
231
242
|
*
|
|
@@ -269,7 +280,7 @@ export declare class LayersService extends Service {
|
|
|
269
280
|
* @request GET:/layers/{name}/features/contains
|
|
270
281
|
* @response `200` Success
|
|
271
282
|
*/
|
|
272
|
-
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<
|
|
283
|
+
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<import("./data-contracts").ListResponseFeatureDc>;
|
|
273
284
|
/**
|
|
274
285
|
* No description
|
|
275
286
|
*
|
|
@@ -335,7 +346,7 @@ export declare class LayersService extends Service {
|
|
|
335
346
|
* @request GET:/layers/{name}/extent
|
|
336
347
|
* @response `200` Success
|
|
337
348
|
*/
|
|
338
|
-
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<
|
|
349
|
+
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<EnvelopeDc>;
|
|
339
350
|
/**
|
|
340
351
|
* No description
|
|
341
352
|
*
|
|
@@ -445,7 +456,7 @@ export declare class LayersService extends Service {
|
|
|
445
456
|
* @request POST:/layers/{name}/features/edit-attributes
|
|
446
457
|
* @response `200` Success
|
|
447
458
|
*/
|
|
448
|
-
editAttributes(name: string, data:
|
|
459
|
+
editAttributes(name: string, data: EditAttributesInfoDc): Promise<LayerUpdateInfoDc>;
|
|
449
460
|
/**
|
|
450
461
|
* No description
|
|
451
462
|
*
|
|
@@ -469,6 +480,17 @@ export declare class LayersService extends Service {
|
|
|
469
480
|
* @response `400` Bad Request
|
|
470
481
|
*/
|
|
471
482
|
validateExpression({ layerName, ...query }: ValidateExpressionParams): Promise<ExpressionValidationResultDc>;
|
|
483
|
+
/**
|
|
484
|
+
* No description
|
|
485
|
+
*
|
|
486
|
+
* @tags Layers
|
|
487
|
+
* @name CreateRoute
|
|
488
|
+
* @operationId LayersController_CreateRoute
|
|
489
|
+
* @summary Create new route (feature) from source features.
|
|
490
|
+
* @request POST:/layers/{name}/createRoute
|
|
491
|
+
* @response `200` Success
|
|
492
|
+
*/
|
|
493
|
+
createRoute(name: string, data: RouteFeatureDc): Promise<LayerUpdateInfo>;
|
|
472
494
|
/**
|
|
473
495
|
* No description
|
|
474
496
|
*
|
|
@@ -545,7 +567,7 @@ export declare class LayersService extends Service {
|
|
|
545
567
|
* @request POST:/layers/{name}/permissions
|
|
546
568
|
* @response `200` Success
|
|
547
569
|
*/
|
|
548
|
-
addPermissions(name: string, data:
|
|
570
|
+
addPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
549
571
|
/**
|
|
550
572
|
* No description
|
|
551
573
|
*
|
|
@@ -556,7 +578,7 @@ export declare class LayersService extends Service {
|
|
|
556
578
|
* @request PUT:/layers/{name}/permissions
|
|
557
579
|
* @response `200` Success
|
|
558
580
|
*/
|
|
559
|
-
setPermissions(name: string, data:
|
|
581
|
+
setPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
560
582
|
/**
|
|
561
583
|
* No description
|
|
562
584
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateNamespaceParams, GetNamespacesParams,
|
|
1
|
+
import { CreateNamespaceParams, GetNamespacesParams, ListResponseNamespaceInfoDc, NamespaceInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class NamespaceService extends Service {
|
|
|
16
16
|
* @request GET:/namespaces
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getNamespaces(query: GetNamespacesParams): Promise<ListResponseNamespaceInfoDc
|
|
19
|
+
getNamespaces(query: GetNamespacesParams): Promise<ListResponseNamespaceInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class ProjectsService extends Service {
|
|
|
16
16
|
* @request GET:/projects
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getProjectsList(query: GetProjectsListParams): Promise<ListResponseProjectInfoDc
|
|
19
|
+
getProjectsList(query: GetProjectsListParams): Promise<ListResponseProjectInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -27,7 +27,7 @@ export declare class ProjectsService extends Service {
|
|
|
27
27
|
* @request POST:/projects
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
createProject(data:
|
|
30
|
+
createProject(data: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
49
49
|
* @request DELETE:/projects
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -60,7 +60,7 @@ export declare class ProjectsService extends Service {
|
|
|
60
60
|
* @request PATCH:/projects/{name}
|
|
61
61
|
* @response `200` Success
|
|
62
62
|
*/
|
|
63
|
-
updateProject(name: string, data:
|
|
63
|
+
updateProject(name: string, data: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
|
|
64
64
|
/**
|
|
65
65
|
* No description
|
|
66
66
|
*
|
|
@@ -71,7 +71,7 @@ export declare class ProjectsService extends Service {
|
|
|
71
71
|
* @request GET:/projects/{name}
|
|
72
72
|
* @response `200` Success
|
|
73
73
|
*/
|
|
74
|
-
getProjectInfo(name: string): Promise<
|
|
74
|
+
getProjectInfo(name: string): Promise<ExtendedProjectInfoDc>;
|
|
75
75
|
/**
|
|
76
76
|
* No description
|
|
77
77
|
*
|
|
@@ -170,7 +170,7 @@ export declare class ProjectsService extends Service {
|
|
|
170
170
|
* @request POST:/projects/{name}/permissions
|
|
171
171
|
* @response `200` Success
|
|
172
172
|
*/
|
|
173
|
-
addPermissions(name: string, data:
|
|
173
|
+
addPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
174
174
|
/**
|
|
175
175
|
* No description
|
|
176
176
|
*
|
|
@@ -181,7 +181,7 @@ export declare class ProjectsService extends Service {
|
|
|
181
181
|
* @request PUT:/projects/{name}/permissions
|
|
182
182
|
* @response `200` Success
|
|
183
183
|
*/
|
|
184
|
-
setPermissions(name: string, data:
|
|
184
|
+
setPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
185
185
|
/**
|
|
186
186
|
* No description
|
|
187
187
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AggregateTaskParametersDc, AvailabilityAreaTaskDc, BufferTaskParametersDc, CopyTaskParametersDc, EditAttributesTaskParametersDc, FilterCopyTaskParametersDc, GetTaskListParams, OverlayTaskParametersDc, PipelineTaskParametersDc, PrintTaskParametersDc, TaskInfoDc, TaskProgressDc, TaskStatusDataDc, UnionTaskParametersDc, UploadRasterTaskParametersDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -60,7 +60,7 @@ export declare class SchedulerService extends Service {
|
|
|
60
60
|
* @request POST:/scheduler/tasks#type=copy
|
|
61
61
|
* @response `200` Success
|
|
62
62
|
*/
|
|
63
|
-
startCopyTask(data:
|
|
63
|
+
startCopyTask(data: CopyTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
64
64
|
/**
|
|
65
65
|
* No description
|
|
66
66
|
*
|
|
@@ -71,7 +71,7 @@ export declare class SchedulerService extends Service {
|
|
|
71
71
|
* @request POST:/scheduler/tasks#type=aggregate
|
|
72
72
|
* @response `200` Success
|
|
73
73
|
*/
|
|
74
|
-
startAggregateTask(data:
|
|
74
|
+
startAggregateTask(data: AggregateTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
75
75
|
/**
|
|
76
76
|
* No description
|
|
77
77
|
*
|
|
@@ -82,7 +82,7 @@ export declare class SchedulerService extends Service {
|
|
|
82
82
|
* @request POST:/scheduler/tasks#type=buffer
|
|
83
83
|
* @response `200` Success
|
|
84
84
|
*/
|
|
85
|
-
startBufferTask(data:
|
|
85
|
+
startBufferTask(data: BufferTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
86
86
|
/**
|
|
87
87
|
* No description
|
|
88
88
|
*
|
|
@@ -93,7 +93,7 @@ export declare class SchedulerService extends Service {
|
|
|
93
93
|
* @request POST:/scheduler/tasks#type=print
|
|
94
94
|
* @response `200` Success
|
|
95
95
|
*/
|
|
96
|
-
startPrintTask(data:
|
|
96
|
+
startPrintTask(data: PrintTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
97
97
|
/**
|
|
98
98
|
* No description
|
|
99
99
|
*
|
|
@@ -104,7 +104,7 @@ export declare class SchedulerService extends Service {
|
|
|
104
104
|
* @request POST:/scheduler/tasks#type=tiling
|
|
105
105
|
* @response `200` Success
|
|
106
106
|
*/
|
|
107
|
-
startTilingTask(data:
|
|
107
|
+
startTilingTask(data: UploadRasterTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
108
108
|
/**
|
|
109
109
|
* No description
|
|
110
110
|
*
|
|
@@ -115,7 +115,7 @@ export declare class SchedulerService extends Service {
|
|
|
115
115
|
* @request POST:/scheduler/tasks#type=route
|
|
116
116
|
* @response `200` Success
|
|
117
117
|
*/
|
|
118
|
-
startRouteTask(data:
|
|
118
|
+
startRouteTask(data: AvailabilityAreaTaskDc): Promise<TaskStatusDataDc>;
|
|
119
119
|
/**
|
|
120
120
|
* No description
|
|
121
121
|
*
|
|
@@ -126,7 +126,7 @@ export declare class SchedulerService extends Service {
|
|
|
126
126
|
* @request POST:/scheduler/tasks#type=union
|
|
127
127
|
* @response `200` Success
|
|
128
128
|
*/
|
|
129
|
-
startUnionTask(data:
|
|
129
|
+
startUnionTask(data: UnionTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
130
130
|
/**
|
|
131
131
|
* No description
|
|
132
132
|
*
|
|
@@ -137,7 +137,7 @@ export declare class SchedulerService extends Service {
|
|
|
137
137
|
* @request POST:/scheduler/tasks#type=overlay
|
|
138
138
|
* @response `200` Success
|
|
139
139
|
*/
|
|
140
|
-
startOverlayTask(data:
|
|
140
|
+
startOverlayTask(data: OverlayTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
141
141
|
/**
|
|
142
142
|
* No description
|
|
143
143
|
*
|
|
@@ -148,7 +148,7 @@ export declare class SchedulerService extends Service {
|
|
|
148
148
|
* @request POST:/scheduler/tasks#type=filterCopy
|
|
149
149
|
* @response `200` Success
|
|
150
150
|
*/
|
|
151
|
-
startFilterCopyTask(data:
|
|
151
|
+
startFilterCopyTask(data: FilterCopyTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
152
152
|
/**
|
|
153
153
|
* No description
|
|
154
154
|
*
|
|
@@ -159,7 +159,7 @@ export declare class SchedulerService extends Service {
|
|
|
159
159
|
* @request POST:/scheduler/tasks#type=pipeline
|
|
160
160
|
* @response `200` Success
|
|
161
161
|
*/
|
|
162
|
-
startPipelineTask(data:
|
|
162
|
+
startPipelineTask(data: PipelineTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
163
163
|
/**
|
|
164
164
|
* No description
|
|
165
165
|
*
|
|
@@ -170,5 +170,5 @@ export declare class SchedulerService extends Service {
|
|
|
170
170
|
* @request POST:/scheduler/tasks#type=editAttributes
|
|
171
171
|
* @response `200` Success
|
|
172
172
|
*/
|
|
173
|
-
startEditAttributesBatch(data:
|
|
173
|
+
startEditAttributesBatch(data: EditAttributesTaskParametersDc): Promise<TaskStatusDataDc>;
|
|
174
174
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams, GetUsersAndRolesParams, PolicyDc, RemovePolicyParams, SearchedUserDc,
|
|
1
|
+
import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams, GetUsersAndRolesParams, PolicyDc, RemovePolicyParams, SearchedUserDc, UserOrRoleDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -71,5 +71,5 @@ export declare class SecurityService extends Service {
|
|
|
71
71
|
* @request POST:/security/policies
|
|
72
72
|
* @response `200` Success
|
|
73
73
|
*/
|
|
74
|
-
setPolicy(data:
|
|
74
|
+
setPolicy(data: PolicyDc): Promise<void>;
|
|
75
75
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams8, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class StatisticService extends Service {
|
|
|
27
27
|
* @request GET:/statistics/classify
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
classify(query:
|
|
30
|
+
classify(query: ClassifyParams8): Promise<ClassifyDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AddFontPayload,
|
|
1
|
+
import { AddFontPayload, RemoveFontParams, StyleCreationResponseDc, StyleDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class StyleService extends Service {
|
|
|
27
27
|
* @request POST:/styles/{id}
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
updateStyle(id: string, data:
|
|
30
|
+
updateStyle(id: string, data: StyleDc): Promise<StyleCreationResponseDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -38,7 +38,7 @@ export declare class StyleService extends Service {
|
|
|
38
38
|
* @request POST:/styles
|
|
39
39
|
* @response `200` Success
|
|
40
40
|
*/
|
|
41
|
-
createStyle(data:
|
|
41
|
+
createStyle(data: StyleDc): Promise<StyleCreationResponseDc>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|