@evergis/api 3.0.93 → 3.0.95
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__/ImportService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +12 -1
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WfsServerService.d.ts +23 -1
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +234 -155
- package/dist/api.cjs.development.js +28 -17
- 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 +172 -159
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
|
@@ -50,6 +50,8 @@ export interface AggregationDataResultDc {
|
|
|
50
50
|
*
|
|
51
51
|
* Count
|
|
52
52
|
*
|
|
53
|
+
* TotalCount
|
|
54
|
+
*
|
|
53
55
|
* DistinctCount
|
|
54
56
|
*
|
|
55
57
|
* First
|
|
@@ -78,43 +80,45 @@ export interface AggregationDataResultDc {
|
|
|
78
80
|
}
|
|
79
81
|
/**
|
|
80
82
|
*
|
|
81
|
-
|
|
83
|
+
|
|
82
84
|
None
|
|
83
|
-
|
|
85
|
+
|
|
84
86
|
Array
|
|
85
|
-
|
|
87
|
+
|
|
86
88
|
Min
|
|
87
|
-
|
|
89
|
+
|
|
88
90
|
Max
|
|
89
|
-
|
|
91
|
+
|
|
90
92
|
Avg
|
|
91
|
-
|
|
93
|
+
|
|
92
94
|
Sum
|
|
93
|
-
|
|
95
|
+
|
|
94
96
|
Extent
|
|
95
|
-
|
|
97
|
+
|
|
96
98
|
Count
|
|
97
|
-
|
|
99
|
+
|
|
100
|
+
TotalCount
|
|
101
|
+
|
|
98
102
|
DistinctCount
|
|
99
|
-
|
|
103
|
+
|
|
100
104
|
First
|
|
101
|
-
|
|
105
|
+
|
|
102
106
|
Last
|
|
103
|
-
|
|
107
|
+
|
|
104
108
|
Median
|
|
105
|
-
|
|
109
|
+
|
|
106
110
|
Mod
|
|
107
|
-
|
|
111
|
+
|
|
108
112
|
StdDeviation
|
|
109
|
-
|
|
113
|
+
|
|
110
114
|
SumOfProduct
|
|
111
|
-
|
|
115
|
+
|
|
112
116
|
OnlyValue
|
|
113
|
-
|
|
117
|
+
|
|
114
118
|
WeightedAvg
|
|
115
|
-
|
|
119
|
+
|
|
116
120
|
DensityIndicators
|
|
117
|
-
|
|
121
|
+
|
|
118
122
|
DividedSum
|
|
119
123
|
*/
|
|
120
124
|
export declare enum AggregationFunction {
|
|
@@ -126,6 +130,7 @@ export declare enum AggregationFunction {
|
|
|
126
130
|
Sum = "Sum",
|
|
127
131
|
Extent = "Extent",
|
|
128
132
|
Count = "Count",
|
|
133
|
+
TotalCount = "TotalCount",
|
|
129
134
|
DistinctCount = "DistinctCount",
|
|
130
135
|
First = "First",
|
|
131
136
|
Last = "Last",
|
|
@@ -167,6 +172,8 @@ export interface AggregationSettingDc {
|
|
|
167
172
|
*
|
|
168
173
|
* Count
|
|
169
174
|
*
|
|
175
|
+
* TotalCount
|
|
176
|
+
*
|
|
170
177
|
* DistinctCount
|
|
171
178
|
*
|
|
172
179
|
* First
|
|
@@ -234,6 +241,8 @@ export interface AttributeConfigurationDc {
|
|
|
234
241
|
*
|
|
235
242
|
* Count
|
|
236
243
|
*
|
|
244
|
+
* TotalCount
|
|
245
|
+
*
|
|
237
246
|
* DistinctCount
|
|
238
247
|
*
|
|
239
248
|
* First
|
|
@@ -418,27 +427,27 @@ export interface AttributeFormatDefinitionDc {
|
|
|
418
427
|
}
|
|
419
428
|
/**
|
|
420
429
|
* Types of the attributes that are supported by the system.
|
|
421
|
-
|
|
430
|
+
|
|
422
431
|
Unknown
|
|
423
|
-
|
|
432
|
+
|
|
424
433
|
String
|
|
425
|
-
|
|
434
|
+
|
|
426
435
|
Int32
|
|
427
|
-
|
|
436
|
+
|
|
428
437
|
Int64
|
|
429
|
-
|
|
438
|
+
|
|
430
439
|
Double
|
|
431
|
-
|
|
440
|
+
|
|
432
441
|
DateTime
|
|
433
|
-
|
|
442
|
+
|
|
434
443
|
Boolean
|
|
435
|
-
|
|
444
|
+
|
|
436
445
|
Point
|
|
437
|
-
|
|
446
|
+
|
|
438
447
|
Polyline
|
|
439
|
-
|
|
448
|
+
|
|
440
449
|
Polygon
|
|
441
|
-
|
|
450
|
+
|
|
442
451
|
Multipoint
|
|
443
452
|
*/
|
|
444
453
|
export declare enum AttributeType {
|
|
@@ -463,7 +472,7 @@ export interface AttributesConfigurationDc {
|
|
|
463
472
|
/** The name of the attribute that is used for setting feature name (optional). */
|
|
464
473
|
titleAttribute?: string;
|
|
465
474
|
/** The name of the attribute that contains the feature geometry. */
|
|
466
|
-
geometryAttribute
|
|
475
|
+
geometryAttribute?: string;
|
|
467
476
|
/** The name of the table in data source service, that contains the data for this layer. */
|
|
468
477
|
tableName: string;
|
|
469
478
|
/** Configuration of the attributes of the layer. */
|
|
@@ -602,15 +611,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
|
|
|
602
611
|
};
|
|
603
612
|
/**
|
|
604
613
|
* Describes classification methods.
|
|
605
|
-
|
|
614
|
+
|
|
606
615
|
none
|
|
607
|
-
|
|
616
|
+
|
|
608
617
|
naturalBreaks
|
|
609
|
-
|
|
618
|
+
|
|
610
619
|
equalInterval
|
|
611
|
-
|
|
620
|
+
|
|
612
621
|
quantile
|
|
613
|
-
|
|
622
|
+
|
|
614
623
|
unique
|
|
615
624
|
*/
|
|
616
625
|
export declare enum ClassificationType {
|
|
@@ -622,11 +631,11 @@ export declare enum ClassificationType {
|
|
|
622
631
|
}
|
|
623
632
|
/**
|
|
624
633
|
* Type of attribute.
|
|
625
|
-
|
|
634
|
+
|
|
626
635
|
decimal
|
|
627
|
-
|
|
636
|
+
|
|
628
637
|
dateTime
|
|
629
|
-
|
|
638
|
+
|
|
630
639
|
text
|
|
631
640
|
*/
|
|
632
641
|
export declare enum ClassifyAttributeType {
|
|
@@ -827,7 +836,7 @@ export interface CompositeServiceInfoDc {
|
|
|
827
836
|
/** The category of the service. */
|
|
828
837
|
categories?: string[];
|
|
829
838
|
/** Configuration of the service. */
|
|
830
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
839
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
831
840
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
832
841
|
name: string;
|
|
833
842
|
/** Resource alias. */
|
|
@@ -870,6 +879,8 @@ export interface CompositeServiceInfoDc {
|
|
|
870
879
|
acl?: AccessControlListDc;
|
|
871
880
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
872
881
|
icon?: string;
|
|
882
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
883
|
+
invisibleInCatalog?: boolean;
|
|
873
884
|
}
|
|
874
885
|
/**
|
|
875
886
|
* Composite symbol.
|
|
@@ -889,47 +900,47 @@ export interface ConfigDc {
|
|
|
889
900
|
}
|
|
890
901
|
/**
|
|
891
902
|
* Types of errors that can occur during layer initialize.
|
|
892
|
-
|
|
903
|
+
|
|
893
904
|
Unknown
|
|
894
|
-
|
|
905
|
+
|
|
895
906
|
SerializeError
|
|
896
|
-
|
|
907
|
+
|
|
897
908
|
InvalidDataService
|
|
898
|
-
|
|
909
|
+
|
|
899
910
|
InvalidConfiguration
|
|
900
|
-
|
|
911
|
+
|
|
901
912
|
InvalidDataServiceName
|
|
902
|
-
|
|
913
|
+
|
|
903
914
|
InvalidTableName
|
|
904
|
-
|
|
915
|
+
|
|
905
916
|
ResourceNotFound
|
|
906
|
-
|
|
917
|
+
|
|
907
918
|
InvalidCondition
|
|
908
|
-
|
|
919
|
+
|
|
909
920
|
InvalidAttributes
|
|
910
|
-
|
|
921
|
+
|
|
911
922
|
InvalidIdAttribute
|
|
912
|
-
|
|
923
|
+
|
|
913
924
|
InvalidGeometryAttribute
|
|
914
|
-
|
|
925
|
+
|
|
915
926
|
InvalidGeometryAttributeType
|
|
916
|
-
|
|
927
|
+
|
|
917
928
|
InvalidColumnName
|
|
918
|
-
|
|
929
|
+
|
|
919
930
|
InvalidIdColumnSettings
|
|
920
|
-
|
|
931
|
+
|
|
921
932
|
ColumnNotExistsInTable
|
|
922
|
-
|
|
933
|
+
|
|
923
934
|
InvalidStyle
|
|
924
|
-
|
|
935
|
+
|
|
925
936
|
InvalidLayerType
|
|
926
|
-
|
|
937
|
+
|
|
927
938
|
ColumnLoadingError
|
|
928
|
-
|
|
939
|
+
|
|
929
940
|
InvalidAttributeFormat
|
|
930
|
-
|
|
941
|
+
|
|
931
942
|
DataSourceNotFound
|
|
932
|
-
|
|
943
|
+
|
|
933
944
|
DuplicateColumns
|
|
934
945
|
*/
|
|
935
946
|
export declare enum ConfigurationErrorEnum {
|
|
@@ -1175,15 +1186,15 @@ export interface ErrorDetailsDc {
|
|
|
1175
1186
|
}
|
|
1176
1187
|
/**
|
|
1177
1188
|
* Type of the error.
|
|
1178
|
-
|
|
1189
|
+
|
|
1179
1190
|
ResourceLimitExceeded
|
|
1180
|
-
|
|
1191
|
+
|
|
1181
1192
|
ResourceNotFound
|
|
1182
|
-
|
|
1193
|
+
|
|
1183
1194
|
InternalError
|
|
1184
|
-
|
|
1195
|
+
|
|
1185
1196
|
BadRequest
|
|
1186
|
-
|
|
1197
|
+
|
|
1187
1198
|
DuplicateContent
|
|
1188
1199
|
*/
|
|
1189
1200
|
export declare enum ErrorDetailsType {
|
|
@@ -1455,7 +1466,7 @@ export interface FailedServiceInfoDc {
|
|
|
1455
1466
|
/** The category of the service. */
|
|
1456
1467
|
categories?: string[];
|
|
1457
1468
|
/** Configuration of the service. */
|
|
1458
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1469
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1459
1470
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1460
1471
|
name: string;
|
|
1461
1472
|
/** Resource alias. */
|
|
@@ -1498,13 +1509,15 @@ export interface FailedServiceInfoDc {
|
|
|
1498
1509
|
acl?: AccessControlListDc;
|
|
1499
1510
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1500
1511
|
icon?: string;
|
|
1512
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
1513
|
+
invisibleInCatalog?: boolean;
|
|
1501
1514
|
}
|
|
1502
1515
|
/**
|
|
1503
1516
|
* Feature object definition.
|
|
1504
1517
|
*/
|
|
1505
1518
|
export interface FeatureDc {
|
|
1506
1519
|
/** Feature geometry definition. */
|
|
1507
|
-
geometry
|
|
1520
|
+
geometry?: EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
|
|
1508
1521
|
/** Feature attributes collection. */
|
|
1509
1522
|
attributes: Record<string, any>;
|
|
1510
1523
|
/** Feature unique identifier. */
|
|
@@ -1566,7 +1579,7 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1566
1579
|
/** The category of the service. */
|
|
1567
1580
|
categories?: string[];
|
|
1568
1581
|
/** Configuration of the service. */
|
|
1569
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1582
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1570
1583
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1571
1584
|
name: string;
|
|
1572
1585
|
/** Resource alias. */
|
|
@@ -1609,6 +1622,8 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
1609
1622
|
acl?: AccessControlListDc;
|
|
1610
1623
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1611
1624
|
icon?: string;
|
|
1625
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
1626
|
+
invisibleInCatalog?: boolean;
|
|
1612
1627
|
}
|
|
1613
1628
|
export interface FeatureSelectionDc {
|
|
1614
1629
|
layerName: string;
|
|
@@ -1648,9 +1663,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
|
|
|
1648
1663
|
};
|
|
1649
1664
|
/**
|
|
1650
1665
|
* Type of the feature.
|
|
1651
|
-
|
|
1666
|
+
|
|
1652
1667
|
Unknown
|
|
1653
|
-
|
|
1668
|
+
|
|
1654
1669
|
GeometricFeature
|
|
1655
1670
|
*/
|
|
1656
1671
|
export declare enum FeatureType {
|
|
@@ -1710,11 +1725,11 @@ export interface FilterDc {
|
|
|
1710
1725
|
}
|
|
1711
1726
|
/**
|
|
1712
1727
|
* Sets whether font should be styled.
|
|
1713
|
-
|
|
1728
|
+
|
|
1714
1729
|
normal
|
|
1715
|
-
|
|
1730
|
+
|
|
1716
1731
|
oblique
|
|
1717
|
-
|
|
1732
|
+
|
|
1718
1733
|
italic
|
|
1719
1734
|
*/
|
|
1720
1735
|
export declare enum FontStyle {
|
|
@@ -1724,27 +1739,27 @@ export declare enum FontStyle {
|
|
|
1724
1739
|
}
|
|
1725
1740
|
/**
|
|
1726
1741
|
* Specifies the weight (or boldness) of the font.
|
|
1727
|
-
|
|
1742
|
+
|
|
1728
1743
|
Thin
|
|
1729
|
-
|
|
1744
|
+
|
|
1730
1745
|
ExtraLight
|
|
1731
|
-
|
|
1746
|
+
|
|
1732
1747
|
Light
|
|
1733
|
-
|
|
1748
|
+
|
|
1734
1749
|
SemiLight
|
|
1735
|
-
|
|
1750
|
+
|
|
1736
1751
|
Normal
|
|
1737
|
-
|
|
1752
|
+
|
|
1738
1753
|
Medium
|
|
1739
|
-
|
|
1754
|
+
|
|
1740
1755
|
DemiBold
|
|
1741
|
-
|
|
1756
|
+
|
|
1742
1757
|
Bold
|
|
1743
|
-
|
|
1758
|
+
|
|
1744
1759
|
ExtraBold
|
|
1745
|
-
|
|
1760
|
+
|
|
1746
1761
|
Black
|
|
1747
|
-
|
|
1762
|
+
|
|
1748
1763
|
ExtraBlack
|
|
1749
1764
|
*/
|
|
1750
1765
|
export declare enum FontWeight {
|
|
@@ -1839,17 +1854,17 @@ export interface GeometryDc {
|
|
|
1839
1854
|
}
|
|
1840
1855
|
/**
|
|
1841
1856
|
*
|
|
1842
|
-
|
|
1857
|
+
|
|
1843
1858
|
unknown
|
|
1844
|
-
|
|
1859
|
+
|
|
1845
1860
|
point
|
|
1846
|
-
|
|
1861
|
+
|
|
1847
1862
|
polyline
|
|
1848
|
-
|
|
1863
|
+
|
|
1849
1864
|
polygon
|
|
1850
|
-
|
|
1865
|
+
|
|
1851
1866
|
envelope
|
|
1852
|
-
|
|
1867
|
+
|
|
1853
1868
|
multipoint
|
|
1854
1869
|
*/
|
|
1855
1870
|
export declare enum GeometryType {
|
|
@@ -1869,13 +1884,13 @@ export declare type GridElementDc = ModelElementDc & {
|
|
|
1869
1884
|
};
|
|
1870
1885
|
/**
|
|
1871
1886
|
* Resource group.
|
|
1872
|
-
|
|
1887
|
+
|
|
1873
1888
|
my
|
|
1874
|
-
|
|
1889
|
+
|
|
1875
1890
|
role
|
|
1876
|
-
|
|
1891
|
+
|
|
1877
1892
|
public
|
|
1878
|
-
|
|
1893
|
+
|
|
1879
1894
|
all
|
|
1880
1895
|
*/
|
|
1881
1896
|
export declare enum Group {
|
|
@@ -2081,6 +2096,19 @@ export declare type ImagePolygonSymbolDc = SymbolDc & {
|
|
|
2081
2096
|
strokeColor?: ParameterDcColor;
|
|
2082
2097
|
strokeWidth?: CalculatedParameterDc;
|
|
2083
2098
|
};
|
|
2099
|
+
/**
|
|
2100
|
+
* Layers of WMS external service.
|
|
2101
|
+
*/
|
|
2102
|
+
export interface ImportWmsExternalLayers {
|
|
2103
|
+
/** List of layers in the data-set. */
|
|
2104
|
+
layer: ImportWmsExternalLayers[] | null;
|
|
2105
|
+
/** abstract field of WMS external service. */
|
|
2106
|
+
abstract: string;
|
|
2107
|
+
/** name field of WMS external service. */
|
|
2108
|
+
name: string;
|
|
2109
|
+
/** title field of WMS external service. */
|
|
2110
|
+
title: string;
|
|
2111
|
+
}
|
|
2084
2112
|
/**
|
|
2085
2113
|
* Data schema of a file for import.
|
|
2086
2114
|
*/
|
|
@@ -2331,9 +2359,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
|
|
|
2331
2359
|
/**
|
|
2332
2360
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
2333
2361
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
2334
|
-
|
|
2362
|
+
|
|
2335
2363
|
small
|
|
2336
|
-
|
|
2364
|
+
|
|
2337
2365
|
large
|
|
2338
2366
|
*/
|
|
2339
2367
|
export declare enum LineEndingSize {
|
|
@@ -2342,19 +2370,19 @@ export declare enum LineEndingSize {
|
|
|
2342
2370
|
}
|
|
2343
2371
|
/**
|
|
2344
2372
|
* Type of the line ending.
|
|
2345
|
-
|
|
2373
|
+
|
|
2346
2374
|
none
|
|
2347
|
-
|
|
2375
|
+
|
|
2348
2376
|
arrow
|
|
2349
|
-
|
|
2377
|
+
|
|
2350
2378
|
filledArrow
|
|
2351
|
-
|
|
2379
|
+
|
|
2352
2380
|
square
|
|
2353
|
-
|
|
2381
|
+
|
|
2354
2382
|
filledSquare
|
|
2355
|
-
|
|
2383
|
+
|
|
2356
2384
|
circle
|
|
2357
|
-
|
|
2385
|
+
|
|
2358
2386
|
filledCircle
|
|
2359
2387
|
*/
|
|
2360
2388
|
export declare enum LineEndingType {
|
|
@@ -2366,6 +2394,16 @@ export declare enum LineEndingType {
|
|
|
2366
2394
|
Circle = "circle",
|
|
2367
2395
|
FilledCircle = "filledCircle"
|
|
2368
2396
|
}
|
|
2397
|
+
/**
|
|
2398
|
+
* Linear service configuration Dc.
|
|
2399
|
+
*/
|
|
2400
|
+
export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
2401
|
+
attributesConfiguration: AttributesConfigurationDc;
|
|
2402
|
+
style?: StyleDc;
|
|
2403
|
+
condition?: string;
|
|
2404
|
+
featuresLimit?: number;
|
|
2405
|
+
extentOffset?: number;
|
|
2406
|
+
};
|
|
2369
2407
|
/**
|
|
2370
2408
|
* The response that contains a paged list of items.
|
|
2371
2409
|
*/
|
|
@@ -2488,6 +2526,8 @@ export interface ListResponseUserInfoDc {
|
|
|
2488
2526
|
*/
|
|
2489
2527
|
export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
2490
2528
|
tileInfo?: TileInfoDc;
|
|
2529
|
+
useRedisCache?: boolean;
|
|
2530
|
+
cacheExpire?: number;
|
|
2491
2531
|
};
|
|
2492
2532
|
/**
|
|
2493
2533
|
* Tile LOD structure.
|
|
@@ -2607,15 +2647,15 @@ export interface NamespaceInfoDc {
|
|
|
2607
2647
|
export declare type ObjectId = object;
|
|
2608
2648
|
/**
|
|
2609
2649
|
*
|
|
2610
|
-
|
|
2650
|
+
|
|
2611
2651
|
Unknown
|
|
2612
|
-
|
|
2652
|
+
|
|
2613
2653
|
union
|
|
2614
|
-
|
|
2654
|
+
|
|
2615
2655
|
intersection
|
|
2616
|
-
|
|
2656
|
+
|
|
2617
2657
|
subtraction
|
|
2618
|
-
|
|
2658
|
+
|
|
2619
2659
|
symDifference
|
|
2620
2660
|
*/
|
|
2621
2661
|
export declare enum Operation {
|
|
@@ -2709,19 +2749,19 @@ export declare type PatternBrushDc = FillBrushDc & {
|
|
|
2709
2749
|
};
|
|
2710
2750
|
/**
|
|
2711
2751
|
* User permissions for server security objects (services, projects etc.)
|
|
2712
|
-
|
|
2752
|
+
|
|
2713
2753
|
none
|
|
2714
|
-
|
|
2754
|
+
|
|
2715
2755
|
configure
|
|
2716
|
-
|
|
2756
|
+
|
|
2717
2757
|
write
|
|
2718
|
-
|
|
2758
|
+
|
|
2719
2759
|
read
|
|
2720
|
-
|
|
2760
|
+
|
|
2721
2761
|
read,configure
|
|
2722
|
-
|
|
2762
|
+
|
|
2723
2763
|
read,write
|
|
2724
|
-
|
|
2764
|
+
|
|
2725
2765
|
read,write,configure
|
|
2726
2766
|
*/
|
|
2727
2767
|
export declare enum Permissions {
|
|
@@ -2776,17 +2816,17 @@ export interface PolicyDc {
|
|
|
2776
2816
|
}
|
|
2777
2817
|
/**
|
|
2778
2818
|
* Type of the authorization policy.
|
|
2779
|
-
|
|
2819
|
+
|
|
2780
2820
|
Unknown
|
|
2781
|
-
|
|
2821
|
+
|
|
2782
2822
|
CreateTable
|
|
2783
|
-
|
|
2823
|
+
|
|
2784
2824
|
CreateLayer
|
|
2785
|
-
|
|
2825
|
+
|
|
2786
2826
|
CreateProject
|
|
2787
|
-
|
|
2827
|
+
|
|
2788
2828
|
MaxFeaturesInOneTable
|
|
2789
|
-
|
|
2829
|
+
|
|
2790
2830
|
MaxObjectsToExport
|
|
2791
2831
|
*/
|
|
2792
2832
|
export declare enum PolicyType {
|
|
@@ -2962,6 +3002,8 @@ export interface ProjectContentItemDc {
|
|
|
2962
3002
|
* @format double
|
|
2963
3003
|
*/
|
|
2964
3004
|
maxScale?: number;
|
|
3005
|
+
/** If set true, item is basemap. */
|
|
3006
|
+
isBasemap?: boolean;
|
|
2965
3007
|
/** Children items. */
|
|
2966
3008
|
children?: ProjectContentItemDc[];
|
|
2967
3009
|
}
|
|
@@ -2969,7 +3011,6 @@ export interface ProjectContentItemDc {
|
|
|
2969
3011
|
* A project configuration data contract.
|
|
2970
3012
|
*/
|
|
2971
3013
|
export declare type ProjectInfoDc = ResourceInfoDc & {
|
|
2972
|
-
isShared?: boolean;
|
|
2973
3014
|
layersCount?: number;
|
|
2974
3015
|
};
|
|
2975
3016
|
/**
|
|
@@ -3069,7 +3110,7 @@ export interface ProxyServiceInfoDc {
|
|
|
3069
3110
|
/** The category of the service. */
|
|
3070
3111
|
categories?: string[];
|
|
3071
3112
|
/** Configuration of the service. */
|
|
3072
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3113
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3073
3114
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3074
3115
|
name: string;
|
|
3075
3116
|
/** Resource alias. */
|
|
@@ -3112,6 +3153,8 @@ export interface ProxyServiceInfoDc {
|
|
|
3112
3153
|
acl?: AccessControlListDc;
|
|
3113
3154
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3114
3155
|
icon?: string;
|
|
3156
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3157
|
+
invisibleInCatalog?: boolean;
|
|
3115
3158
|
}
|
|
3116
3159
|
/**
|
|
3117
3160
|
* The symbol that draws a raster.
|
|
@@ -3166,6 +3209,8 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
|
|
|
3166
3209
|
tileInfo?: TileInfoDc;
|
|
3167
3210
|
urlFormat: string;
|
|
3168
3211
|
tileCacheLimit?: number;
|
|
3212
|
+
useRedisCache?: boolean;
|
|
3213
|
+
cacheExpire?: number;
|
|
3169
3214
|
subDomains?: string[];
|
|
3170
3215
|
allowDirectAccess?: boolean;
|
|
3171
3216
|
RequestTimeout?: number;
|
|
@@ -3256,22 +3301,24 @@ export interface ResourceInfoDc {
|
|
|
3256
3301
|
acl?: AccessControlListDc;
|
|
3257
3302
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
3258
3303
|
icon?: string;
|
|
3304
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3305
|
+
invisibleInCatalog?: boolean;
|
|
3259
3306
|
}
|
|
3260
3307
|
/**
|
|
3261
3308
|
* The `ResourceType` represents resource manager supports types.
|
|
3262
|
-
|
|
3309
|
+
|
|
3263
3310
|
Unknown
|
|
3264
|
-
|
|
3311
|
+
|
|
3265
3312
|
table
|
|
3266
|
-
|
|
3313
|
+
|
|
3267
3314
|
layer
|
|
3268
|
-
|
|
3315
|
+
|
|
3269
3316
|
project
|
|
3270
|
-
|
|
3317
|
+
|
|
3271
3318
|
file
|
|
3272
|
-
|
|
3319
|
+
|
|
3273
3320
|
feature
|
|
3274
|
-
|
|
3321
|
+
|
|
3275
3322
|
tag
|
|
3276
3323
|
*/
|
|
3277
3324
|
export declare enum ResourceType {
|
|
@@ -3441,21 +3488,21 @@ export interface ServerInfoDc {
|
|
|
3441
3488
|
}
|
|
3442
3489
|
/**
|
|
3443
3490
|
* Status of the server task.
|
|
3444
|
-
|
|
3491
|
+
|
|
3445
3492
|
None
|
|
3446
|
-
|
|
3493
|
+
|
|
3447
3494
|
Scheduled
|
|
3448
|
-
|
|
3495
|
+
|
|
3449
3496
|
Planning
|
|
3450
|
-
|
|
3497
|
+
|
|
3451
3498
|
Executing
|
|
3452
|
-
|
|
3499
|
+
|
|
3453
3500
|
Completed
|
|
3454
|
-
|
|
3501
|
+
|
|
3455
3502
|
Failed
|
|
3456
|
-
|
|
3503
|
+
|
|
3457
3504
|
Canceled
|
|
3458
|
-
|
|
3505
|
+
|
|
3459
3506
|
Timeout
|
|
3460
3507
|
*/
|
|
3461
3508
|
export declare enum ServerTaskStatus {
|
|
@@ -3561,6 +3608,8 @@ export interface ServiceInfo {
|
|
|
3561
3608
|
icon?: string;
|
|
3562
3609
|
/** A set of tags. */
|
|
3563
3610
|
tags?: string[];
|
|
3611
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
3612
|
+
inVisible?: boolean;
|
|
3564
3613
|
/** Preview of the resource. */
|
|
3565
3614
|
preview?: string;
|
|
3566
3615
|
}
|
|
@@ -3575,7 +3624,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
|
|
|
3575
3624
|
geometryType: GeometryType;
|
|
3576
3625
|
objectCount?: number;
|
|
3577
3626
|
categories?: string[];
|
|
3578
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3627
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
3579
3628
|
};
|
|
3580
3629
|
/**
|
|
3581
3630
|
* List of the services in service manager.
|
|
@@ -3745,6 +3794,8 @@ export interface StatisticsResultObject {
|
|
|
3745
3794
|
*
|
|
3746
3795
|
* Count
|
|
3747
3796
|
*
|
|
3797
|
+
* TotalCount
|
|
3798
|
+
*
|
|
3748
3799
|
* DistinctCount
|
|
3749
3800
|
*
|
|
3750
3801
|
* First
|
|
@@ -3789,11 +3840,11 @@ export declare type StepResultDc = BaseStepResultDc & {
|
|
|
3789
3840
|
};
|
|
3790
3841
|
/**
|
|
3791
3842
|
* The `StringSubType` provides information about string attribute subtype.
|
|
3792
|
-
|
|
3843
|
+
|
|
3793
3844
|
None
|
|
3794
|
-
|
|
3845
|
+
|
|
3795
3846
|
Image
|
|
3796
|
-
|
|
3847
|
+
|
|
3797
3848
|
PkkCode
|
|
3798
3849
|
*/
|
|
3799
3850
|
export declare enum StringSubType {
|
|
@@ -4117,13 +4168,13 @@ export interface TemplateModelDc {
|
|
|
4117
4168
|
}
|
|
4118
4169
|
/**
|
|
4119
4170
|
* Sets the horizontal alignment of text.
|
|
4120
|
-
|
|
4171
|
+
|
|
4121
4172
|
right
|
|
4122
|
-
|
|
4173
|
+
|
|
4123
4174
|
left
|
|
4124
|
-
|
|
4175
|
+
|
|
4125
4176
|
center
|
|
4126
|
-
|
|
4177
|
+
|
|
4127
4178
|
justified
|
|
4128
4179
|
*/
|
|
4129
4180
|
export declare enum TextAlignment {
|
|
@@ -4143,11 +4194,11 @@ export interface TextBackgroundDc {
|
|
|
4143
4194
|
}
|
|
4144
4195
|
/**
|
|
4145
4196
|
* Sets the vertical alignment of text.
|
|
4146
|
-
|
|
4197
|
+
|
|
4147
4198
|
top
|
|
4148
|
-
|
|
4199
|
+
|
|
4149
4200
|
bottom
|
|
4150
|
-
|
|
4201
|
+
|
|
4151
4202
|
middle
|
|
4152
4203
|
*/
|
|
4153
4204
|
export declare enum TextVerticalAlignment {
|
|
@@ -4211,7 +4262,7 @@ export interface TileCatalogServiceInfoDc {
|
|
|
4211
4262
|
/** The category of the service. */
|
|
4212
4263
|
categories?: string[];
|
|
4213
4264
|
/** Configuration of the service. */
|
|
4214
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
4265
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
4215
4266
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4216
4267
|
name: string;
|
|
4217
4268
|
/** Resource alias. */
|
|
@@ -4254,6 +4305,8 @@ export interface TileCatalogServiceInfoDc {
|
|
|
4254
4305
|
acl?: AccessControlListDc;
|
|
4255
4306
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4256
4307
|
icon?: string;
|
|
4308
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4309
|
+
invisibleInCatalog?: boolean;
|
|
4257
4310
|
}
|
|
4258
4311
|
/**
|
|
4259
4312
|
* Configuration of a table for tile catalog layer.
|
|
@@ -4386,7 +4439,7 @@ export interface TileServiceInfoDc {
|
|
|
4386
4439
|
/** The category of the service. */
|
|
4387
4440
|
categories?: string[];
|
|
4388
4441
|
/** Configuration of the service. */
|
|
4389
|
-
configuration?: ServiceConfigurationBaseDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
4442
|
+
configuration?: ServiceConfigurationBaseDc | LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
4390
4443
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4391
4444
|
name: string;
|
|
4392
4445
|
/** Resource alias. */
|
|
@@ -4429,6 +4482,8 @@ export interface TileServiceInfoDc {
|
|
|
4429
4482
|
acl?: AccessControlListDc;
|
|
4430
4483
|
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
4431
4484
|
icon?: string;
|
|
4485
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4486
|
+
invisibleInCatalog?: boolean;
|
|
4432
4487
|
}
|
|
4433
4488
|
/**
|
|
4434
4489
|
* The description of the tile feature layer service as a server task data storage.
|
|
@@ -4890,6 +4945,8 @@ export interface GetDataSchemaParams {
|
|
|
4890
4945
|
export interface GetExternalWmsLayersParams {
|
|
4891
4946
|
/** WMS service url. */
|
|
4892
4947
|
wmsUrl?: string;
|
|
4948
|
+
/** must be WMS. */
|
|
4949
|
+
service?: string;
|
|
4893
4950
|
}
|
|
4894
4951
|
export interface GetRasterAttributesParams {
|
|
4895
4952
|
/** File name in the temporary static storage. */
|
|
@@ -5259,6 +5316,8 @@ export interface AggregateAttributeParams {
|
|
|
5259
5316
|
*
|
|
5260
5317
|
* Count
|
|
5261
5318
|
*
|
|
5319
|
+
* TotalCount
|
|
5320
|
+
*
|
|
5262
5321
|
* DistinctCount
|
|
5263
5322
|
*
|
|
5264
5323
|
* First
|
|
@@ -5561,7 +5620,7 @@ export interface StatisticsDbParams {
|
|
|
5561
5620
|
/** Type of required statistic function. */
|
|
5562
5621
|
types?: AggregationFunction[];
|
|
5563
5622
|
}
|
|
5564
|
-
export interface
|
|
5623
|
+
export interface ClassifyParams2 {
|
|
5565
5624
|
/** Layer name. */
|
|
5566
5625
|
name?: string;
|
|
5567
5626
|
/** Attribute name. */
|
|
@@ -5656,7 +5715,7 @@ export interface GetTableListParams {
|
|
|
5656
5715
|
acl?: string;
|
|
5657
5716
|
}
|
|
5658
5717
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
5659
|
-
export interface
|
|
5718
|
+
export interface DeleteResourcesParams3 {
|
|
5660
5719
|
/** Resource names. */
|
|
5661
5720
|
names?: string[];
|
|
5662
5721
|
}
|
|
@@ -5755,7 +5814,27 @@ export interface GetCapabilitiesParams {
|
|
|
5755
5814
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5756
5815
|
AcceptFormats?: string[];
|
|
5757
5816
|
}
|
|
5758
|
-
export interface
|
|
5817
|
+
export interface GetSharedCapabilitiesParams {
|
|
5818
|
+
/** Name of the service. */
|
|
5819
|
+
Service?: string;
|
|
5820
|
+
/** When omitted, server shall return latest supported version. */
|
|
5821
|
+
AcceptVersions?: string[];
|
|
5822
|
+
/** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
|
|
5823
|
+
Sections?: string[];
|
|
5824
|
+
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5825
|
+
AcceptFormats?: string[];
|
|
5826
|
+
}
|
|
5827
|
+
export interface GetPublicCapabilitiesParams {
|
|
5828
|
+
/** Name of the service. */
|
|
5829
|
+
Service?: string;
|
|
5830
|
+
/** When omitted, server shall return latest supported version. */
|
|
5831
|
+
AcceptVersions?: string[];
|
|
5832
|
+
/** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
|
|
5833
|
+
Sections?: string[];
|
|
5834
|
+
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5835
|
+
AcceptFormats?: string[];
|
|
5836
|
+
}
|
|
5837
|
+
export interface GetCapabilitiesParams3 {
|
|
5759
5838
|
/** Output format of service metadata. */
|
|
5760
5839
|
Format?: string;
|
|
5761
5840
|
/** Must be WMS. */
|