@evergis/api 3.0.120 → 3.0.122

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 | HexGridSymbolDc | PolygonGridSymbolDc;
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;
22
22
  gridSize?: number;
23
23
  fixedCenter?: boolean;
24
24
  aggregations?: Record<string, AggregationFunction>;
@@ -48,6 +48,8 @@ export interface AggregationDataResultDc {
48
48
  *
49
49
  * Extent
50
50
  *
51
+ * H3
52
+ *
51
53
  * Count
52
54
  *
53
55
  * TotalCount
@@ -80,45 +82,47 @@ export interface AggregationDataResultDc {
80
82
  }
81
83
  /**
82
84
  *
83
-
85
+
84
86
  None
85
-
87
+
86
88
  Array
87
-
89
+
88
90
  Min
89
-
91
+
90
92
  Max
91
-
93
+
92
94
  Avg
93
-
95
+
94
96
  Sum
95
-
97
+
96
98
  Extent
97
-
99
+
100
+ H3
101
+
98
102
  Count
99
-
103
+
100
104
  TotalCount
101
-
105
+
102
106
  DistinctCount
103
-
107
+
104
108
  First
105
-
109
+
106
110
  Last
107
-
111
+
108
112
  Median
109
-
113
+
110
114
  Mod
111
-
115
+
112
116
  StdDeviation
113
-
117
+
114
118
  SumOfProduct
115
-
119
+
116
120
  OnlyValue
117
-
121
+
118
122
  WeightedAvg
119
-
123
+
120
124
  DensityIndicators
121
-
125
+
122
126
  DividedSum
123
127
  */
124
128
  export declare enum AggregationFunction {
@@ -129,6 +133,7 @@ export declare enum AggregationFunction {
129
133
  Avg = "Avg",
130
134
  Sum = "Sum",
131
135
  Extent = "Extent",
136
+ H3 = "H3",
132
137
  Count = "Count",
133
138
  TotalCount = "TotalCount",
134
139
  DistinctCount = "DistinctCount",
@@ -143,6 +148,59 @@ export declare enum AggregationFunction {
143
148
  DensityIndicators = "DensityIndicators",
144
149
  DividedSum = "DividedSum"
145
150
  }
151
+ /**
152
+ * Attributes aggregation mapping.
153
+ */
154
+ export interface AggregationMappingDc {
155
+ /** Name of the attribute. */
156
+ attributeName: string;
157
+ /**
158
+ *
159
+ *
160
+ * None
161
+ *
162
+ * Array
163
+ *
164
+ * Min
165
+ *
166
+ * Max
167
+ *
168
+ * Avg
169
+ *
170
+ * Sum
171
+ *
172
+ * Extent
173
+ *
174
+ * H3
175
+ *
176
+ * Count
177
+ *
178
+ * TotalCount
179
+ *
180
+ * DistinctCount
181
+ *
182
+ * First
183
+ *
184
+ * Last
185
+ *
186
+ * Median
187
+ *
188
+ * Mod
189
+ *
190
+ * StdDeviation
191
+ *
192
+ * SumOfProduct
193
+ *
194
+ * OnlyValue
195
+ *
196
+ * WeightedAvg
197
+ *
198
+ * DensityIndicators
199
+ *
200
+ * DividedSum
201
+ */
202
+ aggregationFunction: AggregationFunction;
203
+ }
146
204
  /**
147
205
  * Aggregation settings.
148
206
  */
@@ -170,6 +228,8 @@ export interface AggregationSettingDc {
170
228
  *
171
229
  * Extent
172
230
  *
231
+ * H3
232
+ *
173
233
  * Count
174
234
  *
175
235
  * TotalCount
@@ -241,6 +301,8 @@ export interface AttributeConfigurationDc {
241
301
  *
242
302
  * Extent
243
303
  *
304
+ * H3
305
+ *
244
306
  * Count
245
307
  *
246
308
  * TotalCount
@@ -274,6 +336,10 @@ export interface AttributeConfigurationDc {
274
336
  stringFormat?: AttributeFormatDc;
275
337
  /** Name of the table. */
276
338
  tableName?: string;
339
+ /** Client data storage. Storage isn't used by server. */
340
+ clientData?: any;
341
+ /** Id of table given attribute is referenced. */
342
+ referenceId?: string;
277
343
  }
278
344
  /**
279
345
  * Information about an attribute.
@@ -303,6 +369,8 @@ export interface AttributeDefinitionDc {
303
369
  * Polygon
304
370
  *
305
371
  * Multipoint
372
+ *
373
+ * H3Index
306
374
  */
307
375
  type: AttributeType;
308
376
  /** Alias of the attribute. */
@@ -433,28 +501,30 @@ export interface AttributeFormatDefinitionDc {
433
501
  }
434
502
  /**
435
503
  * Types of the attributes that are supported by the system.
436
-
504
+
437
505
  Unknown
438
-
506
+
439
507
  String
440
-
508
+
441
509
  Int32
442
-
510
+
443
511
  Int64
444
-
512
+
445
513
  Double
446
-
514
+
447
515
  DateTime
448
-
516
+
449
517
  Boolean
450
-
518
+
451
519
  Point
452
-
520
+
453
521
  Polyline
454
-
522
+
455
523
  Polygon
456
-
524
+
457
525
  Multipoint
526
+
527
+ H3Index
458
528
  */
459
529
  export declare enum AttributeType {
460
530
  Unknown = "Unknown",
@@ -467,7 +537,8 @@ export declare enum AttributeType {
467
537
  Point = "Point",
468
538
  Polyline = "Polyline",
469
539
  Polygon = "Polygon",
470
- Multipoint = "Multipoint"
540
+ Multipoint = "Multipoint",
541
+ H3Index = "H3Index"
471
542
  }
472
543
  /**
473
544
  * Configuration of the attribute set in a feature layer.
@@ -617,15 +688,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
617
688
  };
618
689
  /**
619
690
  * Describes classification methods.
620
-
691
+
621
692
  none
622
-
693
+
623
694
  naturalBreaks
624
-
695
+
625
696
  equalInterval
626
-
697
+
627
698
  quantile
628
-
699
+
629
700
  unique
630
701
  */
631
702
  export declare enum ClassificationType {
@@ -637,11 +708,11 @@ export declare enum ClassificationType {
637
708
  }
638
709
  /**
639
710
  * Type of attribute.
640
-
711
+
641
712
  decimal
642
-
713
+
643
714
  dateTime
644
-
715
+
645
716
  text
646
717
  */
647
718
  export declare enum ClassifyAttributeType {
@@ -670,7 +741,7 @@ export interface ClassifyResultObject {
670
741
  export declare type ClusterSymbolDc = SymbolDc & {
671
742
  type?: string;
672
743
  labelSymbol?: PointLabelSymbolDc;
673
- singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
744
+ 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;
674
745
  fillColor?: ParameterDcColor;
675
746
  strokeColor?: ParameterDcColor;
676
747
  strokeWidth?: CalculatedParameterDc;
@@ -711,6 +782,8 @@ export interface ColumnDescriptionDc {
711
782
  * Polygon
712
783
  *
713
784
  * Multipoint
785
+ *
786
+ * H3Index
714
787
  */
715
788
  type: AttributeType;
716
789
  /**
@@ -893,7 +966,7 @@ export interface CompositeServiceInfoDc {
893
966
  */
894
967
  export declare type CompositeSymbolDc = SymbolDc & {
895
968
  type?: string;
896
- childSymbols?: (CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
969
+ 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)[];
897
970
  };
898
971
  /**
899
972
  * Get configuration information.
@@ -906,53 +979,55 @@ export interface ConfigDc {
906
979
  }
907
980
  /**
908
981
  * Types of errors that can occur during layer initialize.
909
-
982
+
910
983
  Unknown
911
-
984
+
912
985
  SerializeError
913
-
986
+
914
987
  InvalidDataService
915
-
988
+
916
989
  InvalidConfiguration
917
-
990
+
918
991
  InvalidDataServiceName
919
-
992
+
920
993
  InvalidTableName
921
-
994
+
922
995
  InvalidLayerName
923
-
996
+
924
997
  ResourceNotFound
925
-
998
+
926
999
  InvalidCondition
927
-
1000
+
928
1001
  InvalidAttributes
929
-
1002
+
930
1003
  InvalidIdAttribute
931
-
1004
+
932
1005
  InvalidGeometryAttribute
933
-
1006
+
934
1007
  InvalidGeometryAttributeType
935
-
1008
+
936
1009
  InvalidColumnName
937
-
1010
+
938
1011
  InvalidIdColumnSettings
939
-
1012
+
940
1013
  ColumnNotExistsInTable
941
-
1014
+
942
1015
  InvalidStyle
943
-
1016
+
944
1017
  InvalidLayerType
945
-
1018
+
946
1019
  ColumnLoadingError
947
-
1020
+
948
1021
  InvalidAttributeFormat
949
-
1022
+
950
1023
  DataSourceNotFound
951
-
1024
+
952
1025
  DuplicateColumns
953
-
1026
+
1027
+ DuplicateAttributes
1028
+
954
1029
  TableWithoutColumns
955
-
1030
+
956
1031
  InvalidTableReferenceConfiguration
957
1032
  */
958
1033
  export declare enum ConfigurationErrorEnum {
@@ -978,6 +1053,7 @@ export declare enum ConfigurationErrorEnum {
978
1053
  InvalidAttributeFormat = "InvalidAttributeFormat",
979
1054
  DataSourceNotFound = "DataSourceNotFound",
980
1055
  DuplicateColumns = "DuplicateColumns",
1056
+ DuplicateAttributes = "DuplicateAttributes",
981
1057
  TableWithoutColumns = "TableWithoutColumns",
982
1058
  InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
983
1059
  }
@@ -1072,6 +1148,38 @@ export interface CreateRoleDc {
1072
1148
  /** Description. */
1073
1149
  description?: string;
1074
1150
  }
1151
+ /**
1152
+ * Symbol category data contract.
1153
+ */
1154
+ export interface CreateSymbolCategoryDc {
1155
+ /** Name. */
1156
+ name?: string;
1157
+ /**
1158
+ * Parent category id.
1159
+ * @format int32
1160
+ */
1161
+ parentId?: number;
1162
+ }
1163
+ /**
1164
+ * Symbols.
1165
+ */
1166
+ export interface CreateSymbolDc {
1167
+ /** Symbol name. */
1168
+ name?: string;
1169
+ /** Symbol type. */
1170
+ type?: string;
1171
+ /** Symbol geometry type. */
1172
+ geometryType?: string;
1173
+ /** Is substrate symbol. */
1174
+ form?: boolean;
1175
+ /** Symbol data. */
1176
+ data?: string;
1177
+ /**
1178
+ * Symbol category id.
1179
+ * @format int32
1180
+ */
1181
+ categoryId?: number;
1182
+ }
1075
1183
  /**
1076
1184
  * Data contract for create new user.
1077
1185
  */
@@ -1201,15 +1309,15 @@ export interface ErrorDetailsDc {
1201
1309
  }
1202
1310
  /**
1203
1311
  * Type of the error.
1204
-
1312
+
1205
1313
  ResourceLimitExceeded
1206
-
1314
+
1207
1315
  ResourceNotFound
1208
-
1316
+
1209
1317
  InternalError
1210
-
1318
+
1211
1319
  BadRequest
1212
-
1320
+
1213
1321
  DuplicateContent
1214
1322
  */
1215
1323
  export declare enum ErrorDetailsType {
@@ -1298,6 +1406,8 @@ export interface ExpressionValidationResultDc {
1298
1406
  * Polygon
1299
1407
  *
1300
1408
  * Multipoint
1409
+ *
1410
+ * H3Index
1301
1411
  */
1302
1412
  returnType?: AttributeType;
1303
1413
  /** The expression that was validated. */
@@ -1451,6 +1561,8 @@ export interface FailedServiceInfoDc {
1451
1561
  *
1452
1562
  * DuplicateColumns
1453
1563
  *
1564
+ * DuplicateAttributes
1565
+ *
1454
1566
  * TableWithoutColumns
1455
1567
  *
1456
1568
  * InvalidTableReferenceConfiguration
@@ -1569,6 +1681,8 @@ export interface FeatureLayerServiceInfoDc {
1569
1681
  dataSourceType?: string;
1570
1682
  /** Copyright text. */
1571
1683
  copyrightText?: string;
1684
+ /** Client data storage. Storage isn't used by server. */
1685
+ clientData?: any;
1572
1686
  /** The type of the resource. */
1573
1687
  type: string;
1574
1688
  /**
@@ -1685,7 +1799,7 @@ export interface FeatureSymbolDc {
1685
1799
  /** @format int32 */
1686
1800
  id: number;
1687
1801
  /** Feature symbol. */
1688
- definition?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
1802
+ 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;
1689
1803
  image?: string;
1690
1804
  }
1691
1805
  /**
@@ -1697,9 +1811,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1697
1811
  };
1698
1812
  /**
1699
1813
  * Type of the feature.
1700
-
1814
+
1701
1815
  Unknown
1702
-
1816
+
1703
1817
  GeometricFeature
1704
1818
  */
1705
1819
  export declare enum FeatureType {
@@ -1773,11 +1887,11 @@ export interface FilterDc {
1773
1887
  }
1774
1888
  /**
1775
1889
  * Sets whether font should be styled.
1776
-
1890
+
1777
1891
  normal
1778
-
1892
+
1779
1893
  oblique
1780
-
1894
+
1781
1895
  italic
1782
1896
  */
1783
1897
  export declare enum FontStyle {
@@ -1787,27 +1901,27 @@ export declare enum FontStyle {
1787
1901
  }
1788
1902
  /**
1789
1903
  * Specifies the weight (or boldness) of the font.
1790
-
1904
+
1791
1905
  Thin
1792
-
1906
+
1793
1907
  ExtraLight
1794
-
1908
+
1795
1909
  Light
1796
-
1910
+
1797
1911
  SemiLight
1798
-
1912
+
1799
1913
  Normal
1800
-
1914
+
1801
1915
  Medium
1802
-
1916
+
1803
1917
  DemiBold
1804
-
1918
+
1805
1919
  Bold
1806
-
1920
+
1807
1921
  ExtraBold
1808
-
1922
+
1809
1923
  Black
1810
-
1924
+
1811
1925
  ExtraBlack
1812
1926
  */
1813
1927
  export declare enum FontWeight {
@@ -1902,17 +2016,17 @@ export interface GeometryDc {
1902
2016
  }
1903
2017
  /**
1904
2018
  *
1905
-
2019
+
1906
2020
  unknown
1907
-
2021
+
1908
2022
  point
1909
-
2023
+
1910
2024
  polyline
1911
-
2025
+
1912
2026
  polygon
1913
-
2027
+
1914
2028
  envelope
1915
-
2029
+
1916
2030
  multipoint
1917
2031
  */
1918
2032
  export declare enum GeometryType {
@@ -1932,13 +2046,13 @@ export declare type GridElementDc = ModelElementDc & {
1932
2046
  };
1933
2047
  /**
1934
2048
  * Resource group.
1935
-
2049
+
1936
2050
  my
1937
-
2051
+
1938
2052
  role
1939
-
2053
+
1940
2054
  public
1941
-
2055
+
1942
2056
  all
1943
2057
  */
1944
2058
  export declare enum Group {
@@ -1947,6 +2061,16 @@ export declare enum Group {
1947
2061
  Public = "public",
1948
2062
  All = "all"
1949
2063
  }
2064
+ /**
2065
+ * <inheritdoc cref="T:SPCore.Connectors.Connectors.Base.Models.Style.Adv.H3GridSymbolDc" />
2066
+ */
2067
+ export declare type H3GridSymbolDc = SymbolDc & {
2068
+ type?: string;
2069
+ cellSize?: number;
2070
+ stroke?: DashedBrushDc | SolidStrokeBrushDc;
2071
+ fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
2072
+ aggregations?: AggregationMappingDc[];
2073
+ };
1950
2074
  /**
1951
2075
  * Defines the brush for the hatch fill.
1952
2076
  */
@@ -2215,7 +2339,7 @@ export declare type LabelSymbolDc = SymbolDc & {
2215
2339
  };
2216
2340
  export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2217
2341
  type?: string;
2218
- symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2342
+ 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;
2219
2343
  };
2220
2344
  /**
2221
2345
  * Information about the layer attributes and their configuration.
@@ -2391,9 +2515,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2391
2515
  /**
2392
2516
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2393
2517
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2394
-
2518
+
2395
2519
  small
2396
-
2520
+
2397
2521
  large
2398
2522
  */
2399
2523
  export declare enum LineEndingSize {
@@ -2402,19 +2526,19 @@ export declare enum LineEndingSize {
2402
2526
  }
2403
2527
  /**
2404
2528
  * Type of the line ending.
2405
-
2529
+
2406
2530
  none
2407
-
2531
+
2408
2532
  arrow
2409
-
2533
+
2410
2534
  filledArrow
2411
-
2535
+
2412
2536
  square
2413
-
2537
+
2414
2538
  filledSquare
2415
-
2539
+
2416
2540
  circle
2417
-
2541
+
2418
2542
  filledCircle
2419
2543
  */
2420
2544
  export declare enum LineEndingType {
@@ -2528,7 +2652,7 @@ export declare type MultiPointDc = GeometryDc & {
2528
2652
  */
2529
2653
  export declare type MultipointSymbolDc = SymbolDc & {
2530
2654
  type?: string;
2531
- pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2655
+ 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;
2532
2656
  };
2533
2657
  /**
2534
2658
  * Information about a namespace .
@@ -2554,15 +2678,15 @@ export interface NamespaceInfoDc {
2554
2678
  export declare type ObjectId = object;
2555
2679
  /**
2556
2680
  *
2557
-
2681
+
2558
2682
  Unknown
2559
-
2683
+
2560
2684
  union
2561
-
2685
+
2562
2686
  intersection
2563
-
2687
+
2564
2688
  subtraction
2565
-
2689
+
2566
2690
  symDifference
2567
2691
  */
2568
2692
  export declare enum Operation {
@@ -2760,6 +2884,50 @@ export interface PagedListServiceListItemDc {
2760
2884
  /** The retrieved items in the list. */
2761
2885
  items?: ServiceListItemDc[];
2762
2886
  }
2887
+ /**
2888
+ * A list of items that is returned for filtered paged requests.
2889
+ */
2890
+ export interface PagedListSymbolCategoryInfoDc {
2891
+ /**
2892
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2893
+ * @format int64
2894
+ */
2895
+ totalCount?: number;
2896
+ /**
2897
+ * The first index of the item in the list that is returned in the Items parameter.
2898
+ * @format int32
2899
+ */
2900
+ offset?: number;
2901
+ /**
2902
+ * Maximum number of the items that the Items parameter may contain.
2903
+ * @format int32
2904
+ */
2905
+ limit?: number;
2906
+ /** The retrieved items in the list. */
2907
+ items?: SymbolCategoryInfoDc[];
2908
+ }
2909
+ /**
2910
+ * A list of items that is returned for filtered paged requests.
2911
+ */
2912
+ export interface PagedListSymbolInfoDc {
2913
+ /**
2914
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2915
+ * @format int64
2916
+ */
2917
+ totalCount?: number;
2918
+ /**
2919
+ * The first index of the item in the list that is returned in the Items parameter.
2920
+ * @format int32
2921
+ */
2922
+ offset?: number;
2923
+ /**
2924
+ * Maximum number of the items that the Items parameter may contain.
2925
+ * @format int32
2926
+ */
2927
+ limit?: number;
2928
+ /** The retrieved items in the list. */
2929
+ items?: SymbolInfoDc[];
2930
+ }
2763
2931
  /**
2764
2932
  * A list of items that is returned for filtered paged requests.
2765
2933
  */
@@ -2854,19 +3022,19 @@ export declare type PatternBrushDc = FillBrushDc & {
2854
3022
  };
2855
3023
  /**
2856
3024
  * User permissions for server security objects (services, projects etc.)
2857
-
3025
+
2858
3026
  none
2859
-
3027
+
2860
3028
  configure
2861
-
3029
+
2862
3030
  write
2863
-
3031
+
2864
3032
  read
2865
-
3033
+
2866
3034
  read,configure
2867
-
3035
+
2868
3036
  read,write
2869
-
3037
+
2870
3038
  read,write,configure
2871
3039
  */
2872
3040
  export declare enum Permissions {
@@ -2924,19 +3092,19 @@ export interface PolicyDc {
2924
3092
  }
2925
3093
  /**
2926
3094
  * Type of the authorization policy.
2927
-
3095
+
2928
3096
  Unknown
2929
-
3097
+
2930
3098
  CreateTable
2931
-
3099
+
2932
3100
  CreateLayer
2933
-
3101
+
2934
3102
  CreateProject
2935
-
3103
+
2936
3104
  MaxFeaturesInOneTable
2937
-
3105
+
2938
3106
  MaxObjectsToExport
2939
-
3107
+
2940
3108
  MaxUploadContentSize
2941
3109
  */
2942
3110
  export declare enum PolicyType {
@@ -3123,6 +3291,7 @@ export interface ProjectContentItemDc {
3123
3291
  */
3124
3292
  export declare type ProjectInfoDc = ResourceInfoDc & {
3125
3293
  layersCount?: number;
3294
+ zoom?: number;
3126
3295
  };
3127
3296
  /**
3128
3297
  * List of the projects in projects manager service.
@@ -3294,11 +3463,11 @@ export interface Rectangle2 {
3294
3463
  }
3295
3464
  /**
3296
3465
  * Types of table reference.
3297
-
3466
+
3298
3467
  OneToMany
3299
-
3468
+
3300
3469
  OneToOne
3301
-
3470
+
3302
3471
  Intersect
3303
3472
  */
3304
3473
  export declare enum ReferenceJoinType {
@@ -3346,6 +3515,11 @@ export interface RemoteTileServiceInfo {
3346
3515
  sourceUrlMask?: string;
3347
3516
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3348
3517
  sourceServers?: string[];
3518
+ /**
3519
+ * Allow direct access.
3520
+ * Allows the client to receive tiles directly from the source server.
3521
+ */
3522
+ allowDirectAccess?: boolean;
3349
3523
  /** Copyright text. */
3350
3524
  copyrightText?: string;
3351
3525
  }
@@ -3426,19 +3600,19 @@ export interface ResourceInfoDc {
3426
3600
  }
3427
3601
  /**
3428
3602
  * The `ResourceType` represents resource manager supports types.
3429
-
3603
+
3430
3604
  Unknown
3431
-
3605
+
3432
3606
  table
3433
-
3607
+
3434
3608
  layer
3435
-
3609
+
3436
3610
  project
3437
-
3611
+
3438
3612
  file
3439
-
3613
+
3440
3614
  feature
3441
-
3615
+
3442
3616
  tag
3443
3617
  */
3444
3618
  export declare enum ResourceType {
@@ -3606,21 +3780,21 @@ export interface ServerInfoDc {
3606
3780
  }
3607
3781
  /**
3608
3782
  * Status of the server task.
3609
-
3783
+
3610
3784
  None
3611
-
3785
+
3612
3786
  Scheduled
3613
-
3787
+
3614
3788
  Planning
3615
-
3789
+
3616
3790
  Executing
3617
-
3791
+
3618
3792
  Completed
3619
-
3793
+
3620
3794
  Failed
3621
-
3795
+
3622
3796
  Canceled
3623
-
3797
+
3624
3798
  Timeout
3625
3799
  */
3626
3800
  export declare enum ServerTaskStatus {
@@ -3660,6 +3834,8 @@ export interface ServiceConfigurationBaseDc {
3660
3834
  tags?: string[];
3661
3835
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3662
3836
  invisibleInCatalog?: boolean;
3837
+ /** Client data storage. Storage isn't used by server. */
3838
+ clientData?: any;
3663
3839
  }
3664
3840
  /**
3665
3841
  * Description of a service in the Spatial Processor.
@@ -3718,6 +3894,7 @@ export interface ServiceInfo {
3718
3894
  ObjectsCount?: string[];
3719
3895
  DataSourceType?: string[];
3720
3896
  Extent?: string[];
3897
+ Zoom?: string[];
3721
3898
  };
3722
3899
  /**
3723
3900
  * Given a security object (like a service or a project) this class provides the list of permissions the different
@@ -3846,6 +4023,17 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
3846
4023
  beginningSize?: LineEndingSize;
3847
4024
  endingSize?: LineEndingSize;
3848
4025
  };
4026
+ /**
4027
+ * Simplify type.
4028
+
4029
+ Basic
4030
+
4031
+ PreserveTopology
4032
+ */
4033
+ export declare enum SimplifyType {
4034
+ Basic = "Basic",
4035
+ PreserveTopology = "PreserveTopology"
4036
+ }
3849
4037
  /**
3850
4038
  * User social network information.
3851
4039
  */
@@ -3914,6 +4102,8 @@ export interface StatisticsResultObject {
3914
4102
  *
3915
4103
  * Extent
3916
4104
  *
4105
+ * H3
4106
+ *
3917
4107
  * Count
3918
4108
  *
3919
4109
  * TotalCount
@@ -3962,11 +4152,11 @@ export declare type StepResultDc = BaseStepResultDc & {
3962
4152
  };
3963
4153
  /**
3964
4154
  * The `StringSubType` provides information about string attribute subtype.
3965
-
4155
+
3966
4156
  None
3967
-
4157
+
3968
4158
  Image
3969
-
4159
+
3970
4160
  PkkCode
3971
4161
  */
3972
4162
  export declare enum StringSubType {
@@ -4000,7 +4190,7 @@ export interface StyleDc {
4000
4190
  */
4001
4191
  condition?: string;
4002
4192
  /** Symbol that is used to draw the features of the layer. */
4003
- symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
4193
+ 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;
4004
4194
  /**
4005
4195
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
4006
4196
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -4060,6 +4250,23 @@ export declare type SvgPointSymbolDc = SymbolDc & {
4060
4250
  offset?: CalculatedParameterDc[];
4061
4251
  angle?: CalculatedParameterDc;
4062
4252
  };
4253
+ /**
4254
+ * Symbol category data contract.
4255
+ */
4256
+ export interface SymbolCategoryInfoDc {
4257
+ /**
4258
+ * Id.
4259
+ * @format int32
4260
+ */
4261
+ id?: number;
4262
+ /** Name. */
4263
+ name?: string;
4264
+ /**
4265
+ * Parent category id.
4266
+ * @format int32
4267
+ */
4268
+ parentId?: number;
4269
+ }
4063
4270
  /**
4064
4271
  * Feature symbol.
4065
4272
  */
@@ -4069,6 +4276,31 @@ export interface SymbolDc {
4069
4276
  /** If set true symbol will not be rendered. */
4070
4277
  disabled?: boolean;
4071
4278
  }
4279
+ /**
4280
+ * Symbols.
4281
+ */
4282
+ export interface SymbolInfoDc {
4283
+ /**
4284
+ * Primary key.
4285
+ * @format int32
4286
+ */
4287
+ id?: number;
4288
+ /** Symbol name. */
4289
+ name?: string;
4290
+ /** Symbol type. */
4291
+ type?: string;
4292
+ /** Symbol geometry type. */
4293
+ geometryType?: string;
4294
+ /** Is substrate symbol. */
4295
+ form?: boolean;
4296
+ /** Symbol data. */
4297
+ data?: string;
4298
+ /**
4299
+ * Symbol category id.
4300
+ * @format int32
4301
+ */
4302
+ categoryId?: number;
4303
+ }
4072
4304
  /**
4073
4305
  * Common fields for table configurations.
4074
4306
  */
@@ -4113,6 +4345,10 @@ export interface TableReferenceConfigurationDc {
4113
4345
  * Intersect
4114
4346
  */
4115
4347
  joinType?: ReferenceJoinType;
4348
+ /** Condition to referenced table. */
4349
+ condition?: string;
4350
+ /** Table reference unique id. */
4351
+ referenceId?: string;
4116
4352
  }
4117
4353
  /**
4118
4354
  * Data storage that allows accessing features directly from the tables.
@@ -4132,9 +4368,9 @@ export interface TagInfoDc {
4132
4368
  }
4133
4369
  /**
4134
4370
  * Task owner group.
4135
-
4371
+
4136
4372
  my
4137
-
4373
+
4138
4374
  all
4139
4375
  */
4140
4376
  export declare enum TaskGroup {
@@ -4348,13 +4584,13 @@ export interface TemplateModelDc {
4348
4584
  }
4349
4585
  /**
4350
4586
  * Sets the horizontal alignment of text.
4351
-
4587
+
4352
4588
  right
4353
-
4589
+
4354
4590
  left
4355
-
4591
+
4356
4592
  center
4357
-
4593
+
4358
4594
  justified
4359
4595
  */
4360
4596
  export declare enum TextAlignment {
@@ -4374,11 +4610,11 @@ export interface TextBackgroundDc {
4374
4610
  }
4375
4611
  /**
4376
4612
  * Sets the vertical alignment of text.
4377
-
4613
+
4378
4614
  top
4379
-
4615
+
4380
4616
  bottom
4381
-
4617
+
4382
4618
  middle
4383
4619
  */
4384
4620
  export declare enum TextVerticalAlignment {
@@ -4711,6 +4947,38 @@ export interface UpdateRoleDc {
4711
4947
  /** Description. */
4712
4948
  description?: string;
4713
4949
  }
4950
+ /**
4951
+ * Symbol category data contract.
4952
+ */
4953
+ export interface UpdateSymbolCategoryDc {
4954
+ /** Name. */
4955
+ name?: string;
4956
+ /**
4957
+ * Parent category id.
4958
+ * @format int32
4959
+ */
4960
+ parentId?: number;
4961
+ }
4962
+ /**
4963
+ * Symbols.
4964
+ */
4965
+ export interface UpdateSymbolDc {
4966
+ /** Symbol name. */
4967
+ name?: string;
4968
+ /** Symbol type. */
4969
+ type?: string;
4970
+ /** Symbol geometry type. */
4971
+ geometryType?: string;
4972
+ /** Is substrate symbol. */
4973
+ form?: boolean;
4974
+ /** Symbol data. */
4975
+ data?: string;
4976
+ /**
4977
+ * Symbol category id.
4978
+ * @format int32
4979
+ */
4980
+ categoryId?: number;
4981
+ }
4714
4982
  /**
4715
4983
  * Table description with columns what must be added and deleted.
4716
4984
  */
@@ -5515,6 +5783,8 @@ export interface AggregateAttributeParams {
5515
5783
  *
5516
5784
  * Extent
5517
5785
  *
5786
+ * H3
5787
+ *
5518
5788
  * Count
5519
5789
  *
5520
5790
  * TotalCount
@@ -5681,7 +5951,7 @@ export interface GetProjectsListParams {
5681
5951
  tags?: string[];
5682
5952
  }
5683
5953
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5684
- export interface DeleteResourcesParams5 {
5954
+ export interface DeleteResourcesParams7 {
5685
5955
  /** Resource names. */
5686
5956
  names?: string[];
5687
5957
  }
@@ -5889,6 +6159,8 @@ export interface StatisticsDbParams {
5889
6159
  *
5890
6160
  * Extent
5891
6161
  *
6162
+ * H3
6163
+ *
5892
6164
  * Count
5893
6165
  *
5894
6166
  * TotalCount
@@ -5917,7 +6189,7 @@ export interface StatisticsDbParams {
5917
6189
  */
5918
6190
  types?: AggregationFunction[];
5919
6191
  }
5920
- export interface ClassifyParams4 {
6192
+ export interface ClassifyParams6 {
5921
6193
  /** Layer name. */
5922
6194
  name?: string;
5923
6195
  /** Attribute name. */
@@ -5975,6 +6247,35 @@ export interface RemoveFontParams {
5975
6247
  /** Font name. */
5976
6248
  fontName?: string;
5977
6249
  }
6250
+ export interface GetSymbolCategoriesParams {
6251
+ /**
6252
+ * Offset.
6253
+ * @format int32
6254
+ */
6255
+ offset?: number;
6256
+ /**
6257
+ * Limit.
6258
+ * @format int32
6259
+ */
6260
+ limit?: number;
6261
+ }
6262
+ export interface GetSymbolsListParams {
6263
+ /**
6264
+ * Id symbol category.
6265
+ * @format int32
6266
+ */
6267
+ idCategory?: number;
6268
+ /**
6269
+ * Offset.
6270
+ * @format int32
6271
+ */
6272
+ offset?: number;
6273
+ /**
6274
+ * Limit.
6275
+ * @format int32
6276
+ */
6277
+ limit?: number;
6278
+ }
5978
6279
  export interface GetTableListParams {
5979
6280
  /** Table name filter (support % and _ wildcards). */
5980
6281
  filter?: string;
@@ -6012,7 +6313,7 @@ export interface GetTableListParams {
6012
6313
  acl?: string;
6013
6314
  }
6014
6315
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6015
- export interface DeleteResourcesParams6 {
6316
+ export interface DeleteResourcesParams9 {
6016
6317
  /** Resource names. */
6017
6318
  names?: string[];
6018
6319
  }
@@ -6095,8 +6396,31 @@ export interface GetAllParams {
6095
6396
  limit?: number;
6096
6397
  }
6097
6398
  export interface GetVectorTileParams {
6399
+ /** Include all feature attributes. */
6400
+ withAttributes?: boolean;
6401
+ /** Condition. */
6402
+ condition?: string;
6098
6403
  /** True if name is project name, otherwise false. */
6099
6404
  isProject?: boolean;
6405
+ /** Simpify geometry using the Douglas-Peucker algorithm. */
6406
+ simplify?: boolean;
6407
+ /**
6408
+ * Simplify type.
6409
+ *
6410
+ * Basic
6411
+ *
6412
+ * PreserveTopology
6413
+ */
6414
+ simplifyType?: SimplifyType;
6415
+ /**
6416
+ * Simplify tolerance.
6417
+ * @format float
6418
+ */
6419
+ simplifyTolerance?: number;
6420
+ /** Simplify will retain objects that would otherwise be too small given the tolerance. */
6421
+ simplifyPreserveCollapsed?: boolean;
6422
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
6423
+ dataFilterId?: string;
6100
6424
  /** Project or layer name. */
6101
6425
  name: string;
6102
6426
  /**
@@ -6145,7 +6469,7 @@ export interface GetPublicCapabilitiesParams {
6145
6469
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6146
6470
  AcceptFormats?: string[];
6147
6471
  }
6148
- export interface GetCapabilitiesParams8 {
6472
+ export interface GetCapabilitiesParams9 {
6149
6473
  /** Output format of service metadata. */
6150
6474
  Format?: string;
6151
6475
  /** Must be WMS. */