@evergis/api 4.0.17 → 4.0.18

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.
@@ -174,18 +174,6 @@ export declare class CatalogService extends Service {
174
174
  * @response `200` OK
175
175
  */
176
176
  setPermissions(data: SetPermissionsPayload): Promise<void>;
177
- /**
178
- * No description
179
- *
180
- * @tags Catalog
181
- * @name DownloadFile
182
- * @operationId CatalogController_DownloadFile
183
- * @summary Download file.
184
- * @request GET:/resources/{resourceId}/download
185
- * @secure
186
- * @response `200` OK
187
- */
188
- downloadFile(resourceId: string): Promise<Blob>;
189
177
  /**
190
178
  * No description
191
179
  *
@@ -1,4 +1,4 @@
1
- import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams1, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, ServiceInfoDc, ServiceListDc, SimpleSymbolDc, StyleDc, SubtractParams, SubtractPayload, TileCatalogServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
1
+ import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams4, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, ServiceInfoDc, ServiceListDc, SimpleSymbolDc, StyleDc, SubtractParams, SubtractPayload, TileCatalogServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -30,6 +30,18 @@ export declare class LayersService extends Service {
30
30
  * @response `200` OK
31
31
  */
32
32
  getBulkExtents(query: GetBulkExtentsParams, data: GetBulkExtentsPayload): Promise<BulkExtentsDc>;
33
+ /**
34
+ * No description
35
+ *
36
+ * @tags Layers
37
+ * @name GetFilteredFeaturesCount
38
+ * @operationId LayersController_GetFilteredFeaturesCount
39
+ * @summary Returns list of features count according layer filter.
40
+ * @request POST:/bulk/layers/features/count
41
+ * @secure
42
+ * @response `200` OK
43
+ */
44
+ getFilteredFeaturesCount(data: GetFilteredFeaturesCountPayload): Promise<BulkFilteredFeaturesCountDc>;
33
45
  /**
34
46
  * No description
35
47
  *
@@ -490,26 +502,26 @@ export declare class LayersService extends Service {
490
502
  * No description
491
503
  *
492
504
  * @tags Layers
493
- * @name GetFilteredFeaturesCount
494
- * @operationId LayersController_GetFilteredFeaturesCount
505
+ * @name GetFilteredFeaturesCount1
506
+ * @operationId LayersController_GetFilteredFeaturesCount_1
495
507
  * @summary Get features count according layer filter of the given name.
496
508
  * @request GET:/layers/{name}/features/count
497
509
  * @secure
498
510
  * @response `200` OK
499
511
  */
500
- getFilteredFeaturesCount({ name, ...query }: GetFilteredFeaturesCountParams): Promise<number>;
512
+ getFilteredFeaturesCount1({ name, ...query }: GetFilteredFeaturesCount1Params): Promise<number>;
501
513
  /**
502
514
  * No description
503
515
  *
504
516
  * @tags Layers
505
- * @name GetFilteredFeaturesCount1
506
- * @operationId LayersController_GetFilteredFeaturesCount_1
517
+ * @name GetFilteredFeaturesCount2
518
+ * @operationId LayersController_GetFilteredFeaturesCount_2
507
519
  * @summary Get features count according layer filter of the given name.
508
520
  * @request POST:/layers/{name}/features/count
509
521
  * @secure
510
522
  * @response `200` OK
511
523
  */
512
- getFilteredFeaturesCount1(name: string, data: GetFilteredFeaturesCountDc): Promise<number>;
524
+ getFilteredFeaturesCount2(name: string, data: GetFilteredFeaturesCountDc): Promise<number>;
513
525
  /**
514
526
  * No description
515
527
  *
@@ -545,7 +557,7 @@ export declare class LayersService extends Service {
545
557
  * @secure
546
558
  * @response `200` OK
547
559
  */
548
- getRasterMeta({ name, id, ...query }: GetRasterMetaParams1): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
560
+ getRasterMeta({ name, id, ...query }: GetRasterMetaParams4): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
549
561
  /**
550
562
  * No description
551
563
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams2, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams9, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -41,7 +41,7 @@ export declare class StatisticService extends Service {
41
41
  * @secure
42
42
  * @response `200` OK
43
43
  */
44
- classify(query: ClassifyParams2): Promise<ClassifyDc>;
44
+ classify(query: ClassifyParams9): Promise<ClassifyDc>;
45
45
  /**
46
46
  * No description
47
47
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams5, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
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
@@ -17,7 +17,7 @@ export declare class WmsServerService extends Service {
17
17
  * @secure
18
18
  * @response `200` OK
19
19
  */
20
- getCapabilities(query: GetCapabilitiesParams5): Promise<void>;
20
+ getCapabilities(query: GetCapabilitiesParams4): Promise<void>;
21
21
  /**
22
22
  * No description
23
23
  *
@@ -52,7 +52,7 @@ export interface ActiveWorkerTaskDc {
52
52
  }
53
53
  export declare type AggregatedClusterSymbolDc = SymbolDc & {
54
54
  type?: string | null;
55
- 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 | null;
55
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
56
56
  gridSize?: number;
57
57
  fixedCenter?: boolean;
58
58
  aggregations?: Record<string, AggregationFunction>;
@@ -778,7 +778,7 @@ export interface BrushDc {
778
778
  type?: string;
779
779
  }
780
780
  /**
781
- * Get bulk extents data conteract.
781
+ * Get bulk extents data contract.
782
782
  */
783
783
  export interface BulkExtentsDc {
784
784
  /** Envelope geometry. */
@@ -786,6 +786,13 @@ export interface BulkExtentsDc {
786
786
  /** Extent per layer. */
787
787
  extents?: Record<string, EnvelopeDc>;
788
788
  }
789
+ /**
790
+ * Get bulk filtered features count data contract.
791
+ */
792
+ export interface BulkFilteredFeaturesCountDc {
793
+ /** Extent per layer. */
794
+ counts?: Record<string, number>;
795
+ }
789
796
  /**
790
797
  * Provides set resources bulk operation status.
791
798
  */
@@ -1025,7 +1032,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
1025
1032
  type?: string | null;
1026
1033
  labelSymbol?: PointLabelSymbolDc;
1027
1034
  customClusterSymbol?: SvgPointSymbolDc;
1028
- 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 | null;
1035
+ singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
1029
1036
  fillColor?: ParameterDcColor;
1030
1037
  strokeColor?: ParameterDcColor;
1031
1038
  strokeWidth?: ParameterDcDouble;
@@ -1118,7 +1125,7 @@ export declare type CombinedSvgSymbolDc = SymbolDc & {
1118
1125
  */
1119
1126
  export declare type CompositeSymbolDc = SymbolDc & {
1120
1127
  type?: string | null;
1121
- 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)[] | null;
1128
+ childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[] | null;
1122
1129
  };
1123
1130
  /**
1124
1131
  * Get configuration information.
@@ -2393,6 +2400,21 @@ export interface GetBulkFeaturesParametersDc {
2393
2400
  /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2394
2401
  attributes?: string[];
2395
2402
  }
2403
+ /**
2404
+ * Get features count with layer filter condition data contract.
2405
+ */
2406
+ export interface GetBulkFilteredFeaturesCountDc {
2407
+ /** Layer name. */
2408
+ layerName?: string;
2409
+ /** Layer condition. */
2410
+ condition?: string;
2411
+ /** Collection of filtering conditions. */
2412
+ conditions?: string[];
2413
+ /** Query parameters. */
2414
+ parameters?: Record<string, any>;
2415
+ /** Filter query geometries. */
2416
+ geometries?: QueryGeometryDc[];
2417
+ }
2396
2418
  /**
2397
2419
  * Get classified attribute values data contract.
2398
2420
  */
@@ -2751,7 +2773,7 @@ export declare type LabelSymbolDc = SymbolDc & {
2751
2773
  };
2752
2774
  export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2753
2775
  type?: string | null;
2754
- 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 | null;
2776
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
2755
2777
  };
2756
2778
  /**
2757
2779
  * Information about the layer attributes and their configuration.
@@ -3020,6 +3042,7 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
3020
3042
  condition?: string | null;
3021
3043
  featuresLimit?: number;
3022
3044
  extentOffset?: number;
3045
+ clientStyle?: any;
3023
3046
  };
3024
3047
  /**
3025
3048
  * Search resources.
@@ -3146,6 +3169,15 @@ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc &
3146
3169
  eql?: string | null;
3147
3170
  eqlParameters?: Record<string, any>;
3148
3171
  };
3172
+ /**
3173
+ * 3D model symbol.
3174
+ */
3175
+ export declare type Model3DSymbolDc = SymbolDc & {
3176
+ type?: string | null;
3177
+ urlModel?: ParameterDcString;
3178
+ size?: ParameterDcDouble;
3179
+ angle?: ParameterDcDouble;
3180
+ };
3149
3181
  /**
3150
3182
  * Base template model data contract.
3151
3183
  */
@@ -3189,7 +3221,7 @@ export declare type MultiPointDc = GeometryDc & {
3189
3221
  */
3190
3222
  export declare type MultipointSymbolDc = SymbolDc & {
3191
3223
  type?: string | null;
3192
- 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 | null;
3224
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
3193
3225
  };
3194
3226
  /**
3195
3227
  * RasterMetaDc.
@@ -3653,6 +3685,7 @@ export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBa
3653
3685
  featuresLimit?: number;
3654
3686
  extentOffset?: number;
3655
3687
  simplify?: SimplifyInfoDc;
3688
+ clientStyle?: any;
3656
3689
  };
3657
3690
  /**
3658
3691
  * Configuration of a postgres tile catalog service.
@@ -3660,6 +3693,7 @@ export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBa
3660
3693
  export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
3661
3694
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
3662
3695
  style?: StyleDc;
3696
+ clientStyle?: any;
3663
3697
  condition?: string | null;
3664
3698
  featuresLimit?: number;
3665
3699
  minLodLevel?: number;
@@ -3789,9 +3823,9 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3789
3823
  maxResolution?: number;
3790
3824
  layers?: string[] | null;
3791
3825
  styles?: Record<string, {
3792
- 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;
3793
- 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;
3794
- 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;
3826
+ point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3827
+ polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3828
+ polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3795
3829
  }>;
3796
3830
  };
3797
3831
  /**
@@ -3999,6 +4033,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
3999
4033
  geometryType?: AttributeType;
4000
4034
  attributesConfiguration?: EqlAttributesConfigurationDc;
4001
4035
  style?: StyleDc;
4036
+ clientStyle?: any;
4002
4037
  condition?: string | null;
4003
4038
  featuresLimit?: number;
4004
4039
  extentOffset?: number;
@@ -4805,6 +4840,7 @@ export interface RouteFeatureDc {
4805
4840
  export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
4806
4841
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
4807
4842
  style?: StyleDc;
4843
+ clientStyle?: any;
4808
4844
  condition?: string | null;
4809
4845
  featuresLimit?: number;
4810
4846
  extentOffset?: number;
@@ -5348,7 +5384,7 @@ export interface StyleDc {
5348
5384
  */
5349
5385
  condition?: string;
5350
5386
  /** Symbol that is used to draw the features of the layer. */
5351
- 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;
5387
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
5352
5388
  /**
5353
5389
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
5354
5390
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -7285,6 +7321,7 @@ export interface GetBulkExtentsParams {
7285
7321
  */
7286
7322
  sr?: number;
7287
7323
  }
7324
+ export declare type GetFilteredFeaturesCountPayload = GetBulkFilteredFeaturesCountDc[];
7288
7325
  export interface GetLayersListParams {
7289
7326
  /**
7290
7327
  * Full text query filter that allow to query in alias and name fields.
@@ -7670,7 +7707,7 @@ export interface AggregateAttributeParams {
7670
7707
  /** Name of the layer. */
7671
7708
  name: string;
7672
7709
  }
7673
- export interface GetFilteredFeaturesCountParams {
7710
+ export interface GetFilteredFeaturesCount1Params {
7674
7711
  /** Condition to apply to the layer to filter the features. */
7675
7712
  condition?: string;
7676
7713
  /** Layer name. */
@@ -7682,7 +7719,7 @@ export interface ValidateExpressionParams {
7682
7719
  /** Layer name. */
7683
7720
  layerName: string;
7684
7721
  }
7685
- export interface GetRasterMetaParams1 {
7722
+ export interface GetRasterMetaParams4 {
7686
7723
  /**
7687
7724
  * Min value for build histogram.
7688
7725
  * @format double
@@ -7959,7 +7996,7 @@ export interface StatisticsDbParams {
7959
7996
  */
7960
7997
  types?: AggregationFunction[];
7961
7998
  }
7962
- export interface ClassifyParams2 {
7999
+ export interface ClassifyParams9 {
7963
8000
  /** Layer name. */
7964
8001
  name: string;
7965
8002
  /** Attribute name. */
@@ -8206,7 +8243,7 @@ export interface GetPublicCapabilitiesParams {
8206
8243
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8207
8244
  AcceptFormats?: string[];
8208
8245
  }
8209
- export interface GetCapabilitiesParams5 {
8246
+ export interface GetCapabilitiesParams4 {
8210
8247
  /** Output format of service metadata. */
8211
8248
  Format?: string;
8212
8249
  /** Must be WMS. */
@@ -1005,23 +1005,6 @@ let CatalogService = /*#__PURE__*/function (_Service) {
1005
1005
  value: function setPermissions(data) {
1006
1006
  return this.http.put("/resources/permissions", data).then(() => {});
1007
1007
  }
1008
- /**
1009
- * No description
1010
- *
1011
- * @tags Catalog
1012
- * @name DownloadFile
1013
- * @operationId CatalogController_DownloadFile
1014
- * @summary Download file.
1015
- * @request GET:/resources/{resourceId}/download
1016
- * @secure
1017
- * @response `200` OK
1018
- */
1019
-
1020
- }, {
1021
- key: "downloadFile",
1022
- value: function downloadFile(resourceId) {
1023
- return this.http.get("/resources/" + resourceId + "/download").blob();
1024
- }
1025
1008
  /**
1026
1009
  * No description
1027
1010
  *
@@ -3565,6 +3548,23 @@ let LayersService = /*#__PURE__*/function (_Service) {
3565
3548
  value: function getBulkExtents(query, data) {
3566
3549
  return this.http.post("/bulk/layers/extent", data, query).json();
3567
3550
  }
3551
+ /**
3552
+ * No description
3553
+ *
3554
+ * @tags Layers
3555
+ * @name GetFilteredFeaturesCount
3556
+ * @operationId LayersController_GetFilteredFeaturesCount
3557
+ * @summary Returns list of features count according layer filter.
3558
+ * @request POST:/bulk/layers/features/count
3559
+ * @secure
3560
+ * @response `200` OK
3561
+ */
3562
+
3563
+ }, {
3564
+ key: "getFilteredFeaturesCount",
3565
+ value: function getFilteredFeaturesCount(data) {
3566
+ return this.http.post("/bulk/layers/features/count", data).json();
3567
+ }
3568
3568
  /**
3569
3569
  * No description
3570
3570
  *
@@ -4333,8 +4333,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4333
4333
  * No description
4334
4334
  *
4335
4335
  * @tags Layers
4336
- * @name GetFilteredFeaturesCount
4337
- * @operationId LayersController_GetFilteredFeaturesCount
4336
+ * @name GetFilteredFeaturesCount1
4337
+ * @operationId LayersController_GetFilteredFeaturesCount_1
4338
4338
  * @summary Get features count according layer filter of the given name.
4339
4339
  * @request GET:/layers/{name}/features/count
4340
4340
  * @secure
@@ -4342,8 +4342,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4342
4342
  */
4343
4343
 
4344
4344
  }, {
4345
- key: "getFilteredFeaturesCount",
4346
- value: function getFilteredFeaturesCount(_ref16) {
4345
+ key: "getFilteredFeaturesCount1",
4346
+ value: function getFilteredFeaturesCount1(_ref16) {
4347
4347
  let {
4348
4348
  name
4349
4349
  } = _ref16,
@@ -4355,8 +4355,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4355
4355
  * No description
4356
4356
  *
4357
4357
  * @tags Layers
4358
- * @name GetFilteredFeaturesCount1
4359
- * @operationId LayersController_GetFilteredFeaturesCount_1
4358
+ * @name GetFilteredFeaturesCount2
4359
+ * @operationId LayersController_GetFilteredFeaturesCount_2
4360
4360
  * @summary Get features count according layer filter of the given name.
4361
4361
  * @request POST:/layers/{name}/features/count
4362
4362
  * @secure
@@ -4364,8 +4364,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4364
4364
  */
4365
4365
 
4366
4366
  }, {
4367
- key: "getFilteredFeaturesCount1",
4368
- value: function getFilteredFeaturesCount1(name, data) {
4367
+ key: "getFilteredFeaturesCount2",
4368
+ value: function getFilteredFeaturesCount2(name, data) {
4369
4369
  return this.http.post("/layers/" + name + "/features/count", data).json();
4370
4370
  }
4371
4371
  /**