@evergis/api 3.0.182 → 3.0.184

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.
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams1, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
1
+ import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams4, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, SimpleSymbolDc, StyleDc, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -523,6 +523,17 @@ export declare class LayersService extends Service {
523
523
  * @response `200` Success
524
524
  */
525
525
  getFilteredFeaturesCount({ name, ...query }: GetFilteredFeaturesCountParams): Promise<number>;
526
+ /**
527
+ * No description
528
+ *
529
+ * @tags Layers
530
+ * @name GetFilteredFeaturesCount1
531
+ * @operationId LayersController_GetFilteredFeaturesCount_1
532
+ * @summary Get features count according layer filter of the given name.
533
+ * @request POST:/layers/{name}/features/count
534
+ * @response `200` Success
535
+ */
536
+ getFilteredFeaturesCount1(name: string, data: GetFilteredFeaturesCountDc): Promise<number>;
526
537
  /**
527
538
  * No description
528
539
  *
@@ -567,7 +578,7 @@ export declare class LayersService extends Service {
567
578
  * @request GET:/layers/{name}/{id}/metadata
568
579
  * @response `200` Success
569
580
  */
570
- getRasterMeta({ name, id, ...query }: GetRasterMetaParams1): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
581
+ getRasterMeta({ name, id, ...query }: GetRasterMetaParams4): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
571
582
  /**
572
583
  * No description
573
584
  *
@@ -579,6 +590,50 @@ export declare class LayersService extends Service {
579
590
  * @response `200` Success
580
591
  */
581
592
  createRoute(name: string, data: RouteFeatureDc): Promise<LayerUpdateInfo>;
593
+ /**
594
+ * No description
595
+ *
596
+ * @tags Layers
597
+ * @name ApplyStyle
598
+ * @operationId LayersController_ApplyStyle
599
+ * @summary Create data layout and image layout for given style.
600
+ * @request PUT:/layers/{name}/style
601
+ * @response `200` Success
602
+ */
603
+ applyStyle(name: string, data: StyleDc): Promise<void>;
604
+ /**
605
+ * No description
606
+ *
607
+ * @tags Layers
608
+ * @name GetStyle
609
+ * @operationId LayersController_GetStyle
610
+ * @summary Get style of the given layer.
611
+ * @request GET:/layers/{name}/style
612
+ * @response `200` Success
613
+ */
614
+ getStyle(name: string): Promise<SimpleSymbolDc[]>;
615
+ /**
616
+ * No description
617
+ *
618
+ * @tags Layers
619
+ * @name GetImageLayout
620
+ * @operationId LayersController_GetImageLayout
621
+ * @summary Get date layout.
622
+ * @request GET:/layers/{name}/style/sprite.png
623
+ * @response `200` Success
624
+ */
625
+ getImageLayout(name: string): Promise<Blob>;
626
+ /**
627
+ * No description
628
+ *
629
+ * @tags Layers
630
+ * @name GetDataLayout
631
+ * @operationId LayersController_GetDataLayout
632
+ * @summary Get image layout.
633
+ * @request GET:/layers/{name}/style/sprite.json
634
+ * @response `200` Success
635
+ */
636
+ getDataLayout(name: string): Promise<Blob>;
582
637
  /**
583
638
  * No description
584
639
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams7, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, 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: DeleteResourcesParams7): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams3, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams2, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -17,6 +17,17 @@ export declare class StatisticService extends Service {
17
17
  * @response `200` Success
18
18
  */
19
19
  statisticsDb(query: StatisticsDbParams): Promise<StatisticsDc>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @tags Statistic
24
+ * @name StatisticsDb1
25
+ * @operationId StatisticController_StatisticsDb_1
26
+ * @summary Calculates statistics for layer attribute.
27
+ * @request POST:/statistics
28
+ * @response `200` Success
29
+ */
30
+ statisticsDb1(data: GetStatisticsDc): Promise<StatisticsDc>;
20
31
  /**
21
32
  * No description
22
33
  *
@@ -27,7 +38,18 @@ export declare class StatisticService extends Service {
27
38
  * @request GET:/statistics/classify
28
39
  * @response `200` Success
29
40
  */
30
- classify(query: ClassifyParams3): Promise<ClassifyDc>;
41
+ classify(query: ClassifyParams2): Promise<ClassifyDc>;
42
+ /**
43
+ * No description
44
+ *
45
+ * @tags Statistic
46
+ * @name Classify1
47
+ * @operationId StatisticController_Classify_1
48
+ * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
49
+ * @request POST:/statistics/classify
50
+ * @response `200` Success
51
+ */
52
+ classify1(data: GetClassifyDc): Promise<ClassifyDc>;
31
53
  /**
32
54
  * No description
33
55
  *
@@ -39,4 +61,15 @@ export declare class StatisticService extends Service {
39
61
  * @response `200` Success
40
62
  */
41
63
  sumOfProduct(query: SumOfProductParams): Promise<StatisticsDc>;
64
+ /**
65
+ * No description
66
+ *
67
+ * @tags Statistic
68
+ * @name SumOfProduct1
69
+ * @operationId StatisticController_SumOfProduct_1
70
+ * @summary Sum of product.
71
+ * @request POST:/statistics/sumOfProduct
72
+ * @response `200` Success
73
+ */
74
+ sumOfProduct1(data: GetSumOfProductDc): Promise<StatisticsDc>;
42
75
  }
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams7, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams2, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } 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 TablesService extends Service {
49
49
  * @request DELETE:/tables
50
50
  * @response `200` Success
51
51
  */
52
- deleteResources(query: DeleteResourcesParams7): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetAllParams2, PagedListTagInfoDc } from './data-contracts';
1
+ import { GetAllParams1, PagedListTagInfoDc } 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 TagsService extends Service {
16
16
  * @request GET:/tags
17
17
  * @response `200` Success
18
18
  */
19
- getAll(query: GetAllParams2): Promise<PagedListTagInfoDc>;
19
+ getAll(query: GetAllParams1): Promise<PagedListTagInfoDc>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams9, 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: GetCapabilitiesParams8): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams9): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -18,7 +18,7 @@ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
18
18
  };
