@evergis/api 3.0.64 → 3.0.65
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 -35
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +57 -46
- package/dist/__generated__/NamespaceService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +29 -29
- package/dist/__generated__/ResourceCatalogService.d.ts +2 -134
- package/dist/__generated__/SchedulerService.d.ts +12 -12
- package/dist/__generated__/SecurityService.d.ts +2 -2
- package/dist/__generated__/StyleService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +33 -22
- package/dist/__generated__/ToolsService.d.ts +0 -312
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/data-contracts.d.ts +1722 -1996
- package/dist/api.cjs.development.js +167 -951
- 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 +188 -1194
- package/dist/api.esm.js.map +1 -1
- package/dist/services/BulkOperations.d.ts +0 -5
- package/dist/services/Layers.d.ts +5 -5
- package/dist/services/PortalSettings.d.ts +2 -0
- package/dist/services/Projects.d.ts +4 -4
- package/dist/services/Tables.d.ts +3 -3
- package/package.json +2 -2
- package/dist/__generated__/AutosharedListService.d.ts +0 -53
- package/dist/__generated__/FavoritesService.d.ts +0 -31
- package/dist/__generated__/ScriptsService.d.ts +0 -31
|
@@ -1,4 +1,4 @@
|
|
|
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';
|
|
1
|
+
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IListResponse, 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 | IListResponse>;
|
|
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<ListResponseExtendedUserInfoDc>;
|
|
30
|
+
getExtendedUsers(query: GetExtendedUsersParams): Promise<IListResponse | 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<ListResponseRoleInfoDc>;
|
|
294
|
+
getRoles(query: GetRolesParams): Promise<IListResponse | ListResponseRoleInfoDc>;
|
|
295
295
|
/**
|
|
296
296
|
* No description
|
|
297
297
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BatchResourcesPermissionsSetPayload, BulkOperationResultDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -6,39 +6,6 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class BulkOperationsService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags BulkOperations
|
|
13
|
-
* @name BatchUpdateCatalogResources
|
|
14
|
-
* @operationId BulkOperationsController_BatchUpdateCatalogResources
|
|
15
|
-
* @summary Overrides resources in catalog.
|
|
16
|
-
* @request PUT:/bulk/catalog/updateResources
|
|
17
|
-
* @response `200` Success
|
|
18
|
-
*/
|
|
19
|
-
batchUpdateCatalogResources(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags BulkOperations
|
|
24
|
-
* @name BatchAddResourcesToCatalog
|
|
25
|
-
* @operationId BulkOperationsController_BatchAddResourcesToCatalog
|
|
26
|
-
* @summary Add resources to catalog.
|
|
27
|
-
* @request POST:/bulk/catalog/addResources
|
|
28
|
-
* @response `200` Success
|
|
29
|
-
*/
|
|
30
|
-
batchAddResourcesToCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags BulkOperations
|
|
35
|
-
* @name BatchDeleteResourcesFromCatalog
|
|
36
|
-
* @operationId BulkOperationsController_BatchDeleteResourcesFromCatalog
|
|
37
|
-
* @summary Delete resources to catalog.
|
|
38
|
-
* @request POST:/bulk/catalog/removeResources
|
|
39
|
-
* @response `200` Success
|
|
40
|
-
*/
|
|
41
|
-
batchDeleteResourcesFromCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
42
9
|
/**
|
|
43
10
|
* No description
|
|
44
11
|
*
|
|
@@ -49,5 +16,5 @@ export declare class BulkOperationsService extends Service {
|
|
|
49
16
|
* @request PUT:/bulk/resources/permissions
|
|
50
17
|
* @response `200` Success
|
|
51
18
|
*/
|
|
52
|
-
batchResourcesPermissionsSet(data:
|
|
19
|
+
batchResourcesPermissionsSet(data: BatchResourcesPermissionsSetPayload): Promise<BulkOperationResultDc[]>;
|
|
53
20
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCsvDataSchemaParams, GetDataSchemaParams, GetExcelDataSchemaParams, GetRasterAttributesParams, ImportDataSchema } from './data-contracts';
|
|
1
|
+
import { GetCsvDataSchemaParams, GetDataSchemaParams, GetExcelDataSchemaParams, GetKmlDataSchemaParams, GetRasterAttributesParams, ImportDataSchema } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -39,6 +39,17 @@ export declare class ImportService extends Service {
|
|
|
39
39
|
* @response `200` Success
|
|
40
40
|
*/
|
|
41
41
|
getCsvDataSchema(query: GetCsvDataSchemaParams): Promise<ImportDataSchema>;
|
|
42
|
+
/**
|
|
43
|
+
* No description
|
|
44
|
+
*
|
|
45
|
+
* @tags ImportService
|
|
46
|
+
* @name GetKmlDataSchema
|
|
47
|
+
* @operationId ImportServiceController_GetKmlDataSchema
|
|
48
|
+
* @summary Using a file uploaded to the file upload service, reads the kml file and returns the information about data schema of all layers in that file, available for import.
|
|
49
|
+
* @request GET:/import/kmlDataSchema
|
|
50
|
+
* @response `200` Success
|
|
51
|
+
*/
|
|
52
|
+
getKmlDataSchema(query: GetKmlDataSchemaParams): Promise<ImportDataSchema>;
|
|
42
53
|
/**
|
|
43
54
|
* No description
|
|
44
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyParams,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsPayload, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyParams, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesPayload, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GeometryDc, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersListParams, GetTilesLayerImageParams, IListResponse, LayerUpdateInfoDc, PagedFeaturesListDc, ProxyServiceInfoDc, PublishCompositeServicePayload, PublishLocalTileServicePayload, PublishPostgresLayerServicePayload, PublishPostgresTileCatalogServicePayload, PublishProxyServicePayload, PublishRemoteTileServicePayload, PublishStyledLayerServicePayload, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPermissionsPayload, SetPreviewPayload, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateCompositeServicePayload, UpdateFeaturePayload, UpdateLocalTileServicePayload, UpdatePostgresLayerServicePayload, UpdateProxyServicePayload, UpdateRemoteTileServicePayload, UpdateTileCatalogServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -6,6 +6,29 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class LayersService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Layers
|
|
13
|
+
* @name GetLayerInfo
|
|
14
|
+
* @operationId LayersController_GetLayerInfoAsync
|
|
15
|
+
* @summary Returns the layer information.
|
|
16
|
+
* @request GET:/layers/{name}
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
* @response `default` Error
|
|
19
|
+
*/
|
|
20
|
+
getLayerInfo(name: string): Promise<ServiceInfoDc | ResourceInfoDc>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags Layers
|
|
25
|
+
* @name DeleteResource
|
|
26
|
+
* @operationId LayersController_DeleteResource
|
|
27
|
+
* @summary Deletes resource.
|
|
28
|
+
* @request DELETE:/layers/{name}
|
|
29
|
+
* @response `200` Success
|
|
30
|
+
*/
|
|
31
|
+
deleteResource(name: string): Promise<void>;
|
|
9
32
|
/**
|
|
10
33
|
* No description
|
|
11
34
|
*
|
|
@@ -16,7 +39,7 @@ export declare class LayersService extends Service {
|
|
|
16
39
|
* @request GET:/layers
|
|
17
40
|
* @response `200` Success
|
|
18
41
|
*/
|
|
19
|
-
getLayersList(query: GetLayersListParams): Promise<
|
|
42
|
+
getLayersList(query: GetLayersListParams): Promise<ServiceListDc | IListResponse>;
|
|
20
43
|
/**
|
|
21
44
|
* No description
|
|
22
45
|
*
|
|
@@ -39,29 +62,6 @@ export declare class LayersService extends Service {
|
|
|
39
62
|
* @response `200` Success
|
|
40
63
|
*/
|
|
41
64
|
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags Layers
|
|
46
|
-
* @name GetLayerInfo
|
|
47
|
-
* @operationId LayersController_GetLayerInfo
|
|
48
|
-
* @summary Returns the layer information.
|
|
49
|
-
* @request GET:/layers/{name}
|
|
50
|
-
* @response `200` Success
|
|
51
|
-
* @response `default` Error
|
|
52
|
-
*/
|
|
53
|
-
getLayerInfo(name: string): Promise<ServiceInfoDc | TileServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | FailedServiceInfoDc | FeatureLayerServiceInfoDc | TileCatalogServiceInfoDc | CompositeServiceInfoDc>;
|
|
54
|
-
/**
|
|
55
|
-
* No description
|
|
56
|
-
*
|
|
57
|
-
* @tags Layers
|
|
58
|
-
* @name DeleteResource
|
|
59
|
-
* @operationId LayersController_DeleteResource
|
|
60
|
-
* @summary Deletes resource.
|
|
61
|
-
* @request DELETE:/layers/{name}
|
|
62
|
-
* @response `200` Success
|
|
63
|
-
*/
|
|
64
|
-
deleteResource(name: string): Promise<void>;
|
|
65
65
|
/**
|
|
66
66
|
* No description
|
|
67
67
|
*
|
|
@@ -72,7 +72,7 @@ export declare class LayersService extends Service {
|
|
|
72
72
|
* @request POST:/layers#type=ProxyService
|
|
73
73
|
* @response `default` Error
|
|
74
74
|
*/
|
|
75
|
-
publishProxyService(data:
|
|
75
|
+
publishProxyService(data: PublishProxyServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | ProxyServiceInfoDc>;
|
|
76
76
|
/**
|
|
77
77
|
* No description
|
|
78
78
|
*
|
|
@@ -83,7 +83,7 @@ export declare class LayersService extends Service {
|
|
|
83
83
|
* @request POST:/layers#type=RemoteTileService
|
|
84
84
|
* @response `default` Error
|
|
85
85
|
*/
|
|
86
|
-
publishRemoteTileService(data:
|
|
86
|
+
publishRemoteTileService(data: PublishRemoteTileServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | RemoteTileServiceInfoDc | TileServiceInfoDc>;
|
|
87
87
|
/**
|
|
88
88
|
* No description
|
|
89
89
|
*
|
|
@@ -94,7 +94,7 @@ export declare class LayersService extends Service {
|
|
|
94
94
|
* @request POST:/layers#type=LocalTileService
|
|
95
95
|
* @response `default` Error
|
|
96
96
|
*/
|
|
97
|
-
publishLocalTileService(data:
|
|
97
|
+
publishLocalTileService(data: PublishLocalTileServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | TileServiceInfoDc>;
|
|
98
98
|
/**
|
|
99
99
|
* No description
|
|
100
100
|
*
|
|
@@ -105,7 +105,7 @@ export declare class LayersService extends Service {
|
|
|
105
105
|
* @request POST:/layers#type=PostgresLayerService
|
|
106
106
|
* @response `default` Error
|
|
107
107
|
*/
|
|
108
|
-
publishPostgresLayerService(data:
|
|
108
|
+
publishPostgresLayerService(data: PublishPostgresLayerServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | FeatureLayerServiceInfoDc>;
|
|
109
109
|
/**
|
|
110
110
|
* No description
|
|
111
111
|
*
|
|
@@ -116,7 +116,7 @@ export declare class LayersService extends Service {
|
|
|
116
116
|
* @request POST:/layers#type=PostgresTileLayerService
|
|
117
117
|
* @response `default` Error
|
|
118
118
|
*/
|
|
119
|
-
publishPostgresTileCatalogService(data:
|
|
119
|
+
publishPostgresTileCatalogService(data: PublishPostgresTileCatalogServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | FeatureLayerServiceInfoDc>;
|
|
120
120
|
/**
|
|
121
121
|
* No description
|
|
122
122
|
*
|
|
@@ -127,7 +127,7 @@ export declare class LayersService extends Service {
|
|
|
127
127
|
* @request PATCH:/layers/{name}#type=ProxyService
|
|
128
128
|
* @response `default` Error
|
|
129
129
|
*/
|
|
130
|
-
updateProxyService(name: string, data:
|
|
130
|
+
updateProxyService(name: string, data: UpdateProxyServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | ProxyServiceInfoDc>;
|
|
131
131
|
/**
|
|
132
132
|
* No description
|
|
133
133
|
*
|
|
@@ -138,7 +138,7 @@ export declare class LayersService extends Service {
|
|
|
138
138
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
139
139
|
* @response `default` Error
|
|
140
140
|
*/
|
|
141
|
-
updateTileCatalogService(name: string, data:
|
|
141
|
+
updateTileCatalogService(name: string, data: UpdateTileCatalogServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | TileServiceInfoDc>;
|
|
142
142
|
/**
|
|
143
143
|
* No description
|
|
144
144
|
*
|
|
@@ -149,7 +149,7 @@ export declare class LayersService extends Service {
|
|
|
149
149
|
* @request POST:/layers#type=StyledFeatureLayer
|
|
150
150
|
* @response `default` Error
|
|
151
151
|
*/
|
|
152
|
-
publishStyledLayerService(data:
|
|
152
|
+
publishStyledLayerService(data: PublishStyledLayerServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | FeatureLayerServiceInfoDc>;
|
|
153
153
|
/**
|
|
154
154
|
* No description
|
|
155
155
|
*
|
|
@@ -160,7 +160,7 @@ export declare class LayersService extends Service {
|
|
|
160
160
|
* @request POST:/layers#type=CompositeService
|
|
161
161
|
* @response `default` Error
|
|
162
162
|
*/
|
|
163
|
-
publishCompositeService(data:
|
|
163
|
+
publishCompositeService(data: PublishCompositeServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | CompositeServiceInfoDc>;
|
|
164
164
|
/**
|
|
165
165
|
* No description
|
|
166
166
|
*
|
|
@@ -171,7 +171,7 @@ export declare class LayersService extends Service {
|
|
|
171
171
|
* @request PATCH:/layers/{name}#type=RemoteTileService
|
|
172
172
|
* @response `default` Error
|
|
173
173
|
*/
|
|
174
|
-
updateRemoteTileService(name: string, data:
|
|
174
|
+
updateRemoteTileService(name: string, data: UpdateRemoteTileServicePayload): Promise<RemoteTileServiceInfo>;
|
|
175
175
|
/**
|
|
176
176
|
* No description
|
|
177
177
|
*
|
|
@@ -182,7 +182,7 @@ export declare class LayersService extends Service {
|
|
|
182
182
|
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
183
183
|
* @response `default` Error
|
|
184
184
|
*/
|
|
185
|
-
updateLocalTileService(name: string, data:
|
|
185
|
+
updateLocalTileService(name: string, data: UpdateLocalTileServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | TileServiceInfoDc>;
|
|
186
186
|
/**
|
|
187
187
|
* No description
|
|
188
188
|
*
|
|
@@ -193,7 +193,7 @@ export declare class LayersService extends Service {
|
|
|
193
193
|
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
194
194
|
* @response `default` Error
|
|
195
195
|
*/
|
|
196
|
-
updatePostgresLayerService(name: string, data:
|
|
196
|
+
updatePostgresLayerService(name: string, data: UpdatePostgresLayerServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | FeatureLayerServiceInfoDc>;
|
|
197
197
|
/**
|
|
198
198
|
* No description
|
|
199
199
|
*
|
|
@@ -204,7 +204,7 @@ export declare class LayersService extends Service {
|
|
|
204
204
|
* @request PATCH:/layers/{name}#type=CompositeService
|
|
205
205
|
* @response `default` Error
|
|
206
206
|
*/
|
|
207
|
-
updateCompositeService(name: string, data:
|
|
207
|
+
updateCompositeService(name: string, data: UpdateCompositeServicePayload): Promise<ServiceInfoDc | ResourceInfoDc | CompositeServiceInfoDc>;
|
|
208
208
|
/**
|
|
209
209
|
* No description
|
|
210
210
|
*
|
|
@@ -215,7 +215,7 @@ export declare class LayersService extends Service {
|
|
|
215
215
|
* @request GET:/layers/{name}/reload
|
|
216
216
|
* @response `default` Error
|
|
217
217
|
*/
|
|
218
|
-
reloadService(name: string): Promise<ServiceInfoDc |
|
|
218
|
+
reloadService(name: string): Promise<ServiceInfoDc | ResourceInfoDc>;
|
|
219
219
|
/**
|
|
220
220
|
* No description
|
|
221
221
|
*
|
|
@@ -226,7 +226,7 @@ export declare class LayersService extends Service {
|
|
|
226
226
|
* @request GET:/layers/{name}/features
|
|
227
227
|
* @response `200` Success
|
|
228
228
|
*/
|
|
229
|
-
getFeatures({ name, ...query }: GetFeaturesParams): Promise<
|
|
229
|
+
getFeatures({ name, ...query }: GetFeaturesParams): Promise<IListResponse | PagedFeaturesListDc>;
|
|
230
230
|
/**
|
|
231
231
|
* No description
|
|
232
232
|
*
|
|
@@ -270,7 +270,7 @@ export declare class LayersService extends Service {
|
|
|
270
270
|
* @request GET:/layers/{name}/features/contains
|
|
271
271
|
* @response `200` Success
|
|
272
272
|
*/
|
|
273
|
-
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<
|
|
273
|
+
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<IListResponse | PagedFeaturesListDc>;
|
|
274
274
|
/**
|
|
275
275
|
* No description
|
|
276
276
|
*
|
|
@@ -336,7 +336,7 @@ export declare class LayersService extends Service {
|
|
|
336
336
|
* @request GET:/layers/{name}/extent
|
|
337
337
|
* @response `200` Success
|
|
338
338
|
*/
|
|
339
|
-
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<EnvelopeDc>;
|
|
339
|
+
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<GeometryDc | EnvelopeDc>;
|
|
340
340
|
/**
|
|
341
341
|
* No description
|
|
342
342
|
*
|
|
@@ -370,6 +370,17 @@ export declare class LayersService extends Service {
|
|
|
370
370
|
* @response `200` Success
|
|
371
371
|
*/
|
|
372
372
|
deleteFeatures({ name, ...query }: DeleteFeaturesParams): Promise<LayerUpdateInfoDc>;
|
|
373
|
+
/**
|
|
374
|
+
* No description
|
|
375
|
+
*
|
|
376
|
+
* @tags Layers
|
|
377
|
+
* @name DeleteByCondition
|
|
378
|
+
* @operationId LayersController_DeleteByCondition
|
|
379
|
+
* @summary Delete a list of features by condition with exclude given ids.
|
|
380
|
+
* @request DELETE:/layers/{name}/features/deleteByCondition
|
|
381
|
+
* @response `200` Success
|
|
382
|
+
*/
|
|
383
|
+
deleteByCondition({ name, ...query }: DeleteByConditionParams): Promise<LayerUpdateInfoDc>;
|
|
373
384
|
/**
|
|
374
385
|
* No description
|
|
375
386
|
*
|
|
@@ -391,7 +402,7 @@ export declare class LayersService extends Service {
|
|
|
391
402
|
* @request GET:/layers/{name}/classify
|
|
392
403
|
* @response `200` Success
|
|
393
404
|
*/
|
|
394
|
-
classify({ name, ...query }: ClassifyParams): Promise<
|
|
405
|
+
classify({ name, ...query }: ClassifyParams): Promise<void>;
|
|
395
406
|
/**
|
|
396
407
|
* No description
|
|
397
408
|
*
|
|
@@ -435,7 +446,7 @@ export declare class LayersService extends Service {
|
|
|
435
446
|
* @request POST:/layers/{name}/features/edit-attributes
|
|
436
447
|
* @response `200` Success
|
|
437
448
|
*/
|
|
438
|
-
editAttributes(name: string, data:
|
|
449
|
+
editAttributes(name: string, data: EditAttributesPayload): Promise<LayerUpdateInfoDc>;
|
|
439
450
|
/**
|
|
440
451
|
* No description
|
|
441
452
|
*
|
|
@@ -535,7 +546,7 @@ export declare class LayersService extends Service {
|
|
|
535
546
|
* @request POST:/layers/{name}/permissions
|
|
536
547
|
* @response `200` Success
|
|
537
548
|
*/
|
|
538
|
-
addPermissions(name: string, data:
|
|
549
|
+
addPermissions(name: string, data: AddPermissionsPayload): Promise<AccessControlListDc>;
|
|
539
550
|
/**
|
|
540
551
|
* No description
|
|
541
552
|
*
|
|
@@ -546,7 +557,7 @@ export declare class LayersService extends Service {
|
|
|
546
557
|
* @request PUT:/layers/{name}/permissions
|
|
547
558
|
* @response `200` Success
|
|
548
559
|
*/
|
|
549
|
-
setPermissions(name: string, data:
|
|
560
|
+
setPermissions(name: string, data: SetPermissionsPayload): Promise<AccessControlListDc>;
|
|
550
561
|
/**
|
|
551
562
|
* No description
|
|
552
563
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateNamespaceParams, GetNamespacesParams, ListResponseNamespaceInfoDc, NamespaceInfoDc } from './data-contracts';
|
|
1
|
+
import { CreateNamespaceParams, GetNamespacesParams, IListResponse, 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 | IListResponse>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -17,6 +17,28 @@ export declare class ProjectsService extends Service {
|
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
19
|
getProjectLayersExtendedInfo(name: string): Promise<ExtendedProjectLayersInfo>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags Projects
|
|
24
|
+
* @name CreateShareProject
|
|
25
|
+
* @operationId ProjectsController_CreateShareProject
|
|
26
|
+
* @summary Create shared project.
|
|
27
|
+
* @request POST:/projects/{name}/share
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
createShareProject(name: string, data: CreateShareProjectPayload): Promise<SharedProjectInfoDc | ResourceInfoDc | ServiceInfoDc | CompositeServiceInfoDc>;
|
|
31
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags Projects
|
|
35
|
+
* @name RemoveShareProject
|
|
36
|
+
* @operationId ProjectsController_RemoveShareProject
|
|
37
|
+
* @summary Delete shared project.
|
|
38
|
+
* @request DELETE:/projects/{name}/share
|
|
39
|
+
* @response `200` Success
|
|
40
|
+
*/
|
|
41
|
+
removeShareProject(name: string): Promise<void>;
|
|
20
42
|
/**
|
|
21
43
|
* No description
|
|
22
44
|
*
|
|
@@ -27,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
27
49
|
* @request GET:/projects
|
|
28
50
|
* @response `200` Success
|
|
29
51
|
*/
|
|
30
|
-
getProjectsList(query: GetProjectsListParams): Promise<
|
|
52
|
+
getProjectsList(query: GetProjectsListParams): Promise<ListResponseProjectInfoDc | IListResponse>;
|
|
31
53
|
/**
|
|
32
54
|
* No description
|
|
33
55
|
*
|
|
@@ -38,7 +60,7 @@ export declare class ProjectsService extends Service {
|
|
|
38
60
|
* @request POST:/projects
|
|
39
61
|
* @response `200` Success
|
|
40
62
|
*/
|
|
41
|
-
createProject(data:
|
|
63
|
+
createProject(data: CreateProjectPayload): Promise<CreateProjectPayload>;
|
|
42
64
|
/**
|
|
43
65
|
* No description
|
|
44
66
|
*
|
|
@@ -61,28 +83,6 @@ export declare class ProjectsService extends Service {
|
|
|
61
83
|
* @response `200` Success
|
|
62
84
|
*/
|
|
63
85
|
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
64
|
-
/**
|
|
65
|
-
* No description
|
|
66
|
-
*
|
|
67
|
-
* @tags Projects
|
|
68
|
-
* @name CreateShareProject
|
|
69
|
-
* @operationId ProjectsController_CreateShareProject
|
|
70
|
-
* @summary Create shared project.
|
|
71
|
-
* @request POST:/projects/{name}/share
|
|
72
|
-
* @response `200` Success
|
|
73
|
-
*/
|
|
74
|
-
createShareProject(name: string, data: SharedProjectConfigurationDc): Promise<SharedProjectInfoDc>;
|
|
75
|
-
/**
|
|
76
|
-
* No description
|
|
77
|
-
*
|
|
78
|
-
* @tags Projects
|
|
79
|
-
* @name RemoveShareProject
|
|
80
|
-
* @operationId ProjectsController_RemoveShareProject
|
|
81
|
-
* @summary Delete shared project.
|
|
82
|
-
* @request DELETE:/projects/{name}/share
|
|
83
|
-
* @response `200` Success
|
|
84
|
-
*/
|
|
85
|
-
removeShareProject(name: string): Promise<void>;
|
|
86
86
|
/**
|
|
87
87
|
* No description
|
|
88
88
|
*
|
|
@@ -93,7 +93,7 @@ export declare class ProjectsService extends Service {
|
|
|
93
93
|
* @request PATCH:/projects/{name}
|
|
94
94
|
* @response `200` Success
|
|
95
95
|
*/
|
|
96
|
-
updateProject(name: string, data:
|
|
96
|
+
updateProject(name: string, data: UpdateProjectPayload): Promise<CreateProjectPayload>;
|
|
97
97
|
/**
|
|
98
98
|
* No description
|
|
99
99
|
*
|
|
@@ -104,7 +104,7 @@ export declare class ProjectsService extends Service {
|
|
|
104
104
|
* @request GET:/projects/{name}
|
|
105
105
|
* @response `200` Success
|
|
106
106
|
*/
|
|
107
|
-
getProjectInfo(name: string): Promise<
|
|
107
|
+
getProjectInfo(name: string): Promise<CreateProjectPayload>;
|
|
108
108
|
/**
|
|
109
109
|
* No description
|
|
110
110
|
*
|
|
@@ -192,7 +192,7 @@ export declare class ProjectsService extends Service {
|
|
|
192
192
|
* @request POST:/projects/{name}/permissions
|
|
193
193
|
* @response `200` Success
|
|
194
194
|
*/
|
|
195
|
-
addPermissions(name: string, data:
|
|
195
|
+
addPermissions(name: string, data: AddPermissionsBody): Promise<AccessControlListDc>;
|
|
196
196
|
/**
|
|
197
197
|
* No description
|
|
198
198
|
*
|
|
@@ -203,7 +203,7 @@ export declare class ProjectsService extends Service {
|
|
|
203
203
|
* @request PUT:/projects/{name}/permissions
|
|
204
204
|
* @response `200` Success
|
|
205
205
|
*/
|
|
206
|
-
setPermissions(name: string, data:
|
|
206
|
+
setPermissions(name: string, data: SetPermissionsBody): Promise<AccessControlListDc>;
|
|
207
207
|
/**
|
|
208
208
|
* No description
|
|
209
209
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CheckLimitsParams, CopyResourceResultDc, CopyResourcesPayload, WorkspaceLimitsDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -6,138 +6,6 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class ResourceCatalogService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags ResourceCatalog
|
|
13
|
-
* @name GetProjects
|
|
14
|
-
* @operationId ResourceCatalogController_GetProjectsAsync
|
|
15
|
-
* @summary Returns list of the available tables.
|
|
16
|
-
* @request GET:/resources/projects
|
|
17
|
-
* @response `200` Success
|
|
18
|
-
*/
|
|
19
|
-
getProjects(query: GetProjectsParams): Promise<ListResponseProjectInfoPubDc>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags ResourceCatalog
|
|
24
|
-
* @name GetTables
|
|
25
|
-
* @operationId ResourceCatalogController_GetTablesAsync
|
|
26
|
-
* @summary Returns list of the available resources.
|
|
27
|
-
* @request GET:/resources/tables
|
|
28
|
-
* @response `200` Success
|
|
29
|
-
*/
|
|
30
|
-
getTables(query: GetTablesParams): Promise<ListResponseTableInfoPubDc>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags ResourceCatalog
|
|
35
|
-
* @name GetLayers
|
|
36
|
-
* @operationId ResourceCatalogController_GetLayersAsync
|
|
37
|
-
* @summary Returns list of the available layers.
|
|
38
|
-
* @request GET:/resources/layers
|
|
39
|
-
* @response `200` Success
|
|
40
|
-
*/
|
|
41
|
-
getLayers(query: GetLayersParams): Promise<ListResponseServiceInfoPubDc>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags ResourceCatalog
|
|
46
|
-
* @name AddResource
|
|
47
|
-
* @operationId ResourceCatalogController_AddResource
|
|
48
|
-
* @summary Adds resources to catalog.
|
|
49
|
-
* @request POST:/resources/{resourceType}/add
|
|
50
|
-
* @response `200` Success
|
|
51
|
-
*/
|
|
52
|
-
addResource(resourceType: ResourceTypeLink, data: CatalogDataDc): Promise<void>;
|
|
53
|
-
/**
|
|
54
|
-
* No description
|
|
55
|
-
*
|
|
56
|
-
* @tags ResourceCatalog
|
|
57
|
-
* @name AddResources
|
|
58
|
-
* @operationId ResourceCatalogController_AddResources
|
|
59
|
-
* @summary Adds resources to the user catalog.
|
|
60
|
-
* @request POST:/resources/add
|
|
61
|
-
* @response `200` Success
|
|
62
|
-
*/
|
|
63
|
-
addResources(query: AddResourcesParams, data: AddResourcesPayload): Promise<void>;
|
|
64
|
-
/**
|
|
65
|
-
* No description
|
|
66
|
-
*
|
|
67
|
-
* @tags ResourceCatalog
|
|
68
|
-
* @name RemoveResource
|
|
69
|
-
* @operationId ResourceCatalogController_RemoveResource
|
|
70
|
-
* @summary Removes resource from catalog for a given users list.
|
|
71
|
-
* @request POST:/resources/{resourceType}/remove
|
|
72
|
-
* @response `200` Success
|
|
73
|
-
*/
|
|
74
|
-
removeResource(resourceType: ResourceTypeLink, data: CatalogDataDc): Promise<void>;
|
|
75
|
-
/**
|
|
76
|
-
* No description
|
|
77
|
-
*
|
|
78
|
-
* @tags ResourceCatalog
|
|
79
|
-
* @name GetNewResources
|
|
80
|
-
* @operationId ResourceCatalogController_GetNewResources
|
|
81
|
-
* @summary Get new resources count grouped by types.
|
|
82
|
-
* @request GET:/resources/getNewResources
|
|
83
|
-
* @response `200` Success
|
|
84
|
-
*/
|
|
85
|
-
getNewResources(): Promise<NewResourcesTypesDc[]>;
|
|
86
|
-
/**
|
|
87
|
-
* No description
|
|
88
|
-
*
|
|
89
|
-
* @tags ResourceCatalog
|
|
90
|
-
* @name TouchResources
|
|
91
|
-
* @operationId ResourceCatalogController_TouchResources
|
|
92
|
-
* @summary For current user marks a given list of the resources as used.
|
|
93
|
-
* @request POST:/resources/{resourceType}/touchResources
|
|
94
|
-
* @response `200` Success
|
|
95
|
-
*/
|
|
96
|
-
touchResources(resourceType: ResourceTypeLink, data: TouchResourcesPayload): Promise<void>;
|
|
97
|
-
/**
|
|
98
|
-
* No description
|
|
99
|
-
*
|
|
100
|
-
* @tags ResourceCatalog
|
|
101
|
-
* @name ShareResources
|
|
102
|
-
* @operationId ResourceCatalogController_ShareResources
|
|
103
|
-
* @summary Share given resources for all users and adds it to common catalog.
|
|
104
|
-
* @request POST:/resources/{resourceType}/shareAll
|
|
105
|
-
* @response `200` Success
|
|
106
|
-
*/
|
|
107
|
-
shareResources(resourceType: ResourceTypeLink, data: ShareResourcesPayload): Promise<void>;
|
|
108
|
-
/**
|
|
109
|
-
* No description
|
|
110
|
-
*
|
|
111
|
-
* @tags ResourceCatalog
|
|
112
|
-
* @name UnshareResources
|
|
113
|
-
* @operationId ResourceCatalogController_UnshareResources
|
|
114
|
-
* @summary Unshare given resources for all users and removes it from common catalog.
|
|
115
|
-
* @request POST:/resources/{resourceType}/unshareAll
|
|
116
|
-
* @response `200` Success
|
|
117
|
-
*/
|
|
118
|
-
unshareResources(resourceType: ResourceTypeLink, data: UnshareResourcesPayload): Promise<void>;
|
|
119
|
-
/**
|
|
120
|
-
* No description
|
|
121
|
-
*
|
|
122
|
-
* @tags ResourceCatalog
|
|
123
|
-
* @name GetResource
|
|
124
|
-
* @operationId ResourceCatalogController_GetResource
|
|
125
|
-
* @summary Returns the detailed information about resource in catalog.
|
|
126
|
-
* @request GET:/resources/{resourceType}/{name}
|
|
127
|
-
* @response `200` Success
|
|
128
|
-
*/
|
|
129
|
-
getResource(resourceType: ResourceTypeLink, name: string): Promise<ExtendedResourceInfoDc>;
|
|
130
|
-
/**
|
|
131
|
-
* No description
|
|
132
|
-
*
|
|
133
|
-
* @tags ResourceCatalog
|
|
134
|
-
* @name RemoveResource1
|
|
135
|
-
* @operationId ResourceCatalogController_RemoveResource_1
|
|
136
|
-
* @summary Removes resource from catalog for a given users list.
|
|
137
|
-
* @request DELETE:/resources/{resourceType}
|
|
138
|
-
* @response `200` Success
|
|
139
|
-
*/
|
|
140
|
-
removeResource1({ resourceType, ...query }: RemoveResource1Params): Promise<void>;
|
|
141
9
|
/**
|
|
142
10
|
* No description
|
|
143
11
|
*
|
|
@@ -148,7 +16,7 @@ export declare class ResourceCatalogService extends Service {
|
|
|
148
16
|
* @request GET:/resources/checkLimits
|
|
149
17
|
* @response `200` Success
|
|
150
18
|
*/
|
|
151
|
-
checkLimits(): Promise<WorkspaceLimitsDc>;
|
|
19
|
+
checkLimits(query: CheckLimitsParams): Promise<WorkspaceLimitsDc>;
|
|
152
20
|
/**
|
|
153
21
|
* No description
|
|
154
22
|
*
|