@evergis/api 3.0.142 → 3.0.144

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.
@@ -18,7 +18,7 @@ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
18
18
  };
19
19
  export declare type AggregatedClusterSymbolDc = SymbolDc & {
20
20
  type?: string;
21
- pointSymbol?: 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;
21
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
22
22
  gridSize?: number;
23
23
  fixedCenter?: boolean;
24
24
  aggregations?: Record<string, AggregationFunction>;
@@ -82,47 +82,47 @@ export interface AggregationDataResultDc {
82
82
  }
83
83
  /**
84
84
  *
85
-
85
+
86
86
  None
87
-
87
+
88
88
  Array
89
-
89
+
90
90
  Min
91
-
91
+
92
92
  Max
93
-
93
+
94
94
  Avg
95
-
95
+
96
96
  Sum
97
-
97
+
98
98
  Extent
99
-
99
+
100
100
  H3
101
-
101
+
102
102
  Count
103
-
103
+
104
104
  TotalCount
105
-
105
+
106
106
  DistinctCount
107
-
107
+
108
108
  First
109
-
109
+
110
110
  Last
111
-
111
+
112
112
  Median
113
-
113
+
114
114
  Mod
115
-
115
+
116
116
  StdDeviation
117
-
117
+
118
118
  SumOfProduct
119
-
119
+
120
120
  OnlyValue
121
-
121
+
122
122
  WeightedAvg
123
-
123
+
124
124
  DensityIndicators
125
-
125
+
126
126
  DividedSum
127
127
  */
128
128
  export declare enum AggregationFunction {
@@ -505,29 +505,29 @@ export interface AttributeFormatDefinitionDc {
505
505
  }
506
506
  /**
507
507
  * Types of the attributes that are supported by the system.
508
-
508
+
509
509
  Unknown
510
-
510
+
511
511
  String
512
-
512
+
513
513
  Int32
514
-
514
+
515
515
  Int64
516
-
516
+
517
517
  Double
518
-
518
+
519
519
  DateTime
520
-
520
+
521
521
  Boolean
522
-
522
+
523
523
  Point
524
-
524
+
525
525
  Polyline
526
-
526
+
527
527
  Polygon
528
-
528
+
529
529
  Multipoint
530
-
530
+
531
531
  H3Index
532
532
  */
533
533
  export declare enum AttributeType {
@@ -540,7 +540,7 @@ export declare enum AttributeType {
540
540
  Boolean = "Boolean",
541
541
  Point = "Point",
542
542
  Polyline = "Polyline",
543
- Polygon = "Polygon",
543
+ MultiPolygon = "Polygon",
544
544
  Multipoint = "Multipoint",
545
545
  H3Index = "H3Index"
546
546
  }
@@ -561,6 +561,19 @@ export interface AttributesConfigurationDc {
561
561
  /** Configurations of the related tables. */
562
562
  tableReferences?: TableReferenceConfigurationDc[];
563
563
  }
564
+ /**
565
+ * The symbol that draws a raster with classification.
566
+ */
567
+ export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
568
+ type?: string;
569
+ band?: CalculatedParameterDc;
570
+ autoClassify?: ParameterDcBoolean;
571
+ ignoreEmptyValues?: ParameterDcBoolean;
572
+ startIndex?: CalculatedParameterDc;
573
+ endIndex?: CalculatedParameterDc;
574
+ startColor?: ParameterDcColor;
575
+ endColor?: ParameterDcColor;
576
+ };
564
577
  /**
565
578
  * Availability area builder operation considers the nearest availability zones around the input geometries and writes them
566
579
  into the target storage.
@@ -690,17 +703,26 @@ export declare type CirclePointSymbolDc = SymbolDc & {
690
703
  offset?: CalculatedParameterDc[];
691
704
  angle?: CalculatedParameterDc;
692
705
  };
706
+ /**
707
+ * The symbol that draws a raster with classification.
708
+ */
709
+ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
710
+ type?: string;
711
+ rasterClassifications?: RasterClassificationCfg[];
712
+ defaultColor?: ParameterDcColor;
713
+ band?: CalculatedParameterDc;
714
+ };
693
715
  /**
694
716
  * Describes classification methods.
695
-
717
+
696
718
  none
697
-
719
+
698
720
  naturalBreaks
699
-
721
+
700
722
  equalInterval
701
-
723
+
702
724
  quantile
703
-
725
+
704
726
  unique
705
727
  */
706
728
  export declare enum ClassificationType {
@@ -712,11 +734,11 @@ export declare enum ClassificationType {
712
734
  }
713
735
  /**
714
736
  * Type of attribute.
715
-
737
+
716
738
  decimal
717
-
739
+
718
740
  dateTime
719
-
741
+
720
742
  text
721
743
  */
722
744
  export declare enum ClassifyAttributeType {
@@ -745,7 +767,7 @@ export interface ClassifyResultObject {
745
767
  export declare type ClusterSymbolDc = SymbolDc & {
746
768
  type?: string;
747
769
  labelSymbol?: PointLabelSymbolDc;
748
- singleObjectSymbol?: 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;
770
+ singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
749
771
  fillColor?: ParameterDcColor;
750
772
  strokeColor?: ParameterDcColor;
751
773
  strokeWidth?: CalculatedParameterDc;
@@ -764,7 +786,7 @@ export declare type ClusterSymbolDc = SymbolDc & {
764
786
  export interface ColumnDescriptionDc {
765
787
  /** Column name. */
766
788
  name: string;
767
- /** Default value, if column is not nullable.. */
789
+ /** Default value, if column is not nullable. */
768
790
  defaultValue?: any;
769
791
  /**
770
792
  * Types of the attributes that are supported by the system.
@@ -974,7 +996,7 @@ export interface CompositeServiceInfoDc {
974
996
  */
975
997
  export declare type CompositeSymbolDc = SymbolDc & {
976
998
  type?: string;
977
- childSymbols?: (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)[];
999
+ childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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)[];
978
1000
  };
979
1001
  /**
980
1002
  * Get configuration information.
@@ -987,55 +1009,55 @@ export interface ConfigDc {
987
1009
  }
988
1010
  /**
989
1011
  * Types of errors that can occur during layer initialize.
990
-
1012
+
991
1013
  Unknown
992
-
1014
+
993
1015
  SerializeError
994
-
1016
+
995
1017
  InvalidDataService
996
-
1018
+
997
1019
  InvalidConfiguration
998
-
1020
+
999
1021
  InvalidDataServiceName
1000
-
1022
+
1001
1023
  InvalidTableName
1002
-
1024
+
1003
1025
  InvalidLayerName
1004
-
1026
+
1005
1027
  ResourceNotFound
1006
-
1028
+
1007
1029
  InvalidCondition
1008
-
1030
+
1009
1031
  InvalidAttributes
1010
-
1032
+
1011
1033
  InvalidIdAttribute
1012
-
1034
+
1013
1035
  InvalidGeometryAttribute
1014
-
1036
+
1015
1037
  InvalidGeometryAttributeType
1016
-
1038
+
1017
1039
  InvalidColumnName
1018
-
1040
+
1019
1041
  InvalidIdColumnSettings
1020
-
1042
+
1021
1043
  ColumnNotExistsInTable
1022
-
1044
+
1023
1045
  InvalidStyle
1024
-
1046
+
1025
1047
  InvalidLayerType
1026
-
1048
+
1027
1049
  ColumnLoadingError
1028
-
1050
+
1029
1051
  InvalidAttributeFormat
1030
-
1052
+
1031
1053
  DataSourceNotFound
1032
-
1054
+
1033
1055
  DuplicateColumns
1034
-
1056
+
1035
1057
  DuplicateAttributes
1036
-
1058
+
1037
1059
  TableWithoutColumns
1038
-
1060
+
1039
1061
  InvalidTableReferenceConfiguration
1040
1062
  */
1041
1063
  export declare enum ConfigurationErrorEnum {
@@ -1317,15 +1339,15 @@ export interface ErrorDetailsDc {
1317
1339
  }
1318
1340
  /**
1319
1341
  * Type of the error.
1320
-
1342
+
1321
1343
  ResourceLimitExceeded
1322
-
1344
+
1323
1345
  ResourceNotFound
1324
-
1346
+
1325
1347
  InternalError
1326
-
1348
+
1327
1349
  BadRequest
1328
-
1350
+
1329
1351
  DuplicateContent
1330
1352
  */
1331
1353
  export declare enum ErrorDetailsType {
@@ -1807,7 +1829,7 @@ export interface FeatureSymbolDc {
1807
1829
  /** @format int32 */
1808
1830
  id: number;
1809
1831
  /** Feature symbol. */
1810
- definition?: 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;
1832
+ definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
1811
1833
  image?: string;
1812
1834
  }
1813
1835
  /**
@@ -1819,9 +1841,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1819
1841
  };
1820
1842
  /**
1821
1843
  * Type of the feature.
1822
-
1844
+
1823
1845
  Unknown
1824
-
1846
+
1825
1847
  GeometricFeature
1826
1848
  */
1827
1849
  export declare enum FeatureType {
@@ -1895,11 +1917,11 @@ export interface FilterDc {
1895
1917
  }
1896
1918
  /**
1897
1919
  * Sets whether font should be styled.
1898
-
1920
+
1899
1921
  normal
1900
-
1922
+
1901
1923
  oblique
1902
-
1924
+
1903
1925
  italic
1904
1926
  */
1905
1927
  export declare enum FontStyle {
@@ -1909,27 +1931,27 @@ export declare enum FontStyle {
1909
1931
  }
1910
1932
  /**
1911
1933
  * Specifies the weight (or boldness) of the font.
1912
-
1934
+
1913
1935
  Thin
1914
-
1936
+
1915
1937
  ExtraLight
1916
-
1938
+
1917
1939
  Light
1918
-
1940
+
1919
1941
  SemiLight
1920
-
1942
+
1921
1943
  Normal
1922
-
1944
+
1923
1945
  Medium
1924
-
1946
+
1925
1947
  DemiBold
1926
-
1948
+
1927
1949
  Bold
1928
-
1950
+
1929
1951
  ExtraBold
1930
-
1952
+
1931
1953
  Black
1932
-
1954
+
1933
1955
  ExtraBlack
1934
1956
  */
1935
1957
  export declare enum FontWeight {
@@ -2024,17 +2046,17 @@ export interface GeometryDc {
2024
2046
  }
2025
2047
  /**
2026
2048
  *
2027
-
2049
+
2028
2050
  unknown
2029
-
2051
+
2030
2052
  point
2031
-
2053
+
2032
2054
  polyline
2033
-
2055
+
2034
2056
  multipolygon
2035
-
2057
+
2036
2058
  envelope
2037
-
2059
+
2038
2060
  multipoint
2039
2061
  */
2040
2062
  export declare enum GeometryType {
@@ -2054,13 +2076,13 @@ export declare type GridElementDc = ModelElementDc & {
2054
2076
  };
2055
2077
  /**
2056
2078
  * Resource group.
2057
-
2079
+
2058
2080
  my
2059
-
2081
+
2060
2082
  role
2061
-
2083
+
2062
2084
  public
2063
-
2085
+
2064
2086
  all
2065
2087
  */
2066
2088
  export declare enum Group {
@@ -2074,7 +2096,7 @@ export declare enum Group {
2074
2096
  */
2075
2097
  export declare type H3GridSymbolDc = SymbolDc & {
2076
2098
  type?: string;
2077
- cellSize?: number;
2099
+ cellSize?: CalculatedParameterDc;
2078
2100
  stroke?: DashedBrushDc | SolidStrokeBrushDc;
2079
2101
  fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
2080
2102
  aggregations?: AggregationMappingDc[];
@@ -2101,6 +2123,7 @@ export declare type HexGridSymbolDc = SymbolDc & {
2101
2123
  fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
2102
2124
  aggregations?: Record<string, AggregationFunction>;
2103
2125
  };
2126
+ export declare type IAsyncEnumerableRouteDataDc = object;
2104
2127
  export interface IDatum {
2105
2128
  /** @format double */
2106
2129
  semimajor?: number;
@@ -2362,7 +2385,7 @@ export declare type LabelSymbolDc = SymbolDc & {
2362
2385
  };
2363
2386
  export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2364
2387
  type?: string;
2365
- symbol?: 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;
2388
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
2366
2389
  };
2367
2390
  /**
2368
2391
  * Information about the layer attributes and their configuration.
@@ -2538,9 +2561,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2538
2561
  /**
2539
2562
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2540
2563
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2541
-
2564
+
2542
2565
  small
2543
-
2566
+
2544
2567
  large
2545
2568
  */
2546
2569
  export declare enum LineEndingSize {
@@ -2549,19 +2572,19 @@ export declare enum LineEndingSize {
2549
2572
  }
2550
2573
  /**
2551
2574
  * Type of the line ending.
2552
-
2575
+
2553
2576
  none
2554
-
2577
+
2555
2578
  arrow
2556
-
2579
+
2557
2580
  filledArrow
2558
-
2581
+
2559
2582
  square
2560
-
2583
+
2561
2584
  filledSquare
2562
-
2585
+
2563
2586
  circle
2564
-
2587
+
2565
2588
  filledCircle
2566
2589
  */
2567
2590
  export declare enum LineEndingType {
@@ -2675,7 +2698,7 @@ export declare type MultiPointDc = GeometryDc & {
2675
2698
  */
2676
2699
  export declare type MultipointSymbolDc = SymbolDc & {
2677
2700
  type?: string;
2678
- pointSymbol?: 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;
2701
+ pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
2679
2702
  };
2680
2703
  /**
2681
2704
  * Information about a namespace .
@@ -2695,21 +2718,27 @@ export interface NamespaceInfoDc {
2695
2718
  /** Access control list. */
2696
2719
  acl?: Record<string, Permissions>;
2697
2720
  }
2721
+ /**
2722
+ * RasterMetaDc.
2723
+ */
2724
+ export declare type NetCdfMetaDc = RasterMetaDc & {
2725
+ dimExtraValues?: Record<string, string[]>;
2726
+ };
2698
2727
  /**
2699
2728
  * Id of any geographical or abstract object.
2700
2729
  */
2701
2730
  export declare type ObjectId = object;
2702
2731
  /**
2703
2732
  *
2704
-
2733
+
2705
2734
  Unknown
2706
-
2735
+
2707
2736
  union
2708
-
2737
+
2709
2738
  intersection
2710
-
2739
+
2711
2740
  subtraction
2712
-
2741
+
2713
2742
  symDifference
2714
2743
  */
2715
2744
  export declare enum Operation {
@@ -2885,6 +2914,28 @@ export interface PagedListRoleInfoDc {
2885
2914
  /** The retrieved items in the list. */
2886
2915
  items?: RoleInfoDc[];
2887
2916
  }
2917
+ /**
2918
+ * A list of items that is returned for filtered paged requests.
2919
+ */
2920
+ export interface PagedListSearchResultDc {
2921
+ /**
2922
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2923
+ * @format int64
2924
+ */
2925
+ totalCount?: number;
2926
+ /**
2927
+ * The first index of the item in the list that is returned in the Items parameter.
2928
+ * @format int32
2929
+ */
2930
+ offset?: number;
2931
+ /**
2932
+ * Maximum number of the items that the Items parameter may contain.
2933
+ * @format int32
2934
+ */
2935
+ limit?: number;
2936
+ /** The retrieved items in the list. */
2937
+ items?: SearchResultDc[];
2938
+ }
2888
2939
  /**
2889
2940
  * A list of items that is returned for filtered paged requests.
2890
2941
  */
@@ -3021,6 +3072,14 @@ export interface PagedListUserInfoDc {
3021
3072
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
3022
3073
  as an object with a "type" parameter specified.
3023
3074
  */
3075
+ export interface ParameterDcBoolean {
3076
+ /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3077
+ type?: string;
3078
+ }
3079
+ /**
3080
+ * Number parameter of a symbol. The parameter can be represented as a simple number, or
3081
+ as an object with a "type" parameter specified.
3082
+ */
3024
3083
  export interface ParameterDcColor extends BrandedType<'ParameterDcColor'> {
3025
3084
  /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3026
3085
  type?: string;
@@ -3045,19 +3104,19 @@ export declare type PatternBrushDc = FillBrushDc & {
3045
3104
  };
3046
3105
  /**
3047
3106
  * User permissions for server security objects (services, projects etc.)
3048
-
3107
+
3049
3108
  none
3050
-
3109
+
3051
3110
  configure
3052
-
3111
+
3053
3112
  write
3054
-
3113
+
3055
3114
  read
3056
-
3115
+
3057
3116
  read,configure
3058
-
3117
+
3059
3118
  read,write
3060
-
3119
+
3061
3120
  read,write,configure
3062
3121
  */
3063
3122
  export declare enum Permissions {
@@ -3075,7 +3134,7 @@ export declare enum Permissions {
3075
3134
  export declare type PipelineTaskParametersDc = TaskParametersDc & {
3076
3135
  type?: string;
3077
3136
  continueOnFail?: boolean;
3078
- innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc)[];
3137
+ innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc)[];
3079
3138
  };
3080
3139
  /**
3081
3140
  * Spatial point geometry object representation.
@@ -3115,19 +3174,19 @@ export interface PolicyDc {
3115
3174
  }
3116
3175
  /**
3117
3176
  * Type of the authorization policy.
3118
-
3177
+
3119
3178
  Unknown
3120
-
3179
+
3121
3180
  CreateTable
3122
-
3181
+
3123
3182
  CreateLayer
3124
-
3183
+
3125
3184
  CreateProject
3126
-
3185
+
3127
3186
  MaxFeaturesInOneTable
3128
-
3187
+
3129
3188
  MaxObjectsToExport
3130
-
3189
+
3131
3190
  MaxUploadContentSize
3132
3191
  */
3133
3192
  export declare enum PolicyType {
@@ -3358,9 +3417,9 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3358
3417
  maxResolution?: number;
3359
3418
  layers?: string[];
3360
3419
  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;
3420
+ point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
3421
+ polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
3422
+ polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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
3423
  }>;
3365
3424
  };
3366
3425
  /**
@@ -3467,20 +3526,149 @@ export interface ProxyServiceInfoDc {
3467
3526
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3468
3527
  invisibleInCatalog?: boolean;
3469
3528
  }
3529
+ /**
3530
+ * RasterBandMetaDc.
3531
+ */
3532
+ export interface RasterBandMetaDc {
3533
+ /** BandType. */
3534
+ bandType?: string;
3535
+ /**
3536
+ * ColorMin.
3537
+ * @format double
3538
+ */
3539
+ colorMin?: number;
3540
+ /**
3541
+ * ColorMax.
3542
+ * @format double
3543
+ */
3544
+ colorMax?: number;
3545
+ /**
3546
+ * Statistic mean.
3547
+ * @format double
3548
+ */
3549
+ mean?: number;
3550
+ /**
3551
+ * Statistic STDDEV.
3552
+ * @format double
3553
+ */
3554
+ stddev?: number;
3555
+ /**
3556
+ * Data step size converted to range 0-255.
3557
+ * @format double
3558
+ */
3559
+ dataSterSize?: number;
3560
+ /**
3561
+ * BucketCount.
3562
+ * @format int32
3563
+ */
3564
+ bucketCount?: number;
3565
+ /**
3566
+ * HistValueMin.
3567
+ * @format double
3568
+ */
3569
+ histValueMin?: number;
3570
+ /**
3571
+ * HistValueMax.
3572
+ * @format double
3573
+ */
3574
+ histValueMax?: number;
3575
+ /** Histogram. */
3576
+ histogram?: number[];
3577
+ /** Data histogram. */
3578
+ dataHistogram?: Record<string, number | null>;
3579
+ }
3580
+ /**
3581
+ * Raster classification cfg.
3582
+ */
3583
+ export interface RasterClassificationCfg {
3584
+ /**
3585
+ * Min value.
3586
+ * @format double
3587
+ */
3588
+ minValue?: number;
3589
+ /**
3590
+ * Max value.
3591
+ * @format double
3592
+ */
3593
+ maxValue?: number;
3594
+ /** Color. */
3595
+ color?: string;
3596
+ }
3597
+ /**
3598
+ * The result of a server task step execution.
3599
+ */
3600
+ export declare type RasterCogCreatorStepResultDc = StepResultDc & {
3601
+ cogStepInProgress?: string;
3602
+ cogStepProgress?: number;
3603
+ };
3604
+ /**
3605
+ * RasterMetaDc.
3606
+ */
3607
+ export interface RasterMetaDc {
3608
+ /** Layer name. */
3609
+ layerName?: string;
3610
+ /**
3611
+ * Width.
3612
+ * @format int32
3613
+ */
3614
+ width?: number;
3615
+ /**
3616
+ * Height.
3617
+ * @format int32
3618
+ */
3619
+ height?: number;
3620
+ /**
3621
+ * BandCount.
3622
+ * @format int32
3623
+ */
3624
+ bandCount?: number;
3625
+ /**
3626
+ * Raster size in bytes.
3627
+ * @format int64
3628
+ */
3629
+ rasterSizeInBytes?: number;
3630
+ /** BoundingBox. */
3631
+ boundingBox?: number[];
3632
+ /** Spatial reference. */
3633
+ sr?: string;
3634
+ /** Bands. */
3635
+ bands?: RasterBandMetaDc[];
3636
+ }
3637
+ /**
3638
+ * Raster render cfg.
3639
+ */
3640
+ export interface RasterRenderCfg {
3641
+ /**
3642
+ * Min value.
3643
+ * @format double
3644
+ */
3645
+ scaleMinValue?: number;
3646
+ /**
3647
+ * Max value.
3648
+ * @format double
3649
+ */
3650
+ scaleMaxValue?: number;
3651
+ /**
3652
+ * No data value.
3653
+ * @format double
3654
+ */
3655
+ noDataValue?: number;
3656
+ }
3470
3657
  /**
3471
3658
  * The symbol that draws a raster.
3472
3659
  */
3473
3660
  export declare type RasterSymbolDc = SymbolDc & {
3474
3661
  type?: string;
3475
3662
  opacity?: CalculatedParameterDc;
3663
+ rasterRenderConfiguration?: RasterRenderCfg;
3476
3664
  };
3477
3665
  /**
3478
3666
  * Types of table reference.
3479
-
3667
+
3480
3668
  OneToMany
3481
-
3669
+
3482
3670
  OneToOne
3483
-
3671
+
3484
3672
  Intersect
3485
3673
  */
3486
3674
  export declare enum ReferenceJoinType {
@@ -3613,19 +3801,19 @@ export interface ResourceInfoDc {
3613
3801
  }
3614
3802
  /**
3615
3803
  * The `ResourceType` represents resource manager supports types.
3616
-
3804
+
3617
3805
  Unknown
3618
-
3806
+
3619
3807
  table
3620
-
3808
+
3621
3809
  layer
3622
-
3810
+
3623
3811
  project
3624
-
3812
+
3625
3813
  file
3626
-
3814
+
3627
3815
  feature
3628
-
3816
+
3629
3817
  tag
3630
3818
  */
3631
3819
  export declare enum ResourceType {
@@ -3762,6 +3950,49 @@ export declare type ScaleBarElementDc = ModelElementDc & {
3762
3950
  font?: string;
3763
3951
  fontSize?: number;
3764
3952
  };
3953
+ /**
3954
+ * Result data.
3955
+ */
3956
+ export interface SearchResultDataDc {
3957
+ /** Name of the attribute. */
3958
+ attributeName?: string;
3959
+ /** Attribute value. */
3960
+ value?: string;
3961
+ /** Row id. */
3962
+ id?: string;
3963
+ }
3964
+ /**
3965
+ * Universal search result.
3966
+ */
3967
+ export interface SearchResultDc {
3968
+ /** Name of the layer. */
3969
+ name?: string;
3970
+ /** Id of the task. */
3971
+ taskId?: string;
3972
+ /** Found results. */
3973
+ results?: SearchResultDataDc[];
3974
+ /**
3975
+ * Count results.
3976
+ * @format int32
3977
+ */
3978
+ count?: number;
3979
+ }
3980
+ /**
3981
+ * The result of a server task step execution.
3982
+ */
3983
+ export declare type SearchStepResultDc = BaseStepResultDc & {
3984
+ layerName?: string;
3985
+ foundObjects?: number;
3986
+ };
3987
+ /**
3988
+ * Universal search task parameters.
3989
+ */
3990
+ export declare type SearchTaskParametersDc = TaskParametersDc & {
3991
+ type?: string;
3992
+ sources: (ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc)[];
3993
+ filter?: string;
3994
+ attributes?: string[];
3995
+ };
3765
3996
  /**
3766
3997
  * Suggest user information.
3767
3998
  */
@@ -3793,21 +4024,21 @@ export interface ServerInfoDc {
3793
4024
  }
3794
4025
  /**
3795
4026
  * Status of the server task.
3796
-
4027
+
3797
4028
  None
3798
-
4029
+
3799
4030
  Scheduled
3800
-
4031
+
3801
4032
  Planning
3802
-
4033
+
3803
4034
  Executing
3804
-
4035
+
3805
4036
  Completed
3806
-
4037
+
3807
4038
  Failed
3808
-
4039
+
3809
4040
  Canceled
3810
-
4041
+
3811
4042
  Timeout
3812
4043
  */
3813
4044
  export declare enum ServerTaskStatus {
@@ -4040,6 +4271,13 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
4040
4271
  * Simplify configuration information.
4041
4272
  */
4042
4273
  export interface SimplifyInfoDc {
4274
+ /** Snap grid cell size by scale. */
4275
+ scaleItems?: Record<string, SimplifyInfoItemDc>;
4276
+ }
4277
+ /**
4278
+ * Simplify configuration information.
4279
+ */
4280
+ export interface SimplifyInfoItemDc {
4043
4281
  /**
4044
4282
  * Simplify type.
4045
4283
  *
@@ -4057,16 +4295,19 @@ export interface SimplifyInfoDc {
4057
4295
  simplifyTolerance?: number;
4058
4296
  /** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
4059
4297
  simplifyPreserveCollapsed?: boolean;
4060
- /** Snap grid cell size by scale. */
4061
- snapCellSizes?: Record<string, number | null>;
4298
+ /**
4299
+ * Snap grid cell size.
4300
+ * @format double
4301
+ */
4302
+ snapCellSize?: number;
4062
4303
  }
4063
4304
  /**
4064
4305
  * Simplify type.
4065
-
4306
+
4066
4307
  Basic
4067
-
4308
+
4068
4309
  PreserveTopology
4069
-
4310
+
4070
4311
  VW
4071
4312
  */
4072
4313
  export declare enum SimplifyType {
@@ -4192,11 +4433,11 @@ export declare type StepResultDc = BaseStepResultDc & {
4192
4433
  };
4193
4434
  /**
4194
4435
  * The `StringSubType` provides information about string attribute subtype.
4195
-
4436
+
4196
4437
  None
4197
-
4438
+
4198
4439
  Image
4199
-
4440
+
4200
4441
  PkkCode
4201
4442
  */
4202
4443
  export declare enum StringSubType {
@@ -4230,7 +4471,7 @@ export interface StyleDc {
4230
4471
  */
4231
4472
  condition?: string;
4232
4473
  /** Symbol that is used to draw the features of the layer. */
4233
- symbol?: 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;
4474
+ symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | 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;
4234
4475
  /**
4235
4476
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
4236
4477
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -4414,9 +4655,9 @@ export interface TagInfoDc {
4414
4655
  }
4415
4656
  /**
4416
4657
  * Task owner group.
4417
-
4658
+
4418
4659
  my
4419
-
4660
+
4420
4661
  all
4421
4662
  */
4422
4663
  export declare enum TaskGroup {
@@ -4455,7 +4696,7 @@ export interface TaskInfoDc {
4455
4696
  */
4456
4697
  status?: ServerTaskStatus;
4457
4698
  /** Parameters of the task. */
4458
- parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | UnionTaskParametersDc | UploadRasterTaskParametersDc;
4699
+ parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc;
4459
4700
  /**
4460
4701
  * Date and time when the task was created.
4461
4702
  * @format date-time
@@ -4541,7 +4782,7 @@ export interface TaskProgressDc {
4541
4782
  */
4542
4783
  export interface TaskResultDc {
4543
4784
  message?: string;
4544
- stepResults?: StepResultDc[];
4785
+ stepResults?: (RasterCogCreatorStepResultDc | SearchStepResultDc | StepResultDc)[];
4545
4786
  /** @format int64 */
4546
4787
  inputObjectCount?: number;
4547
4788
  /** @format int64 */
@@ -4630,13 +4871,13 @@ export interface TemplateModelDc {
4630
4871
  }
4631
4872
  /**
4632
4873
  * Sets the horizontal alignment of text.
4633
-
4874
+
4634
4875
  right
4635
-
4876
+
4636
4877
  left
4637
-
4878
+
4638
4879
  center
4639
-
4880
+
4640
4881
  justified
4641
4882
  */
4642
4883
  export declare enum TextAlignment {
@@ -4656,11 +4897,11 @@ export interface TextBackgroundDc {
4656
4897
  }
4657
4898
  /**
4658
4899
  * Sets the vertical alignment of text.
4659
-
4900
+
4660
4901
  top
4661
-
4902
+
4662
4903
  bottom
4663
-
4904
+
4664
4905
  middle
4665
4906
  */
4666
4907
  export declare enum TextVerticalAlignment {
@@ -5070,6 +5311,20 @@ export interface UpdateUserDc {
5070
5311
  /** Phone number. */
5071
5312
  phone?: string;
5072
5313
  }
5314
+ /**
5315
+ * Upload raster task parameters data contract.
5316
+ */
5317
+ export declare type UploadNetCdfTaskParametersDc = TaskParametersDc & {
5318
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
5319
+ file: string;
5320
+ dimName?: string;
5321
+ dimExtraName?: string;
5322
+ dimExtraValues?: string[];
5323
+ attributes?: Record<string, any>;
5324
+ maxZoomLevel: number;
5325
+ polygonize?: boolean;
5326
+ type?: string;
5327
+ };
5073
5328
  /**
5074
5329
  * Upload raster task parameters data contract.
5075
5330
  */
@@ -5484,6 +5739,10 @@ export interface GetRasterAttributesParams {
5484
5739
  /** File name in the temporary static storage. */
5485
5740
  fileName?: string;
5486
5741
  }
5742
+ export interface GetRasterMetaParams {
5743
+ /** Raster filename. */
5744
+ fileName?: string;
5745
+ }
5487
5746
  export interface GetLayersListParams {
5488
5747
  /**
5489
5748
  * Full text query filter that allow to query in alias and name fields.
@@ -5938,6 +6197,25 @@ export interface ValidateExpressionParams {
5938
6197
  /** Layer name. */
5939
6198
  layerName: string;
5940
6199
  }
6200
+ export interface GetRasterMetaParams7 {
6201
+ /**
6202
+ * Min value for build histogram.
6203
+ * @format double
6204
+ */
6205
+ min?: number;
6206
+ /**
6207
+ * Max value for build histogram.
6208
+ * @format double
6209
+ */
6210
+ max?: number;
6211
+ /** Layer name. */
6212
+ name: string;
6213
+ /**
6214
+ * Id of raster.
6215
+ * @format int64
6216
+ */
6217
+ id: number;
6218
+ }
5941
6219
  export interface SetPreviewPayload {
5942
6220
  /** @format binary */
5943
6221
  file?: File;
@@ -5966,6 +6244,25 @@ export interface CreateNamespaceParams {
5966
6244
  */
5967
6245
  adjustName?: boolean;
5968
6246
  }
6247
+ export interface GetRoutesParams {
6248
+ /** if true, the response will contain the geometry of the route. */
6249
+ getGeometry?: boolean;
6250
+ /**
6251
+ * if true, the response will contain the detailed description of the route segments
6252
+ * .
6253
+ */
6254
+ getSegments?: boolean;
6255
+ /**
6256
+ * Max distance in meters from the input point to a road on the graph.
6257
+ * If there is no road close enough to the input point, a route will not be build.
6258
+ * @format float
6259
+ */
6260
+ snappingDistance?: number;
6261
+ /** Profile. */
6262
+ profile: string;
6263
+ /** Coordinates of the points to build the routes between. */
6264
+ coordinates: string;
6265
+ }
5969
6266
  export interface SubscribeOperationParams {
5970
6267
  /** Notification tag. */
5971
6268
  tag?: string;
@@ -6027,7 +6324,7 @@ export interface GetProjectsListParams {
6027
6324
  tags?: string[];
6028
6325
  }
6029
6326
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6030
- export interface DeleteResourcesParams6 {
6327
+ export interface DeleteResourcesParams7 {
6031
6328
  /** Resource names. */
6032
6329
  names?: string[];
6033
6330
  }
@@ -6265,7 +6562,7 @@ export interface StatisticsDbParams {
6265
6562
  */
6266
6563
  types?: AggregationFunction[];
6267
6564
  }
6268
- export interface ClassifyParams4 {
6565
+ export interface ClassifyParams9 {
6269
6566
  /** Layer name. */
6270
6567
  name?: string;
6271
6568
  /** Attribute name. */
@@ -6389,6 +6686,10 @@ export interface GetTableListParams {
6389
6686
  acl?: string;
6390
6687
  }
6391
6688
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6689
+ export interface DeleteResourcesParams5 {
6690
+ /** Resource names. */
6691
+ names?: string[];
6692
+ }
6392
6693
  export interface GetTablesInfoParams {
6393
6694
  /** Table names. */
6394
6695
  tableNames?: string[];
@@ -6467,6 +6768,24 @@ export interface GetAllParams {
6467
6768
  */
6468
6769
  limit?: number;
6469
6770
  }
6771
+ export interface GetSearchResultParams {
6772
+ /** Results filter. */
6773
+ filter?: string;
6774
+ /**
6775
+ * Offset result objects.
6776
+ * @format int32
6777
+ */
6778
+ offset?: number;
6779
+ /**
6780
+ * Limit of result objects.
6781
+ * @format int32
6782
+ */
6783
+ limit?: number;
6784
+ /** Id of the task. */
6785
+ taskId: string;
6786
+ /** Name of the layer. */
6787
+ layerName: string;
6788
+ }
6470
6789
  export interface GetVectorTileParams {
6471
6790
  /** Include all feature attributes. */
6472
6791
  withAttributes?: boolean;
@@ -6474,27 +6793,6 @@ export interface GetVectorTileParams {
6474
6793
  condition?: string;
6475
6794
  /** True if name is project name, otherwise false. */
6476
6795
  isProject?: boolean;
6477
- /** True if compress GZIP result pbf tile. */
6478
- compress?: boolean;
6479
- /**
6480
- * Simplify type.
6481
- *
6482
- * Basic
6483
- *
6484
- * PreserveTopology
6485
- *
6486
- * VW
6487
- */
6488
- SimplifyType?: SimplifyType;
6489
- /**
6490
- * Tolerance.
6491
- * @format float
6492
- */
6493
- SimplifyTolerance?: number;
6494
- /** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
6495
- SimplifyPreserveCollapsed?: boolean;
6496
- /** Snap grid cell size by scale. */
6497
- SnapCellSizes?: Record<string, number | null>;
6498
6796
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
6499
6797
  dataFilterId?: string;
6500
6798
  /** Project or layer name. */
@@ -6545,7 +6843,7 @@ export interface GetPublicCapabilitiesParams {
6545
6843
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6546
6844
  AcceptFormats?: string[];
6547
6845
  }
6548
- export interface GetCapabilitiesParams1 {
6846
+ export interface GetCapabilitiesParams3 {
6549
6847
  /** Output format of service metadata. */
6550
6848
  Format?: string;
6551
6849
  /** Must be WMS. */