@evergis/api 3.0.214 → 3.0.215

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.
Files changed (35) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +21 -21
  3. package/dist/Api.d.ts +3 -5
  4. package/dist/__generated__/AccountService.d.ts +2 -2
  5. package/dist/__generated__/DataSourceService.d.ts +68 -2
  6. package/dist/__generated__/EqlService.d.ts +12 -1
  7. package/dist/__generated__/LayersService.d.ts +2 -2
  8. package/dist/__generated__/RemoteTaskManagerService.d.ts +262 -0
  9. package/dist/__generated__/StatisticService.d.ts +2 -2
  10. package/dist/__generated__/TablesService.d.ts +2 -2
  11. package/dist/__generated__/WmsServerService.d.ts +2 -2
  12. package/dist/__generated__/data-contracts.d.ts +729 -660
  13. package/dist/api.cjs.development.js +548 -856
  14. package/dist/api.cjs.development.js.map +1 -1
  15. package/dist/api.cjs.production.min.js +1 -1
  16. package/dist/api.cjs.production.min.js.map +1 -1
  17. package/dist/api.esm.js +813 -1091
  18. package/dist/api.esm.js.map +1 -1
  19. package/dist/index.d.ts +0 -3
  20. package/dist/services/RemoteTaskManager.d.ts +3 -0
  21. package/dist/services/Statistic.d.ts +4 -2
  22. package/dist/services/index.d.ts +1 -1
  23. package/dist/utils/errorHandler.d.ts +1 -1
  24. package/dist/utils/index.d.ts +0 -1
  25. package/package.json +3 -3
  26. package/dist/SpatialProcessor.d.ts +0 -30
  27. package/dist/__generated__/SchedulerService.d.ts +0 -207
  28. package/dist/layers/EvergisDynamicLayer.d.ts +0 -28
  29. package/dist/layers/EvergisTileLayer.d.ts +0 -18
  30. package/dist/layers/LayersManager.d.ts +0 -11
  31. package/dist/layers/index.d.ts +0 -3
  32. package/dist/services/Scheduler.d.ts +0 -20
  33. package/dist/types/EvergisLayer.d.ts +0 -6
  34. package/dist/types/index.d.ts +0 -1
  35. package/dist/utils/guards.d.ts +0 -6
@@ -1,6 +1,10 @@
1
1
  interface BrandedType<T> {
2
2
  __type__?: T;
3
3
  }
4
+ export interface TypeCoordsEFixedBuffer {
5
+ /** @format double */
6
+ fixedElementField?: number;
7
+ }
4
8
  /**
5
9
  * Access control list for a security object.
6
10
  */
@@ -9,13 +13,47 @@ export interface AccessControlListDc {
9
13
  data?: RolePermissionDc[];
10
14
  }
11
15
  /**
12
- * Server task that aggregate the objects from one storage to another by polygon geometry.
16
+ * Active worker data contract.
13
17
  */
