@evergis/api 4.0.13 → 4.0.15
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/Api.d.ts +1 -2
- package/dist/__generated__/AccountPreviewService.d.ts +47 -8
- package/dist/__generated__/AccountService.d.ts +64 -2
- package/dist/__generated__/BulkOperationsService.d.ts +1 -0
- package/dist/__generated__/CamerasService.d.ts +8 -0
- package/dist/__generated__/CatalogService.d.ts +29 -2
- package/dist/__generated__/ClientSettingsService.d.ts +4 -0
- package/dist/__generated__/DataSourceService.d.ts +14 -0
- package/dist/__generated__/EqlService.d.ts +9 -0
- package/dist/__generated__/ExternalProvidersService.d.ts +11 -0
- package/dist/__generated__/FeedbackService.d.ts +3 -0
- package/dist/__generated__/FiltersService.d.ts +3 -0
- package/dist/__generated__/GeocodeService.d.ts +3 -0
- package/dist/__generated__/IceRouterService.d.ts +2 -0
- package/dist/__generated__/ImportService.d.ts +10 -0
- package/dist/__generated__/LayersService.d.ts +55 -2
- package/dist/__generated__/NotificationService.d.ts +5 -0
- package/dist/__generated__/PrintService.d.ts +6 -0
- package/dist/__generated__/ProjectsService.d.ts +17 -2
- package/dist/__generated__/PythonService.d.ts +2 -0
- package/dist/__generated__/QueryTokenAccessService.d.ts +5 -0
- package/dist/__generated__/RemoteTaskManagerService.d.ts +17 -0
- package/dist/__generated__/SecurityService.d.ts +37 -2
- package/dist/__generated__/SpatialReferencesService.d.ts +3 -0
- package/dist/__generated__/StatisticService.d.ts +8 -2
- package/dist/__generated__/StyleService.d.ts +6 -0
- package/dist/__generated__/SymbolStorageService.d.ts +18 -0
- package/dist/__generated__/TablesService.d.ts +19 -0
- package/dist/__generated__/VectorTileService.d.ts +1 -0
- package/dist/__generated__/WfsServerService.d.ts +3 -0
- package/dist/__generated__/WmsServerService.d.ts +7 -2
- package/dist/__generated__/WmtsService.d.ts +1 -0
- package/dist/__generated__/data-contracts.d.ts +60 -57
- package/dist/api.cjs.development.js +426 -73
- 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 +427 -73
- package/dist/api.esm.js.map +1 -1
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/ResourceCatalogService.d.ts +0 -20
- package/dist/services/ResourceCatalog.d.ts +0 -3
|
@@ -14,6 +14,7 @@ export declare class TablesService extends Service {
|
|
|
14
14
|
* @operationId TablesController_GetTableList
|
|
15
15
|
* @summary Returns the list of tables in data service.
|
|
16
16
|
* @request GET:/tables
|
|
17
|
+
* @secure
|
|
17
18
|
* @response `200` OK
|
|
18
19
|
*/
|
|
19
20
|
getTableList(query: GetTableListParams): Promise<PagedListTableListItemDc>;
|
|
@@ -25,6 +26,7 @@ export declare class TablesService extends Service {
|
|
|
25
26
|
* @operationId TablesController_CreateTable
|
|
26
27
|
* @summary Creates a new table.
|
|
27
28
|
* @request POST:/tables
|
|
29
|
+
* @secure
|
|
28
30
|
* @response `200` OK
|
|
29
31
|
*/
|
|
30
32
|
createTable(data: DetailedTableInfoDc): Promise<DetailedTableInfoDc>;
|
|
@@ -36,6 +38,7 @@ export declare class TablesService extends Service {
|
|
|
36
38
|
* @operationId TablesController_DeleteResources
|
|
37
39
|
* @summary Bulk delete resources.
|
|
38
40
|
* @request DELETE:/tables
|
|
41
|
+
* @secure
|
|
39
42
|
* @response `200` OK
|
|
40
43
|
*/
|
|
41
44
|
deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
|
|
@@ -47,6 +50,7 @@ export declare class TablesService extends Service {
|
|
|
47
50
|
* @operationId TablesController_UpdateTable
|
|
48
51
|
* @summary Update exists table.
|
|
49
52
|
* @request PATCH:/tables/{name}
|
|
53
|
+
* @secure
|
|
50
54
|
* @response `200` OK
|
|
51
55
|
*/
|
|
52
56
|
updateTable(name: string, data: UpdateTableDc): Promise<DetailedTableInfoDc>;
|
|
@@ -58,6 +62,7 @@ export declare class TablesService extends Service {
|
|
|
58
62
|
* @operationId TablesController_PutTable
|
|
59
63
|
* @summary Override exists table.
|
|
60
64
|
* @request PUT:/tables/{name}
|
|
65
|
+
* @secure
|
|
61
66
|
* @response `200` OK
|
|
62
67
|
*/
|
|
63
68
|
putTable(name: string, data: DetailedTableInfoDc): Promise<DetailedTableInfoDc>;
|
|
@@ -69,6 +74,7 @@ export declare class TablesService extends Service {
|
|
|
69
74
|
* @operationId TablesController_GetTableInfo
|
|
70
75
|
* @summary Returns the table information and schema.
|
|
71
76
|
* @request GET:/tables/{name}
|
|
77
|
+
* @secure
|
|
72
78
|
* @response `200` OK
|
|
73
79
|
*/
|
|
74
80
|
getTableInfo(name: string): Promise<DetailedTableInfoDc>;
|
|
@@ -80,6 +86,7 @@ export declare class TablesService extends Service {
|
|
|
80
86
|
* @operationId TablesController_DeleteResource
|
|
81
87
|
* @summary Deletes resource.
|
|
82
88
|
* @request DELETE:/tables/{name}
|
|
89
|
+
* @secure
|
|
83
90
|
* @response `200` OK
|
|
84
91
|
*/
|
|
85
92
|
deleteResource(name: string): Promise<void>;
|
|
@@ -91,6 +98,7 @@ export declare class TablesService extends Service {
|
|
|
91
98
|
* @operationId TablesController_GetTablesInfoAsync
|
|
92
99
|
* @summary Returns the tables information.
|
|
93
100
|
* @request GET:/tables/batchInfo
|
|
101
|
+
* @secure
|
|
94
102
|
* @response `200` OK
|
|
95
103
|
*/
|
|
96
104
|
getTablesInfo(query: GetTablesInfoParams): Promise<DetailedTableInfoDc[]>;
|
|
@@ -102,6 +110,7 @@ export declare class TablesService extends Service {
|
|
|
102
110
|
* @operationId TablesController_GetTableData
|
|
103
111
|
* @summary Retrieves the data from the table.
|
|
104
112
|
* @request GET:/tables/{name}/data
|
|
113
|
+
* @secure
|
|
105
114
|
* @response `200` OK
|
|
106
115
|
*/
|
|
107
116
|
getTableData({ name, ...query }: GetTableDataParams): Promise<PagedListFeatureDc | PagedFeaturesListDc | PagedBulkFeaturesListDc>;
|
|
@@ -113,6 +122,7 @@ export declare class TablesService extends Service {
|
|
|
113
122
|
* @operationId TablesController_WriteTableData
|
|
114
123
|
* @summary Adds the data to the table.
|
|
115
124
|
* @request POST:/tables/{name}/data
|
|
125
|
+
* @secure
|
|
116
126
|
* @response `200` OK
|
|
117
127
|
*/
|
|
118
128
|
writeTableData(name: string, data: WriteTableDataPayload): Promise<void>;
|
|
@@ -124,6 +134,7 @@ export declare class TablesService extends Service {
|
|
|
124
134
|
* @operationId TablesController_UpdateTableData
|
|
125
135
|
* @summary Updates the data in the table.
|
|
126
136
|
* @request PATCH:/tables/{name}/data
|
|
137
|
+
* @secure
|
|
127
138
|
* @response `200` OK
|
|
128
139
|
*/
|
|
129
140
|
updateTableData({ name, ...query }: UpdateTableDataParams, data: UpdateTableDataPayload): Promise<void>;
|
|
@@ -135,6 +146,7 @@ export declare class TablesService extends Service {
|
|
|
135
146
|
* @operationId TablesController_DeleteTableData
|
|
136
147
|
* @summary Delete data rows from the table.
|
|
137
148
|
* @request DELETE:/tables/{name}/data
|
|
149
|
+
* @secure
|
|
138
150
|
* @response `200` OK
|
|
139
151
|
*/
|
|
140
152
|
deleteTableData({ name, ...query }: DeleteTableDataParams): Promise<void>;
|
|
@@ -146,6 +158,7 @@ export declare class TablesService extends Service {
|
|
|
146
158
|
* @operationId TablesController_MapTable
|
|
147
159
|
* @summary Map table to exists table.
|
|
148
160
|
* @request POST:/tables/map-table
|
|
161
|
+
* @secure
|
|
149
162
|
* @response `200` OK
|
|
150
163
|
*/
|
|
151
164
|
mapTable(query: MapTableParams, data: MapTableInfoDc): Promise<DetailedTableInfoDc>;
|
|
@@ -157,6 +170,7 @@ export declare class TablesService extends Service {
|
|
|
157
170
|
* @operationId TablesController_UnmapTableAsync
|
|
158
171
|
* @summary Unmap datasource from table.
|
|
159
172
|
* @request DELETE:/tables/map-table/{name}
|
|
173
|
+
* @secure
|
|
160
174
|
* @response `200` OK
|
|
161
175
|
*/
|
|
162
176
|
unmapTable(name: string): Promise<void>;
|
|
@@ -168,6 +182,7 @@ export declare class TablesService extends Service {
|
|
|
168
182
|
* @operationId TablesController_CreateViewFromQueryLayer
|
|
169
183
|
* @summary Creates a new view from query layer.
|
|
170
184
|
* @request POST:/tables/fromLayer
|
|
185
|
+
* @secure
|
|
171
186
|
* @response `200` OK
|
|
172
187
|
*/
|
|
173
188
|
createViewFromQueryLayer(data: CreateViewFromQueryLayerDc): Promise<DetailedTableInfoDc>;
|
|
@@ -179,6 +194,7 @@ export declare class TablesService extends Service {
|
|
|
179
194
|
* @operationId TablesController_CreateViewFromQuery
|
|
180
195
|
* @summary Creates a new view from query.
|
|
181
196
|
* @request POST:/tables/fromQuery
|
|
197
|
+
* @secure
|
|
182
198
|
* @response `200` OK
|
|
183
199
|
*/
|
|
184
200
|
createViewFromQuery(data: CreateViewFromQueryDc): Promise<DetailedTableInfoDc>;
|
|
@@ -190,6 +206,7 @@ export declare class TablesService extends Service {
|
|
|
190
206
|
* @operationId TablesController_IsExistsAsync
|
|
191
207
|
* @summary Check is resource exists.
|
|
192
208
|
* @request GET:/tables/{name}/exists
|
|
209
|
+
* @secure
|
|
193
210
|
* @response `200` OK
|
|
194
211
|
*/
|
|
195
212
|
isExists(name: string): Promise<void>;
|
|
@@ -201,6 +218,7 @@ export declare class TablesService extends Service {
|
|
|
201
218
|
* @operationId TablesController_GetResourceDependencies
|
|
202
219
|
* @summary Get resource dependencies.
|
|
203
220
|
* @request GET:/tables/{name}/dependencies
|
|
221
|
+
* @secure
|
|
204
222
|
* @response `200` OK
|
|
205
223
|
*/
|
|
206
224
|
getResourceDependencies(name: string): Promise<ResourceDependenciesDc>;
|
|
@@ -212,6 +230,7 @@ export declare class TablesService extends Service {
|
|
|
212
230
|
* @operationId TablesController_GetResourceReferences
|
|
213
231
|
* @summary Returns the resource dependency information.
|
|
214
232
|
* @request GET:/tables/{name}/references
|
|
233
|
+
* @secure
|
|
215
234
|
* @response `200` OK
|
|
216
235
|
*/
|
|
217
236
|
getResourceReferences(name: string): Promise<ResourceDependenciesDc>;
|
|
@@ -14,6 +14,7 @@ export declare class VectorTileService extends Service {
|
|
|
14
14
|
* @operationId VectorTileServiceController_GetVectorTile
|
|
15
15
|
* @summary Get vector tile from visible project layers or single layer.
|
|
16
16
|
* @request GET:/vt/{name}/{z}/{x}/{y}.pbf
|
|
17
|
+
* @secure
|
|
17
18
|
* @response `200` OK
|
|
18
19
|
*/
|
|
19
20
|
getVectorTile({ name, z, x, y, ...query }: GetVectorTileParams): Promise<void>;
|
|
@@ -14,6 +14,7 @@ export declare class WfsServerService extends Service {
|
|
|
14
14
|
* @operationId WfsServerController_GetCapabilities
|
|
15
15
|
* @summary Returns get capabilities of wfs service.
|
|
16
16
|
* @request GET:/wfs
|
|
17
|
+
* @secure
|
|
17
18
|
* @response `200` OK
|
|
18
19
|
*/
|
|
19
20
|
getCapabilities(query: GetCapabilitiesParams): Promise<void>;
|
|
@@ -25,6 +26,7 @@ export declare class WfsServerService extends Service {
|
|
|
25
26
|
* @operationId WfsServerController_GetSharedCapabilities
|
|
26
27
|
* @summary Returns get capabilities of wfs service.
|
|
27
28
|
* @request GET:/shared/wfs
|
|
29
|
+
* @secure
|
|
28
30
|
* @response `200` OK
|
|
29
31
|
*/
|
|
30
32
|
getSharedCapabilities(query: GetSharedCapabilitiesParams): Promise<void>;
|
|
@@ -36,6 +38,7 @@ export declare class WfsServerService extends Service {
|
|
|
36
38
|
* @operationId WfsServerController_GetPublicCapabilities
|
|
37
39
|
* @summary Returns get capabilities of wfs service.
|
|
38
40
|
* @request GET:/public/wfs
|
|
41
|
+
* @secure
|
|
39
42
|
* @response `200` OK
|
|
40
43
|
*/
|
|
41
44
|
getPublicCapabilities(query: GetPublicCapabilitiesParams): Promise<void>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams7, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -14,9 +14,10 @@ export declare class WmsServerService extends Service {
|
|
|
14
14
|
* @operationId WmsServerController_GetCapabilities
|
|
15
15
|
* @summary WMS GetCapabilities endpoint.
|
|
16
16
|
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
|
+
* @secure
|
|
17
18
|
* @response `200` OK
|
|
18
19
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
20
|
+
getCapabilities(query: GetCapabilitiesParams7): Promise<void>;
|
|
20
21
|
/**
|
|
21
22
|
* No description
|
|
22
23
|
*
|
|
@@ -25,6 +26,7 @@ export declare class WmsServerService extends Service {
|
|
|
25
26
|
* @operationId WmsServerController_GetMap
|
|
26
27
|
* @summary WMS GetMap endpoint.
|
|
27
28
|
* @request GET:/wms#REQUEST=GetMap
|
|
29
|
+
* @secure
|
|
28
30
|
* @response `200` OK
|
|
29
31
|
*/
|
|
30
32
|
getMap(query: GetMapParams): Promise<void>;
|
|
@@ -36,6 +38,7 @@ export declare class WmsServerService extends Service {
|
|
|
36
38
|
* @operationId WmsServerController_GetFeatureInfo
|
|
37
39
|
* @summary WMS GetFeatureInfo entrypoint.
|
|
38
40
|
* @request GET:/wms#REQUEST=GetFeatureInfo
|
|
41
|
+
* @secure
|
|
39
42
|
* @response `200` OK
|
|
40
43
|
*/
|
|
41
44
|
getFeatureInfo(query: GetFeatureInfoParams): Promise<void>;
|
|
@@ -47,6 +50,7 @@ export declare class WmsServerService extends Service {
|
|
|
47
50
|
* @operationId WmsServerController_GetLegendGraphic
|
|
48
51
|
* @summary WMS GetLegend entrypoint.
|
|
49
52
|
* @request GET:/wms#REQUEST=GetLegendGraphic
|
|
53
|
+
* @secure
|
|
50
54
|
* @response `200` OK
|
|
51
55
|
*/
|
|
52
56
|
getLegendGraphic(query: GetLegendGraphicParams): Promise<void>;
|
|
@@ -58,6 +62,7 @@ export declare class WmsServerService extends Service {
|
|
|
58
62
|
* @operationId WmsServerController_GetCapabilities_1
|
|
59
63
|
* @summary WMS GetCapabilities endpoint.
|
|
60
64
|
* @request GET:/wms/{name}
|
|
65
|
+
* @secure
|
|
61
66
|
* @response `200` OK
|
|
62
67
|
*/
|
|
63
68
|
getCapabilities1({ name, ...query }: GetCapabilities1Params): Promise<void>;
|
|
@@ -14,6 +14,7 @@ export declare class WmtsService extends Service {
|
|
|
14
14
|
* @operationId WmtsController_ProcessRequestAsync
|
|
15
15
|
* @summary WMTS Protocol endpoint.
|
|
16
16
|
* @request GET:/wmts
|
|
17
|
+
* @secure
|
|
17
18
|
* @response `200` OK
|
|
18
19
|
*/
|
|
19
20
|
processRequest(query: ProcessRequestParams): Promise<void>;
|
|
@@ -476,7 +476,11 @@ export interface AttributeDefinitionDc {
|
|
|
476
476
|
isCalculated?: boolean;
|
|
477
477
|
/** Provides attributes format definition settings. */
|
|
478
478
|
stringFormat?: AttributeFormatDefinitionDc;
|
|
479
|
-
|
|
479
|
+
/**
|
|
480
|
+
* Spatial reference identifier type in geometry type column.
|
|
481
|
+
* @format int32
|
|
482
|
+
*/
|
|
483
|
+
srid?: number;
|
|
480
484
|
/** Information about an attribute icon. */
|
|
481
485
|
icon?: AttributeIconDc;
|
|
482
486
|
}
|
|
@@ -1977,7 +1981,7 @@ export interface FailedServiceInfoDc {
|
|
|
1977
1981
|
*/
|
|
1978
1982
|
export interface FeatureDc {
|
|
1979
1983
|
/** Feature geometry definition. */
|
|
1980
|
-
geometry?: EnvelopeDc |
|
|
1984
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
1981
1985
|
/** Feature attributes collection. */
|
|
1982
1986
|
attributes: Record<string, any>;
|
|
1983
1987
|
/** Feature unique identifier. */
|
|
@@ -2175,6 +2179,10 @@ export interface FilterDc {
|
|
|
2175
2179
|
filterString?: string;
|
|
2176
2180
|
/** Filter conditions. */
|
|
2177
2181
|
conditions?: string[];
|
|
2182
|
+
/** Query parameters. */
|
|
2183
|
+
parameters?: Record<string, any>;
|
|
2184
|
+
/** Filter query geometries. */
|
|
2185
|
+
geometries?: QueryGeometryDc[];
|
|
2178
2186
|
}
|
|
2179
2187
|
/**
|
|
2180
2188
|
* Server response for the creation of a filter in filter service.
|
|
@@ -2182,8 +2190,6 @@ export interface FilterDc {
|
|
|
2182
2190
|
export interface FilterResponseDc {
|
|
2183
2191
|
/** Id of the filter. */
|
|
2184
2192
|
id?: string;
|
|
2185
|
-
/** Filter conditions. */
|
|
2186
|
-
conditions?: string[];
|
|
2187
2193
|
}
|
|
2188
2194
|
/**
|
|
2189
2195
|
* Sets whether font should be styled.
|
|
@@ -2271,7 +2277,7 @@ export interface GeocodeResultDc {
|
|
|
2271
2277
|
/** The position at the map in [X, Y] format. */
|
|
2272
2278
|
center?: PositionDc;
|
|
2273
2279
|
/** Result geometry. */
|
|
2274
|
-
geometry?: EnvelopeDc |
|
|
2280
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
2275
2281
|
}
|
|
2276
2282
|
/**
|
|
2277
2283
|
* Geocode suggest result.
|
|
@@ -2343,6 +2349,10 @@ export interface GetBulkExtentsDc {
|
|
|
2343
2349
|
query?: string;
|
|
2344
2350
|
/** Filter conditions. */
|
|
2345
2351
|
conditions?: string[];
|
|
2352
|
+
/** Query parameters. */
|
|
2353
|
+
parameters?: Record<string, any>;
|
|
2354
|
+
/** Filter query geometries. */
|
|
2355
|
+
geometries?: QueryGeometryDc[];
|
|
2346
2356
|
}
|
|
2347
2357
|
/**
|
|
2348
2358
|
* Get features from layer paramaters.
|
|
@@ -2356,6 +2366,8 @@ export interface GetBulkFeaturesParametersDc {
|
|
|
2356
2366
|
conditions?: string[];
|
|
2357
2367
|
/** Features filtering query parameters. */
|
|
2358
2368
|
parameters?: Record<string, any>;
|
|
2369
|
+
/** Filter query geometries. */
|
|
2370
|
+
geometries?: QueryGeometryDc[];
|
|
2359
2371
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2360
2372
|
dataFilterId?: string;
|
|
2361
2373
|
/** Click geometry. */
|
|
@@ -2400,6 +2412,10 @@ export interface GetClassifyDc {
|
|
|
2400
2412
|
condition?: string;
|
|
2401
2413
|
/** Collection of filtering conditions. */
|
|
2402
2414
|
conditions?: string[];
|
|
2415
|
+
/** Query parameters. */
|
|
2416
|
+
parameters?: Record<string, any>;
|
|
2417
|
+
/** Filter query geometries. */
|
|
2418
|
+
geometries?: QueryGeometryDc[];
|
|
2403
2419
|
/**
|
|
2404
2420
|
* The number of classes.
|
|
2405
2421
|
* @format int32
|
|
@@ -2445,8 +2461,8 @@ export interface GetFeaturesParametersDc {
|
|
|
2445
2461
|
conditions?: string[];
|
|
2446
2462
|
/** Features filtering query parameters. */
|
|
2447
2463
|
parameters?: Record<string, any>;
|
|
2448
|
-
/**
|
|
2449
|
-
geometries?: QueryGeometryDc;
|
|
2464
|
+
/** Filter query geometries. */
|
|
2465
|
+
geometries?: QueryGeometryDc[];
|
|
2450
2466
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2451
2467
|
dataFilterId?: string;
|
|
2452
2468
|
/** Click geometry. */
|
|
@@ -2487,6 +2503,10 @@ export interface GetFilteredFeaturesCountDc {
|
|
|
2487
2503
|
condition?: string;
|
|
2488
2504
|
/** Collection of filtering conditions. */
|
|
2489
2505
|
conditions?: string[];
|
|
2506
|
+
/** Query parameters. */
|
|
2507
|
+
parameters?: Record<string, any>;
|
|
2508
|
+
/** Filter query geometries. */
|
|
2509
|
+
geometries?: QueryGeometryDc[];
|
|
2490
2510
|
}
|
|
2491
2511
|
/**
|
|
2492
2512
|
* Get statistics data contract.
|
|
@@ -2500,6 +2520,10 @@ export interface GetStatisticsDc {
|
|
|
2500
2520
|
condition?: string;
|
|
2501
2521
|
/** Collection of filtering conditions. */
|
|
2502
2522
|
conditions?: string[];
|
|
2523
|
+
/** Query parameters. */
|
|
2524
|
+
parameters?: Record<string, any>;
|
|
2525
|
+
/** Filter query geometries. */
|
|
2526
|
+
geometries?: QueryGeometryDc[];
|
|
2503
2527
|
/** Type of required statistic function. */
|
|
2504
2528
|
types?: AggregationFunction[];
|
|
2505
2529
|
}
|
|
@@ -2515,6 +2539,10 @@ export interface GetSumOfProductDc {
|
|
|
2515
2539
|
condition?: string;
|
|
2516
2540
|
/** Collection of filtering conditions. */
|
|
2517
2541
|
conditions?: string[];
|
|
2542
|
+
/** Query parameters. */
|
|
2543
|
+
parameters?: Record<string, any>;
|
|
2544
|
+
/** Filter query geometries. */
|
|
2545
|
+
geometries?: QueryGeometryDc[];
|
|
2518
2546
|
}
|
|
2519
2547
|
/**
|
|
2520
2548
|
* Map element data contract.
|
|
@@ -2573,35 +2601,6 @@ export declare type HexGridSymbolDc = SymbolDc & {
|
|
|
2573
2601
|
aggregations?: Record<string, AggregationFunction>;
|
|
2574
2602
|
};
|
|
2575
2603
|
export declare type IAsyncEnumerableLivePreviewDc = object;
|
|
2576
|
-
export interface IDatum {
|
|
2577
|
-
/** @format double */
|
|
2578
|
-
semimajor?: number;
|
|
2579
|
-
/** @format double */
|
|
2580
|
-
inverseFlattening?: number;
|
|
2581
|
-
/** @format double */
|
|
2582
|
-
semiminor?: number;
|
|
2583
|
-
/** @format double */
|
|
2584
|
-
flattening?: number;
|
|
2585
|
-
reversedOrder?: boolean;
|
|
2586
|
-
/** @format int32 */
|
|
2587
|
-
id?: number;
|
|
2588
|
-
authority?: string;
|
|
2589
|
-
description?: string;
|
|
2590
|
-
wkt?: string;
|
|
2591
|
-
/** @format int32 */
|
|
2592
|
-
dimensions?: number;
|
|
2593
|
-
datum?: IDatum;
|
|
2594
|
-
}
|
|
2595
|
-
export interface ISpatialReference {
|
|
2596
|
-
/** @format int32 */
|
|
2597
|
-
id?: number;
|
|
2598
|
-
authority?: string;
|
|
2599
|
-
description?: string;
|
|
2600
|
-
wkt?: string;
|
|
2601
|
-
/** @format int32 */
|
|
2602
|
-
dimensions?: number;
|
|
2603
|
-
datum?: IDatum;
|
|
2604
|
-
}
|
|
2605
2604
|
/**
|
|
2606
2605
|
* Attributes provides by router to describe route.
|
|
2607
2606
|
*/
|
|
@@ -2823,6 +2822,10 @@ export interface LayerModelDc {
|
|
|
2823
2822
|
layerOpacity?: number;
|
|
2824
2823
|
/** Condition to apply to the layer to filter the features. */
|
|
2825
2824
|
conditions?: string[];
|
|
2825
|
+
/** Query parameters. */
|
|
2826
|
+
parameters?: Record<string, any>;
|
|
2827
|
+
/** Filter query geometries. */
|
|
2828
|
+
geometries?: QueryGeometryDc[];
|
|
2826
2829
|
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
2827
2830
|
styleId?: string;
|
|
2828
2831
|
/** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
|
|
@@ -2884,6 +2887,10 @@ export interface LegendLayerAttributeDc {
|
|
|
2884
2887
|
name?: string;
|
|
2885
2888
|
/** Legend layer attribute conditions. */
|
|
2886
2889
|
conditions?: LegendLayerAttributeConditionDc[];
|
|
2890
|
+
/** Query parameters. */
|
|
2891
|
+
parameters?: Record<string, any>;
|
|
2892
|
+
/** Filter query geometries. */
|
|
2893
|
+
geometries?: QueryGeometryDc[];
|
|
2887
2894
|
}
|
|
2888
2895
|
/**
|
|
2889
2896
|
* Legend layer data contract.
|
|
@@ -3024,7 +3031,7 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
|
|
|
3024
3031
|
/**
|
|
3025
3032
|
* Search resources.
|
|
3026
3033
|
*/
|
|
3027
|
-
export interface
|
|
3034
|
+
export interface ListResourcesDc {
|
|
3028
3035
|
/** Parent id. */
|
|
3029
3036
|
parentId?: string;
|
|
3030
3037
|
/**
|
|
@@ -3047,7 +3054,7 @@ export interface ListResourcesDto {
|
|
|
3047
3054
|
/** Resources subtypes filter. */
|
|
3048
3055
|
subtypes?: ResourceSubTypeFilter[];
|
|
3049
3056
|
/** Tags filter. */
|
|
3050
|
-
tagsFilter?:
|
|
3057
|
+
tagsFilter?: TagsFilterDc;
|
|
3051
3058
|
/** Order by result. */
|
|
3052
3059
|
orderBy?: string[];
|
|
3053
3060
|
/** System names filter. */
|
|
@@ -3980,7 +3987,7 @@ export interface QueryGeometryDc {
|
|
|
3980
3987
|
* Query geometry operation data contract.
|
|
3981
3988
|
*/
|
|
3982
3989
|
export interface QueryGeometryOperationDc {
|
|
3983
|
-
/**
|
|
3990
|
+
/** Function name. */
|
|
3984
3991
|
name?: string;
|
|
3985
3992
|
/**
|
|
3986
3993
|
* Buffer size.
|
|
@@ -3988,7 +3995,7 @@ export interface QueryGeometryOperationDc {
|
|
|
3988
3995
|
*/
|
|
3989
3996
|
buffer?: number;
|
|
3990
3997
|
/** Additional parameters. */
|
|
3991
|
-
parameters?:
|
|
3998
|
+
parameters?: any[];
|
|
3992
3999
|
}
|
|
3993
4000
|
/**
|
|
3994
4001
|
* Configuration of a postgres feature layer service.
|
|
@@ -5612,7 +5619,7 @@ export interface TableListItemDc {
|
|
|
5612
5619
|
/**
|
|
5613
5620
|
* Tags filter.
|
|
5614
5621
|
*/
|
|
5615
|
-
export interface
|
|
5622
|
+
export interface TagsFilterDc {
|
|
5616
5623
|
/** Tags set. */
|
|
5617
5624
|
tags?: string[];
|
|
5618
5625
|
/**
|
|
@@ -6314,7 +6321,7 @@ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
|
|
|
6314
6321
|
*/
|
|
6315
6322
|
export interface UpdateFeatureDc {
|
|
6316
6323
|
/** Feature geometry definition. */
|
|
6317
|
-
geometry?: EnvelopeDc |
|
|
6324
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
6318
6325
|
/** Feature attributes collection. */
|
|
6319
6326
|
attributes?: Record<string, any>;
|
|
6320
6327
|
/** Feature unique identifier. */
|
|
@@ -6752,8 +6759,6 @@ export interface GetUsersParams {
|
|
|
6752
6759
|
limit?: number;
|
|
6753
6760
|
/** If given, will retrieve only users that belong to one of the given username. */
|
|
6754
6761
|
users?: string[];
|
|
6755
|
-
/** If given, will retrieve only users that belong to one of the given groups. */
|
|
6756
|
-
groups?: string[];
|
|
6757
6762
|
/** If given, will retrieve only users that have one of the given roles. */
|
|
6758
6763
|
roles?: string[];
|
|
6759
6764
|
}
|
|
@@ -6774,8 +6779,6 @@ export interface GetExtendedUsersParams {
|
|
|
6774
6779
|
limit?: number;
|
|
6775
6780
|
/** If given, will retrieve only users that belong to one of the given username. */
|
|
6776
6781
|
users?: string[];
|
|
6777
|
-
/** If given, will retrieve only users that belong to one of the given groups. */
|
|
6778
|
-
groups?: string[];
|
|
6779
6782
|
/** If given, will retrieve only users that have one of the given roles. */
|
|
6780
6783
|
roles?: string[];
|
|
6781
6784
|
}
|
|
@@ -6869,6 +6872,10 @@ export interface UploadPreviewPayload {
|
|
|
6869
6872
|
/** @format binary */
|
|
6870
6873
|
file?: File;
|
|
6871
6874
|
}
|
|
6875
|
+
export interface UploadPreview1Payload {
|
|
6876
|
+
/** @format binary */
|
|
6877
|
+
file?: File;
|
|
6878
|
+
}
|
|
6872
6879
|
export interface GetCamerasParams {
|
|
6873
6880
|
/**
|
|
6874
6881
|
* Page objects limit.
|
|
@@ -7021,6 +7028,7 @@ export interface CreateFilePayload {
|
|
|
7021
7028
|
icon?: string;
|
|
7022
7029
|
}
|
|
7023
7030
|
export declare type SetPermissionsPayload = ResourceAclDc[];
|
|
7031
|
+
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
7024
7032
|
export interface GetConfigurationsListParams {
|
|
7025
7033
|
/**
|
|
7026
7034
|
* Offset.
|
|
@@ -7379,7 +7387,7 @@ export interface GetByIdParams {
|
|
|
7379
7387
|
/**
|
|
7380
7388
|
* Geometry data contract.
|
|
7381
7389
|
*/
|
|
7382
|
-
export declare type UnitePayload = EnvelopeDc |
|
|
7390
|
+
export declare type UnitePayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7383
7391
|
export interface UniteParams {
|
|
7384
7392
|
/**
|
|
7385
7393
|
* Spatial reference of result feature.
|
|
@@ -7394,7 +7402,7 @@ export interface UniteParams {
|
|
|
7394
7402
|
/**
|
|
7395
7403
|
* Geometry data contract.
|
|
7396
7404
|
*/
|
|
7397
|
-
export declare type SubtractPayload = EnvelopeDc |
|
|
7405
|
+
export declare type SubtractPayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7398
7406
|
export interface SubtractParams {
|
|
7399
7407
|
/**
|
|
7400
7408
|
* Spatial reference id of result features.
|
|
@@ -7654,7 +7662,7 @@ export interface ValidateExpressionParams {
|
|
|
7654
7662
|
/** Layer name. */
|
|
7655
7663
|
layerName: string;
|
|
7656
7664
|
}
|
|
7657
|
-
export interface
|
|
7665
|
+
export interface GetRasterMetaParams10 {
|
|
7658
7666
|
/**
|
|
7659
7667
|
* Min value for build histogram.
|
|
7660
7668
|
* @format double
|
|
@@ -7733,7 +7741,7 @@ export interface GetProjectsListParams {
|
|
|
7733
7741
|
/** Filter layers by set of tags. */
|
|
7734
7742
|
tags?: string[];
|
|
7735
7743
|
}
|
|
7736
|
-
export interface
|
|
7744
|
+
export interface DeleteResourcesParams4 {
|
|
7737
7745
|
/** Resource names. */
|
|
7738
7746
|
names?: string[];
|
|
7739
7747
|
}
|
|
@@ -7816,7 +7824,6 @@ export interface GetTaskResourceParams {
|
|
|
7816
7824
|
/** Id. */
|
|
7817
7825
|
id: string;
|
|
7818
7826
|
}
|
|
7819
|
-
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
7820
7827
|
export declare type SetPoliciesPayload = Record<string, PolicyDc[]>;
|
|
7821
7828
|
export interface FindUserByNameByRolesParams {
|
|
7822
7829
|
/** Roles. */
|
|
@@ -7932,7 +7939,7 @@ export interface StatisticsDbParams {
|
|
|
7932
7939
|
*/
|
|
7933
7940
|
types?: AggregationFunction[];
|
|
7934
7941
|
}
|
|
7935
|
-
export interface
|
|
7942
|
+
export interface ClassifyParams2 {
|
|
7936
7943
|
/** Layer name. */
|
|
7937
7944
|
name: string;
|
|
7938
7945
|
/** Attribute name. */
|
|
@@ -8064,10 +8071,6 @@ export interface GetTableListParams {
|
|
|
8064
8071
|
/** All available permissions list. */
|
|
8065
8072
|
acl?: string;
|
|
8066
8073
|
}
|
|
8067
|
-
export interface DeleteResourcesParams4 {
|
|
8068
|
-
/** Resource names. */
|
|
8069
|
-
names?: string[];
|
|
8070
|
-
}
|
|
8071
8074
|
export interface GetTablesInfoParams {
|
|
8072
8075
|
/** Table names. */
|
|
8073
8076
|
tableNames?: string[];
|
|
@@ -8179,7 +8182,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8179
8182
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8180
8183
|
AcceptFormats?: string[];
|
|
8181
8184
|
}
|
|
8182
|
-
export interface
|
|
8185
|
+
export interface GetCapabilitiesParams7 {
|
|
8183
8186
|
/** Output format of service metadata. */
|
|
8184
8187
|
Format?: string;
|
|
8185
8188
|
/** Must be WMS. */
|