@evergis/api 3.0.78 → 3.0.81

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.
@@ -21,14 +21,6 @@ export interface AggregateTaskParametersDc {
21
21
  source: BaseTaskDataStorageDc;
22
22
  /** Storage that is to be used as a target for writing the task result. */
23
23
  target: BaseTaskDataStorageDc;
24
- /**
25
- * Save mode (create or update).
26
- *
27
- * create
28
- *
29
- * update
30
- */
31
- saveMode: SaveMode;
32
24
  }
33
25
  /**
34
26
  * Describes data contract of aggregation result.
@@ -83,41 +75,41 @@ export interface AggregationDataResultDc {
83
75
  }
84
76
  /**
85
77
  *
86
-
78
+
87
79
  None
88
-
80
+
89
81
  Array
90
-
82
+
91
83
  Min
92
-
84
+
93
85
  Max
94
-
86
+
95
87
  Avg
96
-
88
+
97
89
  Sum
98
-
90
+
99
91
  Extent
100
-
92
+
101
93
  Count
102
-
94
+
103
95
  First
104
-
96
+
105
97
  Last
106
-
98
+
107
99
  Median
108
-
100
+
109
101
  Mod
110
-
102
+
111
103
  StdDeviation
112
-
104
+
113
105
  SumOfProduct
114
-
106
+
115
107
  OnlyValue
116
-
108
+
117
109
  WeightedAvg
118
-
110
+
119
111
  DensityIndicators
120
-
112
+
121
113
  DividedSum
122
114
  */
