@evergis/api 4.0.14 → 4.0.16
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 +21 -2
- 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 +47 -56
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc,
|
|
1
|
+
import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams9, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTableListParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedBulkFeaturesListDc, PagedFeaturesListDc, PagedListFeatureDc, PagedListTableListItemDc, ResourceDependenciesDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -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,9 +38,10 @@ 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
|
-
deleteResources(query:
|
|
44
|
+
deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
|
|
42
45
|
/**
|
|
43
46
|
* No description
|
|
44
47
|
*
|
|
@@ -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, GetCapabilitiesParams4, 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: GetCapabilitiesParams4): 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. */
|
|
@@ -2177,6 +2181,8 @@ export interface FilterDc {
|
|
|
2177
2181
|
conditions?: string[];
|
|
2178
2182
|
/** Query parameters. */
|
|
2179
2183
|
parameters?: Record<string, any>;
|
|
2184
|
+
/** Filter query geometries. */
|
|
2185
|
+
geometries?: QueryGeometryDc[];
|
|
2180
2186
|
}
|
|
2181
2187
|
/**
|
|
2182
2188
|
* Server response for the creation of a filter in filter service.
|
|
@@ -2184,10 +2190,6 @@ export interface FilterDc {
|
|
|
2184
2190
|
export interface FilterResponseDc {
|
|
2185
2191
|
/** Id of the filter. */
|
|
2186
2192
|
id?: string;
|
|
2187
|
-
/** Filter conditions. */
|
|
2188
|
-
conditions?: string[];
|
|
2189
|
-
/** Query parameters. */
|
|
2190
|
-
parameters?: Record<string, any>;
|
|
2191
2193
|
}
|
|
2192
2194
|
/**
|
|
2193
2195
|
* Sets whether font should be styled.
|
|
@@ -2275,7 +2277,7 @@ export interface GeocodeResultDc {
|
|
|
2275
2277
|
/** The position at the map in [X, Y] format. */
|
|
2276
2278
|
center?: PositionDc;
|
|
2277
2279
|
/** Result geometry. */
|
|
2278
|
-
geometry?: EnvelopeDc |
|
|
2280
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
2279
2281
|
}
|
|
2280
2282
|
/**
|
|
2281
2283
|
* Geocode suggest result.
|
|
@@ -2349,6 +2351,8 @@ export interface GetBulkExtentsDc {
|
|
|
2349
2351
|
conditions?: string[];
|
|
2350
2352
|
/** Query parameters. */
|
|
2351
2353
|
parameters?: Record<string, any>;
|
|
2354
|
+
/** Filter query geometries. */
|
|
2355
|
+
geometries?: QueryGeometryDc[];
|
|
2352
2356
|
}
|
|
2353
2357
|
/**
|
|
2354
2358
|
* Get features from layer paramaters.
|
|
@@ -2362,6 +2366,8 @@ export interface GetBulkFeaturesParametersDc {
|
|
|
2362
2366
|
conditions?: string[];
|
|
2363
2367
|
/** Features filtering query parameters. */
|
|
2364
2368
|
parameters?: Record<string, any>;
|
|
2369
|
+
/** Filter query geometries. */
|
|
2370
|
+
geometries?: QueryGeometryDc[];
|
|
2365
2371
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2366
2372
|
dataFilterId?: string;
|
|
2367
2373
|
/** Click geometry. */
|
|
@@ -2408,6 +2414,8 @@ export interface GetClassifyDc {
|
|
|
2408
2414
|
conditions?: string[];
|
|
2409
2415
|
/** Query parameters. */
|
|
2410
2416
|
parameters?: Record<string, any>;
|
|
2417
|
+
/** Filter query geometries. */
|
|
2418
|
+
geometries?: QueryGeometryDc[];
|
|
2411
2419
|
/**
|
|
2412
2420
|
* The number of classes.
|
|
2413
2421
|
* @format int32
|
|
@@ -2453,8 +2461,8 @@ export interface GetFeaturesParametersDc {
|
|
|
2453
2461
|
conditions?: string[];
|
|
2454
2462
|
/** Features filtering query parameters. */
|
|
2455
2463
|
parameters?: Record<string, any>;
|
|
2456
|
-
/**
|
|
2457
|
-
geometries?: QueryGeometryDc;
|
|
2464
|
+
/** Filter query geometries. */
|
|
2465
|
+
geometries?: QueryGeometryDc[];
|
|
2458
2466
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2459
2467
|
dataFilterId?: string;
|
|
2460
2468
|
/** Click geometry. */
|
|
@@ -2497,6 +2505,8 @@ export interface GetFilteredFeaturesCountDc {
|
|
|
2497
2505
|
conditions?: string[];
|
|
2498
2506
|
/** Query parameters. */
|
|
2499
2507
|
parameters?: Record<string, any>;
|
|
2508
|
+
/** Filter query geometries. */
|
|
2509
|
+
geometries?: QueryGeometryDc[];
|
|
2500
2510
|
}
|
|
2501
2511
|
/**
|
|
2502
2512
|
* Get statistics data contract.
|
|
@@ -2512,6 +2522,8 @@ export interface GetStatisticsDc {
|
|
|
2512
2522
|
conditions?: string[];
|
|
2513
2523
|
/** Query parameters. */
|
|
2514
2524
|
parameters?: Record<string, any>;
|
|
2525
|
+
/** Filter query geometries. */
|
|
2526
|
+
geometries?: QueryGeometryDc[];
|
|
2515
2527
|
/** Type of required statistic function. */
|
|
2516
2528
|
types?: AggregationFunction[];
|
|
2517
2529
|
}
|
|
@@ -2529,6 +2541,8 @@ export interface GetSumOfProductDc {
|
|
|
2529
2541
|
conditions?: string[];
|
|
2530
2542
|
/** Query parameters. */
|
|
2531
2543
|
parameters?: Record<string, any>;
|
|
2544
|
+
/** Filter query geometries. */
|
|
2545
|
+
geometries?: QueryGeometryDc[];
|
|
2532
2546
|
}
|
|
2533
2547
|
/**
|
|
2534
2548
|
* Map element data contract.
|
|
@@ -2587,35 +2601,6 @@ export declare type HexGridSymbolDc = SymbolDc & {
|
|
|
2587
2601
|
aggregations?: Record<string, AggregationFunction>;
|
|
2588
2602
|
};
|
|
2589
2603
|
export declare type IAsyncEnumerableLivePreviewDc = object;
|
|
2590
|
-
export interface IDatum {
|
|
2591
|
-
/** @format double */
|
|
2592
|
-
semimajor?: number;
|
|
2593
|
-
/** @format double */
|
|
2594
|
-
inverseFlattening?: number;
|
|
2595
|
-
/** @format double */
|
|
2596
|
-
semiminor?: number;
|
|
2597
|
-
/** @format double */
|
|
2598
|
-
flattening?: number;
|
|
2599
|
-
reversedOrder?: boolean;
|
|
2600
|
-
/** @format int32 */
|
|
2601
|
-
id?: number;
|
|
2602
|
-
authority?: string;
|
|
2603
|
-
description?: string;
|
|
2604
|
-
wkt?: string;
|
|
2605
|
-
/** @format int32 */
|
|
2606
|
-
dimensions?: number;
|
|
2607
|
-
datum?: IDatum;
|
|
2608
|
-
}
|
|
2609
|
-
export interface ISpatialReference {
|
|
2610
|
-
/** @format int32 */
|
|
2611
|
-
id?: number;
|
|
2612
|
-
authority?: string;
|
|
2613
|
-
description?: string;
|
|
2614
|
-
wkt?: string;
|
|
2615
|
-
/** @format int32 */
|
|
2616
|
-
dimensions?: number;
|
|
2617
|
-
datum?: IDatum;
|
|
2618
|
-
}
|
|
2619
2604
|
/**
|
|
2620
2605
|
* Attributes provides by router to describe route.
|
|
2621
2606
|
*/
|
|
@@ -2839,6 +2824,8 @@ export interface LayerModelDc {
|
|
|
2839
2824
|
conditions?: string[];
|
|
2840
2825
|
/** Query parameters. */
|
|
2841
2826
|
parameters?: Record<string, any>;
|
|
2827
|
+
/** Filter query geometries. */
|
|
2828
|
+
geometries?: QueryGeometryDc[];
|
|
2842
2829
|
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
2843
2830
|
styleId?: string;
|
|
2844
2831
|
/** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
|
|
@@ -2902,6 +2889,8 @@ export interface LegendLayerAttributeDc {
|
|
|
2902
2889
|
conditions?: LegendLayerAttributeConditionDc[];
|
|
2903
2890
|
/** Query parameters. */
|
|
2904
2891
|
parameters?: Record<string, any>;
|
|
2892
|
+
/** Filter query geometries. */
|
|
2893
|
+
geometries?: QueryGeometryDc[];
|
|
2905
2894
|
}
|
|
2906
2895
|
/**
|
|
2907
2896
|
* Legend layer data contract.
|
|
@@ -3042,7 +3031,7 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
|
|
|
3042
3031
|
/**
|
|
3043
3032
|
* Search resources.
|
|
3044
3033
|
*/
|
|
3045
|
-
export interface
|
|
3034
|
+
export interface ListResourcesDc {
|
|
3046
3035
|
/** Parent id. */
|
|
3047
3036
|
parentId?: string;
|
|
3048
3037
|
/**
|
|
@@ -3065,7 +3054,7 @@ export interface ListResourcesDto {
|
|
|
3065
3054
|
/** Resources subtypes filter. */
|
|
3066
3055
|
subtypes?: ResourceSubTypeFilter[];
|
|
3067
3056
|
/** Tags filter. */
|
|
3068
|
-
tagsFilter?:
|
|
3057
|
+
tagsFilter?: TagsFilterDc;
|
|
3069
3058
|
/** Order by result. */
|
|
3070
3059
|
orderBy?: string[];
|
|
3071
3060
|
/** System names filter. */
|
|
@@ -3998,7 +3987,7 @@ export interface QueryGeometryDc {
|
|
|
3998
3987
|
* Query geometry operation data contract.
|
|
3999
3988
|
*/
|
|
4000
3989
|
export interface QueryGeometryOperationDc {
|
|
4001
|
-
/**
|
|
3990
|
+
/** Function name. */
|
|
4002
3991
|
name?: string;
|
|
4003
3992
|
/**
|
|
4004
3993
|
* Buffer size.
|
|
@@ -4006,7 +3995,7 @@ export interface QueryGeometryOperationDc {
|
|
|
4006
3995
|
*/
|
|
4007
3996
|
buffer?: number;
|
|
4008
3997
|
/** Additional parameters. */
|
|
4009
|
-
parameters?:
|
|
3998
|
+
parameters?: any[];
|
|
4010
3999
|
}
|
|
4011
4000
|
/**
|
|
4012
4001
|
* Configuration of a postgres feature layer service.
|
|
@@ -4059,6 +4048,8 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
|
|
|
4059
4048
|
* Json
|
|
4060
4049
|
*/
|
|
4061
4050
|
type?: AttributeType;
|
|
4051
|
+
/** Is array type. */
|
|
4052
|
+
isArray?: boolean;
|
|
4062
4053
|
/** Parameter alias. */
|
|
4063
4054
|
alias?: string;
|
|
4064
4055
|
/** Description. */
|
|
@@ -5630,7 +5621,7 @@ export interface TableListItemDc {
|
|
|
5630
5621
|
/**
|
|
5631
5622
|
* Tags filter.
|
|
5632
5623
|
*/
|
|
5633
|
-
export interface
|
|
5624
|
+
export interface TagsFilterDc {
|
|
5634
5625
|
/** Tags set. */
|
|
5635
5626
|
tags?: string[];
|
|
5636
5627
|
/**
|
|
@@ -6332,7 +6323,7 @@ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
|
|
|
6332
6323
|
*/
|
|
6333
6324
|
export interface UpdateFeatureDc {
|
|
6334
6325
|
/** Feature geometry definition. */
|
|
6335
|
-
geometry?: EnvelopeDc |
|
|
6326
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
6336
6327
|
/** Feature attributes collection. */
|
|
6337
6328
|
attributes?: Record<string, any>;
|
|
6338
6329
|
/** Feature unique identifier. */
|
|
@@ -6770,8 +6761,6 @@ export interface GetUsersParams {
|
|
|
6770
6761
|
limit?: number;
|
|
6771
6762
|
/** If given, will retrieve only users that belong to one of the given username. */
|
|
6772
6763
|
users?: string[];
|
|
6773
|
-
/** If given, will retrieve only users that belong to one of the given groups. */
|
|
6774
|
-
groups?: string[];
|
|
6775
6764
|
/** If given, will retrieve only users that have one of the given roles. */
|
|
6776
6765
|
roles?: string[];
|
|
6777
6766
|
}
|
|
@@ -6792,8 +6781,6 @@ export interface GetExtendedUsersParams {
|
|
|
6792
6781
|
limit?: number;
|
|
6793
6782
|
/** If given, will retrieve only users that belong to one of the given username. */
|
|
6794
6783
|
users?: string[];
|
|
6795
|
-
/** If given, will retrieve only users that belong to one of the given groups. */
|
|
6796
|
-
groups?: string[];
|
|
6797
6784
|
/** If given, will retrieve only users that have one of the given roles. */
|
|
6798
6785
|
roles?: string[];
|
|
6799
6786
|
}
|
|
@@ -6887,6 +6874,10 @@ export interface UploadPreviewPayload {
|
|
|
6887
6874
|
/** @format binary */
|
|
6888
6875
|
file?: File;
|
|
6889
6876
|
}
|
|
6877
|
+
export interface UploadPreview1Payload {
|
|
6878
|
+
/** @format binary */
|
|
6879
|
+
file?: File;
|
|
6880
|
+
}
|
|
6890
6881
|
export interface GetCamerasParams {
|
|
6891
6882
|
/**
|
|
6892
6883
|
* Page objects limit.
|
|
@@ -7039,6 +7030,7 @@ export interface CreateFilePayload {
|
|
|
7039
7030
|
icon?: string;
|
|
7040
7031
|
}
|
|
7041
7032
|
export declare type SetPermissionsPayload = ResourceAclDc[];
|
|
7033
|
+
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
7042
7034
|
export interface GetConfigurationsListParams {
|
|
7043
7035
|
/**
|
|
7044
7036
|
* Offset.
|
|
@@ -7397,7 +7389,7 @@ export interface GetByIdParams {
|
|
|
7397
7389
|
/**
|
|
7398
7390
|
* Geometry data contract.
|
|
7399
7391
|
*/
|
|
7400
|
-
export declare type UnitePayload = EnvelopeDc |
|
|
7392
|
+
export declare type UnitePayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7401
7393
|
export interface UniteParams {
|
|
7402
7394
|
/**
|
|
7403
7395
|
* Spatial reference of result feature.
|
|
@@ -7412,7 +7404,7 @@ export interface UniteParams {
|
|
|
7412
7404
|
/**
|
|
7413
7405
|
* Geometry data contract.
|
|
7414
7406
|
*/
|
|
7415
|
-
export declare type SubtractPayload = EnvelopeDc |
|
|
7407
|
+
export declare type SubtractPayload = EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
|
|
7416
7408
|
export interface SubtractParams {
|
|
7417
7409
|
/**
|
|
7418
7410
|
* Spatial reference id of result features.
|
|
@@ -7672,7 +7664,7 @@ export interface ValidateExpressionParams {
|
|
|
7672
7664
|
/** Layer name. */
|
|
7673
7665
|
layerName: string;
|
|
7674
7666
|
}
|
|
7675
|
-
export interface
|
|
7667
|
+
export interface GetRasterMetaParams5 {
|
|
7676
7668
|
/**
|
|
7677
7669
|
* Min value for build histogram.
|
|
7678
7670
|
* @format double
|
|
@@ -7751,7 +7743,7 @@ export interface GetProjectsListParams {
|
|
|
7751
7743
|
/** Filter layers by set of tags. */
|
|
7752
7744
|
tags?: string[];
|
|
7753
7745
|
}
|
|
7754
|
-
export interface
|
|
7746
|
+
export interface DeleteResourcesParams6 {
|
|
7755
7747
|
/** Resource names. */
|
|
7756
7748
|
names?: string[];
|
|
7757
7749
|
}
|
|
@@ -7834,7 +7826,6 @@ export interface GetTaskResourceParams {
|
|
|
7834
7826
|
/** Id. */
|
|
7835
7827
|
id: string;
|
|
7836
7828
|
}
|
|
7837
|
-
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
7838
7829
|
export declare type SetPoliciesPayload = Record<string, PolicyDc[]>;
|
|
7839
7830
|
export interface FindUserByNameByRolesParams {
|
|
7840
7831
|
/** Roles. */
|
|
@@ -7950,7 +7941,7 @@ export interface StatisticsDbParams {
|
|
|
7950
7941
|
*/
|
|
7951
7942
|
types?: AggregationFunction[];
|
|
7952
7943
|
}
|
|
7953
|
-
export interface
|
|
7944
|
+
export interface ClassifyParams8 {
|
|
7954
7945
|
/** Layer name. */
|
|
7955
7946
|
name: string;
|
|
7956
7947
|
/** Attribute name. */
|
|
@@ -8082,7 +8073,7 @@ export interface GetTableListParams {
|
|
|
8082
8073
|
/** All available permissions list. */
|
|
8083
8074
|
acl?: string;
|
|
8084
8075
|
}
|
|
8085
|
-
export interface
|
|
8076
|
+
export interface DeleteResourcesParams9 {
|
|
8086
8077
|
/** Resource names. */
|
|
8087
8078
|
names?: string[];
|
|
8088
8079
|
}
|
|
@@ -8197,7 +8188,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8197
8188
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8198
8189
|
AcceptFormats?: string[];
|
|
8199
8190
|
}
|
|
8200
|
-
export interface
|
|
8191
|
+
export interface GetCapabilitiesParams4 {
|
|
8201
8192
|
/** Output format of service metadata. */
|
|
8202
8193
|
Format?: string;
|
|
8203
8194
|
/** Must be WMS. */
|