@evergis/api 3.0.136 → 3.0.137
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__/EqlTestService.d.ts +20 -0
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/ProjectsService.d.ts +13 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +11 -0
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +99 -65
- package/dist/api.cjs.development.js +50 -1
- 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 +53 -2
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { GetQueryResultParams } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version 1.0.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class EqlTestService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags EqlTest
|
|
13
|
+
* @name GetQueryResult
|
|
14
|
+
* @operationId EqlTestController_GetQueryResult
|
|
15
|
+
* @summary Perform resources set acl access batch operation.
|
|
16
|
+
* @request POST:/eql/query
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
getQueryResult(query: GetQueryResultParams): Promise<void>;
|
|
20
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc, ReadPartParams } from './data-contracts';
|
|
1
|
+
import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalPbfLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc, ReadPartParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -50,6 +50,17 @@ export declare class ImportService extends Service {
|
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
52
|
getExternalWmsLayers(query: GetExternalWmsLayersParams): Promise<ExternalLayerInfoDc[]>;
|
|
53
|
+
/**
|
|
54
|
+
* No description
|
|
55
|
+
*
|
|
56
|
+
* @tags ImportService
|
|
57
|
+
* @name GetExternalPbfLayers
|
|
58
|
+
* @operationId ImportServiceController_GetExternalPbfLayers
|
|
59
|
+
* @summary Get list of external PBF layers.
|
|
60
|
+
* @request GET:/import/pbf
|
|
61
|
+
* @response `200` Success
|
|
62
|
+
*/
|
|
63
|
+
getExternalPbfLayers(query: GetExternalPbfLayersParams): Promise<ExternalLayerInfoDc[]>;
|
|
53
64
|
/**
|
|
54
65
|
* No description
|
|
55
66
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams6, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -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: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -105,6 +105,17 @@ export declare class ProjectsService extends Service {
|
|
|
105
105
|
* @response `200` Success
|
|
106
106
|
*/
|
|
107
107
|
getProjectLayersExtendedInfo(name: string): Promise<ExtendedProjectLayersInfo>;
|
|
108
|
+
/**
|
|
109
|
+
* No description
|
|
110
|
+
*
|
|
111
|
+
* @tags Projects
|
|
112
|
+
* @name GetTilesLayerImage
|
|
113
|
+
* @operationId ProjectsController_GetTilesLayerImage
|
|
114
|
+
* @summary Render tile.
|
|
115
|
+
* @request GET:/projects/{name}/tile/{z}/{x}/{y}
|
|
116
|
+
* @response `200` Success
|
|
117
|
+
*/
|
|
118
|
+
getTilesLayerImage(name: string, x: number, y: number, z: number): string;
|
|
108
119
|
/**
|
|
109
120
|
* No description
|
|
110
121
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams4, 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: ClassifyParams4): Promise<ClassifyDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -61,6 +61,17 @@ export declare class TablesService extends Service {
|
|
|
61
61
|
* @response `200` Success
|
|
62
62
|
*/
|
|
63
63
|
updateTable(name: string, data: UpdateTableDc): Promise<DetailedTableInfoDc>;
|
|
64
|
+
/**
|
|
65
|
+
* No description
|
|
66
|
+
*
|
|
67
|
+
* @tags Tables
|
|
68
|
+
* @name PutTable
|
|
69
|
+
* @operationId TablesController_PutTable
|
|
70
|
+
* @summary Override exists table.
|
|
71
|
+
* @request PUT:/tables/{name}
|
|
72
|
+
* @response `200` Success
|
|
73
|
+
*/
|
|
74
|
+
putTable(name: string, data: DetailedTableInfoDc): Promise<DetailedTableInfoDc>;
|
|
64
75
|
/**
|
|
65
76
|
* No description
|
|
66
77
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams1, 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: GetCapabilitiesParams1): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -13,7 +13,7 @@ export interface AccessControlListDc {
|
|
|
13
13
|
*/
|
|
14
14
|
export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
|
|
15
15
|
type?: string;
|
|
16
|
-
geometry: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
16
|
+
geometry: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
17
17
|
aggregationSettings: AggregationSettingDc[];
|
|
18
18
|
};
|
|
19
19
|
export declare type AggregatedClusterSymbolDc = SymbolDc & {
|
|
@@ -756,6 +756,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
|
|
|
756
756
|
cacheTimeout?: number;
|
|
757
757
|
idAttributeAlias?: string;
|
|
758
758
|
countAttributeAlias?: string;
|
|
759
|
+
selectionObjectsLimit?: number;
|
|
759
760
|
};
|
|
760
761
|
/**
|
|
761
762
|
* Description of a table column.
|
|
@@ -906,7 +907,7 @@ export interface CompositeServiceInfoDc {
|
|
|
906
907
|
*
|
|
907
908
|
* polyline
|
|
908
909
|
*
|
|
909
|
-
*
|
|
910
|
+
* multipolygon
|
|
910
911
|
*
|
|
911
912
|
* envelope
|
|
912
913
|
*
|
|
@@ -1279,7 +1280,7 @@ export declare type EditAttributesTaskParametersDc = TaskParametersDc & {
|
|
|
1279
1280
|
editExpression: string;
|
|
1280
1281
|
createNewAttribute?: boolean;
|
|
1281
1282
|
attributeType: AttributeType;
|
|
1282
|
-
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1283
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1283
1284
|
};
|
|
1284
1285
|
/**
|
|
1285
1286
|
* Envelope geometry.
|
|
@@ -1603,7 +1604,7 @@ export interface FailedServiceInfoDc {
|
|
|
1603
1604
|
*
|
|
1604
1605
|
* polyline
|
|
1605
1606
|
*
|
|
1606
|
-
*
|
|
1607
|
+
* multipolygon
|
|
1607
1608
|
*
|
|
1608
1609
|
* envelope
|
|
1609
1610
|
*
|
|
@@ -1718,7 +1719,7 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1718
1719
|
*
|
|
1719
1720
|
* polyline
|
|
1720
1721
|
*
|
|
1721
|
-
*
|
|
1722
|
+
* multipolygon
|
|
1722
1723
|
*
|
|
1723
1724
|
* envelope
|
|
1724
1725
|
*
|
|
@@ -1813,8 +1814,8 @@ export interface FeatureSymbolDc {
|
|
|
1813
1814
|
* Task parameters for tasks that operate on features.
|
|
1814
1815
|
*/
|
|
1815
1816
|
export declare type FeatureTaskParametersDc = TaskParametersDc & {
|
|
1816
|
-
source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1817
|
-
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1817
|
+
source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1818
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
1818
1819
|
};
|
|
1819
1820
|
/**
|
|
1820
1821
|
* Type of the feature.
|
|
@@ -2008,7 +2009,7 @@ export interface GeometryDc {
|
|
|
2008
2009
|
*
|
|
2009
2010
|
* polyline
|
|
2010
2011
|
*
|
|
2011
|
-
*
|
|
2012
|
+
* multipolygon
|
|
2012
2013
|
*
|
|
2013
2014
|
* envelope
|
|
2014
2015
|
*
|
|
@@ -2030,7 +2031,7 @@ point
|
|
|
2030
2031
|
|
|
2031
2032
|
polyline
|
|
2032
2033
|
|
|
2033
|
-
|
|
2034
|
+
multipolygon
|
|
2034
2035
|
|
|
2035
2036
|
envelope
|
|
2036
2037
|
|
|
@@ -2040,7 +2041,7 @@ export declare enum GeometryType {
|
|
|
2040
2041
|
Unknown = "unknown",
|
|
2041
2042
|
Point = "point",
|
|
2042
2043
|
Polyline = "polyline",
|
|
2043
|
-
Polygon = "
|
|
2044
|
+
Polygon = "multipolygon",
|
|
2044
2045
|
Envelope = "envelope",
|
|
2045
2046
|
Multipoint = "multipoint"
|
|
2046
2047
|
}
|
|
@@ -2120,8 +2121,8 @@ export interface IDatum {
|
|
|
2120
2121
|
datum?: IDatum;
|
|
2121
2122
|
}
|
|
2122
2123
|
export interface IEnvelopeGeometry {
|
|
2123
|
-
start?:
|
|
2124
|
-
end?:
|
|
2124
|
+
start?: Vector2;
|
|
2125
|
+
end?: Vector2;
|
|
2125
2126
|
/** @format double */
|
|
2126
2127
|
width?: number;
|
|
2127
2128
|
/** @format double */
|
|
@@ -2136,7 +2137,7 @@ export interface IEnvelopeGeometry {
|
|
|
2136
2137
|
*
|
|
2137
2138
|
* polyline
|
|
2138
2139
|
*
|
|
2139
|
-
*
|
|
2140
|
+
* multipolygon
|
|
2140
2141
|
*
|
|
2141
2142
|
* envelope
|
|
2142
2143
|
*
|
|
@@ -2166,6 +2167,14 @@ export interface ILineEndingDc {
|
|
|
2166
2167
|
*/
|
|
2167
2168
|
type?: LineEndingType;
|
|
2168
2169
|
}
|
|
2170
|
+
export interface IRectangle {
|
|
2171
|
+
/** @format double */
|
|
2172
|
+
width?: number;
|
|
2173
|
+
/** @format double */
|
|
2174
|
+
height?: number;
|
|
2175
|
+
center?: IVector;
|
|
2176
|
+
halfSize?: IVector;
|
|
2177
|
+
}
|
|
2169
2178
|
/**
|
|
2170
2179
|
* Configuration of an SP service.
|
|
2171
2180
|
*/
|
|
@@ -2183,7 +2192,10 @@ export interface ISpatialReference {
|
|
|
2183
2192
|
dimensions?: number;
|
|
2184
2193
|
datum?: IDatum;
|
|
2185
2194
|
}
|
|
2186
|
-
export
|
|
2195
|
+
export interface IVector {
|
|
2196
|
+
/** @format int32 */
|
|
2197
|
+
dimensions?: number;
|
|
2198
|
+
}
|
|
2187
2199
|
/**
|
|
2188
2200
|
* Attributes provides by router to describe route.
|
|
2189
2201
|
*/
|
|
@@ -2371,7 +2383,7 @@ export interface LayerDefinitionDc {
|
|
|
2371
2383
|
*
|
|
2372
2384
|
* polyline
|
|
2373
2385
|
*
|
|
2374
|
-
*
|
|
2386
|
+
* multipolygon
|
|
2375
2387
|
*
|
|
2376
2388
|
* envelope
|
|
2377
2389
|
*
|
|
@@ -3210,6 +3222,7 @@ export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBa
|
|
|
3210
3222
|
condition?: string;
|
|
3211
3223
|
featuresLimit?: number;
|
|
3212
3224
|
extentOffset?: number;
|
|
3225
|
+
simplify?: SimplifyInfoDc;
|
|
3213
3226
|
};
|
|
3214
3227
|
/**
|
|
3215
3228
|
* Configuration of a postgres tile catalog service.
|
|
@@ -3343,7 +3356,12 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3343
3356
|
sourceUrl: string;
|
|
3344
3357
|
minResolution?: number;
|
|
3345
3358
|
maxResolution?: number;
|
|
3346
|
-
layers
|
|
3359
|
+
layers?: string[];
|
|
3360
|
+
styles?: Record<string, {
|
|
3361
|
+
point?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3362
|
+
polyline?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3363
|
+
polygon?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
|
|
3364
|
+
}>;
|
|
3347
3365
|
};
|
|
3348
3366
|
/**
|
|
3349
3367
|
* Service info for a Proxy service.
|
|
@@ -3387,7 +3405,7 @@ export interface ProxyServiceInfoDc {
|
|
|
3387
3405
|
*
|
|
3388
3406
|
* polyline
|
|
3389
3407
|
*
|
|
3390
|
-
*
|
|
3408
|
+
* multipolygon
|
|
3391
3409
|
*
|
|
3392
3410
|
* envelope
|
|
3393
3411
|
*
|
|
@@ -3456,22 +3474,6 @@ export declare type RasterSymbolDc = SymbolDc & {
|
|
|
3456
3474
|
type?: string;
|
|
3457
3475
|
opacity?: CalculatedParameterDc;
|
|
3458
3476
|
};
|
|
3459
|
-
export interface Rectangle2 {
|
|
3460
|
-
/** @format double */
|
|
3461
|
-
x1?: number;
|
|
3462
|
-
/** @format double */
|
|
3463
|
-
y1?: number;
|
|
3464
|
-
/** @format double */
|
|
3465
|
-
x2?: number;
|
|
3466
|
-
/** @format double */
|
|
3467
|
-
y2?: number;
|
|
3468
|
-
/** @format double */
|
|
3469
|
-
width?: number;
|
|
3470
|
-
/** @format double */
|
|
3471
|
-
height?: number;
|
|
3472
|
-
center?: IVector;
|
|
3473
|
-
halfSize?: IVector;
|
|
3474
|
-
}
|
|
3475
3477
|
/**
|
|
3476
3478
|
* Types of table reference.
|
|
3477
3479
|
|
|
@@ -3997,7 +3999,7 @@ export interface ServiceListItemDc {
|
|
|
3997
3999
|
*
|
|
3998
4000
|
* polyline
|
|
3999
4001
|
*
|
|
4000
|
-
*
|
|
4002
|
+
* multipolygon
|
|
4001
4003
|
*
|
|
4002
4004
|
* envelope
|
|
4003
4005
|
*
|
|
@@ -4034,16 +4036,43 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
|
|
|
4034
4036
|
beginningSize?: LineEndingSize;
|
|
4035
4037
|
endingSize?: LineEndingSize;
|
|
4036
4038
|
};
|
|
4039
|
+
/**
|
|
4040
|
+
* Simplify configuration information.
|
|
4041
|
+
*/
|
|
4042
|
+
export interface SimplifyInfoDc {
|
|
4043
|
+
/**
|
|
4044
|
+
* Simplify type.
|
|
4045
|
+
*
|
|
4046
|
+
* Basic
|
|
4047
|
+
*
|
|
4048
|
+
* PreserveTopology
|
|
4049
|
+
*
|
|
4050
|
+
* VW
|
|
4051
|
+
*/
|
|
4052
|
+
simplifyType?: SimplifyType;
|
|
4053
|
+
/**
|
|
4054
|
+
* Tolerance.
|
|
4055
|
+
* @format float
|
|
4056
|
+
*/
|
|
4057
|
+
simplifyTolerance?: number;
|
|
4058
|
+
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
4059
|
+
simplifyPreserveCollapsed?: boolean;
|
|
4060
|
+
/** Snap grid cell size by scale. */
|
|
4061
|
+
snapCellSizes?: Record<string, number | null>;
|
|
4062
|
+
}
|
|
4037
4063
|
/**
|
|
4038
4064
|
* Simplify type.
|
|
4039
4065
|
|
|
4040
4066
|
Basic
|
|
4041
4067
|
|
|
4042
4068
|
PreserveTopology
|
|
4069
|
+
|
|
4070
|
+
VW
|
|
4043
4071
|
*/
|
|
4044
4072
|
export declare enum SimplifyType {
|
|
4045
4073
|
Basic = "Basic",
|
|
4046
|
-
PreserveTopology = "PreserveTopology"
|
|
4074
|
+
PreserveTopology = "PreserveTopology",
|
|
4075
|
+
VW = "VW"
|
|
4047
4076
|
}
|
|
4048
4077
|
/**
|
|
4049
4078
|
* User social network information.
|
|
@@ -4312,6 +4341,12 @@ export interface SymbolInfoDc {
|
|
|
4312
4341
|
*/
|
|
4313
4342
|
categoryId?: number;
|
|
4314
4343
|
}
|
|
4344
|
+
/**
|
|
4345
|
+
* Description of the temp file as a task data storage.
|
|
4346
|
+
*/
|
|
4347
|
+
export declare type TabStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
|
|
4348
|
+
type?: string;
|
|
4349
|
+
};
|
|
4315
4350
|
/**
|
|
4316
4351
|
* Common fields for table configurations.
|
|
4317
4352
|
*/
|
|
@@ -4673,7 +4708,7 @@ export interface TileCatalogServiceInfoDc {
|
|
|
4673
4708
|
*
|
|
4674
4709
|
* polyline
|
|
4675
4710
|
*
|
|
4676
|
-
*
|
|
4711
|
+
* multipolygon
|
|
4677
4712
|
*
|
|
4678
4713
|
* envelope
|
|
4679
4714
|
*
|
|
@@ -4746,7 +4781,7 @@ export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc &
|
|
|
4746
4781
|
*/
|
|
4747
4782
|
export interface TileInfo {
|
|
4748
4783
|
origin?: IVector;
|
|
4749
|
-
boundingRectangle?:
|
|
4784
|
+
boundingRectangle?: IRectangle;
|
|
4750
4785
|
/**
|
|
4751
4786
|
* If set to true, the origin point will be considered to be the bottom left corner and increasing tile indexes increase
|
|
4752
4787
|
* the value of the Y coordinate. If false, the origin point is top left corner, and increasing tile indexes decrease
|
|
@@ -4850,7 +4885,7 @@ export interface TileServiceInfoDc {
|
|
|
4850
4885
|
*
|
|
4851
4886
|
* polyline
|
|
4852
4887
|
*
|
|
4853
|
-
*
|
|
4888
|
+
* multipolygon
|
|
4854
4889
|
*
|
|
4855
4890
|
* envelope
|
|
4856
4891
|
*
|
|
@@ -5039,7 +5074,7 @@ export interface UpdateUserDc {
|
|
|
5039
5074
|
* Upload raster task parameters data contract.
|
|
5040
5075
|
*/
|
|
5041
5076
|
export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
|
|
5042
|
-
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
5077
|
+
target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
|
|
5043
5078
|
files: string[];
|
|
5044
5079
|
attributes?: Record<string, any>;
|
|
5045
5080
|
maxZoomLevel: number;
|
|
@@ -5320,6 +5355,10 @@ export interface RemoveConfigurationParams {
|
|
|
5320
5355
|
/** URL path. */
|
|
5321
5356
|
urlPath: string;
|
|
5322
5357
|
}
|
|
5358
|
+
export interface GetQueryResultParams {
|
|
5359
|
+
/** EQL string. */
|
|
5360
|
+
eql?: string;
|
|
5361
|
+
}
|
|
5323
5362
|
export interface IncreaseResourcesLimitParams {
|
|
5324
5363
|
/**
|
|
5325
5364
|
* Additional maps count.
|
|
@@ -5433,6 +5472,10 @@ export interface GetExternalWmsLayersParams {
|
|
|
5433
5472
|
/** WMS service url. */
|
|
5434
5473
|
url?: string;
|
|
5435
5474
|
}
|
|
5475
|
+
export interface GetExternalPbfLayersParams {
|
|
5476
|
+
/** PBF service url. */
|
|
5477
|
+
url?: string;
|
|
5478
|
+
}
|
|
5436
5479
|
export interface GetExternalArcGisLayersParams {
|
|
5437
5480
|
/** ArcGis map service url. */
|
|
5438
5481
|
url?: string;
|
|
@@ -5645,21 +5688,6 @@ export interface GetLayerImageParams {
|
|
|
5645
5688
|
extentSr?: number;
|
|
5646
5689
|
/** Condition to apply to the layer to filter the features. */
|
|
5647
5690
|
condition?: string;
|
|
5648
|
-
/**
|
|
5649
|
-
* Simplify type.
|
|
5650
|
-
*
|
|
5651
|
-
* Basic
|
|
5652
|
-
*
|
|
5653
|
-
* PreserveTopology
|
|
5654
|
-
*/
|
|
5655
|
-
SimplifyType?: SimplifyType;
|
|
5656
|
-
/**
|
|
5657
|
-
* Tolerance.
|
|
5658
|
-
* @format float
|
|
5659
|
-
*/
|
|
5660
|
-
SimplifyTolerance?: number;
|
|
5661
|
-
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
5662
|
-
SimplifyPreserveCollapsed?: boolean;
|
|
5663
5691
|
/**
|
|
5664
5692
|
* Opacity to apply to the layer image.
|
|
5665
5693
|
* @format float
|
|
@@ -5999,7 +6027,7 @@ export interface GetProjectsListParams {
|
|
|
5999
6027
|
tags?: string[];
|
|
6000
6028
|
}
|
|
6001
6029
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6002
|
-
export interface
|
|
6030
|
+
export interface DeleteResourcesParams6 {
|
|
6003
6031
|
/** Resource names. */
|
|
6004
6032
|
names?: string[];
|
|
6005
6033
|
}
|
|
@@ -6237,7 +6265,7 @@ export interface StatisticsDbParams {
|
|
|
6237
6265
|
*/
|
|
6238
6266
|
types?: AggregationFunction[];
|
|
6239
6267
|
}
|
|
6240
|
-
export interface
|
|
6268
|
+
export interface ClassifyParams4 {
|
|
6241
6269
|
/** Layer name. */
|
|
6242
6270
|
name?: string;
|
|
6243
6271
|
/** Attribute name. */
|
|
@@ -6361,10 +6389,6 @@ export interface GetTableListParams {
|
|
|
6361
6389
|
acl?: string;
|
|
6362
6390
|
}
|
|
6363
6391
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6364
|
-
export interface DeleteResourcesParams6 {
|
|
6365
|
-
/** Resource names. */
|
|
6366
|
-
names?: string[];
|
|
6367
|
-
}
|
|
6368
6392
|
export interface GetTablesInfoParams {
|
|
6369
6393
|
/** Table names. */
|
|
6370
6394
|
tableNames?: string[];
|
|
@@ -6450,12 +6474,16 @@ export interface GetVectorTileParams {
|
|
|
6450
6474
|
condition?: string;
|
|
6451
6475
|
/** True if name is project name, otherwise false. */
|
|
6452
6476
|
isProject?: boolean;
|
|
6477
|
+
/** True if compress GZIP result pbf tile. */
|
|
6478
|
+
compress?: boolean;
|
|
6453
6479
|
/**
|
|
6454
6480
|
* Simplify type.
|
|
6455
6481
|
*
|
|
6456
6482
|
* Basic
|
|
6457
6483
|
*
|
|
6458
6484
|
* PreserveTopology
|
|
6485
|
+
*
|
|
6486
|
+
* VW
|
|
6459
6487
|
*/
|
|
6460
6488
|
SimplifyType?: SimplifyType;
|
|
6461
6489
|
/**
|
|
@@ -6465,6 +6493,8 @@ export interface GetVectorTileParams {
|
|
|
6465
6493
|
SimplifyTolerance?: number;
|
|
6466
6494
|
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
6467
6495
|
SimplifyPreserveCollapsed?: boolean;
|
|
6496
|
+
/** Snap grid cell size by scale. */
|
|
6497
|
+
SnapCellSizes?: Record<string, number | null>;
|
|
6468
6498
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
6469
6499
|
dataFilterId?: string;
|
|
6470
6500
|
/** Project or layer name. */
|
|
@@ -6515,7 +6545,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
6515
6545
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6516
6546
|
AcceptFormats?: string[];
|
|
6517
6547
|
}
|
|
6518
|
-
export interface
|
|
6548
|
+
export interface GetCapabilitiesParams1 {
|
|
6519
6549
|
/** Output format of service metadata. */
|
|
6520
6550
|
Format?: string;
|
|
6521
6551
|
/** Must be WMS. */
|
|
@@ -6540,8 +6570,10 @@ export interface GetMapParams {
|
|
|
6540
6570
|
'BoundingBox.Width'?: number;
|
|
6541
6571
|
/** @format double */
|
|
6542
6572
|
'BoundingBox.Height'?: number;
|
|
6543
|
-
|
|
6544
|
-
'BoundingBox.
|
|
6573
|
+
/** @format int32 */
|
|
6574
|
+
'BoundingBox.Center.Dimensions'?: number;
|
|
6575
|
+
/** @format int32 */
|
|
6576
|
+
'BoundingBox.HalfSize.Dimensions'?: number;
|
|
6545
6577
|
/**
|
|
6546
6578
|
* Width in pixels of map picture.
|
|
6547
6579
|
* @format int32
|
|
@@ -6607,8 +6639,10 @@ export interface GetFeatureInfoParams {
|
|
|
6607
6639
|
'BoundingBox.Width'?: number;
|
|
6608
6640
|
/** @format double */
|
|
6609
6641
|
'BoundingBox.Height'?: number;
|
|
6610
|
-
|
|
6611
|
-
'BoundingBox.
|
|
6642
|
+
/** @format int32 */
|
|
6643
|
+
'BoundingBox.Center.Dimensions'?: number;
|
|
6644
|
+
/** @format int32 */
|
|
6645
|
+
'BoundingBox.HalfSize.Dimensions'?: number;
|
|
6612
6646
|
/**
|
|
6613
6647
|
* Width in pixels of map picture.
|
|
6614
6648
|
* @format int32
|
|
@@ -803,6 +803,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
803
803
|
value: function getExternalWmsLayers(query) {
|
|
804
804
|
return this.http.get("/import/wms", query).json();
|
|
805
805
|
}
|
|
806
|
+
/**
|
|
807
|
+
* No description
|
|
808
|
+
*
|
|
809
|
+
* @tags ImportService
|
|
810
|
+
* @name GetExternalPbfLayers
|
|
811
|
+
* @operationId ImportServiceController_GetExternalPbfLayers
|
|
812
|
+
* @summary Get list of external PBF layers.
|
|
813
|
+
* @request GET:/import/pbf
|
|
814
|
+
* @response `200` Success
|
|
815
|
+
*/
|
|
816
|
+
|
|
817
|
+
}, {
|
|
818
|
+
key: "getExternalPbfLayers",
|
|
819
|
+
value: function getExternalPbfLayers(query) {
|
|
820
|
+
return this.http.get("/import/pbf", query).json();
|
|
821
|
+
}
|
|
806
822
|
/**
|
|
807
823
|
* No description
|
|
808
824
|
*
|
|
@@ -2839,6 +2855,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
2839
2855
|
value: function updateTable(name, data) {
|
|
2840
2856
|
return this.http.patch("/tables/" + name, data).json();
|
|
2841
2857
|
}
|
|
2858
|
+
/**
|
|
2859
|
+
* No description
|
|
2860
|
+
*
|
|
2861
|
+
* @tags Tables
|
|
2862
|
+
* @name PutTable
|
|
2863
|
+
* @operationId TablesController_PutTable
|
|
2864
|
+
* @summary Override exists table.
|
|
2865
|
+
* @request PUT:/tables/{name}
|
|
2866
|
+
* @response `200` Success
|
|
2867
|
+
*/
|
|
2868
|
+
|
|
2869
|
+
}, {
|
|
2870
|
+
key: "putTable",
|
|
2871
|
+
value: function putTable(name, data) {
|
|
2872
|
+
return this.http.put("/tables/" + name, data).json();
|
|
2873
|
+
}
|
|
2842
2874
|
/**
|
|
2843
2875
|
* No description
|
|
2844
2876
|
*
|
|
@@ -3399,6 +3431,22 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
3399
3431
|
value: function getProjectLayersExtendedInfo(name) {
|
|
3400
3432
|
return this.http.get("/projects/" + name + "/extended-info").json();
|
|
3401
3433
|
}
|
|
3434
|
+
/**
|
|
3435
|
+
* No description
|
|
3436
|
+
*
|
|
3437
|
+
* @tags Projects
|
|
3438
|
+
* @name GetTilesLayerImage
|
|
3439
|
+
* @operationId ProjectsController_GetTilesLayerImage
|
|
3440
|
+
* @summary Render tile.
|
|
3441
|
+
* @request GET:/projects/{name}/tile/{z}/{x}/{y}
|
|
3442
|
+
* @response `200` Success
|
|
3443
|
+
*/
|
|
3444
|
+
|
|
3445
|
+
}, {
|
|
3446
|
+
key: "getTilesLayerImage",
|
|
3447
|
+
value: function getTilesLayerImage(name, x, y, z) {
|
|
3448
|
+
return this.http.createUrl("/projects/" + name + "/tile/" + z + "/" + x + "/" + y);
|
|
3449
|
+
}
|
|
3402
3450
|
/**
|
|
3403
3451
|
* No description
|
|
3404
3452
|
*
|
|
@@ -6848,7 +6896,7 @@ function isFeatureLayer(layer) {
|
|
|
6848
6896
|
GeometryType["Unknown"] = "unknown";
|
|
6849
6897
|
GeometryType["Point"] = "point";
|
|
6850
6898
|
GeometryType["Polyline"] = "polyline";
|
|
6851
|
-
GeometryType["Polygon"] = "
|
|
6899
|
+
GeometryType["Polygon"] = "multipolygon";
|
|
6852
6900
|
GeometryType["Envelope"] = "envelope";
|
|
6853
6901
|
GeometryType["Multipoint"] = "multipoint";
|
|
6854
6902
|
})(exports.GeometryType || (exports.GeometryType = {}));
|
|
@@ -6939,6 +6987,7 @@ function isFeatureLayer(layer) {
|
|
|
6939
6987
|
(function (SimplifyType) {
|
|
6940
6988
|
SimplifyType["Basic"] = "Basic";
|
|
6941
6989
|
SimplifyType["PreserveTopology"] = "PreserveTopology";
|
|
6990
|
+
SimplifyType["VW"] = "VW";
|
|
6942
6991
|
})(exports.SimplifyType || (exports.SimplifyType = {}));
|
|
6943
6992
|
|
|
6944
6993
|
(function (StringSubType) {
|