@evergis/api 3.0.214 → 4.0.1-alpha.0

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 (33) hide show
  1. package/dist/Api.d.ts +3 -5
  2. package/dist/__generated__/AccountService.d.ts +2 -2
  3. package/dist/__generated__/DataSourceService.d.ts +46 -2
  4. package/dist/__generated__/EqlService.d.ts +12 -1
  5. package/dist/__generated__/LayersService.d.ts +2 -2
  6. package/dist/__generated__/ProjectsService.d.ts +2 -2
  7. package/dist/__generated__/RemoteTaskManagerService.d.ts +262 -0
  8. package/dist/__generated__/TablesService.d.ts +2 -2
  9. package/dist/__generated__/WmsServerService.d.ts +2 -2
  10. package/dist/__generated__/data-contracts.d.ts +493 -455
  11. package/dist/api.cjs.development.js +509 -857
  12. package/dist/api.cjs.development.js.map +1 -1
  13. package/dist/api.cjs.production.min.js +1 -1
  14. package/dist/api.cjs.production.min.js.map +1 -1
  15. package/dist/api.esm.js +565 -883
  16. package/dist/api.esm.js.map +1 -1
  17. package/dist/index.d.ts +0 -3
  18. package/dist/services/RemoteTaskManager.d.ts +3 -0
  19. package/dist/services/Statistic.d.ts +4 -2
  20. package/dist/services/index.d.ts +1 -1
  21. package/dist/utils/errorHandler.d.ts +1 -1
  22. package/dist/utils/index.d.ts +0 -1
  23. package/package.json +2 -2
  24. package/dist/SpatialProcessor.d.ts +0 -30
  25. package/dist/__generated__/SchedulerService.d.ts +0 -207
  26. package/dist/layers/EvergisDynamicLayer.d.ts +0 -28
  27. package/dist/layers/EvergisTileLayer.d.ts +0 -18
  28. package/dist/layers/LayersManager.d.ts +0 -11
  29. package/dist/layers/index.d.ts +0 -3
  30. package/dist/services/Scheduler.d.ts +0 -20
  31. package/dist/types/EvergisLayer.d.ts +0 -6
  32. package/dist/types/index.d.ts +0 -1
  33. 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;
@@ -206,62 +244,21 @@ 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
+ serviceUrl?: string | null;
251
+ username?: string | null;
252
+ password?: string | null;
253
+ };
254
+ /**
255
+ * S3 data source info.
256
+ */
257
+ export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
258
+ serviceUrl?: string | null;
259
+ username?: string | null;
260
+ password?: string | null;
261
+ };
265
262
  /**
266
263
  * Archive calendar response.
267
264
  */
@@ -738,20 +735,31 @@ export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
738
735
  endColor?: ParameterDcColor;
739
736
  };
740
737
  /**
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;
738
+ * Available area task.
739
+ */
740
+ export declare type AvailableAreaTaskDc = TaskParametersDc & {
741
+ sourceLayer: string;
742
+ targetLayer: string;
743
+ duration?: string | null;
744
+ providerName?: string | null;
748
745
  durationAttributeName?: string | null;
749
746
  routeCenterXAttributeName?: string | null;
750
747
  routeCenterYAttributeName?: string | null;
751
748
  baseObjectIdAttributeName?: string | null;
752
749
  idAttributeName?: string | null;
753
750
  geometryAttributeName?: string | null;
751
+ service_type?: string | null;
752
+ task_type?: string | null;
754
753
  };
754
+ /**
755
+ * Availiable values data contract.
756
+ */
757
+ export interface AvailiableValuesDc {
758
+ /** Layer name. */
759
+ layerName?: string;
760
+ /** Dictionary of availiable parameters values. */
761
+ values?: Record<string, ValueDc[] | null>;
762
+ }
755
763
  export interface Base64String {
756
764
  value?: string;
757
765
  }
