@evergis/api 3.0.121 → 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.
- package/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +256 -167
- package/dist/api.cjs.development.js +18 -8
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +177 -163
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -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>;
|
|
@@ -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 {
|
|
@@ -148,6 +148,59 @@ export declare enum AggregationFunction {
|
|
|
148
148
|
DensityIndicators = "DensityIndicators",
|
|
149
149
|
DividedSum = "DividedSum"
|
|
150
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
|
+
}
|
|
151
204
|
/**
|
|
152
205
|
* Aggregation settings.
|
|
153
206
|
*/
|
|
@@ -285,6 +338,8 @@ export interface AttributeConfigurationDc {
|
|
|
285
338
|
tableName?: string;
|
|
286
339
|
/** Client data storage. Storage isn't used by server. */
|
|
287
340
|
clientData?: any;
|
|
341
|
+
/** Id of table given attribute is referenced. */
|
|
342
|
+
referenceId?: string;
|
|
288
343
|
}
|
|
289
344
|
/**
|
|
290
345
|
* Information about an attribute.
|
|
@@ -314,6 +369,8 @@ export interface AttributeDefinitionDc {
|
|
|
314
369
|
* Polygon
|
|
315
370
|
*
|
|
316
371
|
* Multipoint
|
|
372
|
+
*
|
|
373
|
+
* H3Index
|
|
317
374
|
*/
|
|
318
375
|
type: AttributeType;
|
|
319
376
|
/** Alias of the attribute. */
|
|
@@ -444,28 +501,30 @@ export interface AttributeFormatDefinitionDc {
|
|
|
444
501
|
}
|
|
445
502
|
/**
|
|
446
503
|
* Types of the attributes that are supported by the system.
|
|
447
|
-
|
|
504
|
+
|
|
448
505
|
Unknown
|
|
449
|
-
|
|
506
|
+
|
|
450
507
|
String
|
|
451
|
-
|
|
508
|
+
|
|
452
509
|
Int32
|
|
453
|
-
|
|
510
|
+
|
|
454
511
|
Int64
|
|
455
|
-
|
|
512
|
+
|
|
456
513
|
Double
|
|
457
|
-
|
|
514
|
+
|
|
458
515
|
DateTime
|
|
459
|
-
|
|
516
|
+
|
|
460
517
|
Boolean
|
|
461
|
-
|
|
518
|
+
|
|
462
519
|
Point
|
|
463
|
-
|
|
520
|
+
|
|
464
521
|
Polyline
|
|
465
|
-
|
|
522
|
+
|
|
466
523
|
Polygon
|
|
467
|
-
|
|
524
|
+
|
|
468
525
|
Multipoint
|
|
526
|
+
|
|
527
|
+
H3Index
|
|
469
528
|
*/
|
|
470
529
|
export declare enum AttributeType {
|
|
471
530
|
Unknown = "Unknown",
|
|
@@ -478,7 +537,8 @@ export declare enum AttributeType {
|
|
|
478
537
|
Point = "Point",
|
|
479
538
|
Polyline = "Polyline",
|
|
480
539
|
Polygon = "Polygon",
|
|
481
|
-
Multipoint = "Multipoint"
|
|
540
|
+
Multipoint = "Multipoint",
|
|
541
|
+
H3Index = "H3Index"
|
|
482
542
|
}
|
|
483
543
|
/**
|
|
484
544
|
* Configuration of the attribute set in a feature layer.
|
|
@@ -628,15 +688,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
|
|
|
628
688
|
};
|
|
629
689
|
/**
|
|
630
690
|
* Describes classification methods.
|
|
631
|
-
|
|
691
|
+
|
|
632
692
|
none
|
|
633
|
-
|
|
693
|
+
|
|
634
694
|
naturalBreaks
|
|
635
|
-
|
|
695
|
+
|
|
636
696
|
equalInterval
|
|
637
|
-
|
|
697
|
+
|
|
638
698
|
quantile
|
|
639
|
-
|
|
699
|
+
|
|
640
700
|
unique
|
|
641
701
|
*/
|
|
642
702
|
export declare enum ClassificationType {
|
|
@@ -648,11 +708,11 @@ export declare enum ClassificationType {
|
|
|
648
708
|
}
|
|
649
709
|
/**
|
|
650
710
|
* Type of attribute.
|
|
651
|
-
|
|
711
|
+
|
|
652
712
|
decimal
|
|
653
|
-
|
|
713
|
+
|
|
654
714
|
dateTime
|
|
655
|
-
|
|
715
|
+
|
|
656
716
|
text
|
|
657
717
|
*/
|
|
658
718
|
export declare enum ClassifyAttributeType {
|
|
@@ -681,7 +741,7 @@ export interface ClassifyResultObject {
|
|
|
681
741
|
export declare type ClusterSymbolDc = SymbolDc & {
|
|
682
742
|
type?: string;
|
|
683
743
|
labelSymbol?: PointLabelSymbolDc;
|
|
684
|
-
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;
|
|
685
745
|
fillColor?: ParameterDcColor;
|
|
686
746
|
strokeColor?: ParameterDcColor;
|
|
687
747
|
strokeWidth?: CalculatedParameterDc;
|
|
@@ -722,6 +782,8 @@ export interface ColumnDescriptionDc {
|
|
|
722
782
|
* Polygon
|
|
723
783
|
*
|
|
724
784
|
* Multipoint
|
|
785
|
+
*
|
|
786
|
+
* H3Index
|
|
725
787
|
*/
|
|
726
788
|
type: AttributeType;
|
|
727
789
|
/**
|
|
@@ -904,7 +966,7 @@ export interface CompositeServiceInfoDc {
|
|
|
904
966
|
*/
|
|
905
967
|
export declare type CompositeSymbolDc = SymbolDc & {
|
|
906
968
|
type?: string;
|
|
907
|
-
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)[];
|
|
908
970
|
};
|
|
909
971
|
/**
|
|
910
972
|
* Get configuration information.
|
|
@@ -917,53 +979,55 @@ export interface ConfigDc {
|
|
|
917
979
|
}
|
|
918
980
|
/**
|
|
919
981
|
* Types of errors that can occur during layer initialize.
|
|
920
|
-
|
|
982
|
+
|
|
921
983
|
Unknown
|
|
922
|
-
|
|
984
|
+
|
|
923
985
|
SerializeError
|
|
924
|
-
|
|
986
|
+
|
|
925
987
|
InvalidDataService
|
|
926
|
-
|
|
988
|
+
|
|
927
989
|
InvalidConfiguration
|
|
928
|
-
|
|
990
|
+
|
|
929
991
|
InvalidDataServiceName
|
|
930
|
-
|
|
992
|
+
|
|
931
993
|
InvalidTableName
|
|
932
|
-
|
|
994
|
+
|
|
933
995
|
InvalidLayerName
|
|
934
|
-
|
|
996
|
+
|
|
935
997
|
ResourceNotFound
|
|
936
|
-
|
|
998
|
+
|
|
937
999
|
InvalidCondition
|
|
938
|
-
|
|
1000
|
+
|
|
939
1001
|
InvalidAttributes
|
|
940
|
-
|
|
1002
|
+
|
|
941
1003
|
InvalidIdAttribute
|
|
942
|
-
|
|
1004
|
+
|
|
943
1005
|
InvalidGeometryAttribute
|
|
944
|
-
|
|
1006
|
+
|
|
945
1007
|
InvalidGeometryAttributeType
|
|
946
|
-
|
|
1008
|
+
|
|
947
1009
|
InvalidColumnName
|
|
948
|
-
|
|
1010
|
+
|
|
949
1011
|
InvalidIdColumnSettings
|
|
950
|
-
|
|
1012
|
+
|
|
951
1013
|
ColumnNotExistsInTable
|
|
952
|
-
|
|
1014
|
+
|
|
953
1015
|
InvalidStyle
|
|
954
|
-
|
|
1016
|
+
|
|
955
1017
|
InvalidLayerType
|
|
956
|
-
|
|
1018
|
+
|
|
957
1019
|
ColumnLoadingError
|
|
958
|
-
|
|
1020
|
+
|
|
959
1021
|
InvalidAttributeFormat
|
|
960
|
-
|
|
1022
|
+
|
|
961
1023
|
DataSourceNotFound
|
|
962
|
-
|
|
1024
|
+
|
|
963
1025
|
DuplicateColumns
|
|
964
|
-
|
|
1026
|
+
|
|
1027
|
+
DuplicateAttributes
|
|
1028
|
+
|
|
965
1029
|
TableWithoutColumns
|
|
966
|
-
|
|
1030
|
+
|
|
967
1031
|
InvalidTableReferenceConfiguration
|
|
968
1032
|
*/
|
|
969
1033
|
export declare enum ConfigurationErrorEnum {
|
|
@@ -989,6 +1053,7 @@ export declare enum ConfigurationErrorEnum {
|
|
|
989
1053
|
InvalidAttributeFormat = "InvalidAttributeFormat",
|
|
990
1054
|
DataSourceNotFound = "DataSourceNotFound",
|
|
991
1055
|
DuplicateColumns = "DuplicateColumns",
|
|
1056
|
+
DuplicateAttributes = "DuplicateAttributes",
|
|
992
1057
|
TableWithoutColumns = "TableWithoutColumns",
|
|
993
1058
|
InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
|
|
994
1059
|
}
|
|
@@ -1244,15 +1309,15 @@ export interface ErrorDetailsDc {
|
|
|
1244
1309
|
}
|
|
1245
1310
|
/**
|
|
1246
1311
|
* Type of the error.
|
|
1247
|
-
|
|
1312
|
+
|
|
1248
1313
|
ResourceLimitExceeded
|
|
1249
|
-
|
|
1314
|
+
|
|
1250
1315
|
ResourceNotFound
|
|
1251
|
-
|
|
1316
|
+
|
|
1252
1317
|
InternalError
|
|
1253
|
-
|
|
1318
|
+
|
|
1254
1319
|
BadRequest
|
|
1255
|
-
|
|
1320
|
+
|
|
1256
1321
|
DuplicateContent
|
|
1257
1322
|
*/
|
|
1258
1323
|
export declare enum ErrorDetailsType {
|
|
@@ -1341,6 +1406,8 @@ export interface ExpressionValidationResultDc {
|
|
|
1341
1406
|
* Polygon
|
|
1342
1407
|
*
|
|
1343
1408
|
* Multipoint
|
|
1409
|
+
*
|
|
1410
|
+
* H3Index
|
|
1344
1411
|
*/
|
|
1345
1412
|
returnType?: AttributeType;
|
|
1346
1413
|
/** The expression that was validated. */
|
|
@@ -1494,6 +1561,8 @@ export interface FailedServiceInfoDc {
|
|
|
1494
1561
|
*
|
|
1495
1562
|
* DuplicateColumns
|
|
1496
1563
|
*
|
|
1564
|
+
* DuplicateAttributes
|
|
1565
|
+
*
|
|
1497
1566
|
* TableWithoutColumns
|
|
1498
1567
|
*
|
|
1499
1568
|
* InvalidTableReferenceConfiguration
|
|
@@ -1730,7 +1799,7 @@ export interface FeatureSymbolDc {
|
|
|
1730
1799
|
/** @format int32 */
|
|
1731
1800
|
id: number;
|
|
1732
1801
|
/** Feature symbol. */
|
|
1733
|
-
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;
|
|
1734
1803
|
image?: string;
|
|
1735
1804
|
}
|
|
1736
1805
|
/**
|
|
@@ -1742,9 +1811,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
|
|
|
1742
1811
|
};
|
|
1743
1812
|
/**
|
|
1744
1813
|
* Type of the feature.
|
|
1745
|
-
|
|
1814
|
+
|
|
1746
1815
|
Unknown
|
|
1747
|
-
|
|
1816
|
+
|
|
1748
1817
|
GeometricFeature
|
|
1749
1818
|
*/
|
|
1750
1819
|
export declare enum FeatureType {
|
|
@@ -1818,11 +1887,11 @@ export interface FilterDc {
|
|
|
1818
1887
|
}
|
|
1819
1888
|
/**
|
|
1820
1889
|
* Sets whether font should be styled.
|
|
1821
|
-
|
|
1890
|
+
|
|
1822
1891
|
normal
|
|
1823
|
-
|
|
1892
|
+
|
|
1824
1893
|
oblique
|
|
1825
|
-
|
|
1894
|
+
|
|
1826
1895
|
italic
|
|
1827
1896
|
*/
|
|
1828
1897
|
export declare enum FontStyle {
|
|
@@ -1832,27 +1901,27 @@ export declare enum FontStyle {
|
|
|
1832
1901
|
}
|
|
1833
1902
|
/**
|
|
1834
1903
|
* Specifies the weight (or boldness) of the font.
|
|
1835
|
-
|
|
1904
|
+
|
|
1836
1905
|
Thin
|
|
1837
|
-
|
|
1906
|
+
|
|
1838
1907
|
ExtraLight
|
|
1839
|
-
|
|
1908
|
+
|
|
1840
1909
|
Light
|
|
1841
|
-
|
|
1910
|
+
|
|
1842
1911
|
SemiLight
|
|
1843
|
-
|
|
1912
|
+
|
|
1844
1913
|
Normal
|
|
1845
|
-
|
|
1914
|
+
|
|
1846
1915
|
Medium
|
|
1847
|
-
|
|
1916
|
+
|
|
1848
1917
|
DemiBold
|
|
1849
|
-
|
|
1918
|
+
|
|
1850
1919
|
Bold
|
|
1851
|
-
|
|
1920
|
+
|
|
1852
1921
|
ExtraBold
|
|
1853
|
-
|
|
1922
|
+
|
|
1854
1923
|
Black
|
|
1855
|
-
|
|
1924
|
+
|
|
1856
1925
|
ExtraBlack
|
|
1857
1926
|
*/
|
|
1858
1927
|
export declare enum FontWeight {
|
|
@@ -1947,17 +2016,17 @@ export interface GeometryDc {
|
|
|
1947
2016
|
}
|
|
1948
2017
|
/**
|
|
1949
2018
|
*
|
|
1950
|
-
|
|
2019
|
+
|
|
1951
2020
|
unknown
|
|
1952
|
-
|
|
2021
|
+
|
|
1953
2022
|
point
|
|
1954
|
-
|
|
2023
|
+
|
|
1955
2024
|
polyline
|
|
1956
|
-
|
|
2025
|
+
|
|
1957
2026
|
polygon
|
|
1958
|
-
|
|
2027
|
+
|
|
1959
2028
|
envelope
|
|
1960
|
-
|
|
2029
|
+
|
|
1961
2030
|
multipoint
|
|
1962
2031
|
*/
|
|
1963
2032
|
export declare enum GeometryType {
|
|
@@ -1977,13 +2046,13 @@ export declare type GridElementDc = ModelElementDc & {
|
|
|
1977
2046
|
};
|
|
1978
2047
|
/**
|
|
1979
2048
|
* Resource group.
|
|
1980
|
-
|
|
2049
|
+
|
|
1981
2050
|
my
|
|
1982
|
-
|
|
2051
|
+
|
|
1983
2052
|
role
|
|
1984
|
-
|
|
2053
|
+
|
|
1985
2054
|
public
|
|
1986
|
-
|
|
2055
|
+
|
|
1987
2056
|
all
|
|
1988
2057
|
*/
|
|
1989
2058
|
export declare enum Group {
|
|
@@ -1992,6 +2061,16 @@ export declare enum Group {
|
|
|
1992
2061
|
Public = "public",
|
|
1993
2062
|
All = "all"
|
|
1994
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
|
+
};
|
|
1995
2074
|
/**
|
|
1996
2075
|
* Defines the brush for the hatch fill.
|
|
1997
2076
|
*/
|
|
@@ -2260,7 +2339,7 @@ export declare type LabelSymbolDc = SymbolDc & {
|
|
|
2260
2339
|
};
|
|
2261
2340
|
export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
|
|
2262
2341
|
type?: string;
|
|
2263
|
-
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;
|
|
2264
2343
|
};
|
|
2265
2344
|
/**
|
|
2266
2345
|
* Information about the layer attributes and their configuration.
|
|
@@ -2436,9 +2515,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
|
|
|
2436
2515
|
/**
|
|
2437
2516
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
2438
2517
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
2439
|
-
|
|
2518
|
+
|
|
2440
2519
|
small
|
|
2441
|
-
|
|
2520
|
+
|
|
2442
2521
|
large
|
|
2443
2522
|
*/
|
|
2444
2523
|
export declare enum LineEndingSize {
|
|
@@ -2447,19 +2526,19 @@ export declare enum LineEndingSize {
|
|
|
2447
2526
|
}
|
|
2448
2527
|
/**
|
|
2449
2528
|
* Type of the line ending.
|
|
2450
|
-
|
|
2529
|
+
|
|
2451
2530
|
none
|
|
2452
|
-
|
|
2531
|
+
|
|
2453
2532
|
arrow
|
|
2454
|
-
|
|
2533
|
+
|
|
2455
2534
|
filledArrow
|
|
2456
|
-
|
|
2535
|
+
|
|
2457
2536
|
square
|
|
2458
|
-
|
|
2537
|
+
|
|
2459
2538
|
filledSquare
|
|
2460
|
-
|
|
2539
|
+
|
|
2461
2540
|
circle
|
|
2462
|
-
|
|
2541
|
+
|
|
2463
2542
|
filledCircle
|
|
2464
2543
|
*/
|
|
2465
2544
|
export declare enum LineEndingType {
|
|
@@ -2573,7 +2652,7 @@ export declare type MultiPointDc = GeometryDc & {
|
|
|
2573
2652
|
*/
|
|
2574
2653
|
export declare type MultipointSymbolDc = SymbolDc & {
|
|
2575
2654
|
type?: string;
|
|
2576
|
-
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;
|
|
2577
2656
|
};
|
|
2578
2657
|
/**
|
|
2579
2658
|
* Information about a namespace .
|
|
@@ -2599,15 +2678,15 @@ export interface NamespaceInfoDc {
|
|
|
2599
2678
|
export declare type ObjectId = object;
|
|
2600
2679
|
/**
|
|
2601
2680
|
*
|
|
2602
|
-
|
|
2681
|
+
|
|
2603
2682
|
Unknown
|
|
2604
|
-
|
|
2683
|
+
|
|
2605
2684
|
union
|
|
2606
|
-
|
|
2685
|
+
|
|
2607
2686
|
intersection
|
|
2608
|
-
|
|
2687
|
+
|
|
2609
2688
|
subtraction
|
|
2610
|
-
|
|
2689
|
+
|
|
2611
2690
|
symDifference
|
|
2612
2691
|
*/
|
|
2613
2692
|
export declare enum Operation {
|
|
@@ -2943,19 +3022,19 @@ export declare type PatternBrushDc = FillBrushDc & {
|
|
|
2943
3022
|
};
|
|
2944
3023
|
/**
|
|
2945
3024
|
* User permissions for server security objects (services, projects etc.)
|
|
2946
|
-
|
|
3025
|
+
|
|
2947
3026
|
none
|
|
2948
|
-
|
|
3027
|
+
|
|
2949
3028
|
configure
|
|
2950
|
-
|
|
3029
|
+
|
|
2951
3030
|
write
|
|
2952
|
-
|
|
3031
|
+
|
|
2953
3032
|
read
|
|
2954
|
-
|
|
3033
|
+
|
|
2955
3034
|
read,configure
|
|
2956
|
-
|
|
3035
|
+
|
|
2957
3036
|
read,write
|
|
2958
|
-
|
|
3037
|
+
|
|
2959
3038
|
read,write,configure
|
|
2960
3039
|
*/
|
|
2961
3040
|
export declare enum Permissions {
|
|
@@ -3013,19 +3092,19 @@ export interface PolicyDc {
|
|
|
3013
3092
|
}
|
|
3014
3093
|
/**
|
|
3015
3094
|
* Type of the authorization policy.
|
|
3016
|
-
|
|
3095
|
+
|
|
3017
3096
|
Unknown
|
|
3018
|
-
|
|
3097
|
+
|
|
3019
3098
|
CreateTable
|
|
3020
|
-
|
|
3099
|
+
|
|
3021
3100
|
CreateLayer
|
|
3022
|
-
|
|
3101
|
+
|
|
3023
3102
|
CreateProject
|
|
3024
|
-
|
|
3103
|
+
|
|
3025
3104
|
MaxFeaturesInOneTable
|
|
3026
|
-
|
|
3105
|
+
|
|
3027
3106
|
MaxObjectsToExport
|
|
3028
|
-
|
|
3107
|
+
|
|
3029
3108
|
MaxUploadContentSize
|
|
3030
3109
|
*/
|
|
3031
3110
|
export declare enum PolicyType {
|
|
@@ -3212,6 +3291,7 @@ export interface ProjectContentItemDc {
|
|
|
3212
3291
|
*/
|
|
3213
3292
|
export declare type ProjectInfoDc = ResourceInfoDc & {
|
|
3214
3293
|
layersCount?: number;
|
|
3294
|
+
zoom?: number;
|
|
3215
3295
|
};
|
|
3216
3296
|
/**
|
|
3217
3297
|
* List of the projects in projects manager service.
|
|
@@ -3383,11 +3463,11 @@ export interface Rectangle2 {
|
|
|
3383
3463
|
}
|
|
3384
3464
|
/**
|
|
3385
3465
|
* Types of table reference.
|
|
3386
|
-
|
|
3466
|
+
|
|
3387
3467
|
OneToMany
|
|
3388
|
-
|
|
3468
|
+
|
|
3389
3469
|
OneToOne
|
|
3390
|
-
|
|
3470
|
+
|
|
3391
3471
|
Intersect
|
|
3392
3472
|
*/
|
|
3393
3473
|
export declare enum ReferenceJoinType {
|
|
@@ -3520,19 +3600,19 @@ export interface ResourceInfoDc {
|
|
|
3520
3600
|
}
|
|
3521
3601
|
/**
|
|
3522
3602
|
* The `ResourceType` represents resource manager supports types.
|
|
3523
|
-
|
|
3603
|
+
|
|
3524
3604
|
Unknown
|
|
3525
|
-
|
|
3605
|
+
|
|
3526
3606
|
table
|
|
3527
|
-
|
|
3607
|
+
|
|
3528
3608
|
layer
|
|
3529
|
-
|
|
3609
|
+
|
|
3530
3610
|
project
|
|
3531
|
-
|
|
3611
|
+
|
|
3532
3612
|
file
|
|
3533
|
-
|
|
3613
|
+
|
|
3534
3614
|
feature
|
|
3535
|
-
|
|
3615
|
+
|
|
3536
3616
|
tag
|
|
3537
3617
|
*/
|
|
3538
3618
|
export declare enum ResourceType {
|
|
@@ -3700,21 +3780,21 @@ export interface ServerInfoDc {
|
|
|
3700
3780
|
}
|
|
3701
3781
|
/**
|
|
3702
3782
|
* Status of the server task.
|
|
3703
|
-
|
|
3783
|
+
|
|
3704
3784
|
None
|
|
3705
|
-
|
|
3785
|
+
|
|
3706
3786
|
Scheduled
|
|
3707
|
-
|
|
3787
|
+
|
|
3708
3788
|
Planning
|
|
3709
|
-
|
|
3789
|
+
|
|
3710
3790
|
Executing
|
|
3711
|
-
|
|
3791
|
+
|
|
3712
3792
|
Completed
|
|
3713
|
-
|
|
3793
|
+
|
|
3714
3794
|
Failed
|
|
3715
|
-
|
|
3795
|
+
|
|
3716
3796
|
Canceled
|
|
3717
|
-
|
|
3797
|
+
|
|
3718
3798
|
Timeout
|
|
3719
3799
|
*/
|
|
3720
3800
|
export declare enum ServerTaskStatus {
|
|
@@ -3814,6 +3894,7 @@ export interface ServiceInfo {
|
|
|
3814
3894
|
ObjectsCount?: string[];
|
|
3815
3895
|
DataSourceType?: string[];
|
|
3816
3896
|
Extent?: string[];
|
|
3897
|
+
Zoom?: string[];
|
|
3817
3898
|
};
|
|
3818
3899
|
/**
|
|
3819
3900
|
* Given a security object (like a service or a project) this class provides the list of permissions the different
|
|
@@ -3944,9 +4025,9 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
|
|
|
3944
4025
|
};
|
|
3945
4026
|
/**
|
|
3946
4027
|
* Simplify type.
|
|
3947
|
-
|
|
4028
|
+
|
|
3948
4029
|
Basic
|
|
3949
|
-
|
|
4030
|
+
|
|
3950
4031
|
PreserveTopology
|
|
3951
4032
|
*/
|
|
3952
4033
|
export declare enum SimplifyType {
|
|
@@ -4071,11 +4152,11 @@ export declare type StepResultDc = BaseStepResultDc & {
|
|
|
4071
4152
|
};
|
|
4072
4153
|
/**
|
|
4073
4154
|
* The `StringSubType` provides information about string attribute subtype.
|
|
4074
|
-
|
|
4155
|
+
|
|
4075
4156
|
None
|
|
4076
|
-
|
|
4157
|
+
|
|
4077
4158
|
Image
|
|
4078
|
-
|
|
4159
|
+
|
|
4079
4160
|
PkkCode
|
|
4080
4161
|
*/
|
|
4081
4162
|
export declare enum StringSubType {
|
|
@@ -4109,7 +4190,7 @@ export interface StyleDc {
|
|
|
4109
4190
|
*/
|
|
4110
4191
|
condition?: string;
|
|
4111
4192
|
/** Symbol that is used to draw the features of the layer. */
|
|
4112
|
-
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;
|
|
4113
4194
|
/**
|
|
4114
4195
|
* Child styles. Before rendering a feature, the children style conditions are checked. If none
|
|
4115
4196
|
* of the child styles were applied, then the paren style is used to draw the feature.
|
|
@@ -4264,6 +4345,10 @@ export interface TableReferenceConfigurationDc {
|
|
|
4264
4345
|
* Intersect
|
|
4265
4346
|
*/
|
|
4266
4347
|
joinType?: ReferenceJoinType;
|
|
4348
|
+
/** Condition to referenced table. */
|
|
4349
|
+
condition?: string;
|
|
4350
|
+
/** Table reference unique id. */
|
|
4351
|
+
referenceId?: string;
|
|
4267
4352
|
}
|
|
4268
4353
|
/**
|
|
4269
4354
|
* Data storage that allows accessing features directly from the tables.
|
|
@@ -4283,9 +4368,9 @@ export interface TagInfoDc {
|
|
|
4283
4368
|
}
|
|
4284
4369
|
/**
|
|
4285
4370
|
* Task owner group.
|
|
4286
|
-
|
|
4371
|
+
|
|
4287
4372
|
my
|
|
4288
|
-
|
|
4373
|
+
|
|
4289
4374
|
all
|
|
4290
4375
|
*/
|
|
4291
4376
|
export declare enum TaskGroup {
|
|
@@ -4499,13 +4584,13 @@ export interface TemplateModelDc {
|
|
|
4499
4584
|
}
|
|
4500
4585
|
/**
|
|
4501
4586
|
* Sets the horizontal alignment of text.
|
|
4502
|
-
|
|
4587
|
+
|
|
4503
4588
|
right
|
|
4504
|
-
|
|
4589
|
+
|
|
4505
4590
|
left
|
|
4506
|
-
|
|
4591
|
+
|
|
4507
4592
|
center
|
|
4508
|
-
|
|
4593
|
+
|
|
4509
4594
|
justified
|
|
4510
4595
|
*/
|
|
4511
4596
|
export declare enum TextAlignment {
|
|
@@ -4525,11 +4610,11 @@ export interface TextBackgroundDc {
|
|
|
4525
4610
|
}
|
|
4526
4611
|
/**
|
|
4527
4612
|
* Sets the vertical alignment of text.
|
|
4528
|
-
|
|
4613
|
+
|
|
4529
4614
|
top
|
|
4530
|
-
|
|
4615
|
+
|
|
4531
4616
|
bottom
|
|
4532
|
-
|
|
4617
|
+
|
|
4533
4618
|
middle
|
|
4534
4619
|
*/
|
|
4535
4620
|
export declare enum TextVerticalAlignment {
|
|
@@ -5866,7 +5951,7 @@ export interface GetProjectsListParams {
|
|
|
5866
5951
|
tags?: string[];
|
|
5867
5952
|
}
|
|
5868
5953
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5869
|
-
export interface
|
|
5954
|
+
export interface DeleteResourcesParams7 {
|
|
5870
5955
|
/** Resource names. */
|
|
5871
5956
|
names?: string[];
|
|
5872
5957
|
}
|
|
@@ -6104,7 +6189,7 @@ export interface StatisticsDbParams {
|
|
|
6104
6189
|
*/
|
|
6105
6190
|
types?: AggregationFunction[];
|
|
6106
6191
|
}
|
|
6107
|
-
export interface
|
|
6192
|
+
export interface ClassifyParams6 {
|
|
6108
6193
|
/** Layer name. */
|
|
6109
6194
|
name?: string;
|
|
6110
6195
|
/** Attribute name. */
|
|
@@ -6228,7 +6313,7 @@ export interface GetTableListParams {
|
|
|
6228
6313
|
acl?: string;
|
|
6229
6314
|
}
|
|
6230
6315
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6231
|
-
export interface
|
|
6316
|
+
export interface DeleteResourcesParams9 {
|
|
6232
6317
|
/** Resource names. */
|
|
6233
6318
|
names?: string[];
|
|
6234
6319
|
}
|
|
@@ -6311,6 +6396,8 @@ export interface GetAllParams {
|
|
|
6311
6396
|
limit?: number;
|
|
6312
6397
|
}
|
|
6313
6398
|
export interface GetVectorTileParams {
|
|
6399
|
+
/** Include all feature attributes. */
|
|
6400
|
+
withAttributes?: boolean;
|
|
6314
6401
|
/** Condition. */
|
|
6315
6402
|
condition?: string;
|
|
6316
6403
|
/** True if name is project name, otherwise false. */
|
|
@@ -6332,6 +6419,8 @@ export interface GetVectorTileParams {
|
|
|
6332
6419
|
simplifyTolerance?: number;
|
|
6333
6420
|
/** Simplify will retain objects that would otherwise be too small given the tolerance. */
|
|
6334
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;
|
|
6335
6424
|
/** Project or layer name. */
|
|
6336
6425
|
name: string;
|
|
6337
6426
|
/**
|
|
@@ -6380,7 +6469,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
6380
6469
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6381
6470
|
AcceptFormats?: string[];
|
|
6382
6471
|
}
|
|
6383
|
-
export interface
|
|
6472
|
+
export interface GetCapabilitiesParams9 {
|
|
6384
6473
|
/** Output format of service metadata. */
|
|
6385
6474
|
Format?: string;
|
|
6386
6475
|
/** Must be WMS. */
|