19
19
  export declare type AggregatedClusterSymbolDc = SymbolDc & {
20
20
  type?: string;
21
- pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
21
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
22
22
  gridSize?: number;
23
23
  fixedCenter?: boolean;
24
24
  aggregations?: Record<string, AggregationFunction>;
@@ -920,7 +920,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
920
920
  type?: string;
921
921
  labelSymbol?: PointLabelSymbolDc;
922
922
  customClusterSymbol?: SvgPointSymbolDc;
923
- singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
923
+ singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
924
924
  fillColor?: ParameterDcColor;
925
925
  strokeColor?: ParameterDcColor;
926
926
  strokeWidth?: CalculatedParameterDc;
@@ -997,6 +997,17 @@ export declare type CombinedPolylineSymbolDc = SymbolDc & {
997
997
  type?: string;
998
998
  values?: SimplePolylineSymbolDc[];
999
999
  };
1000
+ /**
1001
+ * Symbol combine multiple svg symbols.
1002
+ */
1003
+ export declare type CombinedSvgSymbolDc = SymbolDc & {
1004
+ type?: string;
1005
+ id?: string;
1006
+ values?: SvgSymbolDc[];
1007
+ size?: CalculatedParameterDc;
1008
+ angle?: CalculatedParameterDc;
1009
+ offset?: CalculatedParameterDc[];
1010
+ };
1000
1011
  /**
1001
1012
  * Data contract for SPCore.Connectors.Connectors.Base.Models.Composite.CompositeLayerConfigurationDc.
1002
1013
  */
@@ -1158,7 +1169,7 @@ export interface CompositeServiceInfoDc {
1158
1169
  */
1159
1170
  export declare type CompositeSymbolDc = SymbolDc & {
1160
1171
  type?: string;
1161
- childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
1172
+ childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
1162
1173
  };
1163
1174
  /**
1164
1175
  * Get configuration information.
@@ -2054,7 +2065,7 @@ export interface FeatureSymbolDc {
2054
2065
  /** @format int32 */
2055
2066
  id: number;
2056
2067
  /** Feature symbol. */
2057
- definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2068
+ definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2058
2069
  image?: string;
2059
2070
  }
2060
2071
  /**
@@ -2345,6 +2356,51 @@ export declare enum GeometryType {
2345
2356
  Envelope = "envelope",
2346
2357
  Multipoint = "multipoint"
2347
2358
  }
2359
+ /**
2360
+ * Get classified attribute values data contract.
2361
+ */
2362
+ export interface GetClassifyDc {
2363
+ /** Layer name. */
2364
+ layerName: string;
2365
+ /** Attribute name. */
2366
+ attributeName: string;
2367
+ /** Layer condition. */
2368
+ condition?: string;
2369
+ /**
2370
+ * The number of classes.
2371
+ * @format int32
2372
+ */
2373
+ classes?: number;
2374
+ /**
2375
+ * Sets required values precision.
2376
+ * @format int32
2377
+ */
2378
+ precision?: number;
2379
+ /**
2380
+ * Describes classification methods.
2381
+ *
2382
+ * none
2383
+ *
2384
+ * naturalBreaks
2385
+ *
2386
+ * equalInterval
2387
+ *
2388
+ * quantile
2389
+ *
2390
+ * unique
2391
+ */
2392
+ type?: ClassificationType;
2393
+ /**
2394
+ *
2395
+ *
2396
+ * decimal
2397
+ *
2398
+ * dateTime
2399
+ *
2400
+ * text
2401
+ */
2402
+ attributeType?: ClassifyAttributeType;
2403
+ }
2348
2404
  /**
2349
2405
  * Get features paramaters.
2350
2406
  */
@@ -2381,6 +2437,37 @@ export interface GetFeaturesParametersDc {
2381
2437
  /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2382
2438
  attributes?: string[];
2383
2439
  }
2440
+ /**
2441
+ * Get features count with layer filter condition data contract.
2442
+ */
2443
+ export interface GetFilteredFeaturesCountDc {
2444
+ /** Layer condition. */
2445
+ condition?: string;
2446
+ }
2447
+ /**
2448
+ * Get statistics data contract.
2449
+ */
2450
+ export interface GetStatisticsDc {
2451
+ /** Layer name. */
2452
+ layerName: string;
2453
+ /** Attribute name. */
2454
+ attributeName: string;
2455
+ /** Condition. */
2456
+ condition?: string;
2457
+ /** Type of required statistic function. */
2458
+ types?: AggregationFunction[];
2459
+ }
2460
+ /**
2461
+ * Get sum of product data contract.
2462
+ */
2463
+ export interface GetSumOfProductDc {
2464
+ /** Layer name. */
2465
+ layerName: string;
2466
+ /** Attribute name. */
2467
+ attributes: string[];
2468
+ /** Layer condition. */
2469
+ condition?: string;
2470
+ }
2384
2471
  /**
2385
2472
  * Map element data contract.
2386
2473
  */
@@ -2687,7 +2774,7 @@ export declare type LabelSymbolDc = SymbolDc & {
2687
2774
  };
2688
2775
  export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2689
2776
  type?: string;
2690
- symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2777
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2691
2778
  };
