@evergis/api 3.0.78 → 3.0.79

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 {
@@ -2426,6 +2473,8 @@ export interface LayerModelDc {
2426
2473
  export interface LayerTaskDataStorageDc {
2427
2474
  /** The name of the layer service. If 'temp' namespace. */
2428
2475
  serviceName: string;
2476
+ /** Condition. */
2477
+ condition?: string;
2429
2478
  /**
2430
2479
  * If set to true, a new service with the given LayerServiceName will be created before the task is executed.
2431
2480
  * If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
@@ -2823,15 +2872,15 @@ export interface NamespaceInfoDc {
2823
2872
  export declare type ObjectId = object;
2824
2873
  /**
2825
2874
  *
2826
-
2875
+
2827
2876
  Unknown
2828
-
2877
+
2829
2878
  union
2830
-
2879
+
2831
2880
  intersection
2832
-
2881
+
2833
2882
  subtraction
2834
-
2883
+
2835
2884
  symDifference
2836
2885
  */
2837
2886
  export declare enum Operation {
@@ -2866,14 +2915,6 @@ export interface OverlayTaskParametersDc {
2866
2915
  source: BaseTaskDataStorageDc;
2867
2916
  /** Storage that is to be used as a target for writing the task result. */
2868
2917
  target: BaseTaskDataStorageDc;
2869
- /**
2870
- * Save mode (create or update).
2871
- *
2872
- * create
2873
- *
2874
- * update
2875
- */
2876
- saveMode: SaveMode;
2877
2918
  }
2878
2919
  /**
2879
2920
  * Features list definition.
@@ -2953,19 +2994,19 @@ export interface PatternBrushDc {
2953
2994
  }
2954
2995
  /**
2955
2996
  * User permissions for server security objects (services, projects etc.)
2956
-
2997
+
2957
2998
  none
2958
-
2999
+
2959
3000
  configure
2960
-
3001
+
2961
3002
  write
2962
-
3003
+
2963
3004
  read
2964
-
3005
+
2965
3006
  read,configure
2966
-
3007
+
2967
3008
  read,write
2968
-
3009
+
2969
3010
  read,write,configure
2970
3011
  */
2971
3012
  export declare enum Permissions {
@@ -3076,15 +3117,15 @@ export interface PolicyDc {
3076
3117
  }
3077
3118
  /**
3078
3119
  * Type of the authorization policy.
3079
-
3120
+
3080
3121
  Unknown
3081
-
3122
+
3082
3123
  CreateTable
3083
-
3124
+
3084
3125
  CreateLayer
3085
-
3126
+
3086
3127
  CreateProject
3087
-
3128
+
3088
3129
  MaxFeaturesInOneTable
3089
3130
  */
3090
3131
  export declare enum PolicyType {
@@ -3630,6 +3671,45 @@ export interface ProxyServiceInfoDc {
3630
3671
  copyrightText?: string;
3631
3672
  /** The type of the resource. */
3632
3673
  type: string;
3674
+ /**
3675
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3676
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3677
+ * @format double
3678
+ */
3679
+ minResolution?: number;
3680
+ /**
3681
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3682
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3683
+ * @format double
3684
+ */
3685
+ maxResolution?: number;
3686
+ /**
3687
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
3688
+ * for the given service type, null is returned.
3689
+ */
3690
+ condition?: string;
3691
+ /**
3692
+ *
3693
+ *
3694
+ * unknown
3695
+ *
3696
+ * point
3697
+ *
3698
+ * polyline
3699
+ *
3700
+ * polygon
3701
+ *
3702
+ * envelope
3703
+ *
3704
+ * multipoint
3705
+ */
3706
+ geometryType: GeometryType;
3707
+ /**
3708
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
3709
+ * 0 is returned.
3710
+ * @format int32
3711
+ */
3712
+ objectCount?: number;
3633
3713
  /** The category of the service. */
3634
3714
  categories?: string[];
3635
3715
  /** Configuration of the service. */
@@ -3795,6 +3875,45 @@ export interface RemoteTileServiceInfoDc {
3795
3875
  copyrightText?: string;
3796
3876
  /** The type of the resource. */
3797
3877
  type: string;
3878
+ /**
3879
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3880
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3881
+ * @format double
3882
+ */
3883
+ minResolution?: number;
3884
+ /**
3885
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3886
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
3887
+ * @format double
3888
+ */
3889
+ maxResolution?: number;
3890
+ /**
3891
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
3892
+ * for the given service type, null is returned.
3893
+ */
3894
+ condition?: string;
3895
+ /**
3896
+ *
3897
+ *
3898
+ * unknown
3899
+ *
3900
+ * point
3901
+ *
3902
+ * polyline
3903
+ *
3904
+ * polygon
3905
+ *
3906
+ * envelope
3907
+ *
3908
+ * multipoint
3909
+ */
3910
+ geometryType: GeometryType;
3911
+ /**
3912
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
3913
+ * 0 is returned.
3914
+ * @format int32
3915
+ */
3916
+ objectCount?: number;
3798
3917
  /** The category of the service. */
3799
3918
  categories?: string[];
3800
3919
  /** Configuration of the service. */
@@ -3909,17 +4028,17 @@ export interface ResourceInfoDc {
3909
4028
  }
3910
4029
  /**
3911
4030
  * The `ResourceType` represents resource manager supports types.
3912
-
4031
+
3913
4032
  Unknown
3914
-
4033
+
3915
4034
  table
3916
-
4035
+
3917
4036
  layer
3918
-
4037
+
3919
4038
  project
3920
-
4039
+
3921
4040
  file
3922
-
4041
+
3923
4042
  feature
3924
4043
  */
3925
4044
  export declare enum ResourceType {
@@ -4008,17 +4127,6 @@ export interface RoutingProviderInfoDc {
4008
4127
  */
4009
4128
  maxPointsInBatch?: number;
4010
4129
  }
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
4130
  /**
4023
4131
  * ScaleBar element data contract.
4024
4132
  */
@@ -4081,21 +4189,21 @@ export interface ServerInfoDc {
4081
4189
  }
4082
4190
  /**
4083
4191
  * Status of the server task.
4084
-
4192
+
4085
4193
  None
4086
-
4194
+
4087
4195
  Scheduled
4088
-
4196
+
4089
4197
  Planning
4090
-
4198
+
4091
4199
  Executing
4092
-
4200
+
4093
4201
  Completed
4094
-
4202
+
4095
4203
  Failed
4096
-
4204
+
4097
4205
  Canceled
4098
-
4206
+
4099
4207
  Timeout
4100
4208
  */
4101
4209
  export declare enum ServerTaskStatus {
@@ -4203,54 +4311,6 @@ export interface ServiceInfo {
4203
4311
  export interface ServiceInfoDc {
4204
4312
  /** The type of the resource. */
4205
4313
  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
4314
  /**
4255
4315
  * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4256
4316
  * style of the service, or if no such property is available for this type of the service, 0 is returned.
@@ -4290,8 +4350,6 @@ export interface ServiceInfoPubDc {
4290
4350
  * @format int32
4291
4351
  */
4292
4352
  objectCount?: number;
4293
- /** The type of the resource. */
4294
- type: string;
4295
4353
  /** The category of the service. */
4296
4354
  categories?: string[];
4297
4355
  /** Configuration of the service. */
@@ -4434,154 +4492,6 @@ export interface SessionStaticTaskDataStorageDescription {
4434
4492
  /** The name of the folder. */
4435
4493
  folderName?: string;
4436
4494
  }
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
4495
  export interface SimplePolylineSymbolDc {
4586
4496
  type?: string;
4587
4497
  /** Defines the brush for the stroke. */
@@ -4757,11 +4667,11 @@ export interface StepResultDc {
4757
4667
  }
4758
4668
  /**
4759
4669
  * The `StringSubType` provides information about string attribute subtype.
4760
-
4670
+
4761
4671
  None
4762
-
4672
+
4763
4673
  Image
4764
-
4674
+
4765
4675
  PkkCode
4766
4676
  */
4767
4677
  export declare enum StringSubType {
@@ -5269,6 +5179,45 @@ export interface TileServiceInfoDc {
5269
5179
  copyrightText?: string;
5270
5180
  /** The type of the resource. */
5271
5181
  type: string;
5182
+ /**
5183
+ * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
5184
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
5185
+ * @format double
5186
+ */
5187
+ minResolution?: number;
5188
+ /**
5189
+ * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
5190
+ * style of the service, or if no such property is available for this type of the service, 0 is returned.
5191
+ * @format double
5192
+ */
5193
+ maxResolution?: number;
5194
+ /**
5195
+ * Filtering condition for the objects in the service. If no condition set or if no such property is available
5196
+ * for the given service type, null is returned.
5197
+ */
5198
+ condition?: string;
5199
+ /**
5200
+ *
5201
+ *
5202
+ * unknown
5203
+ *
5204
+ * point
5205
+ *
5206
+ * polyline
5207
+ *
5208
+ * polygon
5209
+ *
5210
+ * envelope
5211
+ *
5212
+ * multipoint
5213
+ */
5214
+ geometryType: GeometryType;
5215
+ /**
5216
+ * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
5217
+ * 0 is returned.
5218
+ * @format int32
5219
+ */
5220
+ objectCount?: number;
5272
5221
  /** The category of the service. */
5273
5222
  categories?: string[];
5274
5223
  /** Configuration of the service. */
@@ -5335,14 +5284,6 @@ export interface UnionTaskParametersDc {
5335
5284
  source: BaseTaskDataStorageDc;
5336
5285
  /** Storage that is to be used as a target for writing the task result. */
5337
5286
  target: BaseTaskDataStorageDc;
5338
- /**
5339
- * Save mode (create or update).
5340
- *
5341
- * create
5342
- *
5343
- * update
5344
- */
5345
- saveMode: SaveMode;
5346
5287
  }
5347
5288
  /**
5348
5289
  * Update role data contract.
@@ -6152,8 +6093,6 @@ export interface DeleteFeaturesParams {
6152
6093
  export interface DeleteByConditionParams {
6153
6094
  /** Filtering query. */
6154
6095
  condition?: string;
6155
- /** Excluded ids. */
6156
- excludedIds?: string[];
6157
6096
  /** Full name of the layer. */
6158
6097
  name: string;
6159
6098
  }
@@ -6393,10 +6332,6 @@ export interface UploadTemplateParams {
6393
6332
  /** Rewrite if exits. */
6394
6333
  rewrite?: boolean;
6395
6334
  }
6396
- /**
6397
- * The `SharedProjectConfigurationDc` describes shared project configuration.
6398
- */
6399
- export declare type CreateShareProjectPayload = SharedProjectConfigurationDc | ServiceConfigurationBaseDc | CompositeServiceConfigurationDc;
6400
6335
  export interface GetProjectsListParams {
6401
6336
  /** Project name filter (support % and _ wildcards). */
6402
6337
  filter?: string;
@@ -6432,7 +6367,7 @@ export interface GetProjectsListParams {
6432
6367
  */
6433
6368
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6434
6369
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6435
- export interface DeleteResourcesParams5 {
6370
+ export interface DeleteResourcesParams9 {
6436
6371
  /** Resource names. */
6437
6372
  names?: string[];
6438
6373
  }
@@ -6624,7 +6559,7 @@ export interface StatisticsDbParams {
6624
6559
  /** Type of required statistic function. */
6625
6560
  types?: AggregationFunction[];
6626
6561
  }
6627
- export interface ClassifyParams6 {
6562
+ export interface ClassifyParams4 {
6628
6563
  /** Layer name. */
6629
6564
  name?: string;
6630
6565
  /** Attribute name. */
@@ -6729,7 +6664,7 @@ export interface GetTableListParams {
6729
6664
  */
6730
6665
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6731
6666
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6732
- export interface DeleteResourcesParams4 {
6667
+ export interface DeleteResourcesParams6 {
6733
6668
  /** Resource names. */
6734
6669
  names?: string[];
6735
6670
  }
@@ -6834,7 +6769,7 @@ export interface GetCapabilitiesParams {
6834
6769
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6835
6770
  AcceptFormats?: string[];
6836
6771
  }
6837
- export interface GetCapabilitiesParams8 {
6772
+ export interface GetCapabilitiesParams1 {
6838
6773
  /** Output format of service metadata. */
6839
6774
  Format?: string;
6840
6775
  /** Must be WMS. */