14
- export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
15
- type?: string | null;
16
- geometry: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
17
- aggregationSettings: AggregationSettingDc[];
18
- };
18
+ export interface ActiveWorkerDc {
19
+ /**
20
+ * Идентификатор.
21
+ * @format uuid
22
+ */
23
+ id?: string;
24
+ /** Worker type. */
25
+ type?: string;
26
+ /** Worker tasks. */
27
+ activeWorkerTasks?: ActiveWorkerTaskDc[];
28
+ /**
29
+ * Last update status date.
30
+ * @format date-time
31
+ */
32
+ lastUpdateStatusDate?: string;
33
+ /** IsInError. */
34
+ isInError?: boolean;
35
+ /** IsInTimeout. */
36
+ isInTimeout?: boolean;
37
+ }
38
+ /**
39
+ * Active worker task data contract.
40
+ */
41
+ export interface ActiveWorkerTaskDc {
42
+ /** Task type. */
43
+ type?: string;
44
+ /**
45
+ *
46
+ *
47
+ * Task
48
+ *
49
+ * Rest
50
+ *
51
+ * Both
52
+ */
53
+ methodCallType?: WorkerMethodType;
54
+ /** SettingsFields. */
55
+ settingsFields?: WorkerSettingsFieldDc[];
56
+ }
19
57
  export declare type AggregatedClusterSymbolDc = SymbolDc & {
20
58
  type?: string | null;
21
59
  pointSymbol?: 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 | null;
@@ -82,47 +120,47 @@ export interface AggregationDataResultDc {
82
120
  }
83
121
  /**
84
122
  *
85
-
123
+
86
124
  None
87
-
125
+
88
126
  Array
89
-
127
+
90
128
  Min
91
-
129
+
92
130
  Max
93
-
131
+
94
132
  Avg
95
-
133
+
96
134
  Sum
97
-
135
+
98
136
  Extent
99
-
137
+
100
138
  H3
101
-
139
+
102
140
  Count
103
-
141
+
104
142
  TotalCount
105
-
143
+
106
144
  DistinctCount
107
-
145
+
108
146
  First
109
-
147
+
110
148
  Last
111
-
149
+
112
150
  Median
113
-
151
+
114
152
  Mod
115
-
153
+
116
154
  StdDeviation
117
-
155
+
118
156
  SumOfProduct
119
-
157
+
120
158
  OnlyValue
121
-
159
+
122
160
  WeightedAvg
123
-
161
+
124
162
  DensityIndicators
125
-
163
+
126
164
  DividedSum
127
165
  */
128
166
  export declare enum AggregationFunction {
@@ -206,62 +244,20 @@ export interface AggregationMappingDc {
206
244
  aggregationFunction: AggregationFunction;
207
245
  }
208
246
  /**
209
- * Aggregation settings.
247
+ * S3 data source settings.
210
248
  */
211
- export interface AggregationSettingDc {
212
- /** Target attribute name. */
213
- targetAttributeName: string;
214
- /** Source attribute name. */
215
- sourceAttributeName: string;
216
- /** Additional source attribute. */
217
- additionalSourceAttribute?: string;
218
- /**
219
- *
220
- *
221
- * None
222
- *
223
- * Array
224
- *
225
- * Min
226
- *
227
- * Max
228
- *
229
- * Avg
230
- *
231
- * Sum
232
- *
233
- * Extent
234
- *
235
- * H3
236
- *
237
- * Count
238
- *
239
- * TotalCount
240
- *
241
- * DistinctCount
242
- *
243
- * First
244
- *
245
- * Last
246
- *
247
- * Median
248
- *
249
- * Mod
250
- *
251
- * StdDeviation
252
- *
253
- * SumOfProduct
254
- *
255
- * OnlyValue
256
- *
257
- * WeightedAvg
258
- *
259
- * DensityIndicators
260
- *
261
- * DividedSum
262
- */
263
- aggregationFunction: AggregationFunction;
264
- }
249
+ export declare type ArcGisDataSourceDc = DataSourceDc & {
250
+ type?: DataSourceType;
251
+ serviceUrl?: string | null;
252
+ params?: Record<string, string | null>;
253
+ headers?: Record<string, string | null>;
254
+ };
255
+ /**
256
+ * S3 data source info.
257
+ */
258
+ export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
259
+ serviceUrl?: string | null;
260
+ };
265
261
  /**
266
262
  * Archive calendar response.
267
263
  */
@@ -617,13 +613,13 @@ export interface AttributeIconDc {
617
613
  }
618
614
  /**
619
615
  *
620
-
616
+
621
617
  Unknown
622
-
618
+
623
619
  Icon
624
-
620
+
625
621
  PNG
626
-
622
+
627
623
  SVG
628
624
  */
629
625
  export declare enum AttributeIconType {
@@ -634,13 +630,13 @@ export declare enum AttributeIconType {
634
630
  }
635
631
  /**
636
632
  *
637
-
633
+
638
634
  None
639
-
635
+
640
636
  SelectFromHandBook
641
-
637
+
642
638
  SelectFromRange
643
-
639
+
644
640
  ViewHandBook
645
641
  */
646
642
  export declare enum AttributeSelectorType {
@@ -651,31 +647,31 @@ export declare enum AttributeSelectorType {
651
647
  }
652
648
  /**
653
649
  *
654
-
650
+
655
651
  Unknown
656
-
652
+
657
653
  String
658
-
654
+
659
655
  Int32
660
-
656
+
661
657
  Int64
662
-
658
+
663
659
  Double
664
-
660
+
665
661
  DateTime
666
-
662
+
667
663
  Boolean
668
-
664
+
669
665
  Point
670
-
666
+
671
667
  Polyline
672
-
668
+
673
669
  MultiPolygon
674
-
670
+
675
671
  Multipoint
676
-
672
+
677
673
  H3Index
678
-
674
+
679
675
  Json
680
676
  */
681
677
  export declare enum AttributeType {
@@ -716,9 +712,9 @@ export interface AttributesConfigurationDc {
716
712
  * An authorization grant is a credential representing the resource
717
713
  owner's authorization (to access its protected resources) used by the
718
714
  client to obtain an access token.
719
-
715
+
720
716
  authorization_code
721
-
717
+
722
718
  refresh_token
723
719
  */
724
720
  export declare enum AuthorizationGrant {
@@ -738,20 +734,31 @@ export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
738
734
  endColor?: ParameterDcColor;
739
735
  };
740
736
  /**
741
- * Availability area builder operation considers the nearest availability zones around the input geometries and writes them
742
- into the target storage.
743
- */
744
- export declare type AvailabilityAreaTaskDc = FeatureTaskParametersDc & {
745
- type?: string | null;
746
- duration: string;
747
- providerType: string;
737
+ * Available area task.
738
+ */
739
+ export declare type AvailableAreaTaskDc = TaskParametersDc & {
740
+ sourceLayer: string;
741
+ targetLayer: string;
742
+ duration?: string | null;
743
+ providerName?: string | null;
748
744
  durationAttributeName?: string | null;
749
745
  routeCenterXAttributeName?: string | null;
750
746
  routeCenterYAttributeName?: string | null;
751
747
  baseObjectIdAttributeName?: string | null;
752
748
  idAttributeName?: string | null;
753
749
  geometryAttributeName?: string | null;
750
+ service_type?: string | null;
751
+ task_type?: string | null;
754
752
  };
753
+ /**
754
+ * Availiable values data contract.
755
+ */
756
+ export interface AvailiableValuesDc {
757
+ /** Layer name. */
758
+ layerName?: string;
759
+ /** Dictionary of availiable parameters values. */
760
+ values?: Record<string, ValueDc[] | null>;
761
+ }
755
762
  export interface Base64String {
756
763
  value?: string;
757
764
  }
@@ -804,15 +811,15 @@ export interface BrushDc {
804
811
  * Buffer operation calculates the buffer geometries around the input geometries and writes them
805
812
  into the target storage.
806
813
  */
807
- export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
808
- type?: string | null;
814
+ export declare type BufferTaskDc = TaskParametersDc & {
815
+ sourceLayer: string;
816
+ targetLayer: string;
809
817
  radii: string[];
810
- excludeInnerBuffers?: boolean;
811
- excludeSourcePolygon?: boolean;
812
818
  baseObjectIdAttributeName?: string | null;
813
819
  radiusAttributeName?: string | null;
814
- idAttributeName?: string | null;
815
- geometryAttributeName?: string | null;
820
+ attributesToCopy?: string[] | null;
821
+ task_type?: string | null;
822
+ service_type?: string | null;
816
823
  };
817
824
  /**
818
825
  * Get bulk extents data conteract.
@@ -951,22 +958,24 @@ export interface CatalogResourceDc {
951
958
  * @format int32
952
959
  */
953
960
  srid?: number;
961
+ /** True if resource has children. */
962
+ hasChildren?: boolean;
954
963
  }
955
964
  /**
956
965
  *
957
-
966
+
958
967
  None
959
-
968
+
960
969
  Map
961
-
970
+
962
971
  Layer
963
-
972
+
964
973
  Table
965
-
974
+
966
975
  File
967
-
976
+
968
977
  TaskPrototype
969
-
978
+
970
979
  DataSource
971
980
  */
972
981
  export declare enum CatalogResourceType {
@@ -1011,15 +1020,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
1011
1020
  };
1012
1021
  /**
1013
1022
  * Describes classification methods.
1014
-
1023
+
1015
1024
  none
1016
-
1025
+
1017
1026
  naturalBreaks
1018
-
1027
+
1019
1028
  equalInterval
1020
-
1029
+
1021
1030
  quantile
1022
-
1031
+
1023
1032
  unique
1024
1033
  */
1025
1034
  export declare enum ClassificationType {
@@ -1031,11 +1040,11 @@ export declare enum ClassificationType {
1031
1040
  }
1032
1041
  /**
1033
1042
  *
1034
-
1043
+
1035
1044
  decimal
1036
-
1045
+
1037
1046
  dateTime
1038
-
1047
+
1039
1048
  text
1040
1049
  */
1041
1050
  export declare enum ClassifyAttributeType {
@@ -1333,55 +1342,55 @@ export interface ConfigDc {
1333
1342
  }
1334
1343
  /**
1335
1344
  *
1336
-
1345
+
1337
1346
  Unknown
1338
-
1347
+
1339
1348
  SerializeError
1340
-
1349
+
1341
1350
  InvalidDataService
1342
-
1351
+
1343
1352
  InvalidConfiguration
1344
-
1353
+
1345
1354
  InvalidDataServiceName
1346
-
1355
+
1347
1356
  InvalidTableName
1348
-
1357
+
1349
1358
  InvalidLayerName
1350
-
1359
+
1351
1360
  ResourceNotFound
1352
-
1361
+
1353
1362
  InvalidCondition
1354
-
1363
+
1355
1364
  InvalidAttributes
1356
-
1365
+
1357
1366
  InvalidIdAttribute
1358
-
1367
+
1359
1368
  InvalidGeometryAttribute
1360
-
1369
+
1361
1370
  InvalidGeometryAttributeType
1362
-
1371
+
1363
1372
  InvalidColumnName
1364
-
1373
+
1365
1374
  InvalidIdColumnSettings
1366
-
1375
+
1367
1376
  ColumnNotExistsInTable
1368
-
1377
+
1369
1378
  InvalidStyle
1370
-
1379
+
1371
1380
  InvalidLayerType
1372
-
1381
+
1373
1382
  ColumnLoadingError
1374
-
1383
+
1375
1384
  InvalidAttributeFormat
1376
-
1385
+
1377
1386
  DataSourceNotFound
1378
-
1387
+
1379
1388
  DuplicateColumns
1380
-
1389
+
1381
1390
  DuplicateAttributes
1382
-
1391
+
1383
1392
  TableWithoutColumns
1384
-
1393
+
1385
1394
  InvalidTableReferenceConfiguration
1386
1395
  */
1387
1396
  export declare enum ConfigurationErrorEnum {
@@ -1412,7 +1421,7 @@ export declare enum ConfigurationErrorEnum {
1412
1421
  InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
1413
1422
  }
1414
1423
  /**
1415
- * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
1424
+ * SPCore.Connectors.Connectors.Base.Models.RemoteTaskManager.CopyTask.Storages.ConfiguredLayerDataStorageDc provides configurable layer storage.
1416
1425
  */
1417
1426
  export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
1418
1427
  type?: string | null;
@@ -1441,6 +1450,8 @@ export interface CopyResourceDc {
1441
1450
  * feature
1442
1451
  *
1443
1452
  * tag
1453
+ *
1454
+ * datasource
1444
1455
  */
1445
1456
  type: ResourceType;
1446
1457
  /** Resource copy name. */
@@ -1474,6 +1485,8 @@ export interface CopyResourceResultDc {
1474
1485
  * feature
1475
1486
  *
1476
1487
  * tag
1488
+ *
1489
+ * datasource
1477
1490
  */
1478
1491
  type: ResourceType;
1479
1492
  /** Name of resource to copy. */
@@ -1488,10 +1501,30 @@ export interface CopyResourceResultDc {
1488
1501
  /**
1489
1502
  * Server task that copies the objects from one storage to another.
1490
1503
  */
1491
- export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
1492
- type?: string | null;
1493
- condition?: string | null;
1504
+ export declare type CopyTableTaskDc = TaskParametersDc & {
1505
+ sourceLayer: string;
1506
+ targetLayer: string;
1507
+ attributeMapping?: Record<string, string | null>;
1508
+ task_type?: string | null;
1509
+ service_type?: string | null;
1510
+ };
1511
+ /**
1512
+ * Buffer operation calculates the buffer geometries around the input geometries and writes them
1513
+ into the target storage.
1514
+ */
1515
+ export declare type CopyTaskDc = TaskParametersDc & {
1516
+ source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1517
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1494
1518
  attributeMapping?: Record<string, string | null>;
1519
+ attributeTypeMapping?: Record<string, AttributeType>;
1520
+ task_type?: string | null;
1521
+ service_type?: string | null;
1522
+ };
1523
+ /**
1524
+ * The result of a server task step execution.
1525
+ */
1526
+ export declare type CopyTaskStepResultDc = StepResultDc & {
1527
+ resourceId?: string | null;
1495
1528
  };
1496
1529
  /**
1497
1530
  * Create directory request.
@@ -1510,6 +1543,49 @@ export interface CreateDirectoryDc {
1510
1543
  /** If true root folder will create as temporary. */
1511
1544
  isTemporary?: boolean;
1512
1545
  }
1546
+ /**
1547
+ * Upload raster task parameters data contract.
1548
+ */
1549
+ export declare type CreateRasterCogTaskDc = TaskParametersDc & {
1550
+ layer: string;
1551
+ srId: number;
1552
+ file?: string | null;
1553
+ attributes?: Record<string, any>;
1554
+ overviewsCount: number;
1555
+ bands?: number[] | null;
1556
+ task_type?: string | null;
1557
+ service_type?: string | null;
1558
+ };
1559
+ /**
1560
+ * Upload raster task parameters data contract.
1561
+ */
1562
+ export declare type CreateRasterNetCdfTaskDc = TaskParametersDc & {
1563
+ layer: string;
1564
+ srId: number;
1565
+ file: string;
1566
+ variables?: string[] | null;
1567
+ treatVariablesAsBands?: boolean;
1568
+ dimExtraName?: string | null;
1569
+ dimExtraValues?: string[] | null;
1570
+ attributes?: Record<string, any>;
1571
+ overviewsCount: number;
1572
+ proj?: string | null;
1573
+ task_type?: string | null;
1574
+ service_type?: string | null;
1575
+ };
1576
+ /**
1577
+ * Upload raster task parameters data contract.
1578
+ */
1579
+ export declare type CreateRasterVrtTaskDc = TaskParametersDc & {
1580
+ layer: string;
1581
+ srId: number;
1582
+ overviewsCount: number;
1583
+ rasters?: RasterVrtFeatureSourceDc[] | null;
1584
+ attributes?: Record<string, any>;
1585
+ maxZoomLevel: number;
1586
+ task_type?: string | null;
1587
+ service_type?: string | null;
1588
+ };
1513
1589
  /**
1514
1590
  * Data contract for create new role.
1515
1591
  */
@@ -1706,13 +1782,13 @@ export interface DataSourceInfoDc {
1706
1782
  }
1707
1783
  /**
1708
1784
  *
1709
-
1785
+
1710
1786
  Postgres
1711
-
1787
+
1712
1788
  Trino
1713
-
1789
+
1714
1790
  S3
1715
-
1791
+
1716
1792
  GisServer
1717
1793
  */
1718
1794
  export declare enum DataSourceType {
@@ -1767,15 +1843,6 @@ export interface EditAttributesInfoDc {
1767
1843
  /** Expression to edit. */
1768
1844
  editExpression: string;
1769
1845
  }
1770
- export declare type EditAttributesTaskParametersDc = TaskParametersDc & {
1771
- type?: string | null;
1772
- condition?: string | null;
1773
- attribute: string;
1774
- editExpression: string;
1775
- createNewAttribute?: boolean;
1776
- attributeType: AttributeType;
1777
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
1778
- };
1779
1846
  /**
1780
1847
  * Envelope geometry.
1781
1848
  */
@@ -1844,15 +1911,15 @@ export interface ErrorDetailsDc {
1844
1911
  }
1845
1912
  /**
1846
1913
  * Type of the error.
1847
-
1914
+
1848
1915
  ResourceLimitExceeded
1849
-
1916
+
1850
1917
  ResourceNotFound
1851
-
1918
+
1852
1919
  InternalError
1853
-
1920
+
1854
1921
  BadRequest
1855
-
1922
+
1856
1923
  DuplicateContent
1857
1924
  */
1858
1925
  export declare enum ErrorDetailsType {
@@ -2218,6 +2285,8 @@ export interface FeatureLayerServiceInfoDc {
2218
2285
  copyrightText?: string;
2219
2286
  /** Client data storage. Storage isn't used by server. */
2220
2287
  clientData?: any;
2288
+ /** Card configuration. Storage isn't used by server. */
2289
+ cardConfiguration?: any;
2221
2290
  /** The type of the resource. */
2222
2291
  type: string;
2223
2292
  /**
@@ -2343,18 +2412,11 @@ export interface FeatureSymbolDc {
2343
2412
  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;
2344
2413
  image?: string;
2345
2414
  }
2346
- /**
2347
- * Task parameters for tasks that operate on features.
2348
- */
2349
- export declare type FeatureTaskParametersDc = TaskParametersDc & {
2350
- source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
2351
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
2352
- };
2353
2415
  /**
2354
2416
  * Type of the feature.
2355
-
2417
+
2356
2418
  Unknown
2357
-
2419
+
2358
2420
  GeometricFeature
2359
2421
  */
2360
2422
  export declare enum FeatureType {
@@ -2377,8 +2439,12 @@ export interface FeaturesListDc {
2377
2439
  * Uploading file info.
2378
2440
  */
2379
2441
  export interface FileUploadInfoDc {
2442
+ /** Resource id. */
2443
+ resourceId?: string;
2380
2444
  /** Name of uploaded file. */
2381
2445
  fileName?: string;
2446
+ /** Id of the file. */
2447
+ fileId?: string;
2382
2448
  /**
2383
2449
  * Content length in bytes, if specified.
2384
2450
  * @format int64
@@ -2391,8 +2457,12 @@ export interface FileUploadInfoDc {
2391
2457
  * The result of uploading a file.
2392
2458
  */
2393
2459
  export interface FileUploadResponse {
2460
+ /** Resource id. */
2461
+ resourceId?: string;
2394
2462
  /** Id of the tile in the session static storage. */
2395
2463
  fileId?: string;
2464
+ /** Id of the file source. */
2465
+ sourceId?: string;
2396
2466
  /** Url to file. */
2397
2467
  url?: string;
2398
2468
  }
@@ -2455,16 +2525,6 @@ export declare type FilledSquareLineEndingDc = LineEndingBaseDc & {
2455
2525
  vOffset?: CalculatedParameterDc | null;
2456
2526
  hOffset?: CalculatedParameterDc | null;
2457
2527
  };
2458
- /**
2459
- * Server task that copies the objects from the source storage that satisfy the filter conditions to the target layer.
2460
- */
2461
- export declare type FilterCopyTaskParametersDc = FeatureTaskParametersDc & {
2462
- type?: string | null;
2463
- attributeMapping?: Record<string, string | null>;
2464
- condition?: string | null;
2465
- reverseGeometryFilter?: boolean;
2466
- geometryFilterStorage?: LayerTaskDataStorageDc;
2467
- };
2468
2528
  /**
2469
2529
  * Server response for the creation of a filter in filter service.
2470
2530
  */
@@ -2481,11 +2541,11 @@ export interface FilterDc {
2481
2541
  }
2482
2542
  /**
2483
2543
  * Sets whether font should be styled.
2484
-
2544
+
2485
2545
  normal
2486
-
2546
+
2487
2547
  oblique
2488
-
2548
+
2489
2549
  italic
2490
2550
  */
2491
2551
  export declare enum FontStyle {
@@ -2495,27 +2555,27 @@ export declare enum FontStyle {
2495
2555
  }
2496
2556
  /**
2497
2557
  * Specifies the weight (or boldness) of the font.
2498
-
2558
+
2499
2559
  Thin
2500
-
2560
+
2501
2561
  ExtraLight
2502
-
2562
+
2503
2563
  Light
2504
-
2564
+
2505
2565
  SemiLight
2506
-
2566
+
2507
2567
  Normal
2508
-
2568
+
2509
2569
  Medium
2510
-
2570
+
2511
2571
  DemiBold
2512
-
2572
+
2513
2573
  Bold
2514
-
2574
+
2515
2575
  ExtraBold
2516
-
2576
+
2517
2577
  Black
2518
-
2578
+
2519
2579
  ExtraBlack
2520
2580
  */
2521
2581
  export declare enum FontWeight {
@@ -2581,7 +2641,22 @@ export interface GeocodeSuggestResultDc {
2581
2641
  text?: string;
2582
2642
  /** Source label. */
2583
2643
  label?: string;
2644
+ /** Source id. */
2645
+ id?: string;
2584
2646
  }
2647
+ /**
2648
+ * Geocode task.
2649
+ */
2650
+ export declare type GeocodeTaskDc = TaskParametersDc & {
2651
+ sourceLayer: string;
2652
+ targetLayer: string;
2653
+ geocodeFromGeometry?: boolean;
2654
+ geocodeProviderName: string | null;
2655
+ geocodeAttributeName?: string | null;
2656
+ geocodeAddressAttributeName?: string | null;
2657
+ service_type?: string | null;
2658
+ task_type?: string | null;
2659
+ };
2585
2660
  /**
2586
2661
  * Geometry data contract.
2587
2662
  */
@@ -2610,17 +2685,17 @@ export interface GeometryDc {
2610
2685
  }
2611
2686
  /**
2612
2687
  *
2613
-
2688
+
2614
2689
  unknown
2615
-
2690
+
2616
2691
  point
2617
-
2692
+
2618
2693
  polyline
2619
-
2694
+
2620
2695
  multipolygon
2621
-
2696
+
2622
2697
  envelope
2623
-
2698
+
2624
2699
  multipoint
2625
2700
  */
2626
2701
  export declare enum GeometryType {
@@ -2733,6 +2808,8 @@ export interface GetFeaturesParametersDc {
2733
2808
  query?: string;
2734
2809
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2735
2810
  dataFilterId?: string;
2811
+ /** Click geometry. */
2812
+ ewktGeometry?: string;
2736
2813
  /**
2737
2814
  * Features count have to skip.
2738
2815
  * @format int32
@@ -2808,13 +2885,13 @@ export interface GridElementDc {
2808
2885
  }
2809
2886
  /**
2810
2887
  * Resource group.
2811
-
2888
+
2812
2889
  my
2813
-
2890
+
2814
2891
  role
2815
-
2892
+
2816
2893
  public
2817
-
2894
+
2818
2895
  all
2819
2896
  */
2820
2897
  export declare enum Group {
@@ -3368,13 +3445,13 @@ export interface LegendTemplateModelDc {
3368
3445
  }
3369
3446
  /**
3370
3447
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
3371
-
3448
+
3372
3449
  Flat
3373
-
3450
+
3374
3451
  Square
3375
-
3452
+
3376
3453
  Round
3377
-
3454
+
3378
3455
  Triangle
3379
3456
  */
3380
3457
  export declare enum LineCapStyle {
@@ -3418,29 +3495,29 @@ export interface LineEndingBaseDc {
3418
3495
  }
3419
3496
  /**
3420
3497
  * Type of the line ending.
3421
-
3498
+
3422
3499
  none
3423
-
3500
+
3424
3501
  arrow
3425
-
3502
+
3426
3503
  filledArrow
3427
-
3504
+
3428
3505
  square
3429
-
3506
+
3430
3507
  filledSquare
3431
-
3508
+
3432
3509
  circle
3433
-
3510
+
3434
3511
  filledCircle
3435
-
3512
+
3436
3513
  diamond
3437
-
3514
+
3438
3515
  filledDiamond
3439
-
3516
+
3440
3517
  roundSquare
3441
-
3518
+
3442
3519
  filledRoundSquare
3443
-
3520
+
3444
3521
  svg
3445
3522
  */
3446
3523
  export declare enum LineEndingType {
@@ -3459,11 +3536,11 @@ export declare enum LineEndingType {
3459
3536
  }
3460
3537
  /**
3461
3538
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
3462
-
3539
+
3463
3540
  Miter
3464
-
3541
+
3465
3542
  Bevel
3466
-
3543
+
3467
3544
  Round
3468
3545
  */
3469
3546
  export declare enum LineJoinType {
@@ -3568,7 +3645,7 @@ export interface LoginResultDc {
3568
3645
  }
3569
3646
  /**
3570
3647
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
3571
-
3648
+
3572
3649
  SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
3573
3650
  */
3574
3651
  export interface MapTableInfoDc {
@@ -3672,15 +3749,15 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
3672
3749
  export declare type ObjectId = object;
3673
3750
  /**
3674
3751
  *
3675
-
3752
+
3676
3753
  Unknown
3677
-
3754
+
3678
3755
  union
3679
-
3756
+
3680
3757
  intersection
3681
-
3758
+
3682
3759
  subtraction
3683
-
3760
+
3684
3761
  symDifference
3685
3762
  */
3686
3763
  export declare enum Operation {
@@ -3693,18 +3770,22 @@ export declare enum Operation {
3693
3770
  /**
3694
3771
  * Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
3695
3772
  */
3696
- export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
3697
- type?: string | null;
3773
+ export declare type OverlayTaskDc = TaskParametersDc & {
3774
+ sourceLayer: string;
3775
+ targetLayer: string;
3776
+ overlayLayer: string;
3698
3777
  operation: Operation;
3699
- toolLayer?: LayerTaskDataStorageDc;
3778
+ AttributesToCopy?: string[] | null;
3779
+ task_type?: string | null;
3780
+ service_type?: string | null;
3700
3781
  };
3701
3782
  /**
3702
3783
  * Filter exists resources by owner.
3703
-
3784
+
3704
3785
  My
3705
-
3786
+
3706
3787
  Shared
3707
-
3788
+
3708
3789
  Public
3709
3790
  */
3710
3791
  export declare enum OwnerFilter {
@@ -3740,7 +3821,7 @@ export interface PagedListDataSourceInfoDc {
3740
3821
  offset?: number;
3741
3822
  /** @format int32 */
3742
3823
  limit?: number;
3743
- items?: (DataSourceInfoDc | PostgresDataSourceInfoDc)[];
3824
+ items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
3744
3825
  }
3745
3826
  export interface PagedListExtendedUserInfoDc {
3746
3827
  /** @format int64 */
@@ -3859,15 +3940,6 @@ export interface PagedListTagInfoDc {
3859
3940
  limit?: number;
3860
3941
  items?: TagInfoDc[];
3861
3942
  }
3862
- export interface PagedListTaskStatusDataDc {
3863
- /** @format int64 */
3864
- totalCount?: number;
3865
- /** @format int32 */
3866
- offset?: number;
3867
- /** @format int32 */
3868
- limit?: number;
3869
- items?: TaskStatusDataDc[];
3870
- }
3871
3943
  export interface PagedListUserInfoDc {
3872
3944
  /** @format int64 */
3873
3945
  totalCount?: number;
@@ -3964,9 +4036,9 @@ export declare type PatternBrushDc = FillBrushDc & {
3964
4036
  };
3965
4037
  /**
3966
4038
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3967
-
4039
+
3968
4040
  xyz
3969
-
4041
+
3970
4042
  tms
3971
4043
  */
3972
4044
  export declare enum PbfSchema {
@@ -3987,19 +4059,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
3987
4059
  };
3988
4060
  /**
3989
4061
  *
3990
-
4062
+
3991
4063
  none
3992
-
4064
+
3993
4065
  configure
3994
-
4066
+
3995
4067
  write
3996
-
4068
+
3997
4069
  read
3998
-
4070
+
3999
4071
  read,configure
4000
-
4072
+
4001
4073
  read,write
4002
-
4074
+
4003
4075
  read,write,configure
4004
4076
  */
4005
4077
  export declare enum Permissions {
@@ -4011,14 +4083,6 @@ export declare enum Permissions {
4011
4083
  ReadWrite = "read,write",
4012
4084
  All = "read,write,configure"
4013
4085
  }
4014
- /**
4015
- * Pipeline of server tasks. The tasks given in the InnerTasks property are executed one after another inside one server task.
4016
- */
4017
- export declare type PipelineTaskParametersDc = TaskParametersDc & {
4018
- type?: string | null;
4019
- continueOnFail?: boolean;
4020
- innerTasks: (AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc | RasterBuildVrtTaskParametersDc)[];
4021
- };
4022
4086
  /**
4023
4087
  * Spatial point geometry object representation.
4024
4088
  */
@@ -4049,6 +4113,8 @@ export interface PolicyDc {
4049
4113
  * MaxObjectsToExport
4050
4114
  *
4051
4115
  * MaxUploadContentSize
4116
+ *
4117
+ * MaxEqlQueryParametersValues
4052
4118
  */
4053
4119
  type: PolicyType;
4054
4120
  role?: string;
@@ -4057,20 +4123,22 @@ export interface PolicyDc {
4057
4123
  }
4058
4124
  /**
4059
4125
  * Type of the authorization policy.
4060
-
4126
+
4061
4127
  Unknown
4062
-
4128
+
4063
4129
  CreateTable
4064
-
4130
+
4065
4131
  CreateLayer
4066
-
4132
+
4067
4133
  CreateProject
4068
-
4134
+
4069
4135
  MaxFeaturesInOneTable
4070
-
4136
+
4071
4137
  MaxObjectsToExport
4072
-
4138
+
4073
4139
  MaxUploadContentSize
4140
+
4141
+ MaxEqlQueryParametersValues
4074
4142
  */
4075
4143
  export declare enum PolicyType {
4076
4144
  Unknown = "Unknown",
@@ -4079,7 +4147,8 @@ export declare enum PolicyType {
4079
4147
  CreateProject = "CreateProject",
4080
4148
  MaxFeaturesInOneTable = "MaxFeaturesInOneTable",
4081
4149
  MaxObjectsToExport = "MaxObjectsToExport",
4082
- MaxUploadContentSize = "MaxUploadContentSize"
4150
+ MaxUploadContentSize = "MaxUploadContentSize",
4151
+ MaxEqlQueryParametersValues = "MaxEqlQueryParametersValues"
4083
4152
  }
4084
4153
  /**
4085
4154
  * Polyline and Polygon base geometry object definition.
@@ -4121,6 +4190,7 @@ export declare type PolygonLabelSymbolDc = LabelSymbolDc & {
4121
4190
  */
4122
4191
  export declare type PolygonSymbolDc = SymbolDc & {
4123
4192
  type?: string | null;
4193
+ height?: CalculatedParameterDc | null;
4124
4194
  stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
4125
4195
  fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
4126
4196
  };
@@ -4167,6 +4237,7 @@ export declare type PositionDc = number[];
4167
4237
  * Postgres connection data source connection.
4168
4238
  */
4169
4239
  export declare type PostgresDataSourceDc = DataSourceDc & {
4240
+ type?: DataSourceType;
4170
4241
  host?: string | null;
4171
4242
  userName?: string | null;
4172
4243
  password?: string | null;
@@ -4208,14 +4279,6 @@ export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigura
4208
4279
  maxLodLevel?: number;
4209
4280
  isCogLayer?: boolean;
4210
4281
  };
4211
- /**
4212
- * Print operation print map and map elements to png files.
4213
- */
4214
- export declare type PrintTaskParametersDc = TaskParametersDc & {
4215
- taskType?: string | null;
4216
- targetStorageDescription: SessionStaticTaskDataStorageDescription;
4217
- templates?: TemplateModelDc[] | null;
4218
- };
4219
4282
  export interface ProblemDetails {
4220
4283
  type?: string;
4221
4284
  title?: string;
@@ -4253,6 +4316,8 @@ export interface ProjectConfigurationDc {
4253
4316
  items?: ProjectContentItemDc[];
4254
4317
  /** A collection of bookmarks of the map. */
4255
4318
  bookmarks?: BookmarkDc[];
4319
+ /** Language of the project. */
4320
+ language?: string;
4256
4321
  }
4257
4322
  /**
4258
4323
  * Project item description.
@@ -4289,6 +4354,8 @@ export interface ProjectContentItemDc {
4289
4354
  isBasemap?: boolean;
4290
4355
  /** Children items. */
4291
4356
  children?: ProjectContentItemDc[];
4357
+ /** Layer type. */
4358
+ layerType?: string;
4292
4359
  }
4293
4360
  /**
4294
4361
  * A project configuration data contract.
@@ -4332,8 +4399,10 @@ export interface ProxyLayerLegendItemDc {
4332
4399
  * Configuration for the proxy service.
4333
4400
  */
4334
4401
  export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
4335
- sourceType: string;
4336
- sourceUrl: string;
4402
+ resourceId?: string | null;
4403
+ geometryType?: GeometryType;
4404
+ sourceType?: string | null;
4405
+ sourceUrl?: string | null;
4337
4406
  minResolution?: number;
4338
4407
  maxResolution?: number;
4339
4408
  layers?: string[] | null;
@@ -4347,6 +4416,8 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
4347
4416
  * Service info for a Proxy service.
4348
4417
  */
4349
4418
  export interface ProxyServiceInfoDc {
4419
+ /** Information about the layer attributes and their configuration. */
4420
+ layerDefinition?: LayerDefinitionDc;
4350
4421
  /** Source system type, e.g. "ArcGIS". */
4351
4422
  sourceType: string;
4352
4423
  /** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
@@ -4455,11 +4526,11 @@ export interface ProxyServiceInfoDc {
4455
4526
  }
4456
4527
  /**
4457
4528
  * Stream quality.
4458
-
4529
+
4459
4530
  Low
4460
-
4531
+
4461
4532
  Medium
4462
-
4533
+
4463
4534
  High
4464
4535
  */
4465
4536
  export declare enum Quality {
@@ -4476,7 +4547,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
4476
4547
  eqlParameters?: Record<string, QueryLayerServiceEqlParameterConfigurationDc>;
4477
4548
  srid?: number | null;
4478
4549
  geometryType?: AttributeType;
4479
- attributesConfiguration: EqlAttributesConfigurationDc;
4550
+ attributesConfiguration?: EqlAttributesConfigurationDc;
4480
4551
  style?: StyleDc;
4481
4552
  condition?: string | null;
4482
4553
  featuresLimit?: number;
@@ -4484,7 +4555,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
4484
4555
  simplify?: SimplifyInfoDc;
4485
4556
  };
4486
4557
  /**
4487
- * EQL parameter configuration.
4558
+ * EQL parameter configuration data contract.
4488
4559
  */
4489
4560
  export interface QueryLayerServiceEqlParameterConfigurationDc {
4490
4561
  /**
@@ -4533,6 +4604,23 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
4533
4604
  availableValues?: any[];
4534
4605
  /** Default value. */
4535
4606
  default?: any;
4607
+ /** EQL value from query configuration parameter data contract. */
4608
+ queryValue?: QueryLayerServiceEqlParameterQueryValueConfigurationDc;
4609
+ }
4610
+ /**
4611
+ * EQL value from query configuration parameter data contract.
4612
+ */
4613
+ export interface QueryLayerServiceEqlParameterQueryValueConfigurationDc {
4614
+ /** Is values cached. */
4615
+ isCached?: boolean;
4616
+ /** Use only first value, not array. */
4617
+ isSingleValue?: boolean;
4618
+ /** Name of the column containing the value. */
4619
+ valueColumn?: string;
4620
+ /** Query text. */
4621
+ ds?: string;
4622
+ /** Query text. */
4623
+ query?: string;
4536
4624
  }
4537
4625
  /**
4538
4626
  * Service info for a feature layer service.
@@ -4548,6 +4636,8 @@ export interface QueryLayerServiceInfoDc {
4548
4636
  copyrightText?: string;
4549
4637
  /** Client data storage. Storage isn't used by server. */
4550
4638
  clientData?: any;
4639
+ /** Card configuration. Storage isn't used by server. */
4640
+ cardConfiguration?: any;
4551
4641
  /** The type of the resource. */
4552
4642
  type: string;
4553
4643
  /**
@@ -4715,16 +4805,6 @@ export interface RasterBandMetaDc {
4715
4805
  /** Data histogram. */
4716
4806
  dataHistogram?: Record<string, number>;
4717
4807
  }
4718
- /**
4719
- * Upload raster task parameters data contract.
4720
- */
4721
- export declare type RasterBuildVrtTaskParametersDc = TaskParametersDc & {
4722
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
4723
- rasters?: RasterVrtFeatureSourceDc[] | null;
4724
- attributes?: Record<string, any>;
4725
- overviewsCount?: number;
4726
- type?: string | null;
4727
- };
4728
4808
  /**
4729
4809
  * Raster classification cfg.
4730
4810
  */
@@ -4742,13 +4822,6 @@ export interface RasterClassificationCfg {
4742
4822
  /** Color. */
4743
4823
  color?: string;
4744
4824
  }
4745
- /**
4746
- * The result of a server task step execution.
4747
- */
4748
- export declare type RasterCogCreatorStepResultDc = StepResultDc & {
4749
- cogStepInProgress?: string | null;
4750
- cogStepProgress?: number;
4751
- };
4752
4825
  /**
4753
4826
  * RasterMetaDc.
4754
4827
  */
@@ -4874,6 +4947,7 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
4874
4947
  subDomains?: string[] | null;
4875
4948
  allowDirectAccess?: boolean;
4876
4949
  RequestTimeout?: number;
4950
+ useProxyHttpClient?: boolean;
4877
4951
  };
4878
4952
  export interface RemoteTileServiceInfo {
4879
4953
  /** Description of a service in the Spatial Processor. */
@@ -4988,15 +5062,15 @@ export interface ResourceParentDc {
4988
5062
  }
4989
5063
  /**
4990
5064
  * Resources types filter.
4991
-
5065
+
4992
5066
  RemoteTileService
4993
-
5067
+
4994
5068
  ProxyService
4995
-
5069
+
4996
5070
  PostgresLayerService
4997
-
5071
+
4998
5072
  QueryLayerService
4999
-
5073
+
5000
5074
  TileCatalogTable
5001
5075
  */
5002
5076
  export declare enum ResourceSubTypeFilter {
@@ -5008,20 +5082,22 @@ export declare enum ResourceSubTypeFilter {
5008
5082
  }
5009
5083
  /**
5010
5084
  *
5011
-
5085
+
5012
5086
  Unknown
5013
-
5087
+
5014
5088
  table
5015
-
5089
+
5016
5090
  layer
5017
-
5091
+
5018
5092
  project
5019
-
5093
+
5020
5094
  file
5021
-
5095
+
5022
5096
  feature
5023
-
5097
+
5024
5098
  tag
5099
+
5100
+ datasource
5025
5101
  */
5026
5102
  export declare enum ResourceType {
5027
5103
  Unknown = "Unknown",
@@ -5030,25 +5106,26 @@ export declare enum ResourceType {
5030
5106
  Project = "project",
5031
5107
  File = "file",
5032
5108
  Feature = "feature",
5033
- Tag = "tag"
5109
+ Tag = "tag",
5110
+ DataSource = "datasource"
5034
5111
  }
5035
5112
  /**
5036
5113
  * Resources types filter.
5037
-
5114
+
5038
5115
  Map
5039
-
5116
+
5040
5117
  Layer
5041
-
5118
+
5042
5119
  Table
5043
-
5120
+
5044
5121
  RasterCatalog
5045
-
5122
+
5046
5123
  ProxyService
5047
-
5124
+
5048
5125
  RemoteTileService
5049
-
5126
+
5050
5127
  File
5051
-
5128
+
5052
5129
  DataSource
5053
5130
  */
5054
5131
  export declare enum ResourceTypeFilter {
@@ -5068,9 +5145,9 @@ export declare enum ResourceTypeLink {
5068
5145
  }
5069
5146
  /**
5070
5147
  * Response type.
5071
-
5148
+
5072
5149
  code
5073
-
5150
+
5074
5151
  token
5075
5152
  */
5076
5153
  export declare enum ResponseType {
@@ -5208,6 +5285,26 @@ export interface RoutingProviderInfoDc {
5208
5285
  */
5209
5286
  maxPointsInBatch?: number;
5210
5287
  }
5288
+ /**
5289
+ * S3 data source settings.
5290
+ */
5291
+ export declare type S3DataSourceDc = DataSourceDc & {
5292
+ type?: DataSourceType;
5293
+ endpoint?: string | null;
5294
+ secretKey?: string | null;
5295
+ accessKey?: string | null;
5296
+ region?: string | null;
5297
+ port?: number | null;
5298
+ };
5299
+ /**
5300
+ * S3 data source info.
5301
+ */
5302
+ export declare type S3DataSourceInfoDc = DataSourceInfoDc & {
5303
+ endpoint?: string | null;
5304
+ secretKey?: string | null;
5305
+ accessKey?: string | null;
5306
+ region?: string | null;
5307
+ };
5211
5308
  /**
5212
5309
  * ScaleBar element data contract.
5213
5310
  */
@@ -5280,15 +5377,6 @@ export declare type SearchStepResultDc = BaseStepResultDc & {
5280
5377
  layerName?: string | null;
5281
5378
  foundObjects?: number;
5282
5379
  };
5283
- /**
5284
- * Universal search task parameters.
5285
- */
5286
- export declare type SearchTaskParametersDc = TaskParametersDc & {
5287
- type?: string | null;
5288
- sources: (ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc)[];
5289
- filter?: string | null;
5290
- attributes?: string[] | null;
5291
- };
5292
5380
  /**
5293
5381
  * Suggest user information.
5294
5382
  */
@@ -5318,35 +5406,6 @@ export interface ServerInfoDc {
5318
5406
  */
5319
5407
  startedAt?: string;
5320
5408
  }
5321
- /**
5322
- * Status of the server task.
5323
-
5324
- None
5325
-
5326
- Scheduled
5327
-
5328
- Planning
5329
-
5330
- Executing
5331
-
5332
- Completed
5333
-
5334
- Failed
5335
-
5336
- Canceled
5337
-
5338
- Timeout
5339
- */
5340
- export declare enum ServerTaskStatus {
5341
- None = "None",
5342
- Scheduled = "Scheduled",
5343
- Planning = "Planning",
5344
- Executing = "Executing",
5345
- Completed = "Completed",
5346
- Failed = "Failed",
5347
- Canceled = "Canceled",
5348
- Timeout = "Timeout"
5349
- }
5350
5409
  /**
5351
5410
  * Common fields for service configurations.
5352
5411
  */
@@ -5406,6 +5465,8 @@ export interface ServiceInfo {
5406
5465
  * feature
5407
5466
  *
5408
5467
  * tag
5468
+ *
5469
+ * datasource
5409
5470
  */
5410
5471
  resourceType?: ResourceType;
5411
5472
  /** Categories of the service. */
@@ -5436,6 +5497,7 @@ export interface ServiceInfo {
5436
5497
  inVisible?: boolean;
5437
5498
  parentId?: string;
5438
5499
  resourceId?: string;
5500
+ sourcePath?: string;
5439
5501
  preview?: string;
5440
5502
  }
5441
5503
  /**
@@ -5543,9 +5605,6 @@ export interface ServiceListItemDc {
5543
5605
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5544
5606
  invisibleInCatalog?: boolean;
5545
5607
  }
5546
- export interface SessionStaticTaskDataStorageDescription {
5547
- folderName?: string;
5548
- }
5549
5608
  /**
5550
5609
  * Ending settings.
5551
5610
  */
@@ -5595,7 +5654,7 @@ export interface SimpleEndingDc {
5595
5654
  }
5596
5655
  /**
5597
5656
  * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
5598
-
5657
+
5599
5658
  If the ending is set to be other then None, the size and color of the ending will be calculated based on the
5600
5659
  stroke width and color of the symbol.
5601
5660
  */
@@ -5670,11 +5729,11 @@ export interface SimplifyInfoItemDc {
5670
5729
  }
5671
5730
  /**
5672
5731
  *
5673
-
5732
+
5674
5733
  Basic
5675
-
5734
+
5676
5735
  PreserveTopology
5677
-
5736
+
5678
5737
  VW
5679
5738
  */
5680
5739
  export declare enum SimplifyType {
@@ -5825,13 +5884,13 @@ export declare type StepResultDc = BaseStepResultDc & {
5825
5884
  };
5826
5885
  /**
5827
5886
  *
5828
-
5887
+
5829
5888
  None
5830
-
5889
+
5831
5890
  Image
5832
-
5891
+
5833
5892
  PkkCode
5834
-
5893
+
5835
5894
  Attachments
5836
5895
  */
5837
5896
  export declare enum StringSubType {
@@ -5893,6 +5952,20 @@ export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBase
5893
5952
  style: StyleDc;
5894
5953
  baseServiceName: string;
5895
5954
  };
5955
+ /**
5956
+ * SubTaskSettingsDto.
5957
+ */
5958
+ export interface SubTaskSettingsDto {
5959
+ /**
5960
+ * Order.
5961
+ * @format int32
5962
+ */
5963
+ order?: number;
5964
+ /** Type. */
5965
+ type?: string;
5966
+ /** StartParameters. */
5967
+ startParameters?: any;
5968
+ }
5896
5969
  /**
5897
5970
  * Provides properties overrides svg attributes.
5898
5971
  */
@@ -6008,6 +6081,7 @@ export interface TableConfigurationBaseDc {
6008
6081
  * Table description.
6009
6082
  */
6010
6083
  export declare type TableInfoDc = ResourceInfoDc & {
6084
+ systemName?: string | null;
6011
6085
  rowCount?: number;
6012
6086
  geometries?: GeometryType[] | null;
6013
6087
  type?: string | null;
@@ -6045,182 +6119,46 @@ export interface TagsFilterDto {
6045
6119
  */
6046
6120
  useAnd?: boolean;
6047
6121
  }
6048
- /**
6049
- * Task owner group.
6050
-
6051
- my
6052
-
6053
- all
6054
- */
6055
- export declare enum TaskGroup {
6056
- My = "my",
6057
- All = "all"
6058
- }
6059
- /**
6060
- * Detailed information about a server task.
6061
- */
6062
- export interface TaskInfoDc {
6063
- /**
6064
- * Task id.
6065
- * @format uuid
6066
- */
6067
- id?: string;
6068
- /** Creator of the task. */
6069
- owner?: string;
6070
- /**
6071
- * Status of the server task.
6072
- *
6073
- * None
6074
- *
6075
- * Scheduled
6076
- *
6077
- * Planning
6078
- *
6079
- * Executing
6080
- *
6081
- * Completed
6082
- *
6083
- * Failed
6084
- *
6085
- * Canceled
6086
- *
6087
- * Timeout
6088
- */
6089
- status?: ServerTaskStatus;
6090
- /** Parameters of the task. */
6091
- parameters?: AggregateTaskParametersDc | AvailabilityAreaTaskDc | BufferTaskParametersDc | CopyTaskParametersDc | EditAttributesTaskParametersDc | FeatureTaskParametersDc | FilterCopyTaskParametersDc | OverlayTaskParametersDc | PipelineTaskParametersDc | PrintTaskParametersDc | SearchTaskParametersDc | UnionTaskParametersDc | UploadNetCdfTaskParametersDc | UploadRasterTaskParametersDc | RasterBuildVrtTaskParametersDc;
6092
- /**
6093
- * Date and time when the task was created.
6094
- * @format date-time
6095
- */
6096
- createdDate?: string;
6097
- /**
6098
- * Date and time when the execution of the task stated.
6099
- * @format date-time
6100
- */
6101
- startedDate?: string;
6102
- /**
6103
- * Date and time when the execution of the task finished.
6104
- * @format date-time
6105
- */
6106
- completedDate?: string;
6107
- }
6108
- /**
6109
- * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
6110
- */
6111
- export declare type TaskListDc = PagedListTaskStatusDataDc & object;
6112
6122
  /**
6113
6123
  * Base class for server tasks descriptions.
6114
6124
  */
6115
6125
  export interface TaskParametersDc {
6126
+ /** Type of the service. */
6127
+ service_type?: string;
6116
6128
  /** Type of the task. */
6117
- type?: string;
6129
+ task_type?: string;
6118
6130
  }
6119
6131
  /**
6120
- * Detailed information about a server task.
6132
+ * TaskPrototypeDto.
6121
6133
  */
6122
- export interface TaskProgressDc {
6134
+ export interface TaskPrototypeDto {
6123
6135
  /**
6124
- * Task id.
6136
+ * .
6125
6137
  * @format uuid
6126
6138
  */
6127
6139
  id?: string;
6140
+ /** User. */
6141
+ user?: string;
6128
6142
  /**
6129
- * Status of the server task.
6130
- *
6131
- * None
6132
- *
6133
- * Scheduled
6134
- *
6135
- * Planning
6136
- *
6137
- * Executing
6138
- *
6139
- * Completed
6140
- *
6141
- * Failed
6142
- *
6143
- * Canceled
6144
- *
6145
- * Timeout
6146
- */
6147
- status?: ServerTaskStatus;
6148
- /** The result of the server task execution. */
6149
- taskResult?: TaskResultDc;
6150
- /**
6151
- * Count of task steps.
6152
- * @format int32
6153
- */
6154
- stepCount?: number;
6155
- /**
6156
- * Current task step id.
6157
- * @format int32
6158
- */
6159
- currentStepId?: number;
6160
- /**
6161
- * Object count what already done in current step.
6162
- * @format int32
6163
- */
6164
- currentStepAlreadyDone?: number;
6165
- /**
6166
- * Object count on current step.
6167
- * @format int32
6168
- */
6169
- currentStepObjectCount?: number;
6170
- /**
6171
- * Some task batches may choose to report additional details about the execution process and result. These
6172
- * details are written in the format: { "Value description": int_value }.
6173
- */
6174
- resultDetails?: Record<string, number>;
6175
- }
6176
- /**
6177
- * The result of the server task execution.
6178
- */
6179
- export interface TaskResultDc {
6180
- message?: string;
6181
- stepResults?: (RasterCogCreatorStepResultDc | SearchStepResultDc | StepResultDc)[];
6182
- /** @format int64 */
6183
- inputObjectCount?: number;
6184
- /** @format int64 */
6185
- errorCount?: number;
6186
- /** @format int64 */
6187
- outputObjectCount?: number;
6188
- }
6189
- /**
6190
- * Server task data contract.
6191
- */
6192
- export interface TaskStatusDataDc {
6193
- /**
6194
- * Id of the task.
6195
- * @format uuid
6143
+ * CreatedAt.
6144
+ * @format date-time
6196
6145
  */
6197
- taskId?: string;
6198
- /** Type of the task. */
6199
- type?: string;
6200
- /** User started task. */
6201
- owner?: string;
6146
+ createdAt?: string;
6147
+ /** SubTaskSettings. */
6148
+ subTaskSettings?: SubTaskSettingsDto[];
6149
+ /** Enabled. */
6150
+ enabled?: boolean;
6151
+ /** StartIfPreviousError. */
6152
+ startIfPreviousError?: boolean;
6153
+ /** StartIfPreviousNotFinished. */
6154
+ startIfPreviousNotFinished?: boolean;
6202
6155
  /**
6203
- * Status of the server task.
6204
- *
6205
- * None
6206
- *
6207
- * Scheduled
6208
- *
6209
- * Planning
6210
- *
6211
- * Executing
6212
- *
6213
- * Completed
6214
- *
6215
- * Failed
6216
- *
6217
- * Canceled
6218
- *
6219
- * Timeout
6156
+ * DelayDate.
6157
+ * @format date-time
6220
6158
  */
6221
- status?: ServerTaskStatus;
6222
- /** The result of the server task execution. */
6223
- taskResult?: TaskResultDc;
6159
+ delayDate?: string;
6160
+ /** Schedule. */
6161
+ schedule?: string;
6224
6162
  }
6225
6163
  /**
6226
6164
  * Localization contains fields that should be localized on printing template.
@@ -6276,13 +6214,13 @@ export interface TestConnectionInfoDc {
6276
6214
  }
6277
6215
  /**
6278
6216
  * Sets the horizontal alignment of text.
6279
-
6217
+
6280
6218
  right
6281
-
6219
+
6282
6220
  left
6283
-
6221
+
6284
6222
  center
6285
-
6223
+
6286
6224
  justified
6287
6225
  */
6288
6226
  export declare enum TextAlignment {
@@ -6302,11 +6240,11 @@ export interface TextBackgroundDc {
6302
6240
  }
6303
6241
  /**
6304
6242
  * Sets the vertical alignment of text.
6305
-
6243
+
6306
6244
  top
6307
-
6245
+
6308
6246
  bottom
6309
-
6247
+
6310
6248
  middle
6311
6249
  */
6312
6250
  export declare enum TextVerticalAlignment {
@@ -6605,14 +6543,6 @@ export interface TileServiceInfoDc {
6605
6543
  /** Resource tags. */
6606
6544
  tags?: string[];
6607
6545
  }
6608
- /**
6609
- * The description of the tile feature layer service as a server task data storage.
6610
- */
6611
- export declare type TilingTaskDataStorageDc = BaseTaskDataStorageDc & {
6612
- serviceName: string;
6613
- createNewService?: boolean;
6614
- type?: string | null;
6615
- };
6616
6546
  /**
6617
6547
  * Access token request.
6618
6548
  */
@@ -6664,8 +6594,12 @@ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
6664
6594
  /**
6665
6595
  * The operation that unites the features in the storage.
6666
6596
  */
6667
- export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
6668
- type?: string | null;
6597
+ export declare type UnionTaskDc = TaskParametersDc & {
6598
+ sourceLayer: string;
6599
+ targetLayer: string;
6600
+ groupAttribute?: string | null;
6601
+ task_type?: string | null;
6602
+ service_type?: string | null;
6669
6603
  };
6670
6604
  /**
6671
6605
  * Feature object definition for updating.
@@ -6728,6 +6662,26 @@ export declare type UpdateTableDc = TableInfoDc & {
6728
6662
  columnsAdd?: ColumnDescriptionDc[] | null;
6729
6663
  columnsDelete?: string[] | null;
6730
6664
  };
6665
+ /**
6666
+ * UpdateTaskPrototypeDto.
6667
+ */
6668
+ export interface UpdateTaskPrototypeDto {
6669
+ /** SubTaskSettings. */
6670
+ subTaskSettings?: SubTaskSettingsDto[];
6671
+ /** Enabled. */
6672
+ enabled?: boolean;
6673
+ /** StartIfPreviousError. */
6674
+ startIfPreviousError?: boolean;
6675
+ /** StartIfPreviousNotFinished. */
6676
+ startIfPreviousNotFinished?: boolean;
6677
+ /**
6678
+ * DelayDate.
6679
+ * @format date-time
6680
+ */
6681
+ delayDate?: string;
6682
+ /** Schedule. */
6683
+ schedule?: string;
6684
+ }
6731
6685
  /**
6732
6686
  * Update user data contract.
6733
6687
  */
@@ -6766,34 +6720,6 @@ export interface UpdateUserDc {
6766
6720
  /** Phone number. */
6767
6721
  phone?: string;
6768
6722
  }
6769
- /**
6770
- * Upload raster task parameters data contract.
6771
- */
6772
- export declare type UploadNetCdfTaskParametersDc = TaskParametersDc & {
6773
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
6774
- file: string;
6775
- dimName?: string | null;
6776
- dimExtraName?: string | null;
6777
- dimExtraValues?: string[] | null;
6778
- attributes?: Record<string, any>;
6779
- maxZoomLevel: number;
6780
- polygonize?: boolean;
6781
- proj?: string | null;
6782
- type?: string | null;
6783
- };
6784
- /**
6785
- * Upload raster task parameters data contract.
6786
- */
6787
- export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
6788
- target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc | TilingTaskDataStorageDc;
6789
- files: string[];
6790
- attributes?: Record<string, any>;
6791
- maxZoomLevel: number;
6792
- polygonize?: boolean;
6793
- bands?: number[] | null;
6794
- useCog?: boolean;
6795
- type?: string | null;
6796
- };
6797
6723
  /**
6798
6724
  * Set used project.
6799
6725
  */
@@ -6842,6 +6768,15 @@ export interface UserOrRoleDc {
6842
6768
  /** User own role. */
6843
6769
  aclRole?: string;
6844
6770
  }
6771
+ /**
6772
+ * Descriptioned value data contract.
6773
+ */
6774
+ export interface ValueDc {
6775
+ /** Description. */
6776
+ description?: string;
6777
+ /** Value. */
6778
+ value?: any;
6779
+ }
6845
6780
  export interface ValueTupleStringString {
6846
6781
  item1?: string;
6847
6782
  item2?: string;
@@ -6860,6 +6795,7 @@ export interface ValuesRangeDc {
6860
6795
  max: any;
6861
6796
  }
6862
6797
  export interface Vector2 {
6798
+ coords?: TypeCoordsEFixedBuffer;
6863
6799
  /** @format double */
6864
6800
  x?: number;
6865
6801
  /** @format double */
@@ -6873,6 +6809,144 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6873
6809
  eql?: string | null;
6874
6810
  eqlParameters?: Record<string, any>;
6875
6811
  };
6812
+ /**
6813
+ * S3 data source settings.
6814
+ */
6815
+ export declare type WmsDataSourceDc = DataSourceDc & {
6816
+ type?: DataSourceType;
6817
+ serviceUrl?: string | null;
6818
+ params?: Record<string, string | null>;
6819
+ headers?: Record<string, string | null>;
6820
+ };
6821
+ /**
6822
+ *
6823
+
6824
+ Task
6825
+
6826
+ Rest
6827
+
6828
+ Both
6829
+ */
6830
+ export declare enum WorkerMethodType {
6831
+ Task = "Task",
6832
+ Rest = "Rest",
6833
+ Both = "Both"
6834
+ }
6835
+ /**
6836
+ * Worker settings field data contract.
6837
+ */
6838
+ export interface WorkerSettingsFieldDc {
6839
+ /** Name. */
6840
+ name?: string;
6841
+ /** Alias. */
6842
+ alias?: string;
6843
+ /** Group. */
6844
+ group?: string;
6845
+ /**
6846
+ *
6847
+ *
6848
+ * Integer
6849
+ *
6850
+ * Double
6851
+ *
6852
+ * String
6853
+ *
6854
+ * Extent
6855
+ *
6856
+ * Geometry
6857
+ *
6858
+ * IntergerArray
6859
+ *
6860
+ * DoubleArray
6861
+ *
6862
+ * StringArray
6863
+ *
6864
+ * Boolean
6865
+ *
6866
+ * SourceEql
6867
+ *
6868
+ * Layer
6869
+ *
6870
+ * Table
6871
+ *
6872
+ * Folder
6873
+ *
6874
+ * Json
6875
+ *
6876
+ * Expression
6877
+ *
6878
+ * Expressions
6879
+ */
6880
+ type?: WorkerSettingsFieldType;
6881
+ /** Lookup values. */
6882
+ lookupValues?: Record<string, string | null>;
6883
+ /** Children fields. */
6884
+ ChildrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
6885
+ }
6886
+ /**
6887
+ *
6888
+
6889
+ Integer
6890
+
6891
+ Double
6892
+
6893
+ String
6894
+
6895
+ Extent
6896
+
6897
+ Geometry
6898
+
6899
+ IntergerArray
6900
+
6901
+ DoubleArray
6902
+
6903
+ StringArray
6904
+
6905
+ Boolean
6906
+
6907
+ SourceEql
6908
+
6909
+ Layer
6910
+
6911
+ Table
6912
+
6913
+ Folder
6914
+
6915
+ Json
6916
+
6917
+ Expression
6918
+
6919
+ Expressions
6920
+ */
6921
+ export declare enum WorkerSettingsFieldType {
6922
+ Integer = "Integer",
6923
+ Double = "Double",
6924
+ String = "String",
6925
+ Extent = "Extent",
6926
+ Geometry = "Geometry",
6927
+ IntergerArray = "IntergerArray",
6928
+ DoubleArray = "DoubleArray",
6929
+ StringArray = "StringArray",
6930
+ Boolean = "Boolean",
6931
+ SourceEql = "SourceEql",
6932
+ Layer = "Layer",
6933
+ Table = "Table",
6934
+ Folder = "Folder",
6935
+ Json = "Json",
6936
+ Expression = "Expression",
6937
+ Expressions = "Expressions"
6938
+ }
6939
+ /**
6940
+ * Worker post method params.
6941
+ */
6942
+ export interface WorkerStartMethodDto {
6943
+ /** Worker type. */
6944
+ workerType: string;
6945
+ /** Method type. */
6946
+ methodType: string;
6947
+ /** Method input parameters. */
6948
+ data?: any;
6949
+ }
6876
6950
  /**
6877
6951
  * Workspace limits data contract.
6878
6952
  */
@@ -7290,6 +7364,12 @@ export interface RemoveLayerParameterValueParams {
7290
7364
  /** Layer parameter name. */
7291
7365
  paramName?: string;
7292
7366
  }
7367
+ export interface GetAvailiableLayerParametersParams {
7368
+ /** Layer name. */
7369
+ layerName?: string;
7370
+ /** Only specified parameter name. */
7371
+ paramName?: string;
7372
+ }
7293
7373
  export interface IncreaseResourcesLimitParams {
7294
7374
  /**
7295
7375
  * Additional maps count.
@@ -7438,8 +7518,8 @@ export interface GetRasterAttributesParams {
7438
7518
  fileName?: string;
7439
7519
  }
7440
7520
  export interface GetRasterMetaParams {
7441
- /** Raster filename. */
7442
- fileName?: string;
7521
+ /** Raster resource id.. */
7522
+ resourceId?: string;
7443
7523
  }
7444
7524
  export declare type GetBulkFeaturesPayload = GetBulkFeaturesParametersDc[];
7445
7525
  export declare type GetBulkExtentsPayload = GetBulkExtentsDc[];
@@ -7515,6 +7595,8 @@ export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | P
7515
7595
  */
7516
7596
  export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc;
7517
7597
  export interface GetFeatures1Params {
7598
+ /** Click geometry. */
7599
+ ewktGeometry?: string;
7518
7600
  /** Sets features filtering query. */
7519
7601
  query?: string;
7520
7602
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
@@ -7914,7 +7996,7 @@ export interface ValidateExpressionParams {
7914
7996
  /** Layer name. */
7915
7997
  layerName: string;
7916
7998
  }
7917
- export interface GetRasterMetaParams3 {
7999
+ export interface GetRasterMetaParams2 {
7918
8000
  /**
7919
8001
  * Min value for build histogram.
7920
8002
  * @format double
@@ -8091,6 +8173,45 @@ export interface UpdateBody {
8091
8173
  file?: File;
8092
8174
  }
8093
8175
  export declare type RunPayload = Record<string, any>;
8176
+ export interface GetTaskPrototypesParams {
8177
+ /** Username. */
8178
+ Username?: string;
8179
+ /**
8180
+ * Skip.
8181
+ * @format int32
8182
+ */
8183
+ Skip?: number;
8184
+ /**
8185
+ * Take.
8186
+ * @format int32
8187
+ */
8188
+ Take?: number;
8189
+ /** OrderBy. */
8190
+ OrderBy?: string;
8191
+ /** Desc. */
8192
+ Desc?: boolean;
8193
+ }
8194
+ export interface GetTasksForPrototypeParams {
8195
+ /**
8196
+ * Skip.
8197
+ * @format int32
8198
+ */
8199
+ Skip?: number;
8200
+ /**
8201
+ * Take.
8202
+ * @format int32
8203
+ */
8204
+ Take?: number;
8205
+ /** OrderBy. */
8206
+ OrderBy?: string;
8207
+ /** Desc. */
8208
+ Desc?: boolean;
8209
+ /**
8210
+ * Id.
8211
+ * @format uuid
8212
+ */
8213
+ id: string;
8214
+ }
8094
8215
  export interface CheckLimitsParams {
8095
8216
  /** Workspace. */
8096
8217
  userName?: string;
@@ -8133,62 +8254,6 @@ export interface CreateStorageParams {
8133
8254
  /** S3 storage name. */
8134
8255
  storageName?: string;
8135
8256
  }
8136
- export interface GetTaskListParams {
8137
- /**
8138
- * Comma separated list of the task statuses. Filters only the tasks with the given statuses.
8139
- *
8140
- * None
8141
- *
8142
- * Scheduled
8143
- *
8144
- * Planning
8145
- *
8146
- * Executing
8147
- *
8148
- * Completed
8149
- *
8150
- * Failed
8151
- *
8152
- * Canceled
8153
- *
8154
- * Timeout
8155
- */
8156
- status?: ServerTaskStatus[];
8157
- /** Filter the tasks by their ids. */
8158
- id?: string[];
8159
- /** Filter the tasks by owners. */
8160
- owners?: string[];
8161
- /** Columns to returns. */
8162
- columns?: string[];
8163
- /**
8164
- * Owner group.
8165
- *
8166
- * my
8167
- *
8168
- * all
8169
- */
8170
- group?: TaskGroup;
8171
- /**
8172
- * Takes tasks created before given date and time.
8173
- * @format date-time
8174
- */
8175
- createdBefore?: string;
8176
- /**
8177
- * Takes tasks created after given date and time.
8178
- * @format date-time
8179
- */
8180
- createdAfter?: string;
8181
- /**
8182
- * The first index to return.
8183
- * @format int32
8184
- */
8185
- offset?: number;
8186
- /**
8187
- * The max number of items to return.
8188
- * @format int32
8189
- */
8190
- limit?: number;
8191
- }
8192
8257
  export interface FindUserByNameByRolesParams {
8193
8258
  /** Roles. */
8194
8259
  roles?: string[];
@@ -8218,6 +8283,8 @@ export interface GetPolicyListParams {
8218
8283
  * MaxObjectsToExport
8219
8284
  *
8220
8285
  * MaxUploadContentSize
8286
+ *
8287
+ * MaxEqlQueryParametersValues
8221
8288
  */
8222
8289
  type?: PolicyType;
8223
8290
  }
@@ -8238,6 +8305,8 @@ export interface RemovePolicyParams {
8238
8305
  * MaxObjectsToExport
8239
8306
  *
8240
8307
  * MaxUploadContentSize
8308
+ *
8309
+ * MaxEqlQueryParametersValues
8241
8310
  */
8242
8311
  type?: PolicyType;
8243
8312
  /** Use role the policy is applied to. */
@@ -8325,7 +8394,7 @@ export interface StatisticsDbParams {
8325
8394
  */
8326
8395
  types?: AggregationFunction[];
8327
8396
  }
8328
- export interface ClassifyParams2 {
8397
+ export interface ClassifyParams8 {
8329
8398
  /** Layer name. */
8330
8399
  name: string;
8331
8400
  /** Attribute name. */
@@ -8458,7 +8527,7 @@ export interface GetTableListParams {
8458
8527
  acl?: string;
8459
8528
  }
8460
8529
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
8461
- export interface DeleteResourcesParams6 {
8530
+ export interface DeleteResourcesParams3 {
8462
8531
  /** Resource names. */
8463
8532
  names?: string[];
8464
8533
  }
@@ -8615,7 +8684,7 @@ export interface GetPublicCapabilitiesParams {
8615
8684
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8616
8685
  AcceptFormats?: string[];
8617
8686
  }
8618
- export interface GetCapabilitiesParams6 {
8687
+ export interface GetCapabilitiesParams7 {
8619
8688
  /** Output format of service metadata. */
8620
8689
  Format?: string;
8621
8690
  /** Must be WMS. */