2692
2779
  /**
2693
2780
  * Information about the layer attributes and their configuration.
@@ -3075,7 +3162,7 @@ export declare type MultiPointDc = GeometryDc & {
3075
3162
  */
3076
3163
  export declare type MultipointSymbolDc = SymbolDc & {
3077
3164
  type?: string;
3078
- pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3165
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3079
3166
  };
3080
3167
  /**
3081
3168
  * Information about a namespace .
@@ -3703,9 +3790,9 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3703
3790
  maxResolution?: number;
3704
3791
  layers?: string[];
3705
3792
  styles?: Record<string, {
3706
- point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3707
- polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3708
- polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3793
+ point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3794
+ polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3795
+ polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3709
3796
  }>;
3710
3797
  };
3711
3798
  /**
@@ -4881,6 +4968,27 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
4881
4968
  outlinedOnSingleSide?: boolean;
4882
4969
  quadrantSegments?: number;
4883
4970
  };
4971
+ /**
4972
+ * Simple symbol.
4973
+ */
4974
+ export interface SimpleSymbolDc {
4975
+ /** Icon name. */
4976
+ id?: string;
4977
+ /** Symbol filter condition. */
4978
+ condition?: string;
4979
+ /** Offset of the image center from the geographic point. */
4980
+ offset?: CalculatedParameterDc[];
4981
+ /**
4982
+ * Angle of image rotation in radians. The image will be rotated around its anchor point (around the point that
4983
+ * corresponds to the feature centroid).
4984
+ */
4985
+ angle?: CalculatedParameterDc;
4986
+ /**
4987
+ * Angle of image rotation in radians. The image will be rotated around its anchor point (around the point that
4988
+ * corresponds to the feature centroid).
4989
+ */
4990
+ size?: CalculatedParameterDc;
4991
+ }
4884
4992
  /**
4885
4993
  * Simplify configuration information.
4886
4994
  */
