@evergis/api 3.0.64 → 3.0.67
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 +30 -30
- 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__/StatisticService.d.ts +20 -0
- package/dist/__generated__/StyleService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +34 -23
- package/dist/__generated__/ToolsService.d.ts +0 -312
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/data-contracts.d.ts +1964 -1903
- package/dist/api.cjs.development.js +180 -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 +227 -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 {
|
|
1
|
+
import { GetTaskListParams, StartAggregateTaskPayload, StartBufferTaskPayload, StartCopyTaskPayload, StartEditAttributesBatchPayload, StartFilterCopyTaskPayload, StartOverlayTaskPayload, StartPipelineTaskPayload, StartPrintTaskPayload, StartRouteTaskPayload, StartTilingTaskPayload, StartUnionTaskPayload, TaskInfoDc, TaskProgressDc, TaskStatusDataDc } 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: StartCopyTaskPayload): 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: StartAggregateTaskPayload): 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: StartBufferTaskPayload): 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: StartPrintTaskPayload): 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: StartTilingTaskPayload): 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: StartRouteTaskPayload): 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: StartUnionTaskPayload): 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: StartOverlayTaskPayload): 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: StartFilterCopyTaskPayload): 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: StartPipelineTaskPayload): 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: StartEditAttributesBatchPayload): Promise<TaskStatusDataDc>;
|
|
174
174
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams, GetUsersAndRolesParams, PolicyDc, RemovePolicyParams, SearchedUserDc, UserOrRoleDc } from './data-contracts';
|
|
1
|
+
import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams, GetUsersAndRolesParams, PolicyDc, RemovePolicyParams, SearchedUserDc, SetPolicyPayload, 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: SetPolicyPayload): Promise<void>;
|
|
75
75
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PositionDc, StatisticParams } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version v0.6.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class StatisticService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Statistic
|
|
13
|
+
* @name Statistic
|
|
14
|
+
* @operationId StatisticController_Statistic
|
|
15
|
+
* @summary Returns statistic result based on requested statistic type.
|
|
16
|
+
* @request POST:/statistics
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
statistic(query: StatisticParams): Promise<PositionDc>;
|
|
20
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StyleCreationResponseDc, StyleDc } from './data-contracts';
|
|
1
|
+
import { CreateStylePayload, StyleCreationResponseDc, StyleDc, UpdateStylePayload } 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: UpdateStylePayload): 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: CreateStylePayload): Promise<StyleCreationResponseDc>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams10, DeleteTableDataParams, FileUploadResponse, GetTableDataParams, GetTableListParams, GetUniqueDataRowsParams, IListResponse, ListResponseIEnumerable1, MapRemoteTableParams, MapRemoteTablePayload, MapTableParams, MapTablePayload, MapViewParams, MapViewPayload, ResourceDependenciesDc, SetPermissionsBatchInput, SetPermissionsInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTablePayload, WriteTableDataPayload } 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 TablesService extends Service {
|
|
|
16
16
|
* @request GET:/tables
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getTableList(query: GetTableListParams): Promise<
|
|
19
|
+
getTableList(query: GetTableListParams): Promise<TableListDc | IListResponse>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -27,7 +27,7 @@ export declare class TablesService extends Service {
|
|
|
27
27
|
* @request POST:/tables
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
createTable(data:
|
|
30
|
+
createTable(data: CreateTablePayload): Promise<CreateTablePayload>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -49,18 +49,7 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
53
|
-
/**
|
|
54
|
-
* No description
|
|
55
|
-
*
|
|
56
|
-
* @tags Tables
|
|
57
|
-
* @name DeleteResource
|
|
58
|
-
* @operationId TablesController_DeleteResource
|
|
59
|
-
* @summary Deletes resource.
|
|
60
|
-
* @request DELETE:/tables/{name}
|
|
61
|
-
* @response `200` Success
|
|
62
|
-
*/
|
|
63
|
-
deleteResource(name: string): Promise<void>;
|
|
52
|
+
deleteResources(query: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
|
|
64
53
|
/**
|
|
65
54
|
* No description
|
|
66
55
|
*
|
|
@@ -71,7 +60,7 @@ export declare class TablesService extends Service {
|
|
|
71
60
|
* @request PATCH:/tables/{name}
|
|
72
61
|
* @response `200` Success
|
|
73
62
|
*/
|
|
74
|
-
updateTable(name: string, data:
|
|
63
|
+
updateTable(name: string, data: UpdateTablePayload): Promise<CreateTablePayload>;
|
|
75
64
|
/**
|
|
76
65
|
* No description
|
|
77
66
|
*
|
|
@@ -82,7 +71,18 @@ export declare class TablesService extends Service {
|
|
|
82
71
|
* @request GET:/tables/{name}
|
|
83
72
|
* @response `200` Success
|
|
84
73
|
*/
|
|
85
|
-
getTableInfo(name: string): Promise<
|
|
74
|
+
getTableInfo(name: string): Promise<CreateTablePayload>;
|
|
75
|
+
/**
|
|
76
|
+
* No description
|
|
77
|
+
*
|
|
78
|
+
* @tags Tables
|
|
79
|
+
* @name DeleteResource
|
|
80
|
+
* @operationId TablesController_DeleteResource
|
|
81
|
+
* @summary Deletes resource.
|
|
82
|
+
* @request DELETE:/tables/{name}
|
|
83
|
+
* @response `200` Success
|
|
84
|
+
*/
|
|
85
|
+
deleteResource(name: string): Promise<void>;
|
|
86
86
|
/**
|
|
87
87
|
* No description
|
|
88
88
|
*
|
|
@@ -93,7 +93,18 @@ export declare class TablesService extends Service {
|
|
|
93
93
|
* @request GET:/tables/{name}/data
|
|
94
94
|
* @response `200` Success
|
|
95
95
|
*/
|
|
96
|
-
getTableData({ name, ...query }: GetTableDataParams): Promise<ListResponseIEnumerable1>;
|
|
96
|
+
getTableData({ name, ...query }: GetTableDataParams): Promise<IListResponse | ListResponseIEnumerable1>;
|
|
97
|
+
/**
|
|
98
|
+
* No description
|
|
99
|
+
*
|
|
100
|
+
* @tags Tables
|
|
101
|
+
* @name WriteTableData
|
|
102
|
+
* @operationId TablesController_WriteTableData
|
|
103
|
+
* @summary Adds the data to the table.
|
|
104
|
+
* @request POST:/tables/{name}/data
|
|
105
|
+
* @response `200` Success
|
|
106
|
+
*/
|
|
107
|
+
writeTableData(name: string, data: WriteTableDataPayload): Promise<void>;
|
|
97
108
|
/**
|
|
98
109
|
* No description
|
|
99
110
|
*
|
|
@@ -137,7 +148,7 @@ export declare class TablesService extends Service {
|
|
|
137
148
|
* @request POST:/tables/map-table#type=Table
|
|
138
149
|
* @response `200` Success
|
|
139
150
|
*/
|
|
140
|
-
mapTable(query: MapTableParams, data: MapTablePayload): Promise<
|
|
151
|
+
mapTable(query: MapTableParams, data: MapTablePayload): Promise<CreateTablePayload>;
|
|
141
152
|
/**
|
|
142
153
|
* No description
|
|
143
154
|
*
|
|
@@ -148,7 +159,7 @@ export declare class TablesService extends Service {
|
|
|
148
159
|
* @request POST:/tables/map-table#type=MaterializedView
|
|
149
160
|
* @response `200` Success
|
|
150
161
|
*/
|
|
151
|
-
mapView(query: MapViewParams, data:
|
|
162
|
+
mapView(query: MapViewParams, data: MapViewPayload): Promise<CreateTablePayload>;
|
|
152
163
|
/**
|
|
153
164
|
* No description
|
|
154
165
|
*
|
|
@@ -159,7 +170,7 @@ export declare class TablesService extends Service {
|
|
|
159
170
|
* @request POST:/tables/map-table#type=RemoteTable
|
|
160
171
|
* @response `200` Success
|
|
161
172
|
*/
|
|
162
|
-
mapRemoteTable(query: MapRemoteTableParams, data:
|
|
173
|
+
mapRemoteTable(query: MapRemoteTableParams, data: MapRemoteTablePayload): Promise<CreateTablePayload>;
|
|
163
174
|
/**
|
|
164
175
|
* No description
|
|
165
176
|
*
|
|
@@ -247,7 +258,7 @@ export declare class TablesService extends Service {
|
|
|
247
258
|
* @request POST:/tables/{name}/permissions
|
|
248
259
|
* @response `200` Success
|
|
249
260
|
*/
|
|
250
|
-
addPermissions(name: string, data:
|
|
261
|
+
addPermissions(name: string, data: AddPermissionsInput): Promise<AccessControlListDc>;
|
|
251
262
|
/**
|
|
252
263
|
* No description
|
|
253
264
|
*
|
|
@@ -258,7 +269,7 @@ export declare class TablesService extends Service {
|
|
|
258
269
|
* @request PUT:/tables/{name}/permissions
|
|
259
270
|
* @response `200` Success
|
|
260
271
|
*/
|
|
261
|
-
setPermissions(name: string, data:
|
|
272
|
+
setPermissions(name: string, data: SetPermissionsInput): Promise<AccessControlListDc>;
|
|
262
273
|
/**
|
|
263
274
|
* No description
|
|
264
275
|
*
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AccessControlListDc, CreateToolGroupDc, EditToolGroupDc, EditToolGroupsDc, EvaluatedToolDc, EvaluateToolParams, EvaluateToolPayload, ExecuteToolParams, ExecuteToolPayload, ExtendedToolDefinitionDc, GetGroupsInfoParams, GetGroupsParams, GetToolsListsParams, GetToolsNamesParams, GetToolsParams, LaunchToolInfoDc, ToolGroupInfoDc, ToolGroupItemDc, ToolInfoDc, ToolLaunchInfo, ToolResultInfoDc, ToolsPagedListDc, ToolStorageSettingsDc, UpdateToolGroupDc } from './data-contracts';
|
|
2
1
|
import { Service } from './Service';
|
|
3
2
|
/**
|
|
4
3
|
* @title Spatial Processing Core API
|
|
@@ -6,315 +5,4 @@ import { Service } from './Service';
|
|
|
6
5
|
* @baseUrl /sp
|
|
7
6
|
*/
|
|
8
7
|
export declare class ToolsService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags ToolsCatalog
|
|
13
|
-
* @name GetTools
|
|
14
|
-
* @operationId ToolsCatalogController_GetTools
|
|
15
|
-
* @summary Gets list of tools according the user permissions with given filter.
|
|
16
|
-
* @request GET:/tools
|
|
17
|
-
* @response `200` Success
|
|
18
|
-
*/
|
|
19
|
-
getTools(query: GetToolsParams): Promise<ToolsPagedListDc>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags ToolsCatalog
|
|
24
|
-
* @name CreateTool
|
|
25
|
-
* @operationId ToolsCatalogController_CreateTool
|
|
26
|
-
* @summary Creates geotool with given toolInfo.
|
|
27
|
-
* @request POST:/tools
|
|
28
|
-
* @response `200` Success
|
|
29
|
-
*/
|
|
30
|
-
createTool(data: ToolInfoDc): Promise<ToolInfoDc>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags ToolsCatalog
|
|
35
|
-
* @name LoadToolInfo
|
|
36
|
-
* @operationId ToolsCatalogController_LoadToolInfo
|
|
37
|
-
* @summary Loads description of the given tool name.
|
|
38
|
-
* @request GET:/tools/{name}/info
|
|
39
|
-
* @response `200` Success
|
|
40
|
-
*/
|
|
41
|
-
loadToolInfo(name: string): Promise<ExtendedToolDefinitionDc>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags ToolsCatalog
|
|
46
|
-
* @name LoadToolDefinition
|
|
47
|
-
* @operationId ToolsCatalogController_LoadToolDefinition
|
|
48
|
-
* @summary Loads description of the given tool name.
|
|
49
|
-
* @request GET:/tools/{name}
|
|
50
|
-
* @response `200` Success
|
|
51
|
-
*/
|
|
52
|
-
loadToolDefinition(name: string): Promise<ExtendedToolDefinitionDc>;
|
|
53
|
-
/**
|
|
54
|
-
* No description
|
|
55
|
-
*
|
|
56
|
-
* @tags ToolsCatalog
|
|
57
|
-
* @name UpdateTool
|
|
58
|
-
* @operationId ToolsCatalogController_UpdateTool
|
|
59
|
-
* @summary Updates geotool with given toolInfo.
|
|
60
|
-
* @request PATCH:/tools/{name}
|
|
61
|
-
* @response `200` Success
|
|
62
|
-
*/
|
|
63
|
-
updateTool(name: string, data: ToolInfoDc): Promise<void>;
|
|
64
|
-
/**
|
|
65
|
-
* No description
|
|
66
|
-
*
|
|
67
|
-
* @tags ToolsCatalog
|
|
68
|
-
* @name DeleteTool
|
|
69
|
-
* @operationId ToolsCatalogController_DeleteTool
|
|
70
|
-
* @summary Deletes geotool with given name.
|
|
71
|
-
* @request DELETE:/tools/{name}
|
|
72
|
-
* @response `200` Success
|
|
73
|
-
*/
|
|
74
|
-
deleteTool(name: string): Promise<void>;
|
|
75
|
-
/**
|
|
76
|
-
* No description
|
|
77
|
-
*
|
|
78
|
-
* @tags ToolsCatalog
|
|
79
|
-
* @name AddToolPermissions
|
|
80
|
-
* @operationId ToolsCatalogController_AddToolPermissions
|
|
81
|
-
* @summary Adds permissions for the tool combining existing permissions with the given one.
|
|
82
|
-
* @request POST:/tools/{name}/add-permissions
|
|
83
|
-
* @response `200` Success
|
|
84
|
-
*/
|
|
85
|
-
addToolPermissions(name: string, data: AccessControlListDc): Promise<void>;
|
|
86
|
-
/**
|
|
87
|
-
* No description
|
|
88
|
-
*
|
|
89
|
-
* @tags ToolsCatalog
|
|
90
|
-
* @name RemoveToolPermissions
|
|
91
|
-
* @operationId ToolsCatalogController_RemoveToolPermissions
|
|
92
|
-
* @summary Removes permissions for the tool combining existing permissions with the given one.
|
|
93
|
-
* @request POST:/tools/{name}/remove-permissions
|
|
94
|
-
* @response `200` Success
|
|
95
|
-
*/
|
|
96
|
-
removeToolPermissions(name: string, data: AccessControlListDc): Promise<void>;
|
|
97
|
-
/**
|
|
98
|
-
* No description
|
|
99
|
-
*
|
|
100
|
-
* @tags ToolsCatalog
|
|
101
|
-
* @name ReplaceToolPermissions
|
|
102
|
-
* @operationId ToolsCatalogController_ReplaceToolPermissions
|
|
103
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
104
|
-
* @request PUT:/tools/{name}/set-permissions
|
|
105
|
-
* @response `200` Success
|
|
106
|
-
*/
|
|
107
|
-
replaceToolPermissions(name: string, data: AccessControlListDc): Promise<void>;
|
|
108
|
-
/**
|
|
109
|
-
* No description
|
|
110
|
-
*
|
|
111
|
-
* @tags ToolsCatalog
|
|
112
|
-
* @name LoadToolPermission
|
|
113
|
-
* @operationId ToolsCatalogController_LoadToolPermission
|
|
114
|
-
* @summary Gets permissions of the given tool name.
|
|
115
|
-
* @request GET:/tools/{name}/permissions
|
|
116
|
-
* @response `200` Success
|
|
117
|
-
*/
|
|
118
|
-
loadToolPermission(name: string): Promise<AccessControlListDc>;
|
|
119
|
-
/**
|
|
120
|
-
* No description
|
|
121
|
-
*
|
|
122
|
-
* @tags ToolsCatalog
|
|
123
|
-
* @name ReloadTool
|
|
124
|
-
* @operationId ToolsCatalogController_ReloadTool
|
|
125
|
-
* @summary Reload given tool name.
|
|
126
|
-
* @request GET:/tools/{name}/reload
|
|
127
|
-
* @response `200` Success
|
|
128
|
-
*/
|
|
129
|
-
reloadTool(name: string): Promise<void>;
|
|
130
|
-
/**
|
|
131
|
-
* No description
|
|
132
|
-
*
|
|
133
|
-
* @tags ToolsCatalog
|
|
134
|
-
* @name GetToolsNames
|
|
135
|
-
* @operationId ToolsCatalogController_GetToolsNames
|
|
136
|
-
* @summary Gets list of tools according the user permissions with given filter.
|
|
137
|
-
* @request GET:/tools/list-names
|
|
138
|
-
* @response `200` Success
|
|
139
|
-
*/
|
|
140
|
-
getToolsNames(query: GetToolsNamesParams): Promise<string[]>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags ToolsCatalog
|
|
145
|
-
* @name AddToolToGroups
|
|
146
|
-
* @operationId ToolsCatalogController_AddToolToGroups
|
|
147
|
-
* @summary Adds geotools to list of groups.
|
|
148
|
-
* @request POST:/tools/{name}/add-groups
|
|
149
|
-
* @response `200` Success
|
|
150
|
-
*/
|
|
151
|
-
addToolToGroups(name: string, data: EditToolGroupsDc): Promise<void>;
|
|
152
|
-
/**
|
|
153
|
-
* No description
|
|
154
|
-
*
|
|
155
|
-
* @tags ToolsCatalog
|
|
156
|
-
* @name RemoveFromGroups
|
|
157
|
-
* @operationId ToolsCatalogController_RemoveFromGroups
|
|
158
|
-
* @summary Removes geotool from list of groups.
|
|
159
|
-
* @request POST:/tools/{name}/remove-groups
|
|
160
|
-
* @response `200` Success
|
|
161
|
-
*/
|
|
162
|
-
removeFromGroups(name: string, data: EditToolGroupsDc): Promise<void>;
|
|
163
|
-
/**
|
|
164
|
-
* No description
|
|
165
|
-
*
|
|
166
|
-
* @tags ToolsGroups
|
|
167
|
-
* @name GetGroups
|
|
168
|
-
* @operationId ToolsGroupsController_GetGroups
|
|
169
|
-
* @summary Get list of groups with related info.
|
|
170
|
-
* @request GET:/tools/groups
|
|
171
|
-
* @response `200` Success
|
|
172
|
-
*/
|
|
173
|
-
getGroups(query: GetGroupsParams): Promise<ToolGroupItemDc[]>;
|
|
174
|
-
/**
|
|
175
|
-
* No description
|
|
176
|
-
*
|
|
177
|
-
* @tags ToolsGroups
|
|
178
|
-
* @name CreateGroup
|
|
179
|
-
* @operationId ToolsGroupsController_CreateGroup
|
|
180
|
-
* @summary Create group with given createGroupInfo.
|
|
181
|
-
* @request POST:/tools/groups
|
|
182
|
-
* @response `200` Success
|
|
183
|
-
*/
|
|
184
|
-
createGroup(data: CreateToolGroupDc): Promise<number>;
|
|
185
|
-
/**
|
|
186
|
-
* No description
|
|
187
|
-
*
|
|
188
|
-
* @tags ToolsGroups
|
|
189
|
-
* @name LoadGroup
|
|
190
|
-
* @operationId ToolsGroupsController_LoadGroup
|
|
191
|
-
* @summary Loads tool group with id.
|
|
192
|
-
* @request GET:/tools/groups/{id}
|
|
193
|
-
* @response `200` Success
|
|
194
|
-
*/
|
|
195
|
-
loadGroup(id: number): Promise<ToolGroupInfoDc>;
|
|
196
|
-
/**
|
|
197
|
-
* No description
|
|
198
|
-
*
|
|
199
|
-
* @tags ToolsGroups
|
|
200
|
-
* @name UpdateGroup
|
|
201
|
-
* @operationId ToolsGroupsController_UpdateGroup
|
|
202
|
-
* @summary Update group with given updateGroupInfo.
|
|
203
|
-
* @request POST:/tools/groups/{id}
|
|
204
|
-
* @response `200` Success
|
|
205
|
-
*/
|
|
206
|
-
updateGroup(id: number, data: UpdateToolGroupDc): Promise<void>;
|
|
207
|
-
/**
|
|
208
|
-
* No description
|
|
209
|
-
*
|
|
210
|
-
* @tags ToolsGroups
|
|
211
|
-
* @name DeleteGroup
|
|
212
|
-
* @operationId ToolsGroupsController_DeleteGroup
|
|
213
|
-
* @summary Deletes group with given id.
|
|
214
|
-
* @request DELETE:/tools/groups/{id}
|
|
215
|
-
* @response `200` Success
|
|
216
|
-
*/
|
|
217
|
-
deleteGroup(id: number): Promise<void>;
|
|
218
|
-
/**
|
|
219
|
-
* No description
|
|
220
|
-
*
|
|
221
|
-
* @tags ToolsGroups
|
|
222
|
-
* @name AddToolsToGroup
|
|
223
|
-
* @operationId ToolsGroupsController_AddToolsToGroup
|
|
224
|
-
* @summary Adds geotools to group.
|
|
225
|
-
* @request POST:/tools/groups/add-tools
|
|
226
|
-
* @response `200` Success
|
|
227
|
-
*/
|
|
228
|
-
addToolsToGroup(data: EditToolGroupDc): Promise<void>;
|
|
229
|
-
/**
|
|
230
|
-
* No description
|
|
231
|
-
*
|
|
232
|
-
* @tags ToolsGroups
|
|
233
|
-
* @name RemoveToolsFromGroup
|
|
234
|
-
* @operationId ToolsGroupsController_RemoveToolsFromGroup
|
|
235
|
-
* @summary Remove geotools from group.
|
|
236
|
-
* @request POST:/tools/groups/remove-tools
|
|
237
|
-
* @response `200` Success
|
|
238
|
-
*/
|
|
239
|
-
removeToolsFromGroup(data: EditToolGroupDc): Promise<void>;
|
|
240
|
-
/**
|
|
241
|
-
* No description
|
|
242
|
-
*
|
|
243
|
-
* @tags ToolsGroups
|
|
244
|
-
* @name GetGroupsInfo
|
|
245
|
-
* @operationId ToolsGroupsController_GetGroupsInfo
|
|
246
|
-
* @summary Get tools info.
|
|
247
|
-
* @request GET:/tools/groups/list-info
|
|
248
|
-
* @response `200` Success
|
|
249
|
-
*/
|
|
250
|
-
getGroupsInfo(query: GetGroupsInfoParams): Promise<ToolGroupItemDc[]>;
|
|
251
|
-
/**
|
|
252
|
-
* No description
|
|
253
|
-
*
|
|
254
|
-
* @tags ToolsRunner
|
|
255
|
-
* @name EvaluateTool
|
|
256
|
-
* @operationId ToolsRunnerController_EvaluateTool
|
|
257
|
-
* @summary Evaluate tool with given parameters parameters.
|
|
258
|
-
* @request POST:/tools/{name}/evaluate
|
|
259
|
-
* @response `200` Success
|
|
260
|
-
* @response `400` Bad Request
|
|
261
|
-
* @response `402` Client Error
|
|
262
|
-
*/
|
|
263
|
-
evaluateTool({ name, ...query }: EvaluateToolParams, data: EvaluateToolPayload): Promise<EvaluatedToolDc>;
|
|
264
|
-
/**
|
|
265
|
-
* No description
|
|
266
|
-
*
|
|
267
|
-
* @tags ToolsRunner
|
|
268
|
-
* @name ExecuteTool
|
|
269
|
-
* @operationId ToolsRunnerController_ExecuteTool
|
|
270
|
-
* @summary Runs the tool of the given with given parameters parameters.
|
|
271
|
-
* @request POST:/tools/{name}/run
|
|
272
|
-
* @response `200` Success
|
|
273
|
-
* @response `400` Bad Request
|
|
274
|
-
*/
|
|
275
|
-
executeTool({ name, ...query }: ExecuteToolParams, data: ExecuteToolPayload): Promise<LaunchToolInfoDc>;
|
|
276
|
-
/**
|
|
277
|
-
* No description
|
|
278
|
-
*
|
|
279
|
-
* @tags ToolsRunner
|
|
280
|
-
* @name GetToolsLists
|
|
281
|
-
* @operationId ToolsRunnerController_GetToolsLists
|
|
282
|
-
* @summary Get list of current user's tools.
|
|
283
|
-
* @request GET:/tools/journal
|
|
284
|
-
* @response `200` Success
|
|
285
|
-
*/
|
|
286
|
-
getToolsLists(query: GetToolsListsParams): Promise<ToolLaunchInfo[]>;
|
|
287
|
-
/**
|
|
288
|
-
* No description
|
|
289
|
-
*
|
|
290
|
-
* @tags ToolsRunner
|
|
291
|
-
* @name GetTool
|
|
292
|
-
* @operationId ToolsRunnerController_GetTool
|
|
293
|
-
* @summary Get tool launch by given id.
|
|
294
|
-
* @request GET:/tools/journal/{id}
|
|
295
|
-
* @response `200` Success
|
|
296
|
-
*/
|
|
297
|
-
getTool(id: string): Promise<LaunchToolInfoDc>;
|
|
298
|
-
/**
|
|
299
|
-
* No description
|
|
300
|
-
*
|
|
301
|
-
* @tags ToolsRunner
|
|
302
|
-
* @name CancelExecute
|
|
303
|
-
* @operationId ToolsRunnerController_CancelExecute
|
|
304
|
-
* @summary Cancel executing tool with given id id.
|
|
305
|
-
* @request POST:/tools/{id}/cancel
|
|
306
|
-
* @response `200` Success
|
|
307
|
-
*/
|
|
308
|
-
cancelExecute(id: string): Promise<void>;
|
|
309
|
-
/**
|
|
310
|
-
* No description
|
|
311
|
-
*
|
|
312
|
-
* @tags ToolsRunner
|
|
313
|
-
* @name GetToolResult
|
|
314
|
-
* @operationId ToolsRunnerController_GetToolResult
|
|
315
|
-
* @summary Get result of tool execution by tool id id.
|
|
316
|
-
* @request POST:/tools/{id}/result
|
|
317
|
-
* @response `200` Success
|
|
318
|
-
*/
|
|
319
|
-
getToolResult(id: string, data: ToolStorageSettingsDc): Promise<ToolResultInfoDc>;
|
|
320
8
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams4, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } 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 WmsServerService extends Service {
|
|
|
16
16
|
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams4): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -60,5 +60,5 @@ export declare class WmsServerService extends Service {
|
|
|
60
60
|
* @request GET:/wms/{name}
|
|
61
61
|
* @response `200` Success
|
|
62
62
|
*/
|
|
63
|
-
getCapabilities1({ name, ...query }:
|
|
63
|
+
getCapabilities1({ name, ...query }: GetCapabilities1Params): Promise<void>;
|
|
64
64
|
}
|