@evergis/api 4.0.5 → 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.
@@ -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 {
@@ -729,23 +731,6 @@ export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
729
731
  startColor?: ParameterDcColor;
730
732
  endColor?: ParameterDcColor;
731
733
  };
732
- /**
733
- * Available area task.
734
- */
735
- export declare type AvailableAreaTaskDc = TaskParametersDc & {
736
- sourceLayer: string;
737
- targetLayer: string;
738
- duration?: string | null;
739
- providerName?: string | null;
740
- durationAttributeName?: string | null;
741
- routeCenterXAttributeName?: string | null;
742
- routeCenterYAttributeName?: string | null;
743
- baseObjectIdAttributeName?: string | null;
744
- idAttributeName?: string | null;
745
- geometryAttributeName?: string | null;
746
- service_type?: string | null;
747
- task_type?: string | null;
748
- };
749
734
  /**
750
735
  * Availiable values data contract.
751
736
  */
@@ -758,17 +743,6 @@ export interface AvailiableValuesDc {
758
743
  export interface Base64String {
759
744
  value?: string;
760
745
  }
761
- /**
762
- * The result of a server task step execution.
763
- */
764
- export declare type BaseStepResultDc = object;
765
- /**
766
- * Base dc of task data storage.
767
- */
768
- export interface BaseTaskDataStorageDc {
769
- /** Type of the data storage. */
770
- type: string;
771
- }
772
746
  /**
773
747
  * Provides resources with their acl.
774
748
  */
@@ -803,20 +777,6 @@ export interface BrushDc {
803
777
  /** Type of the brush. */
804
778
  type?: string;
805
779
  }
806
- /**
807
- * Buffer operation calculates the buffer geometries around the input geometries and writes them
808
- into the target storage.
809
- */
810
- export declare type BufferTaskDc = TaskParametersDc & {
811
- sourceLayer: string;
812
- targetLayer: string;
813
- radii: string[];
814
- baseObjectIdAttributeName?: string | null;
815
- radiusAttributeName?: string | null;
816
- attributesToCopy?: string[] | null;
817
- task_type?: string | null;
818
- service_type?: string | null;
819
- };
820
780
  /**
821
781
  * Get bulk extents data conteract.
822
782
  */
@@ -961,19 +921,19 @@ export interface CatalogResourceDc {
961
921
  }
962
922
  /**
963
923
  *
964
-
924
+
965
925
  None
966
-
926
+
967
927
  Map
968
-
928
+
969
929
  Layer
970
-
930
+
971
931
  Table
972
-
932
+
973
933
  File
974
-
934
+
975
935
  TaskPrototype
976
-
936
+
977
937
  DataSource
978
938
  */
979
939
  export declare enum CatalogResourceType {
@@ -1018,15 +978,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
1018
978
  };
1019
979
  /**
1020
980
  * Describes classification methods.
1021
-
981
+
1022
982
  none
1023
-
983
+
1024
984
  naturalBreaks
1025
-
985
+
1026
986
  equalInterval
1027
-
987
+
1028
988
  quantile
1029
-
989
+
1030
990
  unique
1031
991
  */
1032
992
  export declare enum ClassificationType {
@@ -1038,11 +998,11 @@ export declare enum ClassificationType {
1038
998
  }
1039
999
  /**
1040
1000
  *
1041
-
1001
+
1042
1002
  decimal
1043
-
1003
+
1044
1004
  dateTime
1045
-
1005
+
1046
1006
  text
1047
1007
  */
1048
1008
  export declare enum ClassifyAttributeType {
@@ -1178,55 +1138,55 @@ export interface ConfigDc {
1178
1138
  }
1179
1139
  /**
1180
1140
  *
1181
-
1141
+
1182
1142
  Unknown
1183
-
1143
+
1184
1144
  SerializeError
1185
-
1145
+
1186
1146
  InvalidDataService
1187
-
1147
+
1188
1148
  InvalidConfiguration
1189
-
1149
+
1190
1150
  InvalidDataServiceName
1191
-
1151
+
1192
1152
  InvalidTableName
1193
-
1153
+
1194
1154
  InvalidLayerName
1195
-
1155
+
1196
1156
  ResourceNotFound
1197
-
1157
+
1198
1158
  InvalidCondition
1199
-
1159
+
1200
1160
  InvalidAttributes
1201
-
1161
+
1202
1162
  InvalidIdAttribute
1203
-
1163
+
1204
1164
  InvalidGeometryAttribute
1205
-
1165
+
1206
1166
  InvalidGeometryAttributeType
1207
-
1167
+
1208
1168
  InvalidColumnName
1209
-
1169
+
1210
1170
  InvalidIdColumnSettings
1211
-
1171
+
1212
1172
  ColumnNotExistsInTable
1213
-
1173
+
1214
1174
  InvalidStyle
1215
-
1175
+
1216
1176
  InvalidLayerType
1217
-
1177
+
1218
1178
  ColumnLoadingError
1219
-
1179
+
1220
1180
  InvalidAttributeFormat
1221
-
1181
+
1222
1182
  DataSourceNotFound
1223
-
1183
+
1224
1184
  DuplicateColumns
1225
-
1185
+
1226
1186
  DuplicateAttributes
1227
-
1187
+
1228
1188
  TableWithoutColumns
1229
-
1189
+
1230
1190
  InvalidTableReferenceConfiguration
1231
1191
  */
1232
1192
  export declare enum ConfigurationErrorEnum {
@@ -1256,14 +1216,6 @@ export declare enum ConfigurationErrorEnum {
1256
1216
  TableWithoutColumns = "TableWithoutColumns",
1257
1217
  InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
1258
1218
  }
1259
- /**
1260
- * SPCore.Connectors.Connectors.Base.Models.RemoteTaskManager.CopyTask.Storages.ConfiguredLayerDataStorageDc provides configurable layer storage.
1261
- */
1262
- export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
1263
- type?: string | null;
1264
- serviceName: string;
1265
- attributesConfiguration?: AttributesConfigurationDc | EqlAttributesConfigurationDc | null;
1266
- };
1267
1219
  /**
1268
1220
  * Describes resource to copy.
1269
1221
  */
@@ -1334,34 +1286,6 @@ export interface CopyResourceResultDc {
1334
1286
  /** Resource error details. */
1335
1287
  errorDetails?: ErrorDetailsDc;
1336
1288
  }
1337
- /**
1338
- * Server task that copies the objects from one storage to another.
1339
- */
1340
- export declare type CopyTableTaskDc = TaskParametersDc & {
1341
- sourceLayer: string;
1342
- targetLayer: string;
1343
- attributeMapping?: Record<string, string | null>;
1344
- task_type?: string | null;
1345
- service_type?: string | null;
1346
- };
1347
- /**
1348
- * Buffer operation calculates the buffer geometries around the input geometries and writes them
1349
- into the target storage.
1350
- */
1351
- export declare type CopyTaskDc = TaskParametersDc & {
1352
- source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1353
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1354
- attributeMapping?: Record<string, string | null>;
1355
- attributeTypeMapping?: Record<string, AttributeType>;
1356
- task_type?: string | null;
1357
- service_type?: string | null;
1358
- };
1359
- /**
1360
- * The result of a server task step execution.
1361
- */
1362
- export declare type CopyTaskStepResultDc = StepResultDc & {
1363
- resourceId?: string | null;
1364
- };
1365
1289
  /**
1366
1290
  * Create directory request.
1367
1291
  */
@@ -1381,49 +1305,6 @@ export interface CreateDirectoryDc {
1381
1305
  /** Resource icon. */
1382
1306
  icon?: string;
1383
1307
  }
1384
- /**
1385
- * Upload raster task parameters data contract.
1386
- */
1387
- export declare type CreateRasterCogTaskDc = TaskParametersDc & {
1388
- layer: string;
1389
- srId: number;
1390
- file?: string | null;
1391
- attributes?: Record<string, any>;
1392
- overviewsCount: number;
1393
- bands?: number[] | null;
1394
- task_type?: string | null;
1395
- service_type?: string | null;
1396
- };
1397
- /**
1398
- * Upload raster task parameters data contract.
1399
- */
1400
- export declare type CreateRasterNetCdfTaskDc = TaskParametersDc & {
1401
- layer: string;
1402
- srId: number;
1403
- file: string;
1404
- variables?: string[] | null;
1405
- treatVariablesAsBands?: boolean;
1406
- dimExtraName?: string | null;
1407
- dimExtraValues?: string[] | null;
1408
- attributes?: Record<string, any>;
1409
- overviewsCount: number;
1410
- proj?: string | null;
1411
- task_type?: string | null;
1412
- service_type?: string | null;
1413
- };
1414
- /**
1415
- * Upload raster task parameters data contract.
1416
- */
1417
- export declare type CreateRasterVrtTaskDc = TaskParametersDc & {
1418
- layer: string;
1419
- srId: number;
1420
- overviewsCount: number;
1421
- rasters?: RasterVrtFeatureSourceDc[] | null;
1422
- attributes?: Record<string, any>;
1423
- maxZoomLevel: number;
1424
- task_type?: string | null;
1425
- service_type?: string | null;
1426
- };
1427
1308
  /**
1428
1309
  * Data contract for create new role.
1429
1310
  */
@@ -1528,18 +1409,17 @@ export interface CreateViewFromQueryLayerDc {
1528
1409
  layerCondition?: string;
1529
1410
  }
1530
1411
  /**
1531
- * Description of the temp file as a task data storage.
1412
+ * Created task result.
1532
1413
  */
1533
- export declare type CsvStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
1534
- attributeNameRowNumber?: number;
1535
- containsAliasRow?: boolean;
1536
- firstDataRowNumber?: number;
1537
- coordSourceFields: string[];
1538
- columnDelimiter?: string | null;
1539
- spatialReference?: number;
1540
- isWkt?: boolean;
1541
- type?: string | null;
1542
- };
1414
+ export interface CreatedTaskResultDto {
1415
+ /**
1416
+ * Id.
1417
+ * @format uuid
1418
+ */
1419
+ id?: string;
1420
+ /** Success flag. */
1421
+ success?: boolean;
1422
+ }
1543
1423
  /**
1544
1424
  * Describes stroked dashed brush.
1545
1425
  */
@@ -1624,13 +1504,13 @@ export interface DataSourceInfoDc {
1624
1504
  }
1625
1505
  /**
1626
1506
  *
1627
-
1507
+
1628
1508
  Postgres
1629
-
1509
+
1630
1510
  Trino
1631
-
1511
+
1632
1512
  S3
1633
-
1513
+
1634
1514
  GisServer
1635
1515
  */
1636
1516
  export declare enum DataSourceType {
@@ -1712,6 +1592,10 @@ export interface EqlRequestDc {
1712
1592
  ds?: string;
1713
1593
  /** EQL query string. */
1714
1594
  query: string;
1595
+ /** Geometry field name. */
1596
+ geometryField?: string;
1597
+ /** Id field name. */
1598
+ idField?: string;
1715
1599
  /**
1716
1600
  * Offset.
1717
1601
  * @format int32
@@ -1722,6 +1606,8 @@ export interface EqlRequestDc {
1722
1606
  * @format int32
1723
1607
  */
1724
1608
  limit?: number;
1609
+ /** With geometry. */
1610
+ withgeom?: boolean;
1725
1611
  /** Columns. */
1726
1612
  columns?: Record<string, string | null>;
1727
1613
  /** EQL query parameters. */
@@ -1755,15 +1641,15 @@ export interface ErrorDetailsDc {
1755
1641
  }
1756
1642
  /**
1757
1643
  * Type of the error.
1758
-
1644
+
1759
1645
  ResourceLimitExceeded
1760
-
1646
+
1761
1647
  ResourceNotFound
1762
-
1648
+
1763
1649
  InternalError
1764
-
1650
+
1765
1651
  BadRequest
1766
-
1652
+
1767
1653
  DuplicateContent
1768
1654
  */
1769
1655
  export declare enum ErrorDetailsType {
@@ -1805,18 +1691,6 @@ export declare enum ErrorType {
1805
1691
  EmailNotChanged = "EmailNotChanged",
1806
1692
  EmailNotSet = "EmailNotSet"
1807
1693
  }
1808
- /**
1809
- * Description of the temp file as a task data storage.
1810
- */
1811
- export declare type ExcelStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
1812
- attributeNameRowNumber?: number;
1813
- aliasRowNumber?: number;
1814
- firstDataRowNumber?: number;
1815
- coordSourceFields: string[];
1816
- spatialReference: number;
1817
- isWkt?: boolean;
1818
- type?: string | null;
1819
- };
1820
1694
  /**
1821
1695
  * Result of the eql expression validation.
1822
1696
  */
@@ -2052,7 +1926,7 @@ export interface FailedServiceInfoDc {
2052
1926
  /** The category of the service. */
2053
1927
  categories?: string[];
2054
1928
  /** Configuration of the service. */
2055
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
1929
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
2056
1930
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
2057
1931
  name: string;
2058
1932
  /** Resource alias. */
@@ -2061,8 +1935,6 @@ export interface FailedServiceInfoDc {
2061
1935
  owner?: string;
2062
1936
  /** Resource description. */
2063
1937
  description?: string;
2064
- /** Resource preview. */
2065
- preview?: string;
2066
1938
  /**
2067
1939
  * The date when resource was created.
2068
1940
  * @format date-time
@@ -2177,7 +2049,7 @@ export interface FeatureLayerServiceInfoDc {
2177
2049
  /** The category of the service. */
2178
2050
  categories?: string[];
2179
2051
  /** Configuration of the service. */
2180
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
2052
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
2181
2053
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
2182
2054
  name: string;
2183
2055
  /** Resource alias. */
@@ -2186,8 +2058,6 @@ export interface FeatureLayerServiceInfoDc {
2186
2058
  owner?: string;
2187
2059
  /** Resource description. */
2188
2060
  description?: string;
2189
- /** Resource preview. */
2190
- preview?: string;
2191
2061
  /**
2192
2062
  * The date when resource was created.
2193
2063
  * @format date-time
@@ -2229,58 +2099,6 @@ export interface FeatureLayerServiceInfoDc {
2229
2099
  /** Resource tags. */
2230
2100
  tags?: string[];
2231
2101
  }
2232
- export interface FeatureSelectionDc {
2233
- layerName: string;
2234
- groupName?: string;
2235
- /**
2236
- * Type of the feature.
2237
- *
2238
- * Unknown
2239
- *
2240
- * GeometricFeature
2241
- */
2242
- featureType: FeatureType;
2243
- /** Information about the layer attributes and their configuration. */
2244
- layerDefinition: LayerDefinitionDc;
2245
- features: FeatureSelectionEntryDc[];
2246
- symbols?: FeatureSymbolDc[];
2247
- }
2248
- export interface FeatureSelectionEntryDc {
2249
- /** Feature object definition. */
2250
- feature: FeatureDc;
2251
- /** @format int32 */
2252
- symbolId?: number;
2253
- }
2254
- export interface FeatureSymbolDc {
2255
- /** @format int32 */
2256
- id: number;
2257
- /** Feature symbol. */
2258
- definition?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2259
- image?: string;
2260
- }
2261
- /**
2262
- * Type of the feature.
2263
-
2264
- Unknown
2265
-
2266
- GeometricFeature
2267
- */
2268
- export declare enum FeatureType {
2269
- Unknown = "Unknown",
2270
- GeometricFeature = "GeometricFeature"
2271
- }
2272
- /**
2273
- * The response that contains a list of features.
2274
- */
2275
- export interface FeaturesListDc {
2276
- /** The features list. */
2277
- items: FeatureDc[];
2278
- /**
2279
- * Total count features.
2280
- * @format int64
2281
- */
2282
- totalCount: number;
2283
- }
2284
2102
  /**
2285
2103
  * The result of uploading a file.
2286
2104
  */
@@ -2369,11 +2187,11 @@ export interface FilterDc {
2369
2187
  }
2370
2188
  /**
2371
2189
  * Sets whether font should be styled.
2372
-
2190
+
2373
2191
  normal
2374
-
2192
+
2375
2193
  oblique
2376
-
2194
+
2377
2195
  italic
2378
2196
  */
2379
2197
  export declare enum FontStyle {
@@ -2383,27 +2201,27 @@ export declare enum FontStyle {
2383
2201
  }
2384
2202
  /**
2385
2203
  * Specifies the weight (or boldness) of the font.
2386
-
2204
+
2387
2205
  Thin
2388
-
2206
+
2389
2207
  ExtraLight
2390
-
2208
+
2391
2209
  Light
2392
-
2210
+
2393
2211
  SemiLight
2394
-
2212
+
2395
2213
  Normal
2396
-
2214
+
2397
2215
  Medium
2398
-
2216
+
2399
2217
  DemiBold
2400
-
2218
+
2401
2219
  Bold
2402
-
2220
+
2403
2221
  ExtraBold
2404
-
2222
+
2405
2223
  Black
2406
-
2224
+
2407
2225
  ExtraBlack
2408
2226
  */
2409
2227
  export declare enum FontWeight {
@@ -2437,12 +2255,6 @@ export interface FunctionInfoDc {
2437
2255
  /** List of function arguments. */
2438
2256
  arguments?: FunctionArgumentInfoDc[];
2439
2257
  }
2440
- /**
2441
- * Description of the temp file as a task data storage.
2442
- */
2443
- export declare type GdbStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
2444
- type?: string | null;
2445
- };
2446
2258
  /**
2447
2259
  * Geocode result.
2448
2260
  */
@@ -2472,19 +2284,6 @@ export interface GeocodeSuggestResultDc {
2472
2284
  /** Source id. */
2473
2285
  id?: string;
2474
2286
  }
2475
- /**
2476
- * Geocode task.
2477
- */
2478
- export declare type GeocodeTaskDc = TaskParametersDc & {
2479
- sourceLayer: string;
2480
- targetLayer: string;
2481
- geocodeFromGeometry?: boolean;
2482
- geocodeProviderName: string | null;
2483
- geocodeAttributeName?: string | null;
2484
- geocodeAddressAttributeName?: string | null;
2485
- service_type?: string | null;
2486
- task_type?: string | null;
2487
- };
2488
2287
  /**
2489
2288
  * Geometry data contract.
2490
2289
  */
@@ -2513,17 +2312,17 @@ export interface GeometryDc {
2513
2312
  }
2514
2313
  /**
2515
2314
  *
2516
-
2315
+
2517
2316
  unknown
2518
-
2317
+
2519
2318
  point
2520
-
2319
+
2521
2320
  polyline
2522
-
2321
+
2523
2322
  multipolygon
2524
-
2323
+
2525
2324
  envelope
2526
-
2325
+
2527
2326
  multipoint
2528
2327
  */
2529
2328
  export declare enum GeometryType {
@@ -2713,13 +2512,13 @@ export interface GridElementDc {
2713
2512
  }
2714
2513
  /**
2715
2514
  * Resource group.
2716
-
2515
+
2717
2516
  my
2718
-
2517
+
2719
2518
  role
2720
-
2519
+
2721
2520
  public
2722
-
2521
+
2723
2522
  all
2724
2523
  */
2725
2524
  export declare enum Group {
@@ -2967,17 +2766,6 @@ export interface ImportLayerDataSchema {
2967
2766
  /** Schema of a inner layers. */
2968
2767
  children?: ImportLayerDataSchema[];
2969
2768
  }
2970
- /**
2971
- * The description of the temporary features list as a server task data storage.
2972
- */
2973
- export declare type InMemoryTaskDataStorageDc = BaseTaskDataStorageDc & {
2974
- type?: string | null;
2975
- features: FeatureDc[];
2976
- idAttribute: string;
2977
- geometryAttribute: string;
2978
- geometryType: GeometryType;
2979
- spatialReference?: number;
2980
- };
2981
2769
  /**
2982
2770
  * Isolines label symbol.
2983
2771
  */
@@ -2985,12 +2773,6 @@ export declare type IsolinesLabelSymbolDc = LabelSymbolDc & {
2985
2773
  type?: string | null;
2986
2774
  placement?: ParameterDcString;
2987
2775
  };
2988
- /**
2989
- * Description of the temp file as a task data storage.
2990
- */
2991
- export declare type KmlStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
2992
- type?: string | null;
2993
- };
2994
2776
  /**
2995
2777
  * Base class for labels.
2996
2778
  */
@@ -3115,15 +2897,6 @@ export interface LayerReferenceConfigurationDc {
3115
2897
  /** Id of the reference. */
3116
2898
  referenceId?: string;
3117
2899
  }
3118
- /**
3119
- * The description of the layer service as a server task data storage.
3120
- */
3121
- export declare type LayerTaskDataStorageDc = BaseTaskDataStorageDc & {
3122
- serviceName: string;
3123
- condition?: string | null;
3124
- createNewService?: boolean;
3125
- type?: string | null;
3126
- };
3127
2900
  /**
3128
2901
  * Layer template model data contract.
3129
2902
  */
@@ -3272,13 +3045,13 @@ export interface LegendTemplateModelDc {
3272
3045
  }
3273
3046
  /**
3274
3047
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
3275
-
3048
+
3276
3049
  Flat
3277
-
3050
+
3278
3051
  Square
3279
-
3052
+
3280
3053
  Round
3281
-
3054
+
3282
3055
  Triangle
3283
3056
  */
3284
3057
  export declare enum LineCapStyle {
@@ -3322,29 +3095,29 @@ export interface LineEndingBaseDc {
3322
3095
  }
3323
3096
  /**
3324
3097
  * Type of the line ending.
3325
-
3098
+
3326
3099
  none
3327
-
3100
+
3328
3101
  arrow
3329
-
3102
+
3330
3103
  filledArrow
3331
-
3104
+
3332
3105
  square
3333
-
3106
+
3334
3107
  filledSquare
3335
-
3108
+
3336
3109
  circle
3337
-
3110
+
3338
3111
  filledCircle
3339
-
3112
+
3340
3113
  diamond
3341
-
3114
+
3342
3115
  filledDiamond
3343
-
3116
+
3344
3117
  roundSquare
3345
-
3118
+
3346
3119
  filledRoundSquare
3347
-
3120
+
3348
3121
  svg
3349
3122
  */
3350
3123
  export declare enum LineEndingType {
@@ -3363,11 +3136,11 @@ export declare enum LineEndingType {
3363
3136
  }
3364
3137
  /**
3365
3138
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
3366
-
3139
+
3367
3140
  Miter
3368
-
3141
+
3369
3142
  Bevel
3370
-
3143
+
3371
3144
  Round
3372
3145
  */
3373
3146
  export declare enum LineJoinType {
@@ -3425,14 +3198,6 @@ export interface ListResourcesDto {
3425
3198
  /** Filter by set of roles permissions. */
3426
3199
  aclFilter?: Record<string, Permissions>;
3427
3200
  }
3428
- /**
3429
- * Configuration for the local tile service.
3430
- */
3431
- export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
3432
- tileInfo?: TileInfoDc;
3433
- useRedisCache?: boolean;
3434
- cacheExpire?: number;
3435
- };
3436
3201
  /**
3437
3202
  * Tile LOD structure.
3438
3203
  */
@@ -3472,7 +3237,7 @@ export interface LoginResultDc {
3472
3237
  }
3473
3238
  /**
3474
3239
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
3475
-
3240
+
3476
3241
  SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
3477
3242
  */
3478
3243
  export interface MapTableInfoDc {
@@ -3572,44 +3337,12 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
3572
3337
  };
3573
3338
  export declare type ObjectId = object;
3574
3339
  /**
3575
- *
3576
-
3577
- Unknown
3578
-
3579
- union
3580
-
3581
- intersection
3582
-
3583
- subtraction
3584
-
3585
- symDifference
3586
- */
3587
- export declare enum Operation {
3588
- Unknown = "Unknown",
3589
- Union = "union",
3590
- Intersection = "intersection",
3591
- Subtraction = "subtraction",
3592
- SymDifference = "symDifference"
3593
- }
3594
- /**
3595
- * Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
3596
- */
3597
- export declare type OverlayTaskDc = TaskParametersDc & {
3598
- sourceLayer: string;
3599
- targetLayer: string;
3600
- overlayLayer: string;
3601
- operation: Operation;
3602
- AttributesToCopy?: string[] | null;
3603
- task_type?: string | null;
3604
- service_type?: string | null;
3605
- };
3606
- /**
3607
3340
  * Filter exists resources by owner.
3608
-
3341
+
3609
3342
  My
3610
-
3343
+
3611
3344
  Shared
3612
-
3345
+
3613
3346
  Public
3614
3347
  */
3615
3348
  export declare enum OwnerFilter {
@@ -3835,9 +3568,9 @@ export declare type PatternBrushDc = FillBrushDc & {
3835
3568
  };
3836
3569
  /**
3837
3570
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3838
-
3571
+
3839
3572
  xyz
3840
-
3573
+
3841
3574
  tms
3842
3575
  */
3843
3576
  export declare enum PbfSchema {
@@ -3858,19 +3591,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
3858
3591
  };
3859
3592
  /**
3860
3593
  *
3861
-
3594
+
3862
3595
  none
3863
-
3596
+
3864
3597
  configure
3865
-
3598
+
3866
3599
  write
3867
-
3600
+
3868
3601
  read
3869
-
3602
+
3870
3603
  read,configure
3871
-
3604
+
3872
3605
  read,write
3873
-
3606
+
3874
3607
  read,write,configure
3875
3608
  */
3876
3609
  export declare enum Permissions {
@@ -3922,21 +3655,21 @@ export interface PolicyDc {
3922
3655
  }
3923
3656
  /**
3924
3657
  * Type of the authorization policy.
3925
-
3658
+
3926
3659
  Unknown
3927
-
3660
+
3928
3661
  CreateTable
3929
-
3662
+
3930
3663
  CreateLayer
3931
-
3664
+
3932
3665
  CreateProject
3933
-
3666
+
3934
3667
  MaxFeaturesInOneTable
3935
-
3668
+
3936
3669
  MaxObjectsToExport
3937
-
3670
+
3938
3671
  MaxUploadContentSize
3939
-
3672
+
3940
3673
  MaxEqlQueryParametersValues
3941
3674
  */
3942
3675
  export declare enum PolicyType {
@@ -4125,7 +3858,7 @@ export interface ProjectConfigurationDc {
4125
3858
  */
4126
3859
  export interface ProjectContentItemDc {
4127
3860
  /** Item name. */
4128
- name: string;
3861
+ name?: string;
4129
3862
  /** Specifies name of the item in project. */
4130
3863
  clientData?: any;
4131
3864
  /** Client data storage. Storage isn't used by server. */
@@ -4273,7 +4006,7 @@ export interface ProxyServiceInfoDc {
4273
4006
  /** The category of the service. */
4274
4007
  categories?: string[];
4275
4008
  /** Configuration of the service. */
4276
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4009
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4277
4010
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4278
4011
  name: string;
4279
4012
  /** Resource alias. */
@@ -4282,8 +4015,6 @@ export interface ProxyServiceInfoDc {
4282
4015
  owner?: string;
4283
4016
  /** Resource description. */
4284
4017
  description?: string;
4285
- /** Resource preview. */
4286
- preview?: string;
4287
4018
  /**
4288
4019
  * The date when resource was created.
4289
4020
  * @format date-time
@@ -4342,9 +4073,9 @@ export declare type PythonServiceInfoDc = ProxyServiceInfoDc & object;
4342
4073
  */
4343
4074
  export interface PythonServiceMethodDc {
4344
4075
  /** Python script file name. */
4345
- scriptFile?: string;
4076
+ fileName?: string;
4346
4077
  /** Python script method name. */
4347
- scriptMethod?: string;
4078
+ methodName?: string;
4348
4079
  /** Python script default parameters. */
4349
4080
  parameters?: any;
4350
4081
  }
@@ -4352,10 +4083,12 @@ export interface PythonServiceMethodDc {
4352
4083
  * TaskMethodConfiguration.
4353
4084
  */
4354
4085
  export interface PythonTaskMethodConfiguration {
4355
- /** Gets or sets script. */
4356
- script?: string;
4086
+ /** Gets or sets script file name. */
4087
+ fileName?: string;
4357
4088
  /** Gets or sets method. */
4358
- method?: string;
4089
+ methodName?: string;
4090
+ /** Gets or sets method init error. */
4091
+ error?: string;
4359
4092
  /** Gets or sets description. */
4360
4093
  description?: string;
4361
4094
  /** Parameters. */
@@ -4363,13 +4096,20 @@ export interface PythonTaskMethodConfiguration {
4363
4096
  /** TaskReturnType. */
4364
4097
  return?: TaskReturnType;
4365
4098
  }
4099
+ /**
4100
+ * PythonTaskMethodConfigurationDc.
4101
+ */
4102
+ export declare type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
4103
+ fileName?: string | null;
4104
+ methodName?: string | null;
4105
+ };
4366
4106
  /**
4367
4107
  * Stream quality.
4368
-
4108
+
4369
4109
  Low
4370
-
4110
+
4371
4111
  Medium
4372
-
4112
+
4373
4113
  High
4374
4114
  */
4375
4115
  export declare enum Quality {
@@ -4521,7 +4261,7 @@ export interface QueryLayerServiceInfoDc {
4521
4261
  /** The category of the service. */
4522
4262
  categories?: string[];
4523
4263
  /** Configuration of the service. */
4524
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4264
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4525
4265
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4526
4266
  name: string;
4527
4267
  /** Resource alias. */
@@ -4530,8 +4270,6 @@ export interface QueryLayerServiceInfoDc {
4530
4270
  owner?: string;
4531
4271
  /** Resource description. */
4532
4272
  description?: string;
4533
- /** Resource preview. */
4534
- preview?: string;
4535
4273
  /**
4536
4274
  * The date when resource was created.
4537
4275
  * @format date-time
@@ -4725,18 +4463,6 @@ export declare type RasterSymbolDc = SymbolDc & {
4725
4463
  band?: RasterBandCfg;
4726
4464
  bandA?: RasterBandCfg;
4727
4465
  };
4728
- /**
4729
- * Raster layer with feature id data contract.
4730
- */
4731
- export interface RasterVrtFeatureSourceDc {
4732
- /** Raster layer name. */
4733
- layer: string;
4734
- /**
4735
- * Feature id.
4736
- * @format int64
4737
- */
4738
- id: number;
4739
- }
4740
4466
  /**
4741
4467
  * Refresh token request data contract.
4742
4468
  */
@@ -4785,6 +4511,38 @@ export interface RegisterUserDc {
4785
4511
  /** Password. */
4786
4512
  password?: string;
4787
4513
  }
4514
+ /**
4515
+ * RemoteTaskStatus enum.
4516
+
4517
+ Init
4518
+
4519
+ Process
4520
+
4521
+ Completed
4522
+
4523
+ Interrupted
4524
+
4525
+ Error
4526
+
4527
+ Timeout
4528
+
4529
+ Waiting
4530
+
4531
+ InQueue
4532
+
4533
+ Unknown
4534
+ */
4535
+ export declare enum RemoteTaskStatus {
4536
+ Init = "Init",
4537
+ Process = "Process",
4538
+ Completed = "Completed",
4539
+ Interrupted = "Interrupted",
4540
+ Error = "Error",
4541
+ Timeout = "Timeout",
4542
+ Waiting = "Waiting",
4543
+ InQueue = "InQueue",
4544
+ Unknown = "Unknown"
4545
+ }
4788
4546
  /**
4789
4547
  * Configuration for the remote tile service.
4790
4548
  */
@@ -4821,11 +4579,111 @@ export interface RemoteTileServiceInfo {
4821
4579
  /**
4822
4580
  * Service info for a tile service.
4823
4581
  */
4824
- export declare type RemoteTileServiceInfoDc = TileServiceInfoDc & {
4825
- sourceUrl?: string | null;
4826
- sourceUrlMask?: string | null;
4827
- sourceServers?: string[] | null;
4828
- };
4582
+ export interface RemoteTileServiceInfoDc {
4583
+ /** Tile info structure. */
4584
+ tileInfo: TileInfoDc;
4585
+ /** Copyright text. */
4586
+ copyrightText?: string;
4587
+ /** SourceBatch server address. */
4588
+ sourceUrl?: string;
4589
+ /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
4590
+ sourceUrlMask?: string;
4591
+ /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
4592
+ sourceServers?: string[];
4593
+ /** The type of the resource. */
4594
+ type: string;
4595
+ /**
4596
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4597
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
4598
+ * @format double
4599
+ */
4600
+ minResolution?: number;
4601
+ /**
4602
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4603
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
4604
+ * @format double
4605
+ */
4606
+ maxResolution?: number;
4607
+ /**
4608
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
4609
+ * for the given service type, null is returned.
4610
+ */
4611
+ condition?: string;
4612
+ /**
4613
+ *
4614
+ *
4615
+ * unknown
4616
+ *
4617
+ * point
4618
+ *
4619
+ * polyline
4620
+ *
4621
+ * multipolygon
4622
+ *
4623
+ * envelope
4624
+ *
4625
+ * multipoint
4626
+ */
4627
+ geometryType: GeometryType;
4628
+ /**
4629
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4630
+ * 0 is returned.
4631
+ * @format int32
4632
+ */
4633
+ objectCount?: number;
4634
+ /** The category of the service. */
4635
+ categories?: string[];
4636
+ /** Configuration of the service. */
4637
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4638
+ /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4639
+ name: string;
4640
+ /** Resource alias. */
4641
+ alias?: string;
4642
+ /** Resource owner. */
4643
+ owner?: string;
4644
+ /** Resource description. */
4645
+ description?: string;
4646
+ /**
4647
+ * The date when resource was created.
4648
+ * @format date-time
4649
+ */
4650
+ createdDate?: string;
4651
+ /**
4652
+ * The date when resource was last modified.
4653
+ * @format date-time
4654
+ */
4655
+ changedDate?: string;
4656
+ /**
4657
+ *
4658
+ *
4659
+ * none
4660
+ *
4661
+ * configure
4662
+ *
4663
+ * write
4664
+ *
4665
+ * read
4666
+ *
4667
+ * read,configure
4668
+ *
4669
+ * read,write
4670
+ *
4671
+ * read,write,configure
4672
+ */
4673
+ permissions?: Permissions;
4674
+ /** Access control list for a security object. */
4675
+ acl?: AccessControlListDc;
4676
+ /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4677
+ icon?: string;
4678
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4679
+ invisibleInCatalog?: boolean;
4680
+ /** Parent id in resources catalog. */
4681
+ parentId?: string;
4682
+ /** Resource id in resources catalog. */
4683
+ resourceId?: string;
4684
+ /** Resource tags. */
4685
+ tags?: string[];
4686
+ }
4829
4687
  /**
4830
4688
  * Provides resource and its acl.
4831
4689
  */
@@ -4856,8 +4714,6 @@ export interface ResourceInfoDc {
4856
4714
  owner?: string;
4857
4715
  /** Resource description. */
4858
4716
  description?: string;
4859
- /** Resource preview. */
4860
- preview?: string;
4861
4717
  /**
4862
4718
  * The date when resource was created.
4863
4719
  * @format date-time
@@ -4912,15 +4768,15 @@ export interface ResourceParentDc {
4912
4768
  }
4913
4769
  /**
4914
4770
  * Resources types filter.
4915
-
4771
+
4916
4772
  RemoteTileService
4917
-
4773
+
4918
4774
  ProxyService
4919
-
4775
+
4920
4776
  PostgresLayerService
4921
-
4777
+
4922
4778
  QueryLayerService
4923
-
4779
+
4924
4780
  TileCatalogTable
4925
4781
  */
4926
4782
  export declare enum ResourceSubTypeFilter {
@@ -4932,21 +4788,21 @@ export declare enum ResourceSubTypeFilter {
4932
4788
  }
4933
4789
  /**
4934
4790
  *
4935
-
4791
+
4936
4792
  Unknown
4937
-
4793
+
4938
4794
  table
4939
-
4795
+
4940
4796
  layer
4941
-
4797
+
4942
4798
  project
4943
-
4799
+
4944
4800
  file
4945
-
4801
+
4946
4802
  feature
4947
-
4803
+
4948
4804
  tag
4949
-
4805
+
4950
4806
  datasource
4951
4807
  */
4952
4808
  export declare enum ResourceType {
@@ -4961,22 +4817,24 @@ export declare enum ResourceType {
4961
4817
  }
4962
4818
  /**
4963
4819
  * Resources types filter.
4964
-
4820
+
4965
4821
  Map
4966
-
4822
+
4967
4823
  Layer
4968
-
4824
+
4969
4825
  Table
4970
-
4826
+
4971
4827
  RasterCatalog
4972
-
4828
+
4973
4829
  ProxyService
4974
-
4830
+
4975
4831
  RemoteTileService
4976
-
4832
+
4977
4833
  File
4978
-
4834
+
4979
4835
  DataSource
4836
+
4837
+ TaskPrototype
4980
4838
  */
4981
4839
  export declare enum ResourceTypeFilter {
4982
4840
  Map = "Map",
@@ -4986,7 +4844,8 @@ export declare enum ResourceTypeFilter {
4986
4844
  ProxyService = "ProxyService",
4987
4845
  RemoteTileService = "RemoteTileService",
4988
4846
  File = "File",
4989
- DataSource = "DataSource"
4847
+ DataSource = "DataSource",
4848
+ TaskPrototype = "TaskPrototype"
4990
4849
  }
4991
4850
  export declare enum ResourceTypeLink {
4992
4851
  Table = "tables",
@@ -4995,9 +4854,9 @@ export declare enum ResourceTypeLink {
4995
4854
  }
4996
4855
  /**
4997
4856
  *
4998
-
4857
+
4999
4858
  code
5000
-
4859
+
5001
4860
  token
5002
4861
  */
5003
4862
  export declare enum ResponseType {
@@ -5113,30 +4972,6 @@ export interface RouteSourceFeatureDc {
5113
4972
  export declare type RouteTableConfigurationDc = TableConfigurationBaseDc & {
5114
4973
  type?: string | null;
5115
4974
  };
5116
- /**
5117
- * Information about a routing provider.
5118
- */
5119
- export interface RoutingProviderInfoDc {
5120
- /**
5121
- * Name of the routing provider. This name should be used in the requests, when this routing provider
5122
- * should be used.
5123
- */
5124
- name?: string;
5125
- /** Type of the routing provider. */
5126
- type?: string;
5127
- /** Routing profile (e.g. car, walking, bicycle etc.) */
5128
- profile?: string;
5129
- /**
5130
- * Timeout in seconds.
5131
- * @format int32
5132
- */
5133
- timeout?: number;
5134
- /**
5135
- * Max points in single batch.
5136
- * @format int32
5137
- */
5138
- maxPointsInBatch?: number;
5139
- }
5140
4975
  /**
5141
4976
  * S3 data source settings.
5142
4977
  */
@@ -5186,6 +5021,30 @@ export interface ScaleBarElementDc {
5186
5021
  /** Check what this model element enabled. */
5187
5022
  enabled?: boolean;
5188
5023
  }
5024
+ /**
5025
+ * SearchResults.
5026
+ */
5027
+ export interface SearchResultsDtoTaskDto {
5028
+ /**
5029
+ * Count.
5030
+ * @format int64
5031
+ */
5032
+ count?: number;
5033
+ /** Results. */
5034
+ results?: TaskDto[];
5035
+ }
5036
+ /**
5037
+ * SearchResults.
5038
+ */
5039
+ export interface SearchResultsDtoTaskPrototypeDto {
5040
+ /**
5041
+ * Count.
5042
+ * @format int64
5043
+ */
5044
+ count?: number;
5045
+ /** Results. */
5046
+ results?: TaskPrototypeDto[];
5047
+ }
5189
5048
  /**
5190
5049
  * Suggest user information.
5191
5050
  */
@@ -5207,8 +5066,6 @@ export interface ServerInfoDc {
5207
5066
  application?: string;
5208
5067
  /** Version number of the server build. */
5209
5068
  version?: string;
5210
- /** Information about the available routing providers. */
5211
- routingProviders?: RoutingProviderInfoDc[];
5212
5069
  /**
5213
5070
  * Date and time when the server was started.
5214
5071
  * @format date-time
@@ -5290,7 +5147,6 @@ export interface ServiceInfo {
5290
5147
  changedDate?: string;
5291
5148
  parameters?: {
5292
5149
  Category?: string[];
5293
- Preview?: string[];
5294
5150
  GeometryType?: string[];
5295
5151
  DependentResource?: string[];
5296
5152
  ResolutionFilter?: string[];
@@ -5307,7 +5163,6 @@ export interface ServiceInfo {
5307
5163
  parentId?: string;
5308
5164
  resourceId?: string;
5309
5165
  sourcePath?: string;
5310
- preview?: string;
5311
5166
  }
5312
5167
  /**
5313
5168
  * The `ServiceInfoDc` provides information about the service.
@@ -5320,7 +5175,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
5320
5175
  geometryType: GeometryType;
5321
5176
  objectCount?: number;
5322
5177
  categories?: string[] | null;
5323
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
5178
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
5324
5179
  };
5325
5180
  /**
5326
5181
  * List of the services in service manager.
@@ -5370,8 +5225,6 @@ export interface ServiceListItemDc {
5370
5225
  * read,write,configure
5371
5226
  */
5372
5227
  permissions?: Permissions;
5373
- /** Name of the preview file in the resource preview storage. */
5374
- preview?: string;
5375
5228
  /**
5376
5229
  * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
5377
5230
  * style of the service, or if no such property is available for this type of the service, 0 is returned.
@@ -5463,7 +5316,7 @@ export interface SimpleEndingDc {
5463
5316
  }
5464
5317
  /**
5465
5318
  * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
5466
-
5319
+
5467
5320
  If the ending is set to be other then None, the size and color of the ending will be calculated based on the
5468
5321
  stroke width and color of the symbol.
5469
5322
  */
@@ -5538,11 +5391,11 @@ export interface SimplifyInfoItemDc {
5538
5391
  }
5539
5392
  /**
5540
5393
  *
5541
-
5394
+
5542
5395
  Basic
5543
-
5396
+
5544
5397
  PreserveTopology
5545
-
5398
+
5546
5399
  VW
5547
5400
  */
5548
5401
  export declare enum SimplifyType {
@@ -5584,6 +5437,12 @@ export interface SpTaskMethodConfiguration {
5584
5437
  /** TaskReturnType. */
5585
5438
  return?: TaskReturnType;
5586
5439
  }
5440
+ /**
5441
+ * SpTaskMethodConfiguration.
5442
+ */
5443
+ export declare type SpTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
5444
+ method?: string | null;
5445
+ };
5587
5446
  /**
5588
5447
  * Empty square ending.
5589
5448
  */
@@ -5620,14 +5479,6 @@ export interface SrInfo {
5620
5479
  /** Name. */
5621
5480
  name?: string;
5622
5481
  }
5623
- /**
5624
- * Description of the temp file as a task data storage.
5625
- */
5626
- export declare type StaticTaskDataStorageDc = BaseTaskDataStorageDc & {
5627
- fileName: string;
5628
- layerName?: string | null;
5629
- type?: string | null;
5630
- };
5631
5482
  /**
5632
5483
  * Statistics result.
5633
5484
  */
@@ -5688,31 +5539,15 @@ export interface StatisticsResultObject {
5688
5539
  /** Value. */
5689
5540
  value?: any;
5690
5541
  }
5691
- /**
5692
- * The result of a server task step execution.
5693
- */
5694
- export declare type StepResultDc = BaseStepResultDc & {
5695
- stepName?: string | null;
5696
- inputSource?: string | null;
5697
- outSource?: string | null;
5698
- startedTime?: string;
5699
- endedTime?: string;
5700
- batchErrors?: string[] | null;
5701
- batchCount?: number;
5702
- inputObjectCount?: number;
5703
- errorCount?: number;
5704
- outputObjectCount?: number;
5705
- resultDetails?: Record<string, number>;
5706
- };
5707
5542
  /**
5708
5543
  *
5709
-
5544
+
5710
5545
  None
5711
-
5546
+
5712
5547
  Image
5713
-
5548
+
5714
5549
  PkkCode
5715
-
5550
+
5716
5551
  Attachments
5717
5552
  */
5718
5553
  export declare enum StringSubType {
@@ -5780,6 +5615,69 @@ export interface SubTaskSettingsDto {
5780
5615
  /** StartParameters. */
5781
5616
  startParameters?: any;
5782
5617
  }
5618
+ /**
5619
+ * SubTasksDto.
5620
+ */
5621
+ export interface SubTasksDto {
5622
+ /**
5623
+ * Id.
5624
+ * @format uuid
5625
+ */
5626
+ id?: string;
5627
+ /**
5628
+ * Order.
5629
+ * @format int32
5630
+ */
5631
+ order?: number;
5632
+ /** Type. */
5633
+ type?: string;
5634
+ /**
5635
+ * Started.
5636
+ * @format date-time
5637
+ */
5638
+ started?: string;
5639
+ /**
5640
+ * Ended.
5641
+ * @format date-time
5642
+ */
5643
+ ended?: string;
5644
+ /**
5645
+ * RemoteTaskStatus enum.
5646
+ *
5647
+ * Init
5648
+ *
5649
+ * Process
5650
+ *
5651
+ * Completed
5652
+ *
5653
+ * Interrupted
5654
+ *
5655
+ * Error
5656
+ *
5657
+ * Timeout
5658
+ *
5659
+ * Waiting
5660
+ *
5661
+ * InQueue
5662
+ *
5663
+ * Unknown
5664
+ */
5665
+ status?: RemoteTaskStatus;
5666
+ /**
5667
+ * Process.
5668
+ * @format int64
5669
+ */
5670
+ process?: number;
5671
+ /**
5672
+ * Max.
5673
+ * @format int64
5674
+ */
5675
+ max?: number;
5676
+ /** ErrorMessage. */
5677
+ errorMessage?: string;
5678
+ /** Results. */
5679
+ results?: Record<string, any>;
5680
+ }
5783
5681
  /**
5784
5682
  * Provides properties overrides svg attributes.
5785
5683
  */
@@ -5878,12 +5776,6 @@ export interface SymbolInfoDc {
5878
5776
  */
5879
5777
  categoryId?: number;
5880
5778
  }
5881
- /**
5882
- * Description of the temp file as a task data storage.
5883
- */
5884
- export declare type TabStaticTaskDataStorageDc = StaticTaskDataStorageDc & {
5885
- type?: string | null;
5886
- };
5887
5779
  /**
5888
5780
  * Common fields for table configurations.
5889
5781
  */
@@ -5905,13 +5797,6 @@ export declare type TableInfoDc = ResourceInfoDc & {
5905
5797
  * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
5906
5798
  */
5907
5799
  export declare type TableListDc = PagedListTableInfoDc & object;
5908
- /**
5909
- * Data storage that allows accessing features directly from the tables.
5910
- */
5911
- export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
5912
- tableName: string;
5913
- type?: string | null;
5914
- };
5915
5800
  /**
5916
5801
  * Tags filter.
5917
5802
  */
@@ -5925,9 +5810,9 @@ export interface TagsFilterDto {
5925
5810
  useAnd?: boolean;
5926
5811
  }
5927
5812
  /**
5928
- * TaskConfiguration.
5813
+ * TaskConfigurationDc.
5929
5814
  */
5930
- export interface TaskConfiguration {
5815
+ export interface TaskConfigurationDc {
5931
5816
  /**
5932
5817
  * TaskPrototypeSubType.
5933
5818
  *
@@ -5943,18 +5828,64 @@ export interface TaskConfiguration {
5943
5828
  /** ImportMethods. */
5944
5829
  importMethods?: string[];
5945
5830
  /** UserConfiguration. */
5946
- userConfiguration?: TaskMethodConfiguration[];
5831
+ userConfiguration?: (PythonTaskMethodConfigurationDc | SpTaskMethodConfigurationDc)[];
5947
5832
  /** DefaultConfiguration. */
5948
- defaultConfiguration?: TaskMethodConfiguration[];
5833
+ defaultConfiguration?: (PythonTaskMethodConfigurationDc | SpTaskMethodConfigurationDc)[];
5834
+ /** User ui configuration. */
5835
+ uiConfiguration?: any;
5836
+ }
5837
+ /**
5838
+ * TaskDto.
5839
+ */
5840
+ export interface TaskDto {
5841
+ /**
5842
+ * Id.
5843
+ * @format uuid
5844
+ */
5845
+ id?: string;
5846
+ /**
5847
+ * RemoteTaskStatus enum.
5848
+ *
5849
+ * Init
5850
+ *
5851
+ * Process
5852
+ *
5853
+ * Completed
5854
+ *
5855
+ * Interrupted
5856
+ *
5857
+ * Error
5858
+ *
5859
+ * Timeout
5860
+ *
5861
+ * Waiting
5862
+ *
5863
+ * InQueue
5864
+ *
5865
+ * Unknown
5866
+ */
5867
+ status?: RemoteTaskStatus;
5868
+ /**
5869
+ * Started.
5870
+ * @format date-time
5871
+ */
5872
+ started?: string;
5873
+ /**
5874
+ * Ended.
5875
+ * @format date-time
5876
+ */
5877
+ ended?: string;
5878
+ /** ForceExecution. */
5879
+ forceExecution?: boolean;
5949
5880
  }
5950
5881
  /**
5951
5882
  * TaskMethodConfiguration.
5952
5883
  */
5953
- export interface TaskMethodConfiguration {
5884
+ export interface TaskMethodConfigurationDc {
5954
5885
  /** Gets or sets description. */
5955
5886
  description?: string;
5956
5887
  /** Parameters. */
5957
- parameters?: TaskParameter[];
5888
+ parameters?: TaskParameterDc[];
5958
5889
  /** TaskReturnType. */
5959
5890
  return?: TaskReturnType;
5960
5891
  }
@@ -5969,24 +5900,101 @@ export interface TaskParameter {
5969
5900
  /**
5970
5901
  *
5971
5902
  *
5972
- * Integer
5903
+ * Int32
5904
+ *
5905
+ * Int64
5973
5906
  *
5974
5907
  * Double
5975
5908
  *
5976
5909
  * String
5977
5910
  *
5978
- * Extent
5911
+ * Boolean
5912
+ *
5913
+ * DateTime
5914
+ *
5915
+ * Point
5979
5916
  *
5980
5917
  * Geometry
5981
5918
  *
5919
+ * Polyline
5920
+ *
5921
+ * MultiPolygon
5922
+ *
5923
+ * Polygon
5924
+ *
5925
+ * Multipoint
5926
+ *
5982
5927
  * IntergerArray
5983
5928
  *
5984
5929
  * DoubleArray
5985
5930
  *
5986
5931
  * StringArray
5987
5932
  *
5933
+ * SourceEql
5934
+ *
5935
+ * Layer
5936
+ *
5937
+ * Table
5938
+ *
5939
+ * Folder
5940
+ *
5941
+ * Json
5942
+ *
5943
+ * Attribute
5944
+ *
5945
+ * AttributeArray
5946
+ */
5947
+ type?: WorkerSettingsFieldType;
5948
+ /** Lookup values. */
5949
+ lookupValues?: Record<string, string | null>;
5950
+ /** Default value. */
5951
+ default?: any;
5952
+ /** TaskParameterRange. */
5953
+ range?: TaskParameterRange;
5954
+ /** Nullable. */
5955
+ nullable?: boolean;
5956
+ }
5957
+ /**
5958
+ * TaskParameterDc.
5959
+ */
5960
+ export interface TaskParameterDc {
5961
+ /** Name. */
5962
+ name?: string;
5963
+ /** Gets or sets description. */
5964
+ description?: string;
5965
+ /**
5966
+ *
5967
+ *
5968
+ * Int32
5969
+ *
5970
+ * Int64
5971
+ *
5972
+ * Double
5973
+ *
5974
+ * String
5975
+ *
5988
5976
  * Boolean
5989
5977
  *
5978
+ * DateTime
5979
+ *
5980
+ * Point
5981
+ *
5982
+ * Geometry
5983
+ *
5984
+ * Polyline
5985
+ *
5986
+ * MultiPolygon
5987
+ *
5988
+ * Polygon
5989
+ *
5990
+ * Multipoint
5991
+ *
5992
+ * IntergerArray
5993
+ *
5994
+ * DoubleArray
5995
+ *
5996
+ * StringArray
5997
+ *
5990
5998
  * SourceEql
5991
5999
  *
5992
6000
  * Layer
@@ -5997,9 +6005,9 @@ export interface TaskParameter {
5997
6005
  *
5998
6006
  * Json
5999
6007
  *
6000
- * Expression
6008
+ * Attribute
6001
6009
  *
6002
- * Expressions
6010
+ * AttributeArray
6003
6011
  */
6004
6012
  type?: WorkerSettingsFieldType;
6005
6013
  /** Lookup values. */
@@ -6020,21 +6028,12 @@ export interface TaskParameterRange {
6020
6028
  /** Name. */
6021
6029
  max?: any;
6022
6030
  }
6023
- /**
6024
- * Base class for server tasks descriptions.
6025
- */
6026
- export interface TaskParametersDc {
6027
- /** Type of the service. */
6028
- service_type?: string;
6029
- /** Type of the task. */
6030
- task_type?: string;
6031
- }
6032
6031
  /**
6033
6032
  * TaskPrototypeDto.
6034
6033
  */
6035
6034
  export interface TaskPrototypeDto {
6036
6035
  /**
6037
- * .
6036
+ * Id.
6038
6037
  * @format uuid
6039
6038
  */
6040
6039
  id?: string;
@@ -6060,6 +6059,38 @@ export interface TaskPrototypeDto {
6060
6059
  delayDate?: string;
6061
6060
  /** Schedule. */
6062
6061
  schedule?: string;
6062
+ /**
6063
+ * Tasks count.
6064
+ * @format int32
6065
+ */
6066
+ tasksCount?: number;
6067
+ /**
6068
+ * RemoteTaskStatus enum.
6069
+ *
6070
+ * Init
6071
+ *
6072
+ * Process
6073
+ *
6074
+ * Completed
6075
+ *
6076
+ * Interrupted
6077
+ *
6078
+ * Error
6079
+ *
6080
+ * Timeout
6081
+ *
6082
+ * Waiting
6083
+ *
6084
+ * InQueue
6085
+ *
6086
+ * Unknown
6087
+ */
6088
+ lastTaskStatus?: RemoteTaskStatus;
6089
+ /**
6090
+ * Last task finish.
6091
+ * @format date-time
6092
+ */
6093
+ lastTaskFinish?: string;
6063
6094
  }
6064
6095
  /**
6065
6096
  * TaskPythonResourceUpdateDto.
@@ -6067,6 +6098,8 @@ export interface TaskPrototypeDto {
6067
6098
  export interface TaskPythonResourceUpdateDto {
6068
6099
  /** Configurations. */
6069
6100
  configurations?: PythonTaskMethodConfiguration[];
6101
+ /** User ui configuration. */
6102
+ uiConfiguration?: any;
6070
6103
  }
6071
6104
  /**
6072
6105
  * TaskResourceCreateDto.
@@ -6097,9 +6130,9 @@ export interface TaskResourceCreateDto {
6097
6130
  }
6098
6131
  /**
6099
6132
  * TaskPrototypeSubType.
6100
-
6133
+
6101
6134
  SpTask
6102
-
6135
+
6103
6136
  PythonTask
6104
6137
  */
6105
6138
  export declare enum TaskResourceSubType {
@@ -6115,24 +6148,36 @@ export interface TaskReturnType {
6115
6148
  /**
6116
6149
  *
6117
6150
  *
6118
- * Integer
6151
+ * Int32
6152
+ *
6153
+ * Int64
6119
6154
  *
6120
6155
  * Double
6121
6156
  *
6122
6157
  * String
6123
6158
  *
6124
- * Extent
6159
+ * Boolean
6160
+ *
6161
+ * DateTime
6162
+ *
6163
+ * Point
6125
6164
  *
6126
6165
  * Geometry
6127
6166
  *
6167
+ * Polyline
6168
+ *
6169
+ * MultiPolygon
6170
+ *
6171
+ * Polygon
6172
+ *
6173
+ * Multipoint
6174
+ *
6128
6175
  * IntergerArray
6129
6176
  *
6130
6177
  * DoubleArray
6131
6178
  *
6132
6179
  * StringArray
6133
6180
  *
6134
- * Boolean
6135
- *
6136
6181
  * SourceEql
6137
6182
  *
6138
6183
  * Layer
@@ -6143,9 +6188,9 @@ export interface TaskReturnType {
6143
6188
  *
6144
6189
  * Json
6145
6190
  *
6146
- * Expression
6191
+ * Attribute
6147
6192
  *
6148
- * Expressions
6193
+ * AttributeArray
6149
6194
  */
6150
6195
  type?: WorkerSettingsFieldType;
6151
6196
  /** Name. */
@@ -6159,6 +6204,8 @@ export interface TaskReturnType {
6159
6204
  export interface TaskSpResourceUpdateDto {
6160
6205
  /** Configurations. */
6161
6206
  configurations?: SpTaskMethodConfiguration[];
6207
+ /** User ui configuration. */
6208
+ uiConfiguration?: any;
6162
6209
  }
6163
6210
  /**
6164
6211
  * Localization contains fields that should be localized on printing template.
@@ -6214,13 +6261,13 @@ export interface TestConnectionInfoDc {
6214
6261
  }
6215
6262
  /**
6216
6263
  * Sets the horizontal alignment of text.
6217
-
6264
+
6218
6265
  right
6219
-
6266
+
6220
6267
  left
6221
-
6268
+
6222
6269
  center
6223
-
6270
+
6224
6271
  justified
6225
6272
  */
6226
6273
  export declare enum TextAlignment {
@@ -6240,11 +6287,11 @@ export interface TextBackgroundDc {
6240
6287
  }
6241
6288
  /**
6242
6289
  * Sets the vertical alignment of text.
6243
-
6290
+
6244
6291
  top
6245
-
6292
+
6246
6293
  bottom
6247
-
6294
+
6248
6295
  middle
6249
6296
  */
6250
6297
  export declare enum TextVerticalAlignment {
@@ -6308,7 +6355,7 @@ export interface TileCatalogServiceInfoDc {
6308
6355
  /** The category of the service. */
6309
6356
  categories?: string[];
6310
6357
  /** Configuration of the service. */
6311
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
6358
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
6312
6359
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
6313
6360
  name: string;
6314
6361
  /** Resource alias. */
@@ -6317,8 +6364,6 @@ export interface TileCatalogServiceInfoDc {
6317
6364
  owner?: string;
6318
6365
  /** Resource description. */
6319
6366
  description?: string;
6320
- /** Resource preview. */
6321
- preview?: string;
6322
6367
  /**
6323
6368
  * The date when resource was created.
6324
6369
  * @format date-time
@@ -6439,110 +6484,6 @@ export interface TileInfoDc {
6439
6484
  /** List of levels of detail that define the tiling schema. */
6440
6485
  lods: LodInfo[];
6441
6486
  }
6442
- /**
6443
- * Service info for a tile service.
6444
- */
6445
- export interface TileServiceInfoDc {
6446
- /** Tile info structure. */
6447
- tileInfo: TileInfoDc;
6448
- /** Copyright text. */
6449
- copyrightText?: string;
6450
- /** The type of the resource. */
6451
- type: string;
6452
- /**
6453
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
6454
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
6455
- * @format double
6456
- */
6457
- minResolution?: number;
6458
- /**
6459
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
6460
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
6461
- * @format double
6462
- */
6463
- maxResolution?: number;
6464
- /**
6465
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
6466
- * for the given service type, null is returned.
6467
- */
6468
- condition?: string;
6469
- /**
6470
- *
6471
- *
6472
- * unknown
6473
- *
6474
- * point
6475
- *
6476
- * polyline
6477
- *
6478
- * multipolygon
6479
- *
6480
- * envelope
6481
- *
6482
- * multipoint
6483
- */
6484
- geometryType: GeometryType;
6485
- /**
6486
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
6487
- * 0 is returned.
6488
- * @format int32
6489
- */
6490
- objectCount?: number;
6491
- /** The category of the service. */
6492
- categories?: string[];
6493
- /** Configuration of the service. */
6494
- configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
6495
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
6496
- name: string;
6497
- /** Resource alias. */
6498
- alias?: string;
6499
- /** Resource owner. */
6500
- owner?: string;
6501
- /** Resource description. */
6502
- description?: string;
6503
- /** Resource preview. */
6504
- preview?: string;
6505
- /**
6506
- * The date when resource was created.
6507
- * @format date-time
6508
- */
6509
- createdDate?: string;
6510
- /**
6511
- * The date when resource was last modified.
6512
- * @format date-time
6513
- */
6514
- changedDate?: string;
6515
- /**
6516
- *
6517
- *
6518
- * none
6519
- *
6520
- * configure
6521
- *
6522
- * write
6523
- *
6524
- * read
6525
- *
6526
- * read,configure
6527
- *
6528
- * read,write
6529
- *
6530
- * read,write,configure
6531
- */
6532
- permissions?: Permissions;
6533
- /** Access control list for a security object. */
6534
- acl?: AccessControlListDc;
6535
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
6536
- icon?: string;
6537
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
6538
- invisibleInCatalog?: boolean;
6539
- /** Parent id in resources catalog. */
6540
- parentId?: string;
6541
- /** Resource id in resources catalog. */
6542
- resourceId?: string;
6543
- /** Resource tags. */
6544
- tags?: string[];
6545
- }
6546
6487
  /**
6547
6488
  * Access token request.
6548
6489
  */
@@ -6589,16 +6530,6 @@ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
6589
6530
  pointSymbol?: CirclePointSymbolDc;
6590
6531
  lineSymbol?: PolylineSymbolDc;
6591
6532
  };
6592
- /**
6593
- * The operation that unites the features in the storage.
6594
- */
6595
- export declare type UnionTaskDc = TaskParametersDc & {
6596
- sourceLayer: string;
6597
- targetLayer: string;
6598
- groupAttribute?: string | null;
6599
- task_type?: string | null;
6600
- service_type?: string | null;
6601
- };
6602
6533
  /**
6603
6534
  * Feature object definition for updating.
6604
6535
  */
@@ -6810,6 +6741,8 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6810
6741
  type?: string | null;
6811
6742
  eql?: string | null;
6812
6743
  eqlParameters?: Record<string, any>;
6744
+ schemaName?: string | null;
6745
+ tableName?: string | null;
6813
6746
  };
6814
6747
  /**
6815
6748
  * S3 data source settings.
@@ -6822,11 +6755,11 @@ export declare type WmsDataSourceDc = DataSourceDc & {
6822
6755
  };
6823
6756
  /**
6824
6757
  *
6825
-
6758
+
6826
6759
  Task
6827
-
6760
+
6828
6761
  Rest
6829
-
6762
+
6830
6763
  Both
6831
6764
  */
6832
6765
  export declare enum WorkerMethodType {
@@ -6847,24 +6780,36 @@ export interface WorkerSettingsFieldDc {
6847
6780
  /**
6848
6781
  *
6849
6782
  *
6850
- * Integer
6783
+ * Int32
6784
+ *
6785
+ * Int64
6851
6786
  *
6852
6787
  * Double
6853
6788
  *
6854
6789
  * String
6855
6790
  *
6856
- * Extent
6791
+ * Boolean
6792
+ *
6793
+ * DateTime
6794
+ *
6795
+ * Point
6857
6796
  *
6858
6797
  * Geometry
6859
6798
  *
6799
+ * Polyline
6800
+ *
6801
+ * MultiPolygon
6802
+ *
6803
+ * Polygon
6804
+ *
6805
+ * Multipoint
6806
+ *
6860
6807
  * IntergerArray
6861
6808
  *
6862
6809
  * DoubleArray
6863
6810
  *
6864
6811
  * StringArray
6865
6812
  *
6866
- * Boolean
6867
- *
6868
6813
  * SourceEql
6869
6814
  *
6870
6815
  * Layer
@@ -6875,9 +6820,9 @@ export interface WorkerSettingsFieldDc {
6875
6820
  *
6876
6821
  * Json
6877
6822
  *
6878
- * Expression
6823
+ * Attribute
6879
6824
  *
6880
- * Expressions
6825
+ * AttributeArray
6881
6826
  */
6882
6827
  type?: WorkerSettingsFieldType;
6883
6828
  /** Lookup values. */
@@ -6887,56 +6832,74 @@ export interface WorkerSettingsFieldDc {
6887
6832
  }
6888
6833
  /**
6889
6834
  *
6890
-
6891
- Integer
6892
-
6835
+
6836
+ Int32
6837
+
6838
+ Int64
6839
+
6893
6840
  Double
6894
-
6841
+
6895
6842
  String
6896
-
6897
- Extent
6898
-
6843
+
6844
+ Boolean
6845
+
6846
+ DateTime
6847
+
6848
+ Point
6849
+
6899
6850
  Geometry
6900
-
6851
+
6852
+ Polyline
6853
+
6854
+ MultiPolygon
6855
+
6856
+ Polygon
6857
+
6858
+ Multipoint
6859
+
6901
6860
  IntergerArray
6902
-
6861
+
6903
6862
  DoubleArray
6904
-
6863
+
6905
6864
  StringArray
6906
-
6907
- Boolean
6908
-
6865
+
6909
6866
  SourceEql
6910
-
6867
+
6911
6868
  Layer
6912
-
6869
+
6913
6870
  Table
6914
-
6871
+
6915
6872
  Folder
6916
-
6873
+
6917
6874
  Json
6918
-
6919
- Expression
6920
-
6921
- Expressions
6875
+
6876
+ Attribute
6877
+
6878
+ AttributeArray
6922
6879
  */
6923
6880
  export declare enum WorkerSettingsFieldType {
6924
- Integer = "Integer",
6881
+ Int32 = "Int32",
6882
+ Int64 = "Int64",
6925
6883
  Double = "Double",
6926
6884
  String = "String",
6927
- Extent = "Extent",
6885
+ Boolean = "Boolean",
6886
+ DateTime = "DateTime",
6887
+ Point = "Point",
6928
6888
  Geometry = "Geometry",
6889
+ Polyline = "Polyline",
6890
+ MultiPolygon = "MultiPolygon",
6891
+ Polygon = "Polygon",
6892
+ Multipoint = "Multipoint",
6929
6893
  IntergerArray = "IntergerArray",
6930
6894
  DoubleArray = "DoubleArray",
6931
6895
  StringArray = "StringArray",
6932
- Boolean = "Boolean",
6933
6896
  SourceEql = "SourceEql",
6934
6897
  Layer = "Layer",
6935
6898
  Table = "Table",
6936
6899
  Folder = "Folder",
6937
6900
  Json = "Json",
6938
- Expression = "Expression",
6939
- Expressions = "Expressions"
6901
+ Attribute = "Attribute",
6902
+ AttributeArray = "AttributeArray"
6940
6903
  }
6941
6904
  /**
6942
6905
  * Worker post method params.
@@ -7634,39 +7597,6 @@ export interface DeleteFeatureParams {
7634
7597
  }
7635
7598
  export declare type CreateFeaturesPayload = FeatureDc[];
7636
7599
  export declare type UpdateFeaturePayload = UpdateFeatureDc[];
7637
- export interface FeaturesContainsParams {
7638
- /** Contains filter within a given filterAttributes. */
7639
- filter?: string;
7640
- /** Filter attributes. */
7641
- filterAttributes?: string[];
7642
- /**
7643
- * Comma separated list of attributes by which to sort the resulting feature list.
7644
- * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
7645
- * in descending order.
7646
- */
7647
- sort?: string[];
7648
- /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
7649
- attributes?: string[];
7650
- /**
7651
- * Features count have to skip.
7652
- * @format int32
7653
- */
7654
- offset?: number;
7655
- /**
7656
- * Features limit per response.
7657
- * @format int32
7658
- */
7659
- limit?: number;
7660
- /**
7661
- * Spatial reference of returned features.
7662
- * @format int32
7663
- */
7664
- wkid?: number;
7665
- /** If set to true, the geometry will not be returned for features. */
7666
- withGeom?: boolean;
7667
- /** Full name of the layer. */
7668
- name: string;
7669
- }
7670
7600
  export interface GetByIdParams {
7671
7601
  /**
7672
7602
  * Spatial reference of returned features.
@@ -7823,44 +7753,6 @@ export interface GetLayerExtentParams {
7823
7753
  /** Full name of the layer. */
7824
7754
  name: string;
7825
7755
  }
7826
- export interface GetByGeometryParams {
7827
- /**
7828
- * Geometry to selects. Examples:
7829
- * for point geometry=x,y;
7830
- * for envelope: geometry=xmin,ymin,xmax,ymax; .
7831
- */
7832
- geometry?: number[];
7833
- /**
7834
- * Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
7835
- * @format int32
7836
- */
7837
- extentSr?: number;
7838
- /**
7839
- * Spatial reference wkid of returned features.
7840
- * @format int32
7841
- */
7842
- targetSr?: number;
7843
- /** Full name of the layer. */
7844
- name: string;
7845
- }
7846
- /**
7847
- * Geometry data contract.
7848
- */
7849
- export declare type GetByGeometryPostPayload = EnvelopeDc | MultiPointDc | PointDc | PolyDc | PolygonDc | PolylineDc;
7850
- export interface GetByGeometryPostParams {
7851
- /**
7852
- * Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
7853
- * @format int32
7854
- */
7855
- extentSr?: number;
7856
- /**
7857
- * Spatial reference wkid of returned features.
7858
- * @format int32
7859
- */
7860
- targetSr?: number;
7861
- /** Full name of the layer. */
7862
- name: string;
7863
- }
7864
7756
  export interface DeleteFeaturesParams {
7865
7757
  /** Features ids. */
7866
7758
  ids?: string[];
@@ -7873,32 +7765,6 @@ export interface DeleteByConditionParams {
7873
7765
  /** Full name of the layer. */
7874
7766
  name: string;
7875
7767
  }
7876
- export interface GetByGeometryGetParams {
7877
- /** Screen image bbox rectangle. */
7878
- imageRectangle?: number[];
7879
- /** Envelope geometry for screen rectangle. */
7880
- envelope?: number[];
7881
- /** Click position on screen rectangle. */
7882
- clickPoint?: number[];
7883
- /**
7884
- * Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
7885
- * @format int32
7886
- */
7887
- extentSr?: number;
7888
- /**
7889
- * Spatial reference wkid of returned features.
7890
- * @format int32
7891
- */
7892
- targetSr?: number;
7893
- /** If true, include transparent pixels too. */
7894
- useFilledSymbols?: boolean;
7895
- /** String condition to filter the features by. */
7896
- query?: string;
7897
- /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
7898
- styleId?: string;
7899
- /** The name of the layer. */
7900
- name: string;
7901
- }
7902
7768
  export interface ClassifyParams {
7903
7769
  /** The name of the attribute. */
7904
7770
  attribute?: string;
@@ -8014,43 +7880,13 @@ export interface GetFilteredFeaturesCountParams {
8014
7880
  /** Layer name. */
8015
7881
  name: string;
8016
7882
  }
8017
- export interface SelectFeaturesParams {
8018
- /** Comma separated list of layer names. */
8019
- layers?: string[];
8020
- /** The size of layer rendering image. */
8021
- imageSize?: number[];
8022
- /** Envelope geometry for screen rectangle. */
8023
- envelope?: number[];
8024
- /** Click position on screen rectangle. */
8025
- clickPoint?: number[];
8026
- /**
8027
- * Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
8028
- * @format int32
8029
- */
8030
- extentSr?: number;
8031
- /** If true, include transparent pixels too. */
8032
- useFilledSymbols?: boolean;
8033
- /** String condition to filter the features by. */
8034
- query?: string[];
8035
- /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
8036
- styles?: string[];
8037
- /** Id of the data filter to override data filter of the layer. If not set, the layer original data filter is used. */
8038
- filters?: string[];
8039
- /** If set to true, the response will include the specific symbol for each feature. */
8040
- includeSymbols?: boolean;
8041
- /**
8042
- * Spatial reference of features to be returned.
8043
- * @format int32
8044
- */
8045
- targetSr?: number;
8046
- }
8047
7883
  export interface ValidateExpressionParams {
8048
7884
  /** Expression to validate. */
8049
7885
  expression?: string;
8050
7886
  /** Layer name. */
8051
7887
  layerName: string;
8052
7888
  }
8053
- export interface GetRasterMetaParams2 {
7889
+ export interface GetRasterMetaParams7 {
8054
7890
  /**
8055
7891
  * Min value for build histogram.
8056
7892
  * @format double
@@ -8121,7 +7957,7 @@ export interface GetProjectsListParams {
8121
7957
  /** Filter layers by set of tags. */
8122
7958
  tags?: string[];
8123
7959
  }
8124
- export interface DeleteResourcesParams4 {
7960
+ export interface DeleteResourcesParams9 {
8125
7961
  /** Resource names. */
8126
7962
  names?: string[];
8127
7963
  }
@@ -8320,7 +8156,7 @@ export interface StatisticsDbParams {
8320
8156
  */
8321
8157
  types?: AggregationFunction[];
8322
8158
  }
8323
- export interface ClassifyParams7 {
8159
+ export interface ClassifyParams5 {
8324
8160
  /** Layer name. */
8325
8161
  name: string;
8326
8162
  /** Attribute name. */
@@ -8502,14 +8338,6 @@ export interface DeleteTableDataParams {
8502
8338
  /** Name of the table. */
8503
8339
  name: string;
8504
8340
  }
8505
- export interface GetUniqueDataRowsParams {
8506
- /** Name of the column to return unique values. */
8507
- uniqueColumn?: string;
8508
- /** A list of result columns. If no columns specifies returns all of columns of the table. */
8509
- resultColumns?: string[];
8510
- /** Name of the table. */
8511
- name: string;
8512
- }
8513
8341
  export interface MapTableParams {
8514
8342
  /** Name of the remote data provider. Allows to map table from foreign db. */
8515
8343
  dataProvider?: string;
@@ -8521,8 +8349,6 @@ export interface GetVectorTileParams {
8521
8349
  withAttributes?: boolean;
8522
8350
  /** Condition. */
8523
8351
  condition?: string;
8524
- /** True if name is project name, otherwise false. */
8525
- isProject?: boolean;
8526
8352
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
8527
8353
  dataFilterId?: string;
8528
8354
  /** Project or layer name. */
@@ -8573,7 +8399,7 @@ export interface GetPublicCapabilitiesParams {
8573
8399
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8574
8400
  AcceptFormats?: string[];
8575
8401
  }
8576
- export interface GetCapabilitiesParams3 {
8402
+ export interface GetCapabilitiesParams8 {
8577
8403
  /** Output format of service metadata. */
8578
8404
  Format?: string;
8579
8405
  /** Must be WMS. */