@@ -5113,7 +5221,7 @@ export interface StyleDc {
5113
5221
  */
5114
5222
  condition?: string;
5115
5223
  /** Symbol that is used to draw the features of the layer. */
5116
- symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
5224
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
5117
5225
  /**
5118
5226
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
5119
5227
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -5173,6 +5281,20 @@ export declare type SvgPointSymbolDc = SymbolDc & {
5173
5281
  offset?: CalculatedParameterDc[];
5174
5282
  angle?: CalculatedParameterDc;
5175
5283
  };
5284
+ /**
5285
+ * Svg symbol settings.
5286
+ */
5287
+ export declare type SvgSymbolDc = SymbolDc & {
5288
+ type?: string;
5289
+ id?: string;
5290
+ data?: string;
5291
+ size?: CalculatedParameterDc;
5292
+ fillColor?: ParameterDcColor;
5293
+ strokeColor?: ParameterDcColor;
5294
+ strokeWidth?: CalculatedParameterDc;
5295
+ offset?: CalculatedParameterDc[];
5296
+ angle?: CalculatedParameterDc;
5297
+ };
5176
5298
  /**
5177
5299
  * Symbol category data contract.
5178
5300
  */
@@ -7067,7 +7189,7 @@ export interface ValidateExpressionParams {
7067
7189
  /** Layer name. */
7068
7190
  layerName: string;
7069
7191
  }
7070
- export interface GetRasterMetaParams1 {
7192
+ export interface GetRasterMetaParams4 {
7071
7193
  /**
7072
7194
  * Min value for build histogram.
7073
7195
  * @format double
@@ -7194,7 +7316,7 @@ export interface GetProjectsListParams {
7194
7316
  tags?: string[];
7195
7317
  }
7196
7318
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7197
- export interface DeleteResourcesParams7 {
7319
+ export interface DeleteResourcesParams5 {
7198
7320
  /** Resource names. */
7199
7321
  names?: string[];
7200
7322
  }
@@ -7397,9 +7519,9 @@ export interface GetFileInfoParams {
7397
7519
  }
7398
7520
  export interface StatisticsDbParams {
7399
7521
  /** Layer name. */
7400
- name?: string;
7522
+ name: string;
7401
7523
  /** Attribute name. */
7402
- attribute?: string;
7524
+ attribute: string;
7403
7525
  /** Condition. */
7404
7526
  condition?: string;
7405
7527
  /**
@@ -7449,11 +7571,11 @@ export interface StatisticsDbParams {
7449
7571
  */
7450
7572
  types?: AggregationFunction[];
7451
7573
  }
7452
- export interface ClassifyParams3 {
7574
+ export interface ClassifyParams2 {
7453
7575
  /** Layer name. */
7454
- name?: string;
7576
+ name: string;
7455
7577
  /** Attribute name. */
7456
- attribute?: string;
7578
+ attribute: string;
7457
7579
  /** Layer condition. */
7458
7580
  condition?: string;
7459
7581
  /**
@@ -7493,7 +7615,7 @@ export interface ClassifyParams3 {
7493
7615
  }
7494
7616
  export interface SumOfProductParams {
7495
7617
  /** Layer name. */
7496
- name?: string;
7618
+ name: string;
7497
7619
  /** Attributes to aggregate. */
7498
7620
  attributes?: string[];
7499
7621
  /** Layer condition. */
@@ -7582,6 +7704,10 @@ export interface GetTableListParams {
7582
7704
  acl?: string;
7583
7705
  }
7584
7706
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7707
+ export interface DeleteResourcesParams2 {
7708
+ /** Resource names. */
7709
+ names?: string[];
7710
+ }
7585
7711
  export interface GetTablesInfoParams {
7586
7712
  /** Table names. */
7587
7713
  tableNames?: string[];
@@ -7646,7 +7772,7 @@ export interface SetPreviewInput {
7646
7772
  /** @format binary */
7647
7773
  file?: File;
7648
7774
  }
7649
- export interface GetAllParams2 {
7775
+ export interface GetAllParams1 {
7650
7776
  /** Text filter. */
7651
7777
  filter?: string;
7652
7778
  /**
@@ -7735,7 +7861,7 @@ export interface GetPublicCapabilitiesParams {
7735
7861
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7736
7862
  AcceptFormats?: string[];
7737
7863
  }
7738
- export interface GetCapabilitiesParams8 {
7864
+ export interface GetCapabilitiesParams9 {
7739
7865
  /** Output format of service metadata. */
7740
7866
  Format?: string;
7741
7867
  /** Must be WMS. */