@evergis/api 4.0.7 → 4.0.9
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__/EqlService.d.ts +4 -4
- package/dist/__generated__/LayersService.d.ts +2 -2
- 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 +346 -268
- package/dist/api.cjs.development.js +31 -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 +275 -249
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -120,47 +120,47 @@ export interface AggregationDataResultDc {
|
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
122
|
*
|
|
123
|
-
|
|
123
|
+
|
|
124
124
|
None
|
|
125
|
-
|
|
125
|
+
|
|
126
126
|
Array
|
|
127
|
-
|
|
127
|
+
|
|
128
128
|
Min
|
|
129
|
-
|
|
129
|
+
|
|
130
130
|
Max
|
|
131
|
-
|
|
131
|
+
|
|
132
132
|
Avg
|
|
133
|
-
|
|
133
|
+
|
|
134
134
|
Sum
|
|
135
|
-
|
|
135
|
+
|
|
136
136
|
Extent
|
|
137
|
-
|
|
137
|
+
|
|
138
138
|
H3
|
|
139
|
-
|
|
139
|
+
|
|
140
140
|
Count
|
|
141
|
-
|
|
141
|
+
|
|
142
142
|
TotalCount
|
|
143
|
-
|
|
143
|
+
|
|
144
144
|
DistinctCount
|
|
145
|
-
|
|
145
|
+
|
|
146
146
|
First
|
|
147
|
-
|
|
147
|
+
|
|
148
148
|
Last
|
|
149
|
-
|
|
149
|
+
|
|
150
150
|
Median
|
|
151
|
-
|
|
151
|
+
|
|
152
152
|
Mod
|
|
153
|
-
|
|
153
|
+
|
|
154
154
|
StdDeviation
|
|
155
|
-
|
|
155
|
+
|
|
156
156
|
SumOfProduct
|
|
157
|
-
|
|
157
|
+
|
|
158
158
|
OnlyValue
|
|
159
|
-
|
|
159
|
+
|
|
160
160
|
WeightedAvg
|
|
161
|
-
|
|
161
|
+
|
|
162
162
|
DensityIndicators
|
|
163
|
-
|
|
163
|
+
|
|
164
164
|
DividedSum
|
|
165
165
|
*/
|
|
166
166
|
export declare enum AggregationFunction {
|
|
@@ -321,6 +321,8 @@ export declare type ArrowLineEndingDc = LineEndingBaseDc & {
|
|
|
321
321
|
export interface AttributeConfigurationDc {
|
|
322
322
|
/** The name of the attribute. */
|
|
323
323
|
attributeName: string;
|
|
324
|
+
/** The name of the column in the data table that holds the attribute values. */
|
|
325
|
+
columnName?: string;
|
|
324
326
|
/** Human-friendly name for the attribute. */
|
|
325
327
|
alias?: string;
|
|
326
328
|
/** Description for the attribute. */
|
|
@@ -611,13 +613,13 @@ export interface AttributeIconDc {
|
|
|
611
613
|
}
|
|
612
614
|
/**
|
|
613
615
|
*
|
|
614
|
-
|
|
616
|
+
|
|
615
617
|
Unknown
|
|
616
|
-
|
|
618
|
+
|
|
617
619
|
Icon
|
|
618
|
-
|
|
620
|
+
|
|
619
621
|
PNG
|
|
620
|
-
|
|
622
|
+
|
|
621
623
|
SVG
|
|
622
624
|
*/
|
|
623
625
|
export declare enum AttributeIconType {
|
|
@@ -628,13 +630,13 @@ export declare enum AttributeIconType {
|
|
|
628
630
|
}
|
|
629
631
|
/**
|
|
630
632
|
*
|
|
631
|
-
|
|
633
|
+
|
|
632
634
|
None
|
|
633
|
-
|
|
635
|
+
|
|
634
636
|
SelectFromHandBook
|
|
635
|
-
|
|
637
|
+
|
|
636
638
|
SelectFromRange
|
|
637
|
-
|
|
639
|
+
|
|
638
640
|
ViewHandBook
|
|
639
641
|
*/
|
|
640
642
|
export declare enum AttributeSelectorType {
|
|
@@ -645,31 +647,31 @@ export declare enum AttributeSelectorType {
|
|
|
645
647
|
}
|
|
646
648
|
/**
|
|
647
649
|
*
|
|
648
|
-
|
|
650
|
+
|
|
649
651
|
Unknown
|
|
650
|
-
|
|
652
|
+
|
|
651
653
|
String
|
|
652
|
-
|
|
654
|
+
|
|
653
655
|
Int32
|
|
654
|
-
|
|
656
|
+
|
|
655
657
|
Int64
|
|
656
|
-
|
|
658
|
+
|
|
657
659
|
Double
|
|
658
|
-
|
|
660
|
+
|
|
659
661
|
DateTime
|
|
660
|
-
|
|
662
|
+
|
|
661
663
|
Boolean
|
|
662
|
-
|
|
664
|
+
|
|
663
665
|
Point
|
|
664
|
-
|
|
666
|
+
|
|
665
667
|
Polyline
|
|
666
|
-
|
|
668
|
+
|
|
667
669
|
MultiPolygon
|
|
668
|
-
|
|
670
|
+
|
|
669
671
|
Multipoint
|
|
670
|
-
|
|
672
|
+
|
|
671
673
|
H3Index
|
|
672
|
-
|
|
674
|
+
|
|
673
675
|
Json
|
|
674
676
|
*/
|
|
675
677
|
export declare enum AttributeType {
|
|
@@ -708,9 +710,9 @@ export interface AttributesConfigurationDc {
|
|
|
708
710
|
}
|
|
709
711
|
/**
|
|
710
712
|
*
|
|
711
|
-
|
|
713
|
+
|
|
712
714
|
authorization_code
|
|
713
|
-
|
|
715
|
+
|
|
714
716
|
refresh_token
|
|
715
717
|
*/
|
|
716
718
|
export declare enum AuthorizationGrant {
|
|
@@ -919,19 +921,19 @@ export interface CatalogResourceDc {
|
|
|
919
921
|
}
|
|
920
922
|
/**
|
|
921
923
|
*
|
|
922
|
-
|
|
924
|
+
|
|
923
925
|
None
|
|
924
|
-
|
|
926
|
+
|
|
925
927
|
Map
|
|
926
|
-
|
|
928
|
+
|
|
927
929
|
Layer
|
|
928
|
-
|
|
930
|
+
|
|
929
931
|
Table
|
|
930
|
-
|
|
932
|
+
|
|
931
933
|
File
|
|
932
|
-
|
|
934
|
+
|
|
933
935
|
TaskPrototype
|
|
934
|
-
|
|
936
|
+
|
|
935
937
|
DataSource
|
|
936
938
|
*/
|
|
937
939
|
export declare enum CatalogResourceType {
|
|
@@ -976,15 +978,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
|
|
|
976
978
|
};
|
|
977
979
|
/**
|
|
978
980
|
* Describes classification methods.
|
|
979
|
-
|
|
981
|
+
|
|
980
982
|
none
|
|
981
|
-
|
|
983
|
+
|
|
982
984
|
naturalBreaks
|
|
983
|
-
|
|
985
|
+
|
|
984
986
|
equalInterval
|
|
985
|
-
|
|
987
|
+
|
|
986
988
|
quantile
|
|
987
|
-
|
|
989
|
+
|
|
988
990
|
unique
|
|
989
991
|
*/
|
|
990
992
|
export declare enum ClassificationType {
|
|
@@ -996,11 +998,11 @@ export declare enum ClassificationType {
|
|
|
996
998
|
}
|
|
997
999
|
/**
|
|
998
1000
|
*
|
|
999
|
-
|
|
1001
|
+
|
|
1000
1002
|
decimal
|
|
1001
|
-
|
|
1003
|
+
|
|
1002
1004
|
dateTime
|
|
1003
|
-
|
|
1005
|
+
|
|
1004
1006
|
text
|
|
1005
1007
|
*/
|
|
1006
1008
|
export declare enum ClassifyAttributeType {
|
|
@@ -1136,55 +1138,55 @@ export interface ConfigDc {
|
|
|
1136
1138
|
}
|
|
1137
1139
|
/**
|
|
1138
1140
|
*
|
|
1139
|
-
|
|
1141
|
+
|
|
1140
1142
|
Unknown
|
|
1141
|
-
|
|
1143
|
+
|
|
1142
1144
|
SerializeError
|
|
1143
|
-
|
|
1145
|
+
|
|
1144
1146
|
InvalidDataService
|
|
1145
|
-
|
|
1147
|
+
|
|
1146
1148
|
InvalidConfiguration
|
|
1147
|
-
|
|
1149
|
+
|
|
1148
1150
|
InvalidDataServiceName
|
|
1149
|
-
|
|
1151
|
+
|
|
1150
1152
|
InvalidTableName
|
|
1151
|
-
|
|
1153
|
+
|
|
1152
1154
|
InvalidLayerName
|
|
1153
|
-
|
|
1155
|
+
|
|
1154
1156
|
ResourceNotFound
|
|
1155
|
-
|
|
1157
|
+
|
|
1156
1158
|
InvalidCondition
|
|
1157
|
-
|
|
1159
|
+
|
|
1158
1160
|
InvalidAttributes
|
|
1159
|
-
|
|
1161
|
+
|
|
1160
1162
|
InvalidIdAttribute
|
|
1161
|
-
|
|
1163
|
+
|
|
1162
1164
|
InvalidGeometryAttribute
|
|
1163
|
-
|
|
1165
|
+
|
|
1164
1166
|
InvalidGeometryAttributeType
|
|
1165
|
-
|
|
1167
|
+
|
|
1166
1168
|
InvalidColumnName
|
|
1167
|
-
|
|
1169
|
+
|
|
1168
1170
|
InvalidIdColumnSettings
|
|
1169
|
-
|
|
1171
|
+
|
|
1170
1172
|
ColumnNotExistsInTable
|
|
1171
|
-
|
|
1173
|
+
|
|
1172
1174
|
InvalidStyle
|
|
1173
|
-
|
|
1175
|
+
|
|
1174
1176
|
InvalidLayerType
|
|
1175
|
-
|
|
1177
|
+
|
|
1176
1178
|
ColumnLoadingError
|
|
1177
|
-
|
|
1179
|
+
|
|
1178
1180
|
InvalidAttributeFormat
|
|
1179
|
-
|
|
1181
|
+
|
|
1180
1182
|
DataSourceNotFound
|
|
1181
|
-
|
|
1183
|
+
|
|
1182
1184
|
DuplicateColumns
|
|
1183
|
-
|
|
1185
|
+
|
|
1184
1186
|
DuplicateAttributes
|
|
1185
|
-
|
|
1187
|
+
|
|
1186
1188
|
TableWithoutColumns
|
|
1187
|
-
|
|
1189
|
+
|
|
1188
1190
|
InvalidTableReferenceConfiguration
|
|
1189
1191
|
*/
|
|
1190
1192
|
export declare enum ConfigurationErrorEnum {
|
|
@@ -1502,13 +1504,13 @@ export interface DataSourceInfoDc {
|
|
|
1502
1504
|
}
|
|
1503
1505
|
/**
|
|
1504
1506
|
*
|
|
1505
|
-
|
|
1507
|
+
|
|
1506
1508
|
Postgres
|
|
1507
|
-
|
|
1509
|
+
|
|
1508
1510
|
Trino
|
|
1509
|
-
|
|
1511
|
+
|
|
1510
1512
|
S3
|
|
1511
|
-
|
|
1513
|
+
|
|
1512
1514
|
GisServer
|
|
1513
1515
|
*/
|
|
1514
1516
|
export declare enum DataSourceType {
|
|
@@ -1590,6 +1592,10 @@ export interface EqlRequestDc {
|
|
|
1590
1592
|
ds?: string;
|
|
1591
1593
|
/** EQL query string. */
|
|
1592
1594
|
query: string;
|
|
1595
|
+
/** Geometry field name. */
|
|
1596
|
+
geometryField?: string;
|
|
1597
|
+
/** Id field name. */
|
|
1598
|
+
idField?: string;
|
|
1593
1599
|
/**
|
|
1594
1600
|
* Offset.
|
|
1595
1601
|
* @format int32
|
|
@@ -1600,6 +1606,8 @@ export interface EqlRequestDc {
|
|
|
1600
1606
|
* @format int32
|
|
1601
1607
|
*/
|
|
1602
1608
|
limit?: number;
|
|
1609
|
+
/** With geometry. */
|
|
1610
|
+
withgeom?: boolean;
|
|
1603
1611
|
/** Columns. */
|
|
1604
1612
|
columns?: Record<string, string | null>;
|
|
1605
1613
|
/** EQL query parameters. */
|
|
@@ -1633,15 +1641,15 @@ export interface ErrorDetailsDc {
|
|
|
1633
1641
|
}
|
|
1634
1642
|
/**
|
|
1635
1643
|
* Type of the error.
|
|
1636
|
-
|
|
1644
|
+
|
|
1637
1645
|
ResourceLimitExceeded
|
|
1638
|
-
|
|
1646
|
+
|
|
1639
1647
|
ResourceNotFound
|
|
1640
|
-
|
|
1648
|
+
|
|
1641
1649
|
InternalError
|
|
1642
|
-
|
|
1650
|
+
|
|
1643
1651
|
BadRequest
|
|
1644
|
-
|
|
1652
|
+
|
|
1645
1653
|
DuplicateContent
|
|
1646
1654
|
*/
|
|
1647
1655
|
export declare enum ErrorDetailsType {
|
|
@@ -2179,11 +2187,11 @@ export interface FilterDc {
|
|
|
2179
2187
|
}
|
|
2180
2188
|
/**
|
|
2181
2189
|
* Sets whether font should be styled.
|
|
2182
|
-
|
|
2190
|
+
|
|
2183
2191
|
normal
|
|
2184
|
-
|
|
2192
|
+
|
|
2185
2193
|
oblique
|
|
2186
|
-
|
|
2194
|
+
|
|
2187
2195
|
italic
|
|
2188
2196
|
*/
|
|
2189
2197
|
export declare enum FontStyle {
|
|
@@ -2193,27 +2201,27 @@ export declare enum FontStyle {
|
|
|
2193
2201
|
}
|
|
2194
2202
|
/**
|
|
2195
2203
|
* Specifies the weight (or boldness) of the font.
|
|
2196
|
-
|
|
2204
|
+
|
|
2197
2205
|
Thin
|
|
2198
|
-
|
|
2206
|
+
|
|
2199
2207
|
ExtraLight
|
|
2200
|
-
|
|
2208
|
+
|
|
2201
2209
|
Light
|
|
2202
|
-
|
|
2210
|
+
|
|
2203
2211
|
SemiLight
|
|
2204
|
-
|
|
2212
|
+
|
|
2205
2213
|
Normal
|
|
2206
|
-
|
|
2214
|
+
|
|
2207
2215
|
Medium
|
|
2208
|
-
|
|
2216
|
+
|
|
2209
2217
|
DemiBold
|
|
2210
|
-
|
|
2218
|
+
|
|
2211
2219
|
Bold
|
|
2212
|
-
|
|
2220
|
+
|
|
2213
2221
|
ExtraBold
|
|
2214
|
-
|
|
2222
|
+
|
|
2215
2223
|
Black
|
|
2216
|
-
|
|
2224
|
+
|
|
2217
2225
|
ExtraBlack
|
|
2218
2226
|
*/
|
|
2219
2227
|
export declare enum FontWeight {
|
|
@@ -2304,17 +2312,17 @@ export interface GeometryDc {
|
|
|
2304
2312
|
}
|
|
2305
2313
|
/**
|
|
2306
2314
|
*
|
|
2307
|
-
|
|
2315
|
+
|
|
2308
2316
|
unknown
|
|
2309
|
-
|
|
2317
|
+
|
|
2310
2318
|
point
|
|
2311
|
-
|
|
2319
|
+
|
|
2312
2320
|
polyline
|
|
2313
|
-
|
|
2321
|
+
|
|
2314
2322
|
multipolygon
|
|
2315
|
-
|
|
2323
|
+
|
|
2316
2324
|
envelope
|
|
2317
|
-
|
|
2325
|
+
|
|
2318
2326
|
multipoint
|
|
2319
2327
|
*/
|
|
2320
2328
|
export declare enum GeometryType {
|
|
@@ -2504,13 +2512,13 @@ export interface GridElementDc {
|
|
|
2504
2512
|
}
|
|
2505
2513
|
/**
|
|
2506
2514
|
* Resource group.
|
|
2507
|
-
|
|
2515
|
+
|
|
2508
2516
|
my
|
|
2509
|
-
|
|
2517
|
+
|
|
2510
2518
|
role
|
|
2511
|
-
|
|
2519
|
+
|
|
2512
2520
|
public
|
|
2513
|
-
|
|
2521
|
+
|
|
2514
2522
|
all
|
|
2515
2523
|
*/
|
|
2516
2524
|
export declare enum Group {
|
|
@@ -3037,13 +3045,13 @@ export interface LegendTemplateModelDc {
|
|
|
3037
3045
|
}
|
|
3038
3046
|
/**
|
|
3039
3047
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
3040
|
-
|
|
3048
|
+
|
|
3041
3049
|
Flat
|
|
3042
|
-
|
|
3050
|
+
|
|
3043
3051
|
Square
|
|
3044
|
-
|
|
3052
|
+
|
|
3045
3053
|
Round
|
|
3046
|
-
|
|
3054
|
+
|
|
3047
3055
|
Triangle
|
|
3048
3056
|
*/
|
|
3049
3057
|
export declare enum LineCapStyle {
|
|
@@ -3087,29 +3095,29 @@ export interface LineEndingBaseDc {
|
|
|
3087
3095
|
}
|
|
3088
3096
|
/**
|
|
3089
3097
|
* Type of the line ending.
|
|
3090
|
-
|
|
3098
|
+
|
|
3091
3099
|
none
|
|
3092
|
-
|
|
3100
|
+
|
|
3093
3101
|
arrow
|
|
3094
|
-
|
|
3102
|
+
|
|
3095
3103
|
filledArrow
|
|
3096
|
-
|
|
3104
|
+
|
|
3097
3105
|
square
|
|
3098
|
-
|
|
3106
|
+
|
|
3099
3107
|
filledSquare
|
|
3100
|
-
|
|
3108
|
+
|
|
3101
3109
|
circle
|
|
3102
|
-
|
|
3110
|
+
|
|
3103
3111
|
filledCircle
|
|
3104
|
-
|
|
3112
|
+
|
|
3105
3113
|
diamond
|
|
3106
|
-
|
|
3114
|
+
|
|
3107
3115
|
filledDiamond
|
|
3108
|
-
|
|
3116
|
+
|
|
3109
3117
|
roundSquare
|
|
3110
|
-
|
|
3118
|
+
|
|
3111
3119
|
filledRoundSquare
|
|
3112
|
-
|
|
3120
|
+
|
|
3113
3121
|
svg
|
|
3114
3122
|
*/
|
|
3115
3123
|
export declare enum LineEndingType {
|
|
@@ -3128,11 +3136,11 @@ export declare enum LineEndingType {
|
|
|
3128
3136
|
}
|
|
3129
3137
|
/**
|
|
3130
3138
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
3131
|
-
|
|
3139
|
+
|
|
3132
3140
|
Miter
|
|
3133
|
-
|
|
3141
|
+
|
|
3134
3142
|
Bevel
|
|
3135
|
-
|
|
3143
|
+
|
|
3136
3144
|
Round
|
|
3137
3145
|
*/
|
|
3138
3146
|
export declare enum LineJoinType {
|
|
@@ -3229,7 +3237,7 @@ export interface LoginResultDc {
|
|
|
3229
3237
|
}
|
|
3230
3238
|
/**
|
|
3231
3239
|
* SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
|
|
3232
|
-
|
|
3240
|
+
|
|
3233
3241
|
SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
|
|
3234
3242
|
*/
|
|
3235
3243
|
export interface MapTableInfoDc {
|
|
@@ -3330,11 +3338,11 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
|
|
|
3330
3338
|
export declare type ObjectId = object;
|
|
3331
3339
|
/**
|
|
3332
3340
|
* Filter exists resources by owner.
|
|
3333
|
-
|
|
3341
|
+
|
|
3334
3342
|
My
|
|
3335
|
-
|
|
3343
|
+
|
|
3336
3344
|
Shared
|
|
3337
|
-
|
|
3345
|
+
|
|
3338
3346
|
Public
|
|
3339
3347
|
*/
|
|
3340
3348
|
export declare enum OwnerFilter {
|
|
@@ -3560,9 +3568,9 @@ export declare type PatternBrushDc = FillBrushDc & {
|
|
|
3560
3568
|
};
|
|
3561
3569
|
/**
|
|
3562
3570
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
3563
|
-
|
|
3571
|
+
|
|
3564
3572
|
xyz
|
|
3565
|
-
|
|
3573
|
+
|
|
3566
3574
|
tms
|
|
3567
3575
|
*/
|
|
3568
3576
|
export declare enum PbfSchema {
|
|
@@ -3583,19 +3591,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
|
|
|
3583
3591
|
};
|
|
3584
3592
|
/**
|
|
3585
3593
|
*
|
|
3586
|
-
|
|
3594
|
+
|
|
3587
3595
|
none
|
|
3588
|
-
|
|
3596
|
+
|
|
3589
3597
|
configure
|
|
3590
|
-
|
|
3598
|
+
|
|
3591
3599
|
write
|
|
3592
|
-
|
|
3600
|
+
|
|
3593
3601
|
read
|
|
3594
|
-
|
|
3602
|
+
|
|
3595
3603
|
read,configure
|
|
3596
|
-
|
|
3604
|
+
|
|
3597
3605
|
read,write
|
|
3598
|
-
|
|
3606
|
+
|
|
3599
3607
|
read,write,configure
|
|
3600
3608
|
*/
|
|
3601
3609
|
export declare enum Permissions {
|
|
@@ -3647,21 +3655,21 @@ export interface PolicyDc {
|
|
|
3647
3655
|
}
|
|
3648
3656
|
/**
|
|
3649
3657
|
* Type of the authorization policy.
|
|
3650
|
-
|
|
3658
|
+
|
|
3651
3659
|
Unknown
|
|
3652
|
-
|
|
3660
|
+
|
|
3653
3661
|
CreateTable
|
|
3654
|
-
|
|
3662
|
+
|
|
3655
3663
|
CreateLayer
|
|
3656
|
-
|
|
3664
|
+
|
|
3657
3665
|
CreateProject
|
|
3658
|
-
|
|
3666
|
+
|
|
3659
3667
|
MaxFeaturesInOneTable
|
|
3660
|
-
|
|
3668
|
+
|
|
3661
3669
|
MaxObjectsToExport
|
|
3662
|
-
|
|
3670
|
+
|
|
3663
3671
|
MaxUploadContentSize
|
|
3664
|
-
|
|
3672
|
+
|
|
3665
3673
|
MaxEqlQueryParametersValues
|
|
3666
3674
|
*/
|
|
3667
3675
|
export declare enum PolicyType {
|
|
@@ -4079,6 +4087,8 @@ export interface PythonTaskMethodConfiguration {
|
|
|
4079
4087
|
fileName?: string;
|
|
4080
4088
|
/** Gets or sets method. */
|
|
4081
4089
|
methodName?: string;
|
|
4090
|
+
/** Gets or sets method init error. */
|
|
4091
|
+
error?: string;
|
|
4082
4092
|
/** Gets or sets description. */
|
|
4083
4093
|
description?: string;
|
|
4084
4094
|
/** Parameters. */
|
|
@@ -4095,11 +4105,11 @@ export declare type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc
|
|
|
4095
4105
|
};
|
|
4096
4106
|
/**
|
|
4097
4107
|
* Stream quality.
|
|
4098
|
-
|
|
4108
|
+
|
|
4099
4109
|
Low
|
|
4100
|
-
|
|
4110
|
+
|
|
4101
4111
|
Medium
|
|
4102
|
-
|
|
4112
|
+
|
|
4103
4113
|
High
|
|
4104
4114
|
*/
|
|
4105
4115
|
export declare enum Quality {
|
|
@@ -4503,23 +4513,23 @@ export interface RegisterUserDc {
|
|
|
4503
4513
|
}
|
|
4504
4514
|
/**
|
|
4505
4515
|
* RemoteTaskStatus enum.
|
|
4506
|
-
|
|
4516
|
+
|
|
4507
4517
|
Init
|
|
4508
|
-
|
|
4518
|
+
|
|
4509
4519
|
Process
|
|
4510
|
-
|
|
4520
|
+
|
|
4511
4521
|
Completed
|
|
4512
|
-
|
|
4522
|
+
|
|
4513
4523
|
Interrupted
|
|
4514
|
-
|
|
4524
|
+
|
|
4515
4525
|
Error
|
|
4516
|
-
|
|
4526
|
+
|
|
4517
4527
|
Timeout
|
|
4518
|
-
|
|
4528
|
+
|
|
4519
4529
|
Waiting
|
|
4520
|
-
|
|
4530
|
+
|
|
4521
4531
|
InQueue
|
|
4522
|
-
|
|
4532
|
+
|
|
4523
4533
|
Unknown
|
|
4524
4534
|
*/
|
|
4525
4535
|
export declare enum RemoteTaskStatus {
|
|
@@ -4758,15 +4768,15 @@ export interface ResourceParentDc {
|
|
|
4758
4768
|
}
|
|
4759
4769
|
/**
|
|
4760
4770
|
* Resources types filter.
|
|
4761
|
-
|
|
4771
|
+
|
|
4762
4772
|
RemoteTileService
|
|
4763
|
-
|
|
4773
|
+
|
|
4764
4774
|
ProxyService
|
|
4765
|
-
|
|
4775
|
+
|
|
4766
4776
|
PostgresLayerService
|
|
4767
|
-
|
|
4777
|
+
|
|
4768
4778
|
QueryLayerService
|
|
4769
|
-
|
|
4779
|
+
|
|
4770
4780
|
TileCatalogTable
|
|
4771
4781
|
*/
|
|
4772
4782
|
export declare enum ResourceSubTypeFilter {
|
|
@@ -4778,21 +4788,21 @@ export declare enum ResourceSubTypeFilter {
|
|
|
4778
4788
|
}
|
|
4779
4789
|
/**
|
|
4780
4790
|
*
|
|
4781
|
-
|
|
4791
|
+
|
|
4782
4792
|
Unknown
|
|
4783
|
-
|
|
4793
|
+
|
|
4784
4794
|
table
|
|
4785
|
-
|
|
4795
|
+
|
|
4786
4796
|
layer
|
|
4787
|
-
|
|
4797
|
+
|
|
4788
4798
|
project
|
|
4789
|
-
|
|
4799
|
+
|
|
4790
4800
|
file
|
|
4791
|
-
|
|
4801
|
+
|
|
4792
4802
|
feature
|
|
4793
|
-
|
|
4803
|
+
|
|
4794
4804
|
tag
|
|
4795
|
-
|
|
4805
|
+
|
|
4796
4806
|
datasource
|
|
4797
4807
|
*/
|
|
4798
4808
|
export declare enum ResourceType {
|
|
@@ -4807,23 +4817,23 @@ export declare enum ResourceType {
|
|
|
4807
4817
|
}
|
|
4808
4818
|
/**
|
|
4809
4819
|
* Resources types filter.
|
|
4810
|
-
|
|
4820
|
+
|
|
4811
4821
|
Map
|
|
4812
|
-
|
|
4822
|
+
|
|
4813
4823
|
Layer
|
|
4814
|
-
|
|
4824
|
+
|
|
4815
4825
|
Table
|
|
4816
|
-
|
|
4826
|
+
|
|
4817
4827
|
RasterCatalog
|
|
4818
|
-
|
|
4828
|
+
|
|
4819
4829
|
ProxyService
|
|
4820
|
-
|
|
4830
|
+
|
|
4821
4831
|
RemoteTileService
|
|
4822
|
-
|
|
4832
|
+
|
|
4823
4833
|
File
|
|
4824
|
-
|
|
4834
|
+
|
|
4825
4835
|
DataSource
|
|
4826
|
-
|
|
4836
|
+
|
|
4827
4837
|
TaskPrototype
|
|
4828
4838
|
*/
|
|
4829
4839
|
export declare enum ResourceTypeFilter {
|
|
@@ -4844,9 +4854,9 @@ export declare enum ResourceTypeLink {
|
|
|
4844
4854
|
}
|
|
4845
4855
|
/**
|
|
4846
4856
|
*
|
|
4847
|
-
|
|
4857
|
+
|
|
4848
4858
|
code
|
|
4849
|
-
|
|
4859
|
+
|
|
4850
4860
|
token
|
|
4851
4861
|
*/
|
|
4852
4862
|
export declare enum ResponseType {
|
|
@@ -5306,7 +5316,7 @@ export interface SimpleEndingDc {
|
|
|
5306
5316
|
}
|
|
5307
5317
|
/**
|
|
5308
5318
|
* Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
|
|
5309
|
-
|
|
5319
|
+
|
|
5310
5320
|
If the ending is set to be other then None, the size and color of the ending will be calculated based on the
|
|
5311
5321
|
stroke width and color of the symbol.
|
|
5312
5322
|
*/
|
|
@@ -5381,11 +5391,11 @@ export interface SimplifyInfoItemDc {
|
|
|
5381
5391
|
}
|
|
5382
5392
|
/**
|
|
5383
5393
|
*
|
|
5384
|
-
|
|
5394
|
+
|
|
5385
5395
|
Basic
|
|
5386
|
-
|
|
5396
|
+
|
|
5387
5397
|
PreserveTopology
|
|
5388
|
-
|
|
5398
|
+
|
|
5389
5399
|
VW
|
|
5390
5400
|
*/
|
|
5391
5401
|
export declare enum SimplifyType {
|
|
@@ -5531,13 +5541,13 @@ export interface StatisticsResultObject {
|
|
|
5531
5541
|
}
|
|
5532
5542
|
/**
|
|
5533
5543
|
*
|
|
5534
|
-
|
|
5544
|
+
|
|
5535
5545
|
None
|
|
5536
|
-
|
|
5546
|
+
|
|
5537
5547
|
Image
|
|
5538
|
-
|
|
5548
|
+
|
|
5539
5549
|
PkkCode
|
|
5540
|
-
|
|
5550
|
+
|
|
5541
5551
|
Attachments
|
|
5542
5552
|
*/
|
|
5543
5553
|
export declare enum StringSubType {
|
|
@@ -5890,24 +5900,36 @@ export interface TaskParameter {
|
|
|
5890
5900
|
/**
|
|
5891
5901
|
*
|
|
5892
5902
|
*
|
|
5893
|
-
*
|
|
5903
|
+
* Int32
|
|
5904
|
+
*
|
|
5905
|
+
* Int64
|
|
5894
5906
|
*
|
|
5895
5907
|
* Double
|
|
5896
5908
|
*
|
|
5897
5909
|
* String
|
|
5898
5910
|
*
|
|
5899
|
-
*
|
|
5911
|
+
* Boolean
|
|
5912
|
+
*
|
|
5913
|
+
* DateTime
|
|
5914
|
+
*
|
|
5915
|
+
* Point
|
|
5900
5916
|
*
|
|
5901
5917
|
* Geometry
|
|
5902
5918
|
*
|
|
5919
|
+
* Polyline
|
|
5920
|
+
*
|
|
5921
|
+
* MultiPolygon
|
|
5922
|
+
*
|
|
5923
|
+
* Polygon
|
|
5924
|
+
*
|
|
5925
|
+
* Multipoint
|
|
5926
|
+
*
|
|
5903
5927
|
* IntergerArray
|
|
5904
5928
|
*
|
|
5905
5929
|
* DoubleArray
|
|
5906
5930
|
*
|
|
5907
5931
|
* StringArray
|
|
5908
5932
|
*
|
|
5909
|
-
* Boolean
|
|
5910
|
-
*
|
|
5911
5933
|
* SourceEql
|
|
5912
5934
|
*
|
|
5913
5935
|
* Layer
|
|
@@ -5918,9 +5940,9 @@ export interface TaskParameter {
|
|
|
5918
5940
|
*
|
|
5919
5941
|
* Json
|
|
5920
5942
|
*
|
|
5921
|
-
*
|
|
5943
|
+
* Attribute
|
|
5922
5944
|
*
|
|
5923
|
-
*
|
|
5945
|
+
* AttributeArray
|
|
5924
5946
|
*/
|
|
5925
5947
|
type?: WorkerSettingsFieldType;
|
|
5926
5948
|
/** Lookup values. */
|
|
@@ -5943,24 +5965,36 @@ export interface TaskParameterDc {
|
|
|
5943
5965
|
/**
|
|
5944
5966
|
*
|
|
5945
5967
|
*
|
|
5946
|
-
*
|
|
5968
|
+
* Int32
|
|
5969
|
+
*
|
|
5970
|
+
* Int64
|
|
5947
5971
|
*
|
|
5948
5972
|
* Double
|
|
5949
5973
|
*
|
|
5950
5974
|
* String
|
|
5951
5975
|
*
|
|
5952
|
-
*
|
|
5976
|
+
* Boolean
|
|
5977
|
+
*
|
|
5978
|
+
* DateTime
|
|
5979
|
+
*
|
|
5980
|
+
* Point
|
|
5953
5981
|
*
|
|
5954
5982
|
* Geometry
|
|
5955
5983
|
*
|
|
5984
|
+
* Polyline
|
|
5985
|
+
*
|
|
5986
|
+
* MultiPolygon
|
|
5987
|
+
*
|
|
5988
|
+
* Polygon
|
|
5989
|
+
*
|
|
5990
|
+
* Multipoint
|
|
5991
|
+
*
|
|
5956
5992
|
* IntergerArray
|
|
5957
5993
|
*
|
|
5958
5994
|
* DoubleArray
|
|
5959
5995
|
*
|
|
5960
5996
|
* StringArray
|
|
5961
5997
|
*
|
|
5962
|
-
* Boolean
|
|
5963
|
-
*
|
|
5964
5998
|
* SourceEql
|
|
5965
5999
|
*
|
|
5966
6000
|
* Layer
|
|
@@ -5971,9 +6005,9 @@ export interface TaskParameterDc {
|
|
|
5971
6005
|
*
|
|
5972
6006
|
* Json
|
|
5973
6007
|
*
|
|
5974
|
-
*
|
|
6008
|
+
* Attribute
|
|
5975
6009
|
*
|
|
5976
|
-
*
|
|
6010
|
+
* AttributeArray
|
|
5977
6011
|
*/
|
|
5978
6012
|
type?: WorkerSettingsFieldType;
|
|
5979
6013
|
/** Lookup values. */
|
|
@@ -6096,9 +6130,9 @@ export interface TaskResourceCreateDto {
|
|
|
6096
6130
|
}
|
|
6097
6131
|
/**
|
|
6098
6132
|
* TaskPrototypeSubType.
|
|
6099
|
-
|
|
6133
|
+
|
|
6100
6134
|
SpTask
|
|
6101
|
-
|
|
6135
|
+
|
|
6102
6136
|
PythonTask
|
|
6103
6137
|
*/
|
|
6104
6138
|
export declare enum TaskResourceSubType {
|
|
@@ -6114,24 +6148,36 @@ export interface TaskReturnType {
|
|
|
6114
6148
|
/**
|
|
6115
6149
|
*
|
|
6116
6150
|
*
|
|
6117
|
-
*
|
|
6151
|
+
* Int32
|
|
6152
|
+
*
|
|
6153
|
+
* Int64
|
|
6118
6154
|
*
|
|
6119
6155
|
* Double
|
|
6120
6156
|
*
|
|
6121
6157
|
* String
|
|
6122
6158
|
*
|
|
6123
|
-
*
|
|
6159
|
+
* Boolean
|
|
6160
|
+
*
|
|
6161
|
+
* DateTime
|
|
6162
|
+
*
|
|
6163
|
+
* Point
|
|
6124
6164
|
*
|
|
6125
6165
|
* Geometry
|
|
6126
6166
|
*
|
|
6167
|
+
* Polyline
|
|
6168
|
+
*
|
|
6169
|
+
* MultiPolygon
|
|
6170
|
+
*
|
|
6171
|
+
* Polygon
|
|
6172
|
+
*
|
|
6173
|
+
* Multipoint
|
|
6174
|
+
*
|
|
6127
6175
|
* IntergerArray
|
|
6128
6176
|
*
|
|
6129
6177
|
* DoubleArray
|
|
6130
6178
|
*
|
|
6131
6179
|
* StringArray
|
|
6132
6180
|
*
|
|
6133
|
-
* Boolean
|
|
6134
|
-
*
|
|
6135
6181
|
* SourceEql
|
|
6136
6182
|
*
|
|
6137
6183
|
* Layer
|
|
@@ -6142,9 +6188,9 @@ export interface TaskReturnType {
|
|
|
6142
6188
|
*
|
|
6143
6189
|
* Json
|
|
6144
6190
|
*
|
|
6145
|
-
*
|
|
6191
|
+
* Attribute
|
|
6146
6192
|
*
|
|
6147
|
-
*
|
|
6193
|
+
* AttributeArray
|
|
6148
6194
|
*/
|
|
6149
6195
|
type?: WorkerSettingsFieldType;
|
|
6150
6196
|
/** Name. */
|
|
@@ -6215,13 +6261,13 @@ export interface TestConnectionInfoDc {
|
|
|
6215
6261
|
}
|
|
6216
6262
|
/**
|
|
6217
6263
|
* Sets the horizontal alignment of text.
|
|
6218
|
-
|
|
6264
|
+
|
|
6219
6265
|
right
|
|
6220
|
-
|
|
6266
|
+
|
|
6221
6267
|
left
|
|
6222
|
-
|
|
6268
|
+
|
|
6223
6269
|
center
|
|
6224
|
-
|
|
6270
|
+
|
|
6225
6271
|
justified
|
|
6226
6272
|
*/
|
|
6227
6273
|
export declare enum TextAlignment {
|
|
@@ -6241,11 +6287,11 @@ export interface TextBackgroundDc {
|
|
|
6241
6287
|
}
|
|
6242
6288
|
/**
|
|
6243
6289
|
* Sets the vertical alignment of text.
|
|
6244
|
-
|
|
6290
|
+
|
|
6245
6291
|
top
|
|
6246
|
-
|
|
6292
|
+
|
|
6247
6293
|
bottom
|
|
6248
|
-
|
|
6294
|
+
|
|
6249
6295
|
middle
|
|
6250
6296
|
*/
|
|
6251
6297
|
export declare enum TextVerticalAlignment {
|
|
@@ -6695,6 +6741,8 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
|
6695
6741
|
type?: string | null;
|
|
6696
6742
|
eql?: string | null;
|
|
6697
6743
|
eqlParameters?: Record<string, any>;
|
|
6744
|
+
schemaName?: string | null;
|
|
6745
|
+
tableName?: string | null;
|
|
6698
6746
|
};
|
|
6699
6747
|
/**
|
|
6700
6748
|
* S3 data source settings.
|
|
@@ -6707,11 +6755,11 @@ export declare type WmsDataSourceDc = DataSourceDc & {
|
|
|
6707
6755
|
};
|
|
6708
6756
|
/**
|
|
6709
6757
|
*
|
|
6710
|
-
|
|
6758
|
+
|
|
6711
6759
|
Task
|
|
6712
|
-
|
|
6760
|
+
|
|
6713
6761
|
Rest
|
|
6714
|
-
|
|
6762
|
+
|
|
6715
6763
|
Both
|
|
6716
6764
|
*/
|
|
6717
6765
|
export declare enum WorkerMethodType {
|
|
@@ -6732,24 +6780,36 @@ export interface WorkerSettingsFieldDc {
|
|
|
6732
6780
|
/**
|
|
6733
6781
|
*
|
|
6734
6782
|
*
|
|
6735
|
-
*
|
|
6783
|
+
* Int32
|
|
6784
|
+
*
|
|
6785
|
+
* Int64
|
|
6736
6786
|
*
|
|
6737
6787
|
* Double
|
|
6738
6788
|
*
|
|
6739
6789
|
* String
|
|
6740
6790
|
*
|
|
6741
|
-
*
|
|
6791
|
+
* Boolean
|
|
6792
|
+
*
|
|
6793
|
+
* DateTime
|
|
6794
|
+
*
|
|
6795
|
+
* Point
|
|
6742
6796
|
*
|
|
6743
6797
|
* Geometry
|
|
6744
6798
|
*
|
|
6799
|
+
* Polyline
|
|
6800
|
+
*
|
|
6801
|
+
* MultiPolygon
|
|
6802
|
+
*
|
|
6803
|
+
* Polygon
|
|
6804
|
+
*
|
|
6805
|
+
* Multipoint
|
|
6806
|
+
*
|
|
6745
6807
|
* IntergerArray
|
|
6746
6808
|
*
|
|
6747
6809
|
* DoubleArray
|
|
6748
6810
|
*
|
|
6749
6811
|
* StringArray
|
|
6750
6812
|
*
|
|
6751
|
-
* Boolean
|
|
6752
|
-
*
|
|
6753
6813
|
* SourceEql
|
|
6754
6814
|
*
|
|
6755
6815
|
* Layer
|
|
@@ -6760,9 +6820,9 @@ export interface WorkerSettingsFieldDc {
|
|
|
6760
6820
|
*
|
|
6761
6821
|
* Json
|
|
6762
6822
|
*
|
|
6763
|
-
*
|
|
6823
|
+
* Attribute
|
|
6764
6824
|
*
|
|
6765
|
-
*
|
|
6825
|
+
* AttributeArray
|
|
6766
6826
|
*/
|
|
6767
6827
|
type?: WorkerSettingsFieldType;
|
|
6768
6828
|
/** Lookup values. */
|
|
@@ -6772,56 +6832,74 @@ export interface WorkerSettingsFieldDc {
|
|
|
6772
6832
|
}
|
|
6773
6833
|
/**
|
|
6774
6834
|
*
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6835
|
+
|
|
6836
|
+
Int32
|
|
6837
|
+
|
|
6838
|
+
Int64
|
|
6839
|
+
|
|
6778
6840
|
Double
|
|
6779
|
-
|
|
6841
|
+
|
|
6780
6842
|
String
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6843
|
+
|
|
6844
|
+
Boolean
|
|
6845
|
+
|
|
6846
|
+
DateTime
|
|
6847
|
+
|
|
6848
|
+
Point
|
|
6849
|
+
|
|
6784
6850
|
Geometry
|
|
6785
|
-
|
|
6851
|
+
|
|
6852
|
+
Polyline
|
|
6853
|
+
|
|
6854
|
+
MultiPolygon
|
|
6855
|
+
|
|
6856
|
+
Polygon
|
|
6857
|
+
|
|
6858
|
+
Multipoint
|
|
6859
|
+
|
|
6786
6860
|
IntergerArray
|
|
6787
|
-
|
|
6861
|
+
|
|
6788
6862
|
DoubleArray
|
|
6789
|
-
|
|
6863
|
+
|
|
6790
6864
|
StringArray
|
|
6791
|
-
|
|
6792
|
-
Boolean
|
|
6793
|
-
|
|
6865
|
+
|
|
6794
6866
|
SourceEql
|
|
6795
|
-
|
|
6867
|
+
|
|
6796
6868
|
Layer
|
|
6797
|
-
|
|
6869
|
+
|
|
6798
6870
|
Table
|
|
6799
|
-
|
|
6871
|
+
|
|
6800
6872
|
Folder
|
|
6801
|
-
|
|
6873
|
+
|
|
6802
6874
|
Json
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6875
|
+
|
|
6876
|
+
Attribute
|
|
6877
|
+
|
|
6878
|
+
AttributeArray
|
|
6807
6879
|
*/
|
|
6808
6880
|
export declare enum WorkerSettingsFieldType {
|
|
6809
|
-
|
|
6881
|
+
Int32 = "Int32",
|
|
6882
|
+
Int64 = "Int64",
|
|
6810
6883
|
Double = "Double",
|
|
6811
6884
|
String = "String",
|
|
6812
|
-
|
|
6885
|
+
Boolean = "Boolean",
|
|
6886
|
+
DateTime = "DateTime",
|
|
6887
|
+
Point = "Point",
|
|
6813
6888
|
Geometry = "Geometry",
|
|
6889
|
+
Polyline = "Polyline",
|
|
6890
|
+
MultiPolygon = "MultiPolygon",
|
|
6891
|
+
Polygon = "Polygon",
|
|
6892
|
+
Multipoint = "Multipoint",
|
|
6814
6893
|
IntergerArray = "IntergerArray",
|
|
6815
6894
|
DoubleArray = "DoubleArray",
|
|
6816
6895
|
StringArray = "StringArray",
|
|
6817
|
-
Boolean = "Boolean",
|
|
6818
6896
|
SourceEql = "SourceEql",
|
|
6819
6897
|
Layer = "Layer",
|
|
6820
6898
|
Table = "Table",
|
|
6821
6899
|
Folder = "Folder",
|
|
6822
6900
|
Json = "Json",
|
|
6823
|
-
|
|
6824
|
-
|
|
6901
|
+
Attribute = "Attribute",
|
|
6902
|
+
AttributeArray = "AttributeArray"
|
|
6825
6903
|
}
|
|
6826
6904
|
/**
|
|
6827
6905
|
* Worker post method params.
|
|
@@ -7808,7 +7886,7 @@ export interface ValidateExpressionParams {
|
|
|
7808
7886
|
/** Layer name. */
|
|
7809
7887
|
layerName: string;
|
|
7810
7888
|
}
|
|
7811
|
-
export interface
|
|
7889
|
+
export interface GetRasterMetaParams7 {
|
|
7812
7890
|
/**
|
|
7813
7891
|
* Min value for build histogram.
|
|
7814
7892
|
* @format double
|
|
@@ -7879,7 +7957,7 @@ export interface GetProjectsListParams {
|
|
|
7879
7957
|
/** Filter layers by set of tags. */
|
|
7880
7958
|
tags?: string[];
|
|
7881
7959
|
}
|
|
7882
|
-
export interface
|
|
7960
|
+
export interface DeleteResourcesParams9 {
|
|
7883
7961
|
/** Resource names. */
|
|
7884
7962
|
names?: string[];
|
|
7885
7963
|
}
|
|
@@ -8078,7 +8156,7 @@ export interface StatisticsDbParams {
|
|
|
8078
8156
|
*/
|
|
8079
8157
|
types?: AggregationFunction[];
|
|
8080
8158
|
}
|
|
8081
|
-
export interface
|
|
8159
|
+
export interface ClassifyParams5 {
|
|
8082
8160
|
/** Layer name. */
|
|
8083
8161
|
name: string;
|
|
8084
8162
|
/** Attribute name. */
|
|
@@ -8210,7 +8288,7 @@ export interface GetTableListParams {
|
|
|
8210
8288
|
/** All available permissions list. */
|
|
8211
8289
|
acl?: string;
|
|
8212
8290
|
}
|
|
8213
|
-
export interface
|
|
8291
|
+
export interface DeleteResourcesParams7 {
|
|
8214
8292
|
/** Resource names. */
|
|
8215
8293
|
names?: string[];
|
|
8216
8294
|
}
|
|
@@ -8321,7 +8399,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8321
8399
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8322
8400
|
AcceptFormats?: string[];
|
|
8323
8401
|
}
|
|
8324
|
-
export interface
|
|
8402
|
+
export interface GetCapabilitiesParams8 {
|
|
8325
8403
|
/** Output format of service metadata. */
|
|
8326
8404
|
Format?: string;
|
|
8327
8405
|
/** Must be WMS. */
|