@@ -804,15 +812,15 @@ export interface BrushDc {
804
812
  * Buffer operation calculates the buffer geometries around the input geometries and writes them
805
813
  into the target storage.
806
814
  */
807
- export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
808
- type?: string | null;
815
+ export declare type BufferTaskDc = TaskParametersDc & {
816
+ sourceLayer: string;
817
+ targetLayer: string;
809
818
  radii: string[];
810
- excludeInnerBuffers?: boolean;
811
- excludeSourcePolygon?: boolean;
812
819
  baseObjectIdAttributeName?: string | null;
813
820
  radiusAttributeName?: string | null;
814
- idAttributeName?: string | null;
815
- geometryAttributeName?: string | null;
821
+ attributesToCopy?: string[] | null;
822
+ task_type?: string | null;
823
+ service_type?: string | null;
816
824
  };
817
825
  /**
818
826
  * Get bulk extents data conteract.
@@ -1412,7 +1420,7 @@ export declare enum ConfigurationErrorEnum {
1412
1420
  InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
1413
1421
  }
1414
1422
  /**
1415
- * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
1423
+ * SPCore.Connectors.Connectors.Base.Models.RemoteTaskManager.CopyTask.Storages.ConfiguredLayerDataStorageDc provides configurable layer storage.
1416
1424
  */
1417
1425
  export declare type ConfiguredLayerDataStorageDc = BaseTaskDataStorageDc & {
1418
1426
  type?: string | null;
@@ -1441,6 +1449,8 @@ export interface CopyResourceDc {
1441
1449
  * feature
1442
1450
  *
1443
1451
  * tag
1452
+ *
1453
+ * datasource
1444
1454
  */
1445
1455
  type: ResourceType;
1446
1456
  /** Resource copy name. */
@@ -1474,6 +1484,8 @@ export interface CopyResourceResultDc {
1474
1484
  * feature
1475
1485
  *
1476
1486
  * tag
1487
+ *
1488
+ * datasource
1477
1489
  */
1478
1490
  type: ResourceType;
1479
1491
  /** Name of resource to copy. */
@@ -1488,10 +1500,30 @@ export interface CopyResourceResultDc {
1488
1500
  /**
1489
1501
  * Server task that copies the objects from one storage to another.
1490
1502
  */
1491
- export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
1492
- type?: string | null;
1493
- condition?: string | null;
1503
+ export declare type CopyTableTaskDc = TaskParametersDc & {
1504
+ sourceLayer: string;
1505
+ targetLayer: string;
1494
1506
  attributeMapping?: Record<string, string | null>;
1507
+ task_type?: string | null;
1508
+ service_type?: string | null;
1509
+ };
1510
+ /**
1511
+ * Buffer operation calculates the buffer geometries around the input geometries and writes them
1512
+ into the target storage.
1513
+ */
1514
+ export declare type CopyTaskDc = TaskParametersDc & {
1515
+ source: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1516
+ target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | GdbStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | KmlStaticTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TabStaticTaskDataStorageDc;
1517
+ attributeMapping?: Record<string, string | null>;
1518
+ attributeTypeMapping?: Record<string, AttributeType>;
1519
+ task_type?: string | null;
1520
+ service_type?: string | null;
1521
+ };
1522
+ /**
1523
+ * The result of a server task step execution.
1524
+ */
1525
+ export declare type CopyTaskStepResultDc = StepResultDc & {
1526
+ resourceId?: string | null;
1495
1527
  };
1496
1528
  /**
1497
1529
  * Create directory request.
@@ -1510,6 +1542,49 @@ export interface CreateDirectoryDc {
1510
1542
  /** If true root folder will create as temporary. */
1511
1543
  isTemporary?: boolean;
1512
1544
  }
1545
+ /**
1546
+ * Upload raster task parameters data contract.
1547
+ */
1548
+ export declare type CreateRasterCogTaskDc = TaskParametersDc & {
1549
+ layer: string;
1550
+ srId: number;
1551
+ file?: string | null;
1552
+ attributes?: Record<string, any>;
1553
+ overviewsCount: number;
1554
+ bands?: number[] | null;
1555
+ task_type?: string | null;
1556
+ service_type?: string | null;
1557
+ };
1558
+ /**
1559
+ * Upload raster task parameters data contract.
1560
+ */
1561
+ export declare type CreateRasterNetCdfTaskDc = TaskParametersDc & {
1562
+ layer: string;
1563
+ srId: number;
1564
+ file: string;
1565
+ variables?: string[] | null;
1566
+ treatVariablesAsBands?: boolean;
1567
+ dimExtraName?: string | null;
1568
+ dimExtraValues?: string[] | null;
1569
+ attributes?: Record<string, any>;
1570
+ overviewsCount: number;
1571
+ proj?: string | null;
1572
+ task_type?: string | null;
1573
+ service_type?: string | null;
1574
+ };
1575
+ /**
1576
+ * Upload raster task parameters data contract.
1577
+ */
1578
+ export declare type CreateRasterVrtTaskDc = TaskParametersDc & {
1579
+ layer: string;
1580
+ srId: number;
1581
+ overviewsCount: number;
1582
+ rasters?: RasterVrtFeatureSourceDc[] | null;
1583
+ attributes?: Record<string, any>;
1584
+ maxZoomLevel: number;
1585
+ task_type?: string | null;
1586
+ service_type?: string | null;
1587
+ };
1513
1588
  /**
1514
1589
  * Data contract for create new role.
1515
1590
  */
@@ -1767,15 +1842,6 @@ export interface EditAttributesInfoDc {
1767
1842
  /** Expression to edit. */
1768
1843
  editExpression: string;
1769
1844
  }
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
1845
  /**
1780
1846
  * Envelope geometry.
1781
1847
  */
@@ -2343,13 +2409,6 @@ export interface FeatureSymbolDc {
2343
2409
  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
2410
  image?: string;
2345
2411
  }
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
2412
  /**
2354
2413
  * Type of the feature.
2355
2414
 
@@ -2377,8 +2436,12 @@ export interface FeaturesListDc {
2377
2436
  * Uploading file info.
2378
2437
  */
2379
2438
  export interface FileUploadInfoDc {
2439
+ /** Resource id. */
2440
+ resourceId?: string;
2380
2441
  /** Name of uploaded file. */
2381
2442
  fileName?: string;
2443
+ /** Id of the file. */
2444
+ fileId?: string;
2382
2445
  /**
2383
2446
  * Content length in bytes, if specified.
2384
2447
  * @format int64
@@ -2391,8 +2454,12 @@ export interface FileUploadInfoDc {
2391
2454
  * The result of uploading a file.
2392
2455
  */
2393
2456
  export interface FileUploadResponse {
2457
+ /** Resource id. */
2458
+ resourceId?: string;
2394
2459
  /** Id of the tile in the session static storage. */
2395
2460
  fileId?: string;
2461
+ /** Id of the file source. */
2462
+ sourceId?: string;
2396
2463
  /** Url to file. */
2397
2464
  url?: string;
2398
2465
  }
@@ -2455,16 +2522,6 @@ export declare type FilledSquareLineEndingDc = LineEndingBaseDc & {
2455
2522
  vOffset?: CalculatedParameterDc | null;
2456
2523
  hOffset?: CalculatedParameterDc | null;
2457
2524
  };
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
2525
  /**
2469
2526
  * Server response for the creation of a filter in filter service.
2470
2527
  */
@@ -2582,6 +2639,19 @@ export interface GeocodeSuggestResultDc {
2582
2639
  /** Source label. */
2583
2640
  label?: string;
2584
2641
  }
2642
+ /**
2643
+ * Geocode task.
2644
+ */
2645
+ export declare type GeocodeTaskDc = TaskParametersDc & {
2646
+ sourceLayer: string;
2647
+ targetLayer: string;
2648
+ geocodeFromGeometry?: boolean;
2649
+ geocodeProviderName: string | null;
2650
+ geocodeAttributeName?: string | null;
2651
+ geocodeAddressAttributeName?: string | null;
2652
+ service_type?: string | null;
2653
+ task_type?: string | null;
2654
+ };
2585
2655
  /**
2586
2656
  * Geometry data contract.
2587
2657
  */
@@ -3693,10 +3763,14 @@ export declare enum Operation {
3693
3763
  /**
3694
3764
  * Subtracts feature of ToolLayer from the features of the source layer, and writes them in the target layer.
3695
3765
  */
3696
- export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
3697
- type?: string | null;
3766
+ export declare type OverlayTaskDc = TaskParametersDc & {
3767
+ sourceLayer: string;
3768
+ targetLayer: string;
3769
+ overlayLayer: string;
3698
3770
  operation: Operation;
3699
- toolLayer?: LayerTaskDataStorageDc;
3771
+ AttributesToCopy?: string[] | null;
3772
+ task_type?: string | null;
3773
+ service_type?: string | null;
3700
3774
  };
3701
3775
  /**
3702
3776
  * Filter exists resources by owner.
@@ -3740,7 +3814,7 @@ export interface PagedListDataSourceInfoDc {
3740
3814
  offset?: number;
3741
3815
  /** @format int32 */
3742
3816
  limit?: number;
3743
- items?: (DataSourceInfoDc | PostgresDataSourceInfoDc)[];
3817
+ items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
3744
3818
  }
3745
3819
  export interface PagedListExtendedUserInfoDc {
3746
3820
  /** @format int64 */
@@ -3859,15 +3933,6 @@ export interface PagedListTagInfoDc {
3859
3933
  limit?: number;
3860
3934
  items?: TagInfoDc[];
3861
3935
  }
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
3936
  export interface PagedListUserInfoDc {
3872
3937
  /** @format int64 */
3873
3938
  totalCount?: number;
@@ -4011,14 +4076,6 @@ export declare enum Permissions {
4011
4076
  ReadWrite = "read,write",
4012
4077
  All = "read,write,configure"
4013
4078
  }
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
4079
  /**
4023
4080
  * Spatial point geometry object representation.
4024
4081
  */
@@ -4049,6 +4106,8 @@ export interface PolicyDc {
4049
4106
  * MaxObjectsToExport
4050
4107
  *
4051
4108
  * MaxUploadContentSize
4109
+ *
4110
+ * MaxEqlQueryParametersValues
4052
4111
  */
4053
4112
  type: PolicyType;
4054
4113
  role?: string;
@@ -4071,6 +4130,8 @@ MaxFeaturesInOneTable
4071
4130
  MaxObjectsToExport
4072
4131
 
4073
4132
  MaxUploadContentSize
4133
+
4134
+ MaxEqlQueryParametersValues
4074
4135
  */
4075
4136
  export declare enum PolicyType {
4076
4137
  Unknown = "Unknown",
@@ -4079,7 +4140,8 @@ export declare enum PolicyType {
4079
4140
  CreateProject = "CreateProject",
4080
4141
  MaxFeaturesInOneTable = "MaxFeaturesInOneTable",
4081
4142
  MaxObjectsToExport = "MaxObjectsToExport",
4082
- MaxUploadContentSize = "MaxUploadContentSize"
4143
+ MaxUploadContentSize = "MaxUploadContentSize",
4144
+ MaxEqlQueryParametersValues = "MaxEqlQueryParametersValues"
4083
4145
  }
4084
4146
  /**
4085
4147
  * Polyline and Polygon base geometry object definition.
@@ -4121,6 +4183,7 @@ export declare type PolygonLabelSymbolDc = LabelSymbolDc & {
4121
4183
  */
4122
4184
  export declare type PolygonSymbolDc = SymbolDc & {
4123
4185
  type?: string | null;
4186
+ height?: CalculatedParameterDc | null;
4124
4187
  stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
4125
4188
  fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
4126
4189
  };
@@ -4208,14 +4271,6 @@ export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigura
4208
4271
  maxLodLevel?: number;
4209
4272
  isCogLayer?: boolean;
4210
4273
  };
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
4274
  export interface ProblemDetails {
4220
4275
  type?: string;
4221
4276
  title?: string;
@@ -4476,7 +4531,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
4476
4531
  eqlParameters?: Record<string, QueryLayerServiceEqlParameterConfigurationDc>;
4477
4532
  srid?: number | null;
4478
4533
  geometryType?: AttributeType;
4479
- attributesConfiguration: EqlAttributesConfigurationDc;
4534
+ attributesConfiguration?: EqlAttributesConfigurationDc;
4480
4535
  style?: StyleDc;
4481
4536
  condition?: string | null;
4482
4537
  featuresLimit?: number;
@@ -4484,7 +4539,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
4484
4539
  simplify?: SimplifyInfoDc;
4485
4540
  };
4486
4541
  /**
4487
- * EQL parameter configuration.
4542
+ * EQL parameter configuration data contract.
4488
4543
  */
4489
4544
  export interface QueryLayerServiceEqlParameterConfigurationDc {
4490
4545
  /**
@@ -4533,6 +4588,23 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
4533
4588
  availableValues?: any[];
4534
4589
  /** Default value. */
4535
4590
  default?: any;
4591
+ /** EQL value from query configuration parameter data contract. */
4592
+ queryValue?: QueryLayerServiceEqlParameterQueryValueConfigurationDc;
4593
+ }
4594
+ /**
4595
+ * EQL value from query configuration parameter data contract.
4596
+ */
4597
+ export interface QueryLayerServiceEqlParameterQueryValueConfigurationDc {
4598
+ /** Is values cached. */
4599
+ isCached?: boolean;
4600
+ /** Use only first value, not array. */
4601
+ isSingleValue?: boolean;
4602
+ /** Name of the column containing the value. */
4603
+ valueColumn?: string;
4604
+ /** Query text. */
4605
+ ds?: string;
4606
+ /** Query text. */
4607
+ query?: string;
4536
4608
  }
4537
4609
  /**
4538
4610
  * Service info for a feature layer service.
@@ -4715,16 +4787,6 @@ export interface RasterBandMetaDc {
4715
4787
  /** Data histogram. */
4716
4788
  dataHistogram?: Record<string, number>;
4717
4789
  }
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
4790
  /**
4729
4791
  * Raster classification cfg.
4730
4792
  */
@@ -4742,13 +4804,6 @@ export interface RasterClassificationCfg {
4742
4804
  /** Color. */
4743
4805
  color?: string;
4744
4806
  }
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
4807
  /**
4753
4808
  * RasterMetaDc.
4754
4809
  */
@@ -5022,6 +5077,8 @@ file
5022
5077
  feature
5023
5078
 
5024
5079
  tag
5080
+
5081
+ datasource
5025
5082
  */
5026
5083
  export declare enum ResourceType {
5027
5084
  Unknown = "Unknown",
@@ -5030,7 +5087,8 @@ export declare enum ResourceType {
5030
5087
  Project = "project",
5031
5088
  File = "file",
5032
5089
  Feature = "feature",
5033
- Tag = "tag"
5090
+ Tag = "tag",
5091
+ DataSource = "datasource"
5034
5092
  }
5035
5093
  /**
5036
5094
  * Resources types filter.
@@ -5208,6 +5266,25 @@ export interface RoutingProviderInfoDc {
5208
5266
  */
5209
5267
  maxPointsInBatch?: number;
5210
5268
  }
5269
+ /**
5270
+ * S3 data source settings.
5271
+ */
5272
+ export declare type S3DataSourceDc = DataSourceDc & {
5273
+ endpoint?: string | null;
5274
+ secretKey?: string | null;
5275
+ accessKey?: string | null;
5276
+ region?: string | null;
5277
+ port?: number | null;
5278
+ };
5279
+ /**
5280
+ * S3 data source info.
5281
+ */
5282
+ export declare type S3DataSourceInfoDc = DataSourceInfoDc & {
5283
+ endpoint?: string | null;
5284
+ secretKey?: string | null;
5285
+ accessKey?: string | null;
5286
+ region?: string | null;
5287
+ };
5211
5288
  /**
5212
5289
  * ScaleBar element data contract.
5213
5290
  */
@@ -5280,15 +5357,6 @@ export declare type SearchStepResultDc = BaseStepResultDc & {
5280
5357
  layerName?: string | null;
5281
5358
  foundObjects?: number;
5282
5359
  };
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
5360
  /**
5293
5361
  * Suggest user information.
5294
5362
  */
@@ -5318,35 +5386,6 @@ export interface ServerInfoDc {
5318
5386
  */
5319
5387
  startedAt?: string;
5320
5388
  }
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
5389
  /**
5351
5390
  * Common fields for service configurations.
5352
5391
  */
@@ -5406,6 +5445,8 @@ export interface ServiceInfo {
5406
5445
  * feature
5407
5446
  *
5408
5447
  * tag
5448
+ *
5449
+ * datasource
5409
5450
  */
5410
5451
  resourceType?: ResourceType;
5411
5452
  /** Categories of the service. */
@@ -5436,6 +5477,7 @@ export interface ServiceInfo {
5436
5477
  inVisible?: boolean;
5437
5478
  parentId?: string;
5438
5479
  resourceId?: string;
5480
+ sourcePath?: string;
5439
5481
  preview?: string;
5440
5482
  }
5441
5483
  /**
@@ -5543,9 +5585,6 @@ export interface ServiceListItemDc {
5543
5585
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5544
5586
  invisibleInCatalog?: boolean;
5545
5587
  }
5546
- export interface SessionStaticTaskDataStorageDescription {
5547
- folderName?: string;
5548
- }
5549
5588
  /**
5550
5589
  * Ending settings.
5551
5590
  */
@@ -5893,6 +5932,20 @@ export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBase
5893
5932
  style: StyleDc;
5894
5933
  baseServiceName: string;
5895
5934
  };
5935
+ /**
5936
+ * SubTaskSettingsDto.
5937
+ */
5938
+ export interface SubTaskSettingsDto {
5939
+ /**
5940
+ * Order.
5941
+ * @format int32
5942
+ */
5943
+ order?: number;
5944
+ /** Type. */
5945
+ type?: string;
5946
+ /** StartParameters. */
5947
+ startParameters?: any;
5948
+ }
5896
5949
  /**
5897
5950
  * Provides properties overrides svg attributes.
5898
5951
  */
@@ -6008,6 +6061,7 @@ export interface TableConfigurationBaseDc {
6008
6061
  * Table description.
6009
6062
  */
6010
6063
  export declare type TableInfoDc = ResourceInfoDc & {
6064
+ systemName?: string | null;
6011
6065
  rowCount?: number;
6012
6066
  geometries?: GeometryType[] | null;
6013
6067
  type?: string | null;
@@ -6045,182 +6099,46 @@ export interface TagsFilterDto {
6045
6099
  */
6046
6100
  useAnd?: boolean;
6047
6101
  }
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
6102
  /**
6113
6103
  * Base class for server tasks descriptions.
6114
6104
  */
6115
6105
  export interface TaskParametersDc {
6106
+ /** Type of the service. */
6107
+ service_type?: string;
6116
6108
  /** Type of the task. */
6117
- type?: string;
6109
+ task_type?: string;
6118
6110
  }
6119
6111
  /**
6120
- * Detailed information about a server task.
6112
+ * TaskPrototypeDto.
6121
6113
  */
6122
- export interface TaskProgressDc {
6114
+ export interface TaskPrototypeDto {
6123
6115
  /**
6124
- * Task id.
6116
+ * .
6125
6117
  * @format uuid
6126
6118
  */
6127
6119
  id?: string;
6120
+ /** User. */
6121
+ user?: string;
6128
6122
  /**
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
6123
+ * CreatedAt.
6124
+ * @format date-time
6196
6125
  */
6197
- taskId?: string;
6198
- /** Type of the task. */
6199
- type?: string;
6200
- /** User started task. */
6201
- owner?: string;
6126
+ createdAt?: string;
6127
+ /** SubTaskSettings. */
6128
+ subTaskSettings?: SubTaskSettingsDto[];
6129
+ /** Enabled. */
6130
+ enabled?: boolean;
6131
+ /** StartIfPreviousError. */
6132
+ startIfPreviousError?: boolean;
6133
+ /** StartIfPreviousNotFinished. */
6134
+ startIfPreviousNotFinished?: boolean;
6202
6135
  /**
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
6136
+ * DelayDate.
6137
+ * @format date-time
6220
6138
  */
6221
- status?: ServerTaskStatus;
6222
- /** The result of the server task execution. */
6223
- taskResult?: TaskResultDc;
6139
+ delayDate?: string;
6140
+ /** Schedule. */
6141
+ schedule?: string;
6224
6142
  }
6225
6143
  /**
6226
6144
  * Localization contains fields that should be localized on printing template.
@@ -6605,14 +6523,6 @@ export interface TileServiceInfoDc {
6605
6523
  /** Resource tags. */
6606
6524
  tags?: string[];
6607
6525
  }
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
6526
  /**
6617
6527
  * Access token request.
6618
6528
  */
@@ -6664,8 +6574,12 @@ export declare type TracksSymbolDc = TrackSymbolBaseDc & {
6664
6574
  /**
6665
6575
  * The operation that unites the features in the storage.
6666
6576
  */
6667
- export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
6668
- type?: string | null;
6577
+ export declare type UnionTaskDc = TaskParametersDc & {
6578
+ sourceLayer: string;
6579
+ targetLayer: string;
6580
+ groupAttribute?: string | null;
6581
+ task_type?: string | null;
6582
+ service_type?: string | null;
6669
6583
  };
6670
6584
  /**
6671
6585
  * Feature object definition for updating.
@@ -6728,6 +6642,26 @@ export declare type UpdateTableDc = TableInfoDc & {
6728
6642
  columnsAdd?: ColumnDescriptionDc[] | null;
6729
6643
  columnsDelete?: string[] | null;
6730
6644
  };
6645
+ /**
6646
+ * UpdateTaskPrototypeDto.
6647
+ */
6648
+ export interface UpdateTaskPrototypeDto {
6649
+ /** SubTaskSettings. */
6650
+ subTaskSettings?: SubTaskSettingsDto[];
6651
+ /** Enabled. */
6652
+ enabled?: boolean;
6653
+ /** StartIfPreviousError. */
6654
+ startIfPreviousError?: boolean;
6655
+ /** StartIfPreviousNotFinished. */
6656
+ startIfPreviousNotFinished?: boolean;
6657
+ /**
6658
+ * DelayDate.
6659
+ * @format date-time
6660
+ */
6661
+ delayDate?: string;
6662
+ /** Schedule. */
6663
+ schedule?: string;
6664
+ }
6731
6665
  /**
6732
6666
  * Update user data contract.
6733
6667
  */
@@ -6766,34 +6700,6 @@ export interface UpdateUserDc {
6766
6700
  /** Phone number. */
6767
6701
  phone?: string;
6768
6702
  }
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
6703
  /**
6798
6704
  * Set used project.
6799
6705
  */
@@ -6842,6 +6748,15 @@ export interface UserOrRoleDc {
6842
6748
  /** User own role. */
6843
6749
  aclRole?: string;
6844
6750
  }
6751
+ /**
6752
+ * Descriptioned value data contract.
6753
+ */
6754
+ export interface ValueDc {
6755
+ /** Description. */
6756
+ description?: string;
6757
+ /** Value. */
6758
+ value?: any;
6759
+ }
6845
6760
  export interface ValueTupleStringString {
6846
6761
  item1?: string;
6847
6762
  item2?: string;
@@ -6860,6 +6775,7 @@ export interface ValuesRangeDc {
6860
6775
  max: any;
6861
6776
  }
6862
6777
  export interface Vector2 {
6778
+ coords?: TypeCoordsEFixedBuffer;
6863
6779
  /** @format double */
6864
6780
  x?: number;
6865
6781
  /** @format double */
@@ -6873,6 +6789,135 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6873
6789
  eql?: string | null;
6874
6790
  eqlParameters?: Record<string, any>;
6875
6791
  };
6792
+ /**
6793
+ *
6794
+
6795
+ Task
6796
+
6797
+ Rest
6798
+
6799
+ Both
6800
+ */
6801
+ export declare enum WorkerMethodType {
6802
+ Task = "Task",
6803
+ Rest = "Rest",
6804
+ Both = "Both"
6805
+ }
6806
+ /**
6807
+ * Worker settings field data contract.
6808
+ */
6809
+ export interface WorkerSettingsFieldDc {
6810
+ /** Name. */
6811
+ name?: string;
6812
+ /** Alias. */
6813
+ alias?: string;
6814
+ /** Group. */
6815
+ group?: string;
6816
+ /**
6817
+ *
6818
+ *
6819
+ * Integer
6820
+ *
6821
+ * Double
6822
+ *
6823
+ * String
6824
+ *
6825
+ * Extent
6826
+ *
6827
+ * Geometry
6828
+ *
6829
+ * IntergerArray
6830
+ *
6831
+ * DoubleArray
6832
+ *
6833
+ * StringArray
6834
+ *
6835
+ * Boolean
6836
+ *
6837
+ * SourceEql
6838
+ *
6839
+ * Layer
6840
+ *
6841
+ * Table
6842
+ *
6843
+ * Folder
6844
+ *
6845
+ * Json
6846
+ *
6847
+ * Expression
6848
+ *
6849
+ * Expressions
6850
+ */
6851
+ type?: WorkerSettingsFieldType;
6852
+ /** Lookup values. */
6853
+ lookupValues?: Record<string, string | null>;
6854
+ /** Children fields. */
6855
+ ChildrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
6856
+ }
6857
+ /**
6858
+ *
6859
+
6860
+ Integer
6861
+
6862
+ Double
6863
+
6864
+ String
6865
+
6866
+ Extent
6867
+
6868
+ Geometry
6869
+
6870
+ IntergerArray
6871
+
6872
+ DoubleArray
6873
+
6874
+ StringArray
6875
+
6876
+ Boolean
6877
+
6878
+ SourceEql
6879
+
6880
+ Layer
6881
+
6882
+ Table
6883
+
6884
+ Folder
6885
+
6886
+ Json
6887
+
6888
+ Expression
6889
+
6890
+ Expressions
6891
+ */
6892
+ export declare enum WorkerSettingsFieldType {
6893
+ Integer = "Integer",
6894
+ Double = "Double",
6895
+ String = "String",
6896
+ Extent = "Extent",
6897
+ Geometry = "Geometry",
6898
+ IntergerArray = "IntergerArray",
6899
+ DoubleArray = "DoubleArray",
6900
+ StringArray = "StringArray",
6901
+ Boolean = "Boolean",
6902
+ SourceEql = "SourceEql",
6903
+ Layer = "Layer",
6904
+ Table = "Table",
6905
+ Folder = "Folder",
6906
+ Json = "Json",
6907
+ Expression = "Expression",
6908
+ Expressions = "Expressions"
6909
+ }
6910
+ /**
6911
+ * Worker post method params.
6912
+ */
6913
+ export interface WorkerStartMethodDto {
6914
+ /** Worker type. */
6915
+ workerType: string;
6916
+ /** Method type. */
6917
+ methodType: string;
6918
+ /** Method input parameters. */
6919
+ data?: any;
6920
+ }
6876
6921
  /**
6877
6922
  * Workspace limits data contract.
6878
6923
  */
@@ -7290,6 +7335,12 @@ export interface RemoveLayerParameterValueParams {
7290
7335
  /** Layer parameter name. */
7291
7336
  paramName?: string;
7292
7337
  }
7338
+ export interface GetAvailiableLayerParametersParams {
7339
+ /** Layer name. */
7340
+ layerName?: string;
7341
+ /** Only specified parameter name. */
7342
+ paramName?: string;
7343
+ }
7293
7344
  export interface IncreaseResourcesLimitParams {
7294
7345
  /**
7295
7346
  * Additional maps count.
@@ -7438,8 +7489,8 @@ export interface GetRasterAttributesParams {
7438
7489
  fileName?: string;
7439
7490
  }
7440
7491
  export interface GetRasterMetaParams {
7441
- /** Raster filename. */
7442
- fileName?: string;
7492
+ /** Raster resource id.. */
7493
+ resourceId?: string;
7443
7494
  }
7444
7495
  export declare type GetBulkFeaturesPayload = GetBulkFeaturesParametersDc[];
7445
7496
  export declare type GetBulkExtentsPayload = GetBulkExtentsDc[];
@@ -7914,7 +7965,7 @@ export interface ValidateExpressionParams {
7914
7965
  /** Layer name. */
7915
7966
  layerName: string;
7916
7967
  }
7917
- export interface GetRasterMetaParams3 {
7968
+ export interface GetRasterMetaParams9 {
7918
7969
  /**
7919
7970
  * Min value for build histogram.
7920
7971
  * @format double
@@ -8033,7 +8084,7 @@ export interface GetProjectsListParams {
8033
8084
  tags?: string[];
8034
8085
  }
8035
8086
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
8036
- export interface DeleteResourcesParams7 {
8087
+ export interface DeleteResourcesParams8 {
8037
8088
  /** Resource names. */
8038
8089
  names?: string[];
8039
8090
  }
@@ -8091,6 +8142,45 @@ export interface UpdateBody {
8091
8142
  file?: File;
8092
8143
  }
8093
8144
  export declare type RunPayload = Record<string, any>;
8145
+ export interface GetTaskPrototypesParams {
8146
+ /** Username. */
8147
+ Username?: string;
8148
+ /**
8149
+ * Skip.
8150
+ * @format int32
8151
+ */
8152
+ Skip?: number;
8153
+ /**
8154
+ * Take.
8155
+ * @format int32
8156
+ */
8157
+ Take?: number;
8158
+ /** OrderBy. */
8159
+ OrderBy?: string;
8160
+ /** Desc. */
8161
+ Desc?: boolean;
8162
+ }
8163
+ export interface GetTasksForPrototypeParams {
8164
+ /**
8165
+ * Skip.
8166
+ * @format int32
8167
+ */
8168
+ Skip?: number;
8169
+ /**
8170
+ * Take.
8171
+ * @format int32
8172
+ */
8173
+ Take?: number;
8174
+ /** OrderBy. */
8175
+ OrderBy?: string;
8176
+ /** Desc. */
8177
+ Desc?: boolean;
8178
+ /**
8179
+ * Id.
8180
+ * @format uuid
8181
+ */
8182
+ id: string;
8183
+ }
8094
8184
  export interface CheckLimitsParams {
8095
8185
  /** Workspace. */
8096
8186
  userName?: string;
@@ -8133,62 +8223,6 @@ export interface CreateStorageParams {
8133
8223
  /** S3 storage name. */
8134
8224
  storageName?: string;
8135
8225
  }
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
8226
  export interface FindUserByNameByRolesParams {
8193
8227
  /** Roles. */
8194
8228
  roles?: string[];
@@ -8218,6 +8252,8 @@ export interface GetPolicyListParams {
8218
8252
  * MaxObjectsToExport
8219
8253
  *
8220
8254
  * MaxUploadContentSize
8255
+ *
8256
+ * MaxEqlQueryParametersValues
8221
8257
  */
8222
8258
  type?: PolicyType;
8223
8259
  }
@@ -8238,6 +8274,8 @@ export interface RemovePolicyParams {
8238
8274
  * MaxObjectsToExport
8239
8275
  *
8240
8276
  * MaxUploadContentSize
8277
+ *
8278
+ * MaxEqlQueryParametersValues
8241
8279
  */
8242
8280
  type?: PolicyType;
8243
8281
  /** Use role the policy is applied to. */
@@ -8458,7 +8496,7 @@ export interface GetTableListParams {
8458
8496
  acl?: string;
8459
8497
  }
8460
8498
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
8461
- export interface DeleteResourcesParams6 {
8499
+ export interface DeleteResourcesParams3 {
8462
8500
  /** Resource names. */
8463
8501
  names?: string[];
8464
8502
  }
@@ -8615,7 +8653,7 @@ export interface GetPublicCapabilitiesParams {
8615
8653
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8616
8654
  AcceptFormats?: string[];
8617
8655
  }
8618
- export interface GetCapabilitiesParams6 {
8656
+ export interface GetCapabilitiesParams7 {
8619
8657
  /** Output format of service metadata. */
8620
8658
  Format?: string;
8621
8659
  /** Must be WMS. */