@evergis/api 3.0.92 → 3.0.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +21 -21
- 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 +56 -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__/WfsServerService.d.ts +23 -1
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +1128 -2135
- package/dist/api.cjs.development.js +83 -19
- 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 +292 -120
- 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/Statistic.d.ts +2 -2
- package/dist/services/Tables.d.ts +3 -3
- package/package.json +2 -2
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 Kirill Protasov
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Kirill Protasov
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
# @evergis/api
|
|
2
|
-
|
|
3
|
-
```javascript
|
|
4
|
-
import { Api } from '@evergis/api';
|
|
5
|
-
|
|
6
|
-
const api = new Api({
|
|
7
|
-
url: '/',
|
|
8
|
-
});
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Possible Environment variables
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
NODE_ENV = "development" | "test" | "production"
|
|
16
|
-
URL = "string"
|
|
17
|
-
LOGIN = "string"
|
|
18
|
-
PASSWORD = "string"
|
|
19
|
-
WORKSPACE = "string"
|
|
20
|
-
|
|
21
|
-
```
|
|
1
|
+
# @evergis/api
|
|
2
|
+
|
|
3
|
+
```javascript
|
|
4
|
+
import { Api } from '@evergis/api';
|
|
5
|
+
|
|
6
|
+
const api = new Api({
|
|
7
|
+
url: '/',
|
|
8
|
+
});
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Possible Environment variables
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
NODE_ENV = "development" | "test" | "production"
|
|
16
|
+
URL = "string"
|
|
17
|
+
LOGIN = "string"
|
|
18
|
+
PASSWORD = "string"
|
|
19
|
+
WORKSPACE = "string"
|
|
20
|
+
|
|
21
|
+
```
|
|
@@ -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, LinearServiceConfigurationDc, 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,29 @@ 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>;
|
|
86
|
+
/**
|
|
87
|
+
* No description
|
|
88
|
+
*
|
|
89
|
+
* @tags Layers
|
|
90
|
+
* @name PublishLinearService
|
|
91
|
+
* @operationId LayersController_PublishLinearService
|
|
92
|
+
* @summary Creates new Linear Service.
|
|
93
|
+
* @request POST:/layers#type=LinearService
|
|
94
|
+
* @response `200` Success
|
|
95
|
+
*/
|
|
96
|
+
publishLinearService(data: LinearServiceConfigurationDc): Promise<void>;
|
|
75
97
|
/**
|
|
76
98
|
* No description
|
|
77
99
|
*
|
|
@@ -82,7 +104,7 @@ export declare class LayersService extends Service {
|
|
|
82
104
|
* @request POST:/layers#type=RemoteTileService
|
|
83
105
|
* @response `default` Error
|
|
84
106
|
*/
|
|
85
|
-
publishRemoteTileService(data:
|
|
107
|
+
publishRemoteTileService(data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfoDc>;
|
|
86
108
|
/**
|
|
87
109
|
* No description
|
|
88
110
|
*
|
|
@@ -93,7 +115,7 @@ export declare class LayersService extends Service {
|
|
|
93
115
|
* @request POST:/layers#type=LocalTileService
|
|
94
116
|
* @response `default` Error
|
|
95
117
|
*/
|
|
96
|
-
publishLocalTileService(data:
|
|
118
|
+
publishLocalTileService(data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
97
119
|
/**
|
|
98
120
|
* No description
|
|
99
121
|
*
|
|
@@ -104,7 +126,7 @@ export declare class LayersService extends Service {
|
|
|
104
126
|
* @request POST:/layers#type=PostgresLayerService
|
|
105
127
|
* @response `default` Error
|
|
106
128
|
*/
|
|
107
|
-
publishPostgresLayerService(data:
|
|
129
|
+
publishPostgresLayerService(data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
108
130
|
/**
|
|
109
131
|
* No description
|
|
110
132
|
*
|
|
@@ -115,7 +137,7 @@ export declare class LayersService extends Service {
|
|
|
115
137
|
* @request POST:/layers#type=PostgresTileLayerService
|
|
116
138
|
* @response `default` Error
|
|
117
139
|
*/
|
|
118
|
-
publishPostgresTileCatalogService(data:
|
|
140
|
+
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
119
141
|
/**
|
|
120
142
|
* No description
|
|
121
143
|
*
|
|
@@ -126,7 +148,7 @@ export declare class LayersService extends Service {
|
|
|
126
148
|
* @request PATCH:/layers/{name}#type=ProxyService
|
|
127
149
|
* @response `default` Error
|
|
128
150
|
*/
|
|
129
|
-
updateProxyService(name: string, data:
|
|
151
|
+
updateProxyService(name: string, data: ProxyServiceConfigurationDc): Promise<ProxyServiceInfoDc>;
|
|
130
152
|
/**
|
|
131
153
|
* No description
|
|
132
154
|
*
|
|
@@ -137,7 +159,7 @@ export declare class LayersService extends Service {
|
|
|
137
159
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
138
160
|
* @response `default` Error
|
|
139
161
|
*/
|
|
140
|
-
updateTileCatalogService(name: string, data:
|
|
162
|
+
updateTileCatalogService(name: string, data: PostgresTileCatalogServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
141
163
|
/**
|
|
142
164
|
* No description
|
|
143
165
|
*
|
|
@@ -148,7 +170,7 @@ export declare class LayersService extends Service {
|
|
|
148
170
|
* @request POST:/layers#type=StyledFeatureLayer
|
|
149
171
|
* @response `default` Error
|
|
150
172
|
*/
|
|
151
|
-
publishStyledLayerService(data:
|
|
173
|
+
publishStyledLayerService(data: StyledLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
152
174
|
/**
|
|
153
175
|
* No description
|
|
154
176
|
*
|
|
@@ -159,7 +181,7 @@ export declare class LayersService extends Service {
|
|
|
159
181
|
* @request POST:/layers#type=CompositeService
|
|
160
182
|
* @response `default` Error
|
|
161
183
|
*/
|
|
162
|
-
publishCompositeService(data:
|
|
184
|
+
publishCompositeService(data: CompositeServiceConfigurationDc): Promise<CompositeServiceInfoDc>;
|
|
163
185
|
/**
|
|
164
186
|
* No description
|
|
165
187
|
*
|
|
@@ -170,7 +192,7 @@ export declare class LayersService extends Service {
|
|
|
170
192
|
* @request PATCH:/layers/{name}#type=RemoteTileService
|
|
171
193
|
* @response `default` Error
|
|
172
194
|
*/
|
|
173
|
-
updateRemoteTileService(name: string, data:
|
|
195
|
+
updateRemoteTileService(name: string, data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfo>;
|
|
174
196
|
/**
|
|
175
197
|
* No description
|
|
176
198
|
*
|
|
@@ -181,7 +203,7 @@ export declare class LayersService extends Service {
|
|
|
181
203
|
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
182
204
|
* @response `default` Error
|
|
183
205
|
*/
|
|
184
|
-
updateLocalTileService(name: string, data:
|
|
206
|
+
updateLocalTileService(name: string, data: LocalTileServiceConfigurationDc): Promise<TileServiceInfoDc | RemoteTileServiceInfoDc>;
|
|
185
207
|
/**
|
|
186
208
|
* No description
|
|
187
209
|
*
|
|
@@ -192,7 +214,7 @@ export declare class LayersService extends Service {
|
|
|
192
214
|
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
193
215
|
* @response `default` Error
|
|
194
216
|
*/
|
|
195
|
-
updatePostgresLayerService(name: string, data:
|
|
217
|
+
updatePostgresLayerService(name: string, data: PostgresLayerServiceConfigurationDc): Promise<FeatureLayerServiceInfoDc>;
|
|
196
218
|
/**
|
|
197
219
|
* No description
|
|
198
220
|
*
|
|
@@ -203,7 +225,7 @@ export declare class LayersService extends Service {
|
|
|
203
225
|
* @request PATCH:/layers/{name}#type=CompositeService
|
|
204
226
|
* @response `default` Error
|
|
205
227
|
*/
|
|
206
|
-
updateCompositeService(name: string, data:
|
|
228
|
+
updateCompositeService(name: string, data: CompositeServiceConfigurationDc): Promise<CompositeServiceInfoDc>;
|
|
207
229
|
/**
|
|
208
230
|
* No description
|
|
209
231
|
*
|
|
@@ -214,7 +236,7 @@ export declare class LayersService extends Service {
|
|
|
214
236
|
* @request GET:/layers/{name}/reload
|
|
215
237
|
* @response `default` Error
|
|
216
238
|
*/
|
|
217
|
-
reloadService(name: string): Promise<
|
|
239
|
+
reloadService(name: string): Promise<ResourceInfoDc | ServiceInfoDc>;
|
|
218
240
|
/**
|
|
219
241
|
* No description
|
|
220
242
|
*
|
|
@@ -225,7 +247,7 @@ export declare class LayersService extends Service {
|
|
|
225
247
|
* @request GET:/layers/{name}/features
|
|
226
248
|
* @response `200` Success
|
|
227
249
|
*/
|
|
228
|
-
getFeatures({ name, ...query }: GetFeaturesParams): Promise<
|
|
250
|
+
getFeatures({ name, ...query }: GetFeaturesParams): Promise<import("./data-contracts").ListResponseFeatureDc>;
|
|
229
251
|
/**
|
|
230
252
|
* No description
|
|
231
253
|
*
|
|
@@ -269,7 +291,7 @@ export declare class LayersService extends Service {
|
|
|
269
291
|
* @request GET:/layers/{name}/features/contains
|
|
270
292
|
* @response `200` Success
|
|
271
293
|
*/
|
|
272
|
-
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<
|
|
294
|
+
featuresContains({ name, ...query }: FeaturesContainsParams): Promise<import("./data-contracts").ListResponseFeatureDc>;
|
|
273
295
|
/**
|
|
274
296
|
* No description
|
|
275
297
|
*
|
|
@@ -335,7 +357,7 @@ export declare class LayersService extends Service {
|
|
|
335
357
|
* @request GET:/layers/{name}/extent
|
|
336
358
|
* @response `200` Success
|
|
337
359
|
*/
|
|
338
|
-
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<
|
|
360
|
+
getLayerExtent({ name, ...query }: GetLayerExtentParams): Promise<EnvelopeDc>;
|
|
339
361
|
/**
|
|
340
362
|
* No description
|
|
341
363
|
*
|
|
@@ -445,7 +467,7 @@ export declare class LayersService extends Service {
|
|
|
445
467
|
* @request POST:/layers/{name}/features/edit-attributes
|
|
446
468
|
* @response `200` Success
|
|
447
469
|
*/
|
|
448
|
-
editAttributes(name: string, data:
|
|
470
|
+
editAttributes(name: string, data: EditAttributesInfoDc): Promise<LayerUpdateInfoDc>;
|
|
449
471
|
/**
|
|
450
472
|
* No description
|
|
451
473
|
*
|
|
@@ -469,6 +491,17 @@ export declare class LayersService extends Service {
|
|
|
469
491
|
* @response `400` Bad Request
|
|
470
492
|
*/
|
|
471
493
|
validateExpression({ layerName, ...query }: ValidateExpressionParams): Promise<ExpressionValidationResultDc>;
|
|
494
|
+
/**
|
|
495
|
+
* No description
|
|
496
|
+
*
|
|
497
|
+
* @tags Layers
|
|
498
|
+
* @name CreateRoute
|
|
499
|
+
* @operationId LayersController_CreateRoute
|
|
500
|
+
* @summary Create new route (feature) from source features.
|
|
501
|
+
* @request POST:/layers/{name}/createRoute
|
|
502
|
+
* @response `200` Success
|
|
503
|
+
*/
|
|
504
|
+
createRoute(name: string, data: RouteFeatureDc): Promise<LayerUpdateInfo>;
|
|
472
505
|
/**
|
|
473
506
|
* No description
|
|
474
507
|
*
|
|
@@ -545,7 +578,7 @@ export declare class LayersService extends Service {
|
|
|
545
578
|
* @request POST:/layers/{name}/permissions
|
|
546
579
|
* @response `200` Success
|
|
547
580
|
*/
|
|
548
|
-
addPermissions(name: string, data:
|
|
581
|
+
addPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
549
582
|
/**
|
|
550
583
|
* No description
|
|
551
584
|
*
|
|
@@ -556,7 +589,7 @@ export declare class LayersService extends Service {
|
|
|
556
589
|
* @request PUT:/layers/{name}/permissions
|
|
557
590
|
* @response `200` Success
|
|
558
591
|
*/
|
|
559
|
-
setPermissions(name: string, data:
|
|
592
|
+
setPermissions(name: string, data: AccessControlListDc): Promise<AccessControlListDc>;
|
|
560
593
|
/**
|
|
561
594
|
* No description
|
|
562
595
|
*
|
|
@@ -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, ClassifyParams2, 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: ClassifyParams2): Promise<ClassifyDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|