@evergis/api 3.0.213 → 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 (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 +68 -2
  4. package/dist/__generated__/EqlService.d.ts +12 -1
  5. package/dist/__generated__/LayersService.d.ts +2 -2
  6. package/dist/__generated__/RemoteTaskManagerService.d.ts +262 -0
  7. package/dist/__generated__/StatisticService.d.ts +2 -2
  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 +528 -459
  11. package/dist/api.cjs.development.js +576 -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 +639 -890
  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,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
  */
@@ -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,6 +958,8 @@ 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
  *
@@ -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
  */
@@ -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
  */
@@ -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,13 +2412,6 @@ 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
 
@@ -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
  */
@@ -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
  */
@@ -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
@@ -3693,10 +3770,14 @@ 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.
@@ -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;
@@ -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;
@@ -4071,6 +4137,8 @@ MaxFeaturesInOneTable
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. */
@@ -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. */
@@ -5022,6 +5096,8 @@ file
5022
5096
  feature
5023
5097
 
5024
5098
  tag
5099
+
5100
+ datasource
5025
5101
  */
5026
5102
  export declare enum ResourceType {
5027
5103
  Unknown = "Unknown",
@@ -5030,7 +5106,8 @@ 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.
@@ -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
  */
@@ -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;
@@ -6046,181 +6120,45 @@ export interface TagsFilterDto {
6046
6120
  useAnd?: boolean;
6047
6121
  }
6048
6122
  /**
6049
- * Task owner group.
6050
-
6051
- my
6052
-
6053
- all
6054
- */
6055
- export declare enum TaskGroup {
6056
- My = "my",
6057
- All = "all"
6123
+ * Base class for server tasks descriptions.
6124
+ */
6125
+ export interface TaskParametersDc {
6126
+ /** Type of the service. */
6127
+ service_type?: string;
6128
+ /** Type of the task. */
6129
+ task_type?: string;
6058
6130
  }
6059
6131
  /**
6060
- * Detailed information about a server task.
6132
+ * TaskPrototypeDto.
6061
6133
  */
6062
- export interface TaskInfoDc {
6134
+ export interface TaskPrototypeDto {
6063
6135
  /**
6064
- * Task id.
6136
+ * .
6065
6137
  * @format uuid
6066
6138
  */
6067
6139
  id?: string;
6068
- /** Creator of the task. */
6069
- owner?: string;
6140
+ /** User. */
6141
+ user?: string;
6070
6142
  /**
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.
6143
+ * CreatedAt.
6099
6144
  * @format date-time
6100
6145
  */
6101
- startedDate?: string;
6146
+ createdAt?: string;
6147
+ /** SubTaskSettings. */
6148
+ subTaskSettings?: SubTaskSettingsDto[];
6149
+ /** Enabled. */
6150
+ enabled?: boolean;
6151
+ /** StartIfPreviousError. */
6152
+ startIfPreviousError?: boolean;
6153
+ /** StartIfPreviousNotFinished. */
6154
+ startIfPreviousNotFinished?: boolean;
6102
6155
  /**
6103
- * Date and time when the execution of the task finished.
6156
+ * DelayDate.
6104
6157
  * @format date-time
6105
6158
  */
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
- /**
6113
- * Base class for server tasks descriptions.
6114
- */
6115
- export interface TaskParametersDc {
6116
- /** Type of the task. */
6117
- type?: string;
6118
- }
6119
- /**
6120
- * Detailed information about a server task.
6121
- */
6122
- export interface TaskProgressDc {
6123
- /**
6124
- * Task id.
6125
- * @format uuid
6126
- */
6127
- id?: string;
6128
- /**
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
6196
- */
6197
- taskId?: string;
6198
- /** Type of the task. */
6199
- type?: string;
6200
- /** User started task. */
6201
- owner?: string;
6202
- /**
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
6220
- */
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.
@@ -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. */