123
115
  export declare enum AggregationFunction {
@@ -416,27 +408,27 @@ export interface AttributeFormatDefinitionDc {
416
408
  }
417
409
  /**
418
410
  * Types of the attributes that are supported by the system.
419
-
411
+
420
412
  Unknown
421
-
413
+
422
414
  String
423
-
415
+
424
416
  Int32
425
-
417
+
426
418
  Int64
427
-
419
+
428
420
  Double
429
-
421
+
430
422
  DateTime
431
-
423
+
432
424
  Boolean
433
-
425
+
434
426
  Point
435
-
427
+
436
428
  Polyline
437
-
429
+
438
430
  Polygon
439
-
431
+
440
432
  Multipoint
441
433
  */
442
434
  export declare enum AttributeType {
@@ -495,14 +487,6 @@ export interface AvailabilityAreaTaskDc {
495
487
  source: BaseTaskDataStorageDc;
496
488
  /** Storage that is to be used as a target for writing the task result. */
497
489
  target: BaseTaskDataStorageDc;
498
- /**
499
- * Save mode (create or update).
500
- *
501
- * create
502
- *
503
- * update
504
- */
505
- saveMode: SaveMode;
506
490
  }
507
491
  /**
508
492
  * Simply Base64 string.
@@ -588,14 +572,6 @@ export interface BufferTaskParametersDc {
588
572
  source: BaseTaskDataStorageDc;
589
573
  /** Storage that is to be used as a target for writing the task result. */
590
574
  target: BaseTaskDataStorageDc;
591
- /**
592
- * Save mode (create or update).
593
- *
594
- * create
595
- *
596
- * update
597
- */
598
- saveMode: SaveMode;
599
575
  }
600
576
  /**
601
577
  * Provides set resources bulk operation status.
@@ -658,15 +634,15 @@ export interface CirclePointSymbolDc {
658
634
  }
659
635
  /**
660
636
  * Describes classification methods.
661
-
637
+
662
638
  none
663
-
639
+
664
640
  naturalBreaks
665
-
641
+
666
642
  equalInterval
667
-
643
+
668
644
  quantile
669
-
645
+
670
646
  unique
671
647
  */
672
648
  export declare enum ClassificationType {
@@ -678,11 +654,11 @@ export declare enum ClassificationType {
678
654
  }
679
655
  /**
680
656
  * Type of attribute.
681
-
657
+
682
658
  decimal
683
-
659
+
684
660
  dateTime
685
-
661
+
686
662
  text
687
663
  */
688
664
  export declare enum ClassifyAttributeType {
@@ -852,6 +828,45 @@ export interface CompositeServiceInfoDc {
852
828
  layers: CompositeLayerInfoDc[];
853
829
  /** The type of the resource. */
854
830
  type: string;
831
+ /**
832
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
833
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
834
+ * @format double
835
+ */
836
+ minResolution?: number;
837
+ /**
838
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
839
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
840
+ * @format double
841
+ */
842
+ maxResolution?: number;
843
+ /**
844
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
845
+ * for the given service type, null is returned.
846
+ */
847
+ condition?: string;
848
+ /**
849
+ *
850
+ *
851
+ * unknown
852
+ *
853
+ * point
854
+ *
855
+ * polyline
856
+ *
857
+ * polygon
858
+ *
859
+ * envelope
860
+ *
861
+ * multipoint
862
+ */
863
+ geometryType: GeometryType;
864
+ /**
865
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
866
+ * 0 is returned.
867
+ * @format int32
868
+ */
869
+ objectCount?: number;
855
870
  /** The category of the service. */
856
871
  categories?: string[];
857
872
  /** Configuration of the service. */
@@ -1015,14 +1030,6 @@ export interface CopyTaskParametersDc {
1015
1030
  source: BaseTaskDataStorageDc;
1016
1031
  /** Storage that is to be used as a target for writing the task result. */
1017
1032
  target: BaseTaskDataStorageDc;
1018
- /**
1019
- * Save mode (create or update).
1020
- *
1021
- * create
1022
- *
1023
- * update
1024
- */
1025
- saveMode: SaveMode;
1026
1033
  }
1027
1034
  /**
1028
1035
  * Data contract for create new role.
@@ -1301,15 +1308,15 @@ export interface ErrorDetailsDc {
1301
1308
  }
1302
1309
  /**
1303
1310
  * Type of the error.
1304
-
1311
+
1305
1312
  ResourceLimitExceeded
1306
-
1313
+
1307
1314
  ResourceNotFound
1308
-
1315
+
1309
1316
  InternalError
1310
-
1317
+
1311
1318
  BadRequest
1312
-
1319
+
1313
1320
  DuplicateContent
1314
1321
  */
1315
1322
  export declare enum ErrorDetailsType {
@@ -1477,7 +1484,7 @@ export interface ExtendedProjectInfoDc {
1477
1484
  icon?: string;
1478
1485
  }
1479
1486
  /**
1480
- * SPCore.Modules.PublicModule.Models.ExtendedProjectLayersInfo provides extended project info with included layers info.
1487
+ * SPCore.Connectors.Connectors.Base.Models.Projects.ExtendedProjectLayersInfo provides extended project info with included layers info.
1481
1488
  */
1482
1489
  export interface ExtendedProjectLayersInfo {
1483
1490
  /** Extended project info. */
@@ -1555,6 +1562,45 @@ export interface FailedServiceInfoDc {
1555
1562
  errorType?: ConfigurationErrorEnum;
1556
1563
  /** The type of the resource. */
1557
1564
  type: string;
1565
+ /**
1566
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1567
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
1568
+ * @format double
1569
+ */
1570
+ minResolution?: number;
1571
+ /**
1572
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1573
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
1574
+ * @format double
1575
+ */
1576
+ maxResolution?: number;
1577
+ /**
1578
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
1579
+ * for the given service type, null is returned.
1580
+ */
1581
+ condition?: string;
1582
+ /**
1583
+ *
1584
+ *
1585
+ * unknown
1586
+ *
1587
+ * point
1588
+ *
1589
+ * polyline
1590
+ *
1591
+ * polygon
1592
+ *
1593
+ * envelope
1594
+ *
1595
+ * multipoint
1596
+ */
1597
+ geometryType: GeometryType;
1598
+ /**
1599
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
1600
+ * 0 is returned.
1601
+ * @format int32
1602
+ */
1603
+ objectCount?: number;
1558
1604
  /** The category of the service. */
1559
1605
  categories?: string[];
1560
1606
  /** Configuration of the service. */
@@ -1617,6 +1663,33 @@ export interface FeatureDc {
1617
1663
  * Service info for a feature layer service.
1618
1664
  */
1619
1665
  export interface FeatureLayerServiceInfoDc {
1666
+ /** Layer attributes definition. */
1667
+ layerDefinition: LayerDefinitionDc;
1668
+ /** Layer default style. */
1669
+ style?: StyleDc;
1670
+ /** Provides data source type. */
1671
+ dataSourceType?: string;
1672
+ /** Copyright text. */
1673
+ copyrightText?: string;
1674
+ /** The type of the resource. */
1675
+ type: string;
1676
+ /**
1677
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1678
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
1679
+ * @format double
1680
+ */
1681
+ minResolution?: number;
1682
+ /**
1683
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
1684
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
1685
+ * @format double
1686
+ */
1687
+ maxResolution?: number;
1688
+ /**
1689
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
1690
+ * for the given service type, null is returned.
1691
+ */
1692
+ condition?: string;
1620
1693
  /**
1621
1694
  *
1622
1695
  *
@@ -1633,22 +1706,12 @@ export interface FeatureLayerServiceInfoDc {
1633
1706
  * multipoint
1634
1707
  */
1635
1708
  geometryType: GeometryType;
1636
- /** Layer attributes definition. */
1637
- layerDefinition: LayerDefinitionDc;
1638
- /** Layer default style. */
1639
- style?: StyleDc;
1640
1709
  /**
1641
1710
  * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
1642
1711
  * 0 is returned.
1643
1712
  * @format int32
1644
1713
  */
1645
1714
  objectCount?: number;
1646
- /** Provides data source type. */
1647
- dataSourceType?: string;
1648
- /** Copyright text. */
1649
- copyrightText?: string;
1650
- /** The type of the resource. */
1651
- type: string;
1652
1715
  /** The category of the service. */
1653
1716
  categories?: string[];
1654
1717
  /** Configuration of the service. */
@@ -1733,22 +1796,14 @@ export interface FeatureTaskParametersDc {
1733
1796
  source: BaseTaskDataStorageDc;
1734
1797
  /** Storage that is to be used as a target for writing the task result. */
1735
1798
  target: BaseTaskDataStorageDc;
1736
- /**
1737
- * Save mode (create or update).
1738
- *
1739
- * create
1740
- *
1741
- * update
1742
- */
1743
- saveMode: SaveMode;
1744
1799
  /** Type of the task. */
1745
1800
  type?: string;
1746
1801
  }
1747
1802
  /**
1748
1803
  * Type of the feature.
1749
-
1804
+
1750
1805
  Unknown
1751
-
1806
+
1752
1807
  GeometricFeature
1753
1808
  */
1754
1809
  export declare enum FeatureType {
@@ -1808,14 +1863,6 @@ export interface FilterCopyTaskParametersDc {
1808
1863
  source: BaseTaskDataStorageDc;
1809
1864
  /** Storage that is to be used as a target for writing the task result. */
1810
1865
  target: BaseTaskDataStorageDc;
1811
- /**
1812
- * Save mode (create or update).
1813
- *
1814
- * create
1815
- *
1816
- * update
1817
- */
1818
- saveMode: SaveMode;
1819
1866
  }
1820
1867
  /**
1821
1868
  * Server response for the creation of a filter in filter service.
@@ -1925,17 +1972,17 @@ export interface GeometryDc {
1925
1972
  }
1926
1973
  /**
1927
1974
  *
1928
-
1975
+
1929
1976
  unknown
1930
-
1977
+
1931
1978
  point
1932
-
1979
+
1933
1980
  polyline
1934
-
1981
+
1935
1982
  polygon
1936
-
1983
+
1937
1984
  envelope
1938
-
1985
+
1939
1986
  multipoint
1940
1987
  */
1941
1988
  export declare enum GeometryType {
@@ -1962,13 +2009,13 @@ export interface GridElementDc {
1962
2009
  }
1963
2010
  /**
1964
2011
  * Resource group.
1965
-
2012
+
1966
2013
  my
1967
-
2014
+
1968
2015
  role
1969
-
2016
+
1970
2017
  public
1971
-
2018
+
1972
2019
  all
1973
2020
  */
1974
2021
  export declare enum Group {
@@ -2230,12 +2277,25 @@ export interface ImportDataSchema {
2230
2277
  /** Importing file type. */
2231
2278
  type: string;
2232
2279
  }
2280
+ /**
2281
+ * Data schema of a file for import.
2282
+ */
2283
+ export interface ImportFileFeaturesCountDc {
2284
+ /** Name of the layer. */
2285
+ name?: string;
2286
+ /** Id of the file in the temporary static storage. */
2287
+ fileId: string;
2288
+ /** Condition. */
2289
+ condition?: string;
2290
+ }
2233
2291
  /**
2234
2292
  * Schema of a layer in an imported file.
2235
2293
  */
2236
2294
  export interface ImportLayerDataSchema {
2237
2295
  /** Name of the layer. */
2238
2296
  name: string;
2297
+ /** First feature in the layer. */
2298
+ firstRow?: Record<string, any>;
2239
2299
  /**
2240
2300
  * Number of objects in the layer.
2241
2301
  * @format int64
@@ -2426,6 +2486,8 @@ export interface LayerModelDc {
2426
2486
  export interface LayerTaskDataStorageDc {
2427
2487
  /** The name of the layer service. If 'temp' namespace. */
2428
2488
  serviceName: string;
2489
+ /** Condition. */
2490
+ condition?: string;
2429
2491
  /**
2430
2492
  * If set to true, a new service with the given LayerServiceName will be created before the task is executed.
2431
2493
  * If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
@@ -2823,15 +2885,15 @@ export interface NamespaceInfoDc {
2823
2885
  export declare type ObjectId = object;
2824
2886
  /**
2825
2887
  *
2826
-
2888
+
2827
2889
  Unknown
2828
-
2890
+
2829
2891
  union
2830
-
2892
+
2831
2893
  intersection
2832
-
2894
+
2833
2895
  subtraction
2834
-
2896
+
2835
2897
  symDifference
2836
2898
  */
2837
2899
  export declare enum Operation {
@@ -2866,14 +2928,6 @@ export interface OverlayTaskParametersDc {
2866
2928
  source: BaseTaskDataStorageDc;
2867
2929
  /** Storage that is to be used as a target for writing the task result. */
2868
2930
  target: BaseTaskDataStorageDc;
2869
- /**
2870
- * Save mode (create or update).
2871
- *
2872
- * create
2873
- *
2874
- * update
2875
- */
2876
- saveMode: SaveMode;
2877
2931
  }
2878
2932
  /**
2879
2933
  * Features list definition.
@@ -2953,19 +3007,19 @@ export interface PatternBrushDc {
2953
3007
  }
2954
3008
  /**
2955
3009
  * User permissions for server security objects (services, projects etc.)
2956
-
3010
+
2957
3011
  none
2958
-
3012
+
2959
3013
  configure
2960
-
3014
+
2961
3015
  write
2962
-
3016
+
2963
3017
  read
2964
-
3018
+
2965
3019
  read,configure
2966
-
3020
+
2967
3021
  read,write
2968
-
3022
+
2969
3023
  read,write,configure
2970
3024
  */
2971
3025
  export declare enum Permissions {
@@ -3076,15 +3130,15 @@ export interface PolicyDc {
3076
3130
  }
3077
3131
  /**
3078
3132
  * Type of the authorization policy.
3079
-
3133
+
3080
3134
  Unknown
3081
-
3135
+
3082
3136
  CreateTable
3083
-
3137
+
3084
3138
  CreateLayer
3085
-
3139
+
3086
3140
  CreateProject
3087
-
3141
+
3088
3142
  MaxFeaturesInOneTable
3089
3143
  */
3090
3144
  export declare enum PolicyType {
@@ -3630,6 +3684,45 @@ export interface ProxyServiceInfoDc {
3630
3684
  copyrightText?: string;
3631
3685
  /** The type of the resource. */
3632
3686
  type: string;
3687
+ /**
3688
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3689
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3690
+ * @format double
3691
+ */
3692
+ minResolution?: number;
3693
+ /**
3694
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3695
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3696
+ * @format double
3697
+ */
3698
+ maxResolution?: number;
3699
+ /**
3700
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
3701
+ * for the given service type, null is returned.
3702
+ */
3703
+ condition?: string;
3704
+ /**
3705
+ *
3706
+ *
3707
+ * unknown
3708
+ *
3709
+ * point
3710
+ *
3711
+ * polyline
3712
+ *
3713
+ * polygon
3714
+ *
3715
+ * envelope
3716
+ *
3717
+ * multipoint
3718
+ */
3719
+ geometryType: GeometryType;
3720
+ /**
3721
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
3722
+ * 0 is returned.
3723
+ * @format int32
3724
+ */
3725
+ objectCount?: number;
3633
3726
  /** The category of the service. */
3634
3727
  categories?: string[];
3635
3728
  /** Configuration of the service. */
@@ -3795,6 +3888,45 @@ export interface RemoteTileServiceInfoDc {
3795
3888
  copyrightText?: string;
3796
3889
  /** The type of the resource. */
3797
3890
  type: string;
3891
+ /**
3892
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3893
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3894
+ * @format double
3895
+ */
3896
+ minResolution?: number;
3897
+ /**
3898
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3899
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3900
+ * @format double
3901
+ */
3902
+ maxResolution?: number;
3903
+ /**
3904
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
3905
+ * for the given service type, null is returned.
3906
+ */
3907
+ condition?: string;
3908
+ /**
3909
+ *
3910
+ *
3911
+ * unknown
3912
+ *
3913
+ * point
3914
+ *
3915
+ * polyline
3916
+ *
3917
+ * polygon
3918
+ *
3919
+ * envelope
3920
+ *
3921
+ * multipoint
3922
+ */
3923
+ geometryType: GeometryType;
3924
+ /**
3925
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
3926
+ * 0 is returned.
3927
+ * @format int32
3928
+ */
3929
+ objectCount?: number;
3798
3930
  /** The category of the service. */
3799
3931
  categories?: string[];
3800
3932
  /** Configuration of the service. */
@@ -3909,17 +4041,17 @@ export interface ResourceInfoDc {
3909
4041
  }
3910
4042
  /**
3911
4043
  * The `ResourceType` represents resource manager supports types.
3912
-
4044
+
3913
4045
  Unknown
3914
-
4046
+
3915
4047
  table
3916
-
4048
+
3917
4049
  layer
3918
-
4050
+
3919
4051
  project
3920
-
4052
+
3921
4053
  file
3922
-
4054
+
3923
4055
  feature
3924
4056
  */
3925
4057
  export declare enum ResourceType {
@@ -4008,17 +4140,6 @@ export interface RoutingProviderInfoDc {
4008
4140
  */
4009
4141
  maxPointsInBatch?: number;
4010
4142
  }
4011
- /**
4012
- * Save mode (create or update).
4013
-
4014
- create
4015
-
4016
- update
4017
- */
4018
- export declare enum SaveMode {
4019
- Create = "create",
4020
- Update = "update"
4021
- }
4022
4143
  /**
4023
4144
  * ScaleBar element data contract.
4024
4145
  */
@@ -4081,21 +4202,21 @@ export interface ServerInfoDc {
4081
4202
  }
4082
4203
  /**
4083
4204
  * Status of the server task.
4084
-
4205
+
4085
4206
  None
4086
-
4207
+
4087
4208
  Scheduled
4088
-
4209
+
4089
4210
  Planning
4090
-
4211
+
4091
4212
  Executing
4092
-
4213
+
4093
4214
  Completed
4094
-
4215
+
4095
4216
  Failed
4096
-
4217
+
4097
4218
  Canceled
4098
-
4219
+
4099
4220
  Timeout
4100
4221
  */
4101
4222
  export declare enum ServerTaskStatus {
@@ -4203,54 +4324,6 @@ export interface ServiceInfo {
4203
4324
  export interface ServiceInfoDc {
4204
4325
  /** The type of the resource. */
4205
4326
  type: string;
4206
- /** The category of the service. */
4207
- categories?: string[];
4208
- /** Configuration of the service. */
4209
- configuration?: ServiceConfigurationBaseDc;
4210
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4211
- name: string;
4212
- /** Resource alias. */
4213
- alias?: string;
4214
- /** Resource owner. */
4215
- owner?: string;
4216
- /** Resource description. */
4217
- description?: string;
4218
- /** Resource preview. */
4219
- preview?: string;
4220
- /**
4221
- * The date when resource was created.
4222
- * @format date-time
4223
- */
4224
- createdDate?: string;
4225
- /**
4226
- * The date when resource was last modified.
4227
- * @format date-time
4228
- */
4229
- changedDate?: string;
4230
- /**
4231
- * User permissions for server security objects (services, projects etc.)
4232
- *
4233
- * none
4234
- *
4235
- * configure
4236
- *
4237
- * write
4238
- *
4239
- * read
4240
- *
4241
- * read,configure
4242
- *
4243
- * read,write
4244
- *
4245
- * read,write,configure
4246
- */
4247
- permissions?: Permissions;
4248
- /** Access control list. */
4249
- acl?: AccessControlListDc;
4250
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4251
- icon?: string;
4252
- }
4253
- export interface ServiceInfoPubDc {
4254
4327
  /**
4255
4328
  * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4256
4329
  * style of the service, or if no such property is available for this type of the service, 0 is returned.
@@ -4290,8 +4363,6 @@ export interface ServiceInfoPubDc {
4290
4363
  * @format int32
4291
4364
  */
4292
4365
  objectCount?: number;
4293
- /** The type of the resource. */
4294
- type: string;
4295
4366
  /** The category of the service. */
4296
4367
  categories?: string[];
4297
4368
  /** Configuration of the service. */
@@ -4434,154 +4505,6 @@ export interface SessionStaticTaskDataStorageDescription {
4434
4505
  /** The name of the folder. */
4435
4506
  folderName?: string;
4436
4507
  }
4437
- /**
4438
- * The `SharedProjectConfigurationDc` describes shared project configuration.
4439
- */
4440
- export interface SharedProjectConfigurationDc {
4441
- /** Gets map position. */
4442
- position?: number[];
4443
- /**
4444
- * Gets map resolution.
4445
- * @format double
4446
- */
4447
- resolution?: number;
4448
- /**
4449
- * Map spatial reference code.
4450
- * @format int32
4451
- */
4452
- srid?: number;
4453
- /** Gets or sets base map service name. */
4454
- baseMapName?: string;
4455
- /** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
4456
- options?: SharedProjectMapOptionsDc;
4457
- /**
4458
- * Minimum map level.
4459
- * @format int32
4460
- */
4461
- minScale?: number;
4462
- /**
4463
- * Maximum map level.
4464
- * @format int32
4465
- */
4466
- maxScale?: number;
4467
- /** Name of the project this shared layer refers to. */
4468
- projectName?: string;
4469
- /** Composite service layers list. */
4470
- layers: CompositeLayerConfigurationDc[];
4471
- /** Name of the service. */
4472
- name: string;
4473
- /** Human friendly name of the service. */
4474
- alias?: string;
4475
- /** Description of the service. */
4476
- description?: string;
4477
- /** Service access control list. */
4478
- acl?: AccessControlListDc;
4479
- /** Base64 encoded image - icon of the resource. */
4480
- icon?: string;
4481
- /**
4482
- * <br>
4483
- * If the owner user is set, a configuration will be created for that user.
4484
- * Administrator permissions are required to perform this operation.
4485
- *
4486
- */
4487
- owner?: string;
4488
- /** Copyright text. */
4489
- copyrightText?: string;
4490
- }
4491
- /**
4492
- * The `SharedProjectInfoDc` describes shared project info data contract.
4493
- */
4494
- export interface SharedProjectInfoDc {
4495
- /** The name of the source project. */
4496
- projectName?: string;
4497
- /** Gets map position. */
4498
- position?: number[];
4499
- /**
4500
- * Gets map resolution.
4501
- * @format double
4502
- */
4503
- resolution?: number;
4504
- /**
4505
- * Map spatial reference code.
4506
- * @format int32
4507
- */
4508
- srid?: number;
4509
- /** Gets or sets base map service name. */
4510
- baseMapName?: string;
4511
- /** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
4512
- options?: SharedProjectMapOptionsDc;
4513
- /**
4514
- * Minimum map level.
4515
- * @format int32
4516
- */
4517
- minScale?: number;
4518
- /**
4519
- * Maximum map level.
4520
- * @format int32
4521
- */
4522
- maxScale?: number;
4523
- /** Composite layer list. */
4524
- layers: CompositeLayerInfoDc[];
4525
- /** The type of the resource. */
4526
- type: string;
4527
- /** The category of the service. */
4528
- categories?: string[];
4529
- /** Configuration of the service. */
4530
- configuration?: ServiceConfigurationBaseDc;
4531
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4532
- name: string;
4533
- /** Resource alias. */
4534
- alias?: string;
4535
- /** Resource owner. */
4536
- owner?: string;
4537
- /** Resource description. */
4538
- description?: string;
4539
- /** Resource preview. */
4540
- preview?: string;
4541
- /**
4542
- * The date when resource was created.
4543
- * @format date-time
4544
- */
4545
- createdDate?: string;
4546
- /**
4547
- * The date when resource was last modified.
4548
- * @format date-time
4549
- */
4550
- changedDate?: string;
4551
- /**
4552
- * User permissions for server security objects (services, projects etc.)
4553
- *
4554
- * none
4555
- *
4556
- * configure
4557
- *
4558
- * write
4559
- *
4560
- * read
4561
- *
4562
- * read,configure
4563
- *
4564
- * read,write
4565
- *
4566
- * read,write,configure
4567
- */
4568
- permissions?: Permissions;
4569
- /** Access control list. */
4570
- acl?: AccessControlListDc;
4571
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4572
- icon?: string;
4573
- }
4574
- /**
4575
- * The `SharedProjectMapOptionsDc` class describes shared project additional options.
4576
- */
4577
- export interface SharedProjectMapOptionsDc {
4578
- /** Sets true if user has access to change projects basemap. */
4579
- basemapChangeEnabled?: boolean;
4580
- /** Sets true if user has access to objects selection. */
4581
- selectEnabled?: boolean;
4582
- /** Sets true if user has access to layers visibility change. */
4583
- visibilityChangeEnabled?: boolean;
4584
- }
4585
4508
  export interface SimplePolylineSymbolDc {
4586
4509
  type?: string;
4587
4510
  /** Defines the brush for the stroke. */
@@ -4757,11 +4680,11 @@ export interface StepResultDc {
4757
4680
  }
4758
4681
  /**
4759
4682
  * The `StringSubType` provides information about string attribute subtype.
4760
-
4683
+
4761
4684
  None
4762
-
4685
+
4763
4686
  Image
4764
-
4687
+
4765
4688
  PkkCode
4766
4689
  */
4767
4690
  export declare enum StringSubType {
@@ -5269,6 +5192,45 @@ export interface TileServiceInfoDc {
5269
5192
  copyrightText?: string;
5270
5193
  /** The type of the resource. */
5271
5194
  type: string;
5195
+ /**
5196
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
5197
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
5198
+ * @format double
5199
+ */
5200
+ minResolution?: number;
5201
+ /**
5202
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
5203
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
5204
+ * @format double
5205
+ */
5206
+ maxResolution?: number;
5207
+ /**
5208
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
5209
+ * for the given service type, null is returned.
5210
+ */
5211
+ condition?: string;
5212
+ /**
5213
+ *
5214
+ *
5215
+ * unknown
5216
+ *
5217
+ * point
5218
+ *
5219
+ * polyline
5220
+ *
5221
+ * polygon
5222
+ *
5223
+ * envelope
5224
+ *
5225
+ * multipoint
5226
+ */
5227
+ geometryType: GeometryType;
5228
+ /**
5229
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
5230
+ * 0 is returned.
5231
+ * @format int32
5232
+ */
5233
+ objectCount?: number;
5272
5234
  /** The category of the service. */
5273
5235
  categories?: string[];
5274
5236
  /** Configuration of the service. */
@@ -5335,14 +5297,6 @@ export interface UnionTaskParametersDc {
5335
5297
  source: BaseTaskDataStorageDc;
5336
5298
  /** Storage that is to be used as a target for writing the task result. */
5337
5299
  target: BaseTaskDataStorageDc;
5338
- /**
5339
- * Save mode (create or update).
5340
- *
5341
- * create
5342
- *
5343
- * update
5344
- */
5345
- saveMode: SaveMode;
5346
5300
  }
5347
5301
  /**
5348
5302
  * Update role data contract.
@@ -5819,18 +5773,10 @@ export interface GetDataSchemaParams {
5819
5773
  /** File id. */
5820
5774
  fileId?: string;
5821
5775
  }
5822
- export interface GetExcelDataSchemaParams {
5823
- /** Id of the excel file in the temporary static storage. */
5824
- fileId?: string;
5825
- }
5826
- export interface GetCsvDataSchemaParams {
5827
- /** Id of the csv file in the temporary static storage. */
5828
- fileId?: string;
5829
- }
5830
- export interface GetKmlDataSchemaParams {
5831
- /** Id of the kml file in the temporary static storage. */
5832
- fileId?: string;
5833
- }
5776
+ /**
5777
+ * Data schema of a file for import.
5778
+ */
5779
+ export declare type GetFeaturesCountPayload = ImportFileFeaturesCountDc;
5834
5780
  export interface GetRasterAttributesParams {
5835
5781
  /** File name in the temporary static storage. */
5836
5782
  fileName?: string;
@@ -6152,8 +6098,6 @@ export interface DeleteFeaturesParams {
6152
6098
  export interface DeleteByConditionParams {
6153
6099
  /** Filtering query. */
6154
6100
  condition?: string;
6155
- /** Excluded ids. */
6156
- excludedIds?: string[];
6157
6101
  /** Full name of the layer. */
6158
6102
  name: string;
6159
6103
  }
@@ -6393,10 +6337,6 @@ export interface UploadTemplateParams {
6393
6337
  /** Rewrite if exits. */
6394
6338
  rewrite?: boolean;
6395
6339
  }
6396
- /**
6397
- * The `SharedProjectConfigurationDc` describes shared project configuration.
6398
- */
6399
- export declare type CreateShareProjectPayload = SharedProjectConfigurationDc | ServiceConfigurationBaseDc | CompositeServiceConfigurationDc;
6400
6340
  export interface GetProjectsListParams {
6401
6341
  /** Project name filter (support % and _ wildcards). */
6402
6342
  filter?: string;
@@ -6432,7 +6372,7 @@ export interface GetProjectsListParams {
6432
6372
  */
6433
6373
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6434
6374
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6435
- export interface DeleteResourcesParams5 {
6375
+ export interface DeleteResourcesParams4 {
6436
6376
  /** Resource names. */
6437
6377
  names?: string[];
6438
6378
  }
@@ -6624,7 +6564,7 @@ export interface StatisticsDbParams {
6624
6564
  /** Type of required statistic function. */
6625
6565
  types?: AggregationFunction[];
6626
6566
  }
6627
- export interface ClassifyParams6 {
6567
+ export interface ClassifyParams2 {
6628
6568
  /** Layer name. */
6629
6569
  name?: string;
6630
6570
  /** Attribute name. */
@@ -6729,7 +6669,7 @@ export interface GetTableListParams {
6729
6669
  */
6730
6670
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6731
6671
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6732
- export interface DeleteResourcesParams4 {
6672
+ export interface DeleteResourcesParams10 {
6733
6673
  /** Resource names. */
6734
6674
  names?: string[];
6735
6675
  }
@@ -6834,7 +6774,7 @@ export interface GetCapabilitiesParams {
6834
6774
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6835
6775
  AcceptFormats?: string[];
6836
6776
  }
6837
- export interface GetCapabilitiesParams8 {
6777
+ export interface GetCapabilitiesParams2 {
6838
6778
  /** Output format of service metadata. */
6839
6779
  Format?: string;
6840
6780
  /** Must be WMS. */