@evergis/api 3.0.76 → 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.
@@ -75,41 +75,41 @@ export interface AggregationDataResultDc {
75
75
  }
76
76
  /**
77
77
  *
78
-
78
+
79
79
  None
80
-
80
+
81
81
  Array
82
-
82
+
83
83
  Min
84
-
84
+
85
85
  Max
86
-
86
+
87
87
  Avg
88
-
88
+
89
89
  Sum
90
-
90
+
91
91
  Extent
92
-
92
+
93
93
  Count
94
-
94
+
95
95
  First
96
-
96
+
97
97
  Last
98
-
98
+
99
99
  Median
100
-
100
+
101
101
  Mod
102
-
102
+
103
103
  StdDeviation
104
-
104
+
105
105
  SumOfProduct
106
-
106
+
107
107
  OnlyValue
108
-
108
+
109
109
  WeightedAvg
110
-
110
+
111
111
  DensityIndicators
112
-
112
+
113
113
  DividedSum
114
114
  */
115
115
  export declare enum AggregationFunction {
@@ -408,27 +408,27 @@ export interface AttributeFormatDefinitionDc {
408
408
  }
409
409
  /**
410
410
  * Types of the attributes that are supported by the system.
411
-
411
+
412
412
  Unknown
413
-
413
+
414
414
  String
415
-
415
+
416
416
  Int32
417
-
417
+
418
418
  Int64
419
-
419
+
420
420
  Double
421
-
421
+
422
422
  DateTime
423
-
423
+
424
424
  Boolean
425
-
425
+
426
426
  Point
427
-
427
+
428
428
  Polyline
429
-
429
+
430
430
  Polygon
431
-
431
+
432
432
  Multipoint
433
433
  */
434
434
  export declare enum AttributeType {
@@ -634,31 +634,37 @@ export interface CirclePointSymbolDc {
634
634
  }
635
635
  /**
636
636
  * Describes classification methods.
637
-
637
+
638
638
  none
639
-
639
+
640
640
  naturalBreaks
641
-
641
+
642
642
  equalInterval
643
-
643
+
644
644
  quantile
645
+
646
+ unique
645
647
  */
646
648
  export declare enum ClassificationType {
647
649
  None = "none",
648
650
  NaturalBreaks = "naturalBreaks",
649
651
  EqualInterval = "equalInterval",
650
- Quantile = "quantile"
652
+ Quantile = "quantile",
653
+ Distinct = "unique"
651
654
  }
652
655
  /**
653
656
  * Type of attribute.
654
-
657
+
655
658
  decimal
656
-
659
+
657
660
  dateTime
661
+
662
+ text
658
663
  */
659
664
  export declare enum ClassifyAttributeType {
660
665
  Decimal = "decimal",
661
- DateTime = "dateTime"
666
+ DateTime = "dateTime",
667
+ Text = "text"
662
668
  }
663
669
  /**
664
670
  * Classification result.
@@ -822,6 +828,45 @@ export interface CompositeServiceInfoDc {
822
828
  layers: CompositeLayerInfoDc[];
823
829
  /** The type of the resource. */
824
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;
825
870
  /** The category of the service. */
826
871
  categories?: string[];
827
872
  /** Configuration of the service. */
@@ -977,9 +1022,10 @@ export interface CopyResourceResultDc {
977
1022
  * Server task that copies the objects from one storage to another.
978
1023
  */
979
1024
  export interface CopyTaskParametersDc {
1025
+ type?: string;
1026
+ condition?: string;
980
1027
  /** Mapping of source attribute fields and target attribute fields. */
981
1028
  attributeMapping?: Record<string, string | null>;
982
- type?: string;
983
1029
  /** Storage that is to be used as a data source for the task. */
984
1030
  source: BaseTaskDataStorageDc;
985
1031
  /** Storage that is to be used as a target for writing the task result. */
@@ -1262,15 +1308,15 @@ export interface ErrorDetailsDc {
1262
1308
  }
1263
1309
  /**
1264
1310
  * Type of the error.
1265
-
1311
+
1266
1312
  ResourceLimitExceeded
1267
-
1313
+
1268
1314
  ResourceNotFound
1269
-
1315
+
1270
1316
  InternalError
1271
-
1317
+
1272
1318
  BadRequest
1273
-
1319
+
1274
1320
  DuplicateContent
1275
1321
  */
1276
1322
  export declare enum ErrorDetailsType {
@@ -1438,7 +1484,7 @@ export interface ExtendedProjectInfoDc {
1438
1484
  icon?: string;
1439
1485
  }
1440
1486
  /**
1441
- * 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.
1442
1488
  */
1443
1489
  export interface ExtendedProjectLayersInfo {
1444
1490
  /** Extended project info. */
@@ -1516,6 +1562,45 @@ export interface FailedServiceInfoDc {
1516
1562
  errorType?: ConfigurationErrorEnum;
1517
1563
  /** The type of the resource. */
1518
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;
1519
1604
  /** The category of the service. */
1520
1605
  categories?: string[];
1521
1606
  /** Configuration of the service. */
@@ -1578,6 +1663,33 @@ export interface FeatureDc {
1578
1663
  * Service info for a feature layer service.
1579
1664
  */
1580
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;
1581
1693
  /**
1582
1694
  *
1583
1695
  *
@@ -1594,22 +1706,12 @@ export interface FeatureLayerServiceInfoDc {
1594
1706
  * multipoint
1595
1707
  */
1596
1708
  geometryType: GeometryType;
1597
- /** Layer attributes definition. */
1598
- layerDefinition: LayerDefinitionDc;
1599
- /** Layer default style. */
1600
- style?: StyleDc;
1601
1709
  /**
1602
1710
  * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
1603
1711
  * 0 is returned.
1604
1712
  * @format int32
1605
1713
  */
1606
1714
  objectCount?: number;
1607
- /** Provides data source type. */
1608
- dataSourceType?: string;
1609
- /** Copyright text. */
1610
- copyrightText?: string;
1611
- /** The type of the resource. */
1612
- type: string;
1613
1715
  /** The category of the service. */
1614
1716
  categories?: string[];
1615
1717
  /** Configuration of the service. */
@@ -1699,9 +1801,9 @@ export interface FeatureTaskParametersDc {
1699
1801
  }
1700
1802
  /**
1701
1803
  * Type of the feature.
1702
-
1804
+
1703
1805
  Unknown
1704
-
1806
+
1705
1807
  GeometricFeature
1706
1808
  */
1707
1809
  export declare enum FeatureType {
@@ -1870,17 +1972,17 @@ export interface GeometryDc {
1870
1972
  }
1871
1973
  /**
1872
1974
  *
1873
-
1975
+
1874
1976
  unknown
1875
-
1977
+
1876
1978
  point
1877
-
1979
+
1878
1980
  polyline
1879
-
1981
+
1880
1982
  polygon
1881
-
1983
+
1882
1984
  envelope
1883
-
1985
+
1884
1986
  multipoint
1885
1987
  */
1886
1988
  export declare enum GeometryType {
@@ -1907,13 +2009,13 @@ export interface GridElementDc {
1907
2009
  }
1908
2010
  /**
1909
2011
  * Resource group.
1910
-
2012
+
1911
2013
  my
1912
-
2014
+
1913
2015
  role
1914
-
2016
+
1915
2017
  public
1916
-
2018
+
1917
2019
  all
1918
2020
  */
1919
2021
  export declare enum Group {
@@ -2371,6 +2473,8 @@ export interface LayerModelDc {
2371
2473
  export interface LayerTaskDataStorageDc {
2372
2474
  /** The name of the layer service. If 'temp' namespace. */
2373
2475
  serviceName: string;
2476
+ /** Condition. */
2477
+ condition?: string;
2374
2478
  /**
2375
2479
  * If set to true, a new service with the given LayerServiceName will be created before the task is executed.
2376
2480
  * If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
@@ -2768,15 +2872,15 @@ export interface NamespaceInfoDc {
2768
2872
  export declare type ObjectId = object;
2769
2873
  /**
2770
2874
  *
2771
-
2875
+
2772
2876
  Unknown
2773
-
2877
+
2774
2878
  union
2775
-
2879
+
2776
2880
  intersection
2777
-
2881
+
2778
2882
  subtraction
2779
-
2883
+
2780
2884
  symDifference
2781
2885
  */
2782
2886
  export declare enum Operation {
@@ -2890,19 +2994,19 @@ export interface PatternBrushDc {
2890
2994
  }
2891
2995
  /**
2892
2996
  * User permissions for server security objects (services, projects etc.)
2893
-
2997
+
2894
2998
  none
2895
-
2999
+
2896
3000
  configure
2897
-
3001
+
2898
3002
  write
2899
-
3003
+
2900
3004
  read
2901
-
3005
+
2902
3006
  read,configure
2903
-
3007
+
2904
3008
  read,write
2905
-
3009
+
2906
3010
  read,write,configure
2907
3011
  */
2908
3012
  export declare enum Permissions {
@@ -3013,15 +3117,15 @@ export interface PolicyDc {
3013
3117
  }
3014
3118
  /**
3015
3119
  * Type of the authorization policy.
3016
-
3120
+
3017
3121
  Unknown
3018
-
3122
+
3019
3123
  CreateTable
3020
-
3124
+
3021
3125
  CreateLayer
3022
-
3126
+
3023
3127
  CreateProject
3024
-
3128
+
3025
3129
  MaxFeaturesInOneTable
3026
3130
  */
3027
3131
  export declare enum PolicyType {
@@ -3567,6 +3671,45 @@ export interface ProxyServiceInfoDc {
3567
3671
  copyrightText?: string;
3568
3672
  /** The type of the resource. */
3569
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;
3570
3713
  /** The category of the service. */
3571
3714
  categories?: string[];
3572
3715
  /** Configuration of the service. */
@@ -3732,6 +3875,45 @@ export interface RemoteTileServiceInfoDc {
3732
3875
  copyrightText?: string;
3733
3876
  /** The type of the resource. */
3734
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;
3735
3917
  /** The category of the service. */
3736
3918
  categories?: string[];
3737
3919
  /** Configuration of the service. */
@@ -3846,17 +4028,17 @@ export interface ResourceInfoDc {
3846
4028
  }
3847
4029
  /**
3848
4030
  * The `ResourceType` represents resource manager supports types.
3849
-
4031
+
3850
4032
  Unknown
3851
-
4033
+
3852
4034
  table
3853
-
4035
+
3854
4036
  layer
3855
-
4037
+
3856
4038
  project
3857
-
4039
+
3858
4040
  file
3859
-
4041
+
3860
4042
  feature
3861
4043
  */
3862
4044
  export declare enum ResourceType {
@@ -4007,21 +4189,21 @@ export interface ServerInfoDc {
4007
4189
  }
4008
4190
  /**
4009
4191
  * Status of the server task.
4010
-
4192
+
4011
4193
  None
4012
-
4194
+
4013
4195
  Scheduled
4014
-
4196
+
4015
4197
  Planning
4016
-
4198
+
4017
4199
  Executing
4018
-
4200
+
4019
4201
  Completed
4020
-
4202
+
4021
4203
  Failed
4022
-
4204
+
4023
4205
  Canceled
4024
-
4206
+
4025
4207
  Timeout
4026
4208
  */
4027
4209
  export declare enum ServerTaskStatus {
@@ -4129,54 +4311,6 @@ export interface ServiceInfo {
4129
4311
  export interface ServiceInfoDc {
4130
4312
  /** The type of the resource. */
4131
4313
  type: string;
4132
- /** The category of the service. */
4133
- categories?: string[];
4134
- /** Configuration of the service. */
4135
- configuration?: ServiceConfigurationBaseDc;
4136
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4137
- name: string;
4138
- /** Resource alias. */
4139
- alias?: string;
4140
- /** Resource owner. */
4141
- owner?: string;
4142
- /** Resource description. */
4143
- description?: string;
4144
- /** Resource preview. */
4145
- preview?: string;
4146
- /**
4147
- * The date when resource was created.
4148
- * @format date-time
4149
- */
4150
- createdDate?: string;
4151
- /**
4152
- * The date when resource was last modified.
4153
- * @format date-time
4154
- */
4155
- changedDate?: string;
4156
- /**
4157
- * User permissions for server security objects (services, projects etc.)
4158
- *
4159
- * none
4160
- *
4161
- * configure
4162
- *
4163
- * write
4164
- *
4165
- * read
4166
- *
4167
- * read,configure
4168
- *
4169
- * read,write
4170
- *
4171
- * read,write,configure
4172
- */
4173
- permissions?: Permissions;
4174
- /** Access control list. */
4175
- acl?: AccessControlListDc;
4176
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4177
- icon?: string;
4178
- }
4179
- export interface ServiceInfoPubDc {
4180
4314
  /**
4181
4315
  * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4182
4316
  * style of the service, or if no such property is available for this type of the service, 0 is returned.
@@ -4216,8 +4350,6 @@ export interface ServiceInfoPubDc {
4216
4350
  * @format int32
4217
4351
  */
4218
4352
  objectCount?: number;
4219
- /** The type of the resource. */
4220
- type: string;
4221
4353
  /** The category of the service. */
4222
4354
  categories?: string[];
4223
4355
  /** Configuration of the service. */
@@ -4360,154 +4492,6 @@ export interface SessionStaticTaskDataStorageDescription {
4360
4492
  /** The name of the folder. */
4361
4493
  folderName?: string;
4362
4494
  }
4363
- /**
4364
- * The `SharedProjectConfigurationDc` describes shared project configuration.
4365
- */
4366
- export interface SharedProjectConfigurationDc {
4367
- /** Gets map position. */
4368
- position?: number[];
4369
- /**
4370
- * Gets map resolution.
4371
- * @format double
4372
- */
4373
- resolution?: number;
4374
- /**
4375
- * Map spatial reference code.
4376
- * @format int32
4377
- */
4378
- srid?: number;
4379
- /** Gets or sets base map service name. */
4380
- baseMapName?: string;
4381
- /** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
4382
- options?: SharedProjectMapOptionsDc;
4383
- /**
4384
- * Minimum map level.
4385
- * @format int32
4386
- */
4387
- minScale?: number;
4388
- /**
4389
- * Maximum map level.
4390
- * @format int32
4391
- */
4392
- maxScale?: number;
4393
- /** Name of the project this shared layer refers to. */
4394
- projectName?: string;
4395
- /** Composite service layers list. */
4396
- layers: CompositeLayerConfigurationDc[];
4397
- /** Name of the service. */
4398
- name: string;
4399
- /** Human friendly name of the service. */
4400
- alias?: string;
4401
- /** Description of the service. */
4402
- description?: string;
4403
- /** Service access control list. */
4404
- acl?: AccessControlListDc;
4405
- /** Base64 encoded image - icon of the resource. */
4406
- icon?: string;
4407
- /**
4408
- * <br>
4409
- * If the owner user is set, a configuration will be created for that user.
4410
- * Administrator permissions are required to perform this operation.
4411
- *
4412
- */
4413
- owner?: string;
4414
- /** Copyright text. */
4415
- copyrightText?: string;
4416
- }
4417
- /**
4418
- * The `SharedProjectInfoDc` describes shared project info data contract.
4419
- */
4420
- export interface SharedProjectInfoDc {
4421
- /** The name of the source project. */
4422
- projectName?: string;
4423
- /** Gets map position. */
4424
- position?: number[];
4425
- /**
4426
- * Gets map resolution.
4427
- * @format double
4428
- */
4429
- resolution?: number;
4430
- /**
4431
- * Map spatial reference code.
4432
- * @format int32
4433
- */
4434
- srid?: number;
4435
- /** Gets or sets base map service name. */
4436
- baseMapName?: string;
4437
- /** The `SharedProjectMapOptionsDc` class describes shared project additional options. */
4438
- options?: SharedProjectMapOptionsDc;
4439
- /**
4440
- * Minimum map level.
4441
- * @format int32
4442
- */
4443
- minScale?: number;
4444
- /**
4445
- * Maximum map level.
4446
- * @format int32
4447
- */
4448
- maxScale?: number;
4449
- /** Composite layer list. */
4450
- layers: CompositeLayerInfoDc[];
4451
- /** The type of the resource. */
4452
- type: string;
4453
- /** The category of the service. */
4454
- categories?: string[];
4455
- /** Configuration of the service. */
4456
- configuration?: ServiceConfigurationBaseDc;
4457
- /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4458
- name: string;
4459
- /** Resource alias. */
4460
- alias?: string;
4461
- /** Resource owner. */
4462
- owner?: string;
4463
- /** Resource description. */
4464
- description?: string;
4465
- /** Resource preview. */
4466
- preview?: string;
4467
- /**
4468
- * The date when resource was created.
4469
- * @format date-time
4470
- */
4471
- createdDate?: string;
4472
- /**
4473
- * The date when resource was last modified.
4474
- * @format date-time
4475
- */
4476
- changedDate?: string;
4477
- /**
4478
- * User permissions for server security objects (services, projects etc.)
4479
- *
4480
- * none
4481
- *
4482
- * configure
4483
- *
4484
- * write
4485
- *
4486
- * read
4487
- *
4488
- * read,configure
4489
- *
4490
- * read,write
4491
- *
4492
- * read,write,configure
4493
- */
4494
- permissions?: Permissions;
4495
- /** Access control list. */
4496
- acl?: AccessControlListDc;
4497
- /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4498
- icon?: string;
4499
- }
4500
- /**
4501
- * The `SharedProjectMapOptionsDc` class describes shared project additional options.
4502
- */
4503
- export interface SharedProjectMapOptionsDc {
4504
- /** Sets true if user has access to change projects basemap. */
4505
- basemapChangeEnabled?: boolean;
4506
- /** Sets true if user has access to objects selection. */
4507
- selectEnabled?: boolean;
4508
- /** Sets true if user has access to layers visibility change. */
4509
- visibilityChangeEnabled?: boolean;
4510
- }
4511
4495
  export interface SimplePolylineSymbolDc {
4512
4496
  type?: string;
4513
4497
  /** Defines the brush for the stroke. */
@@ -4683,11 +4667,11 @@ export interface StepResultDc {
4683
4667
  }
4684
4668
  /**
4685
4669
  * The `StringSubType` provides information about string attribute subtype.
4686
-
4670
+
4687
4671
  None
4688
-
4672
+
4689
4673
  Image
4690
-
4674
+
4691
4675
  PkkCode
4692
4676
  */
4693
4677
  export declare enum StringSubType {
@@ -5195,6 +5179,45 @@ export interface TileServiceInfoDc {
5195
5179
  copyrightText?: string;
5196
5180
  /** The type of the resource. */
5197
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;
5198
5221
  /** The category of the service. */
5199
5222
  categories?: string[];
5200
5223
  /** Configuration of the service. */
@@ -6070,8 +6093,6 @@ export interface DeleteFeaturesParams {
6070
6093
  export interface DeleteByConditionParams {
6071
6094
  /** Filtering query. */
6072
6095
  condition?: string;
6073
- /** Excluded ids. */
6074
- excludedIds?: string[];
6075
6096
  /** Full name of the layer. */
6076
6097
  name: string;
6077
6098
  }
@@ -6126,6 +6147,8 @@ export interface ClassifyParams {
6126
6147
  * equalInterval
6127
6148
  *
6128
6149
  * quantile
6150
+ *
6151
+ * unique
6129
6152
  */
6130
6153
  type?: ClassificationType;
6131
6154
  /** The name of the layer. */
@@ -6309,10 +6332,6 @@ export interface UploadTemplateParams {
6309
6332
  /** Rewrite if exits. */
6310
6333
  rewrite?: boolean;
6311
6334
  }
6312
- /**
6313
- * The `SharedProjectConfigurationDc` describes shared project configuration.
6314
- */
6315
- export declare type CreateShareProjectPayload = SharedProjectConfigurationDc | ServiceConfigurationBaseDc | CompositeServiceConfigurationDc;
6316
6335
  export interface GetProjectsListParams {
6317
6336
  /** Project name filter (support % and _ wildcards). */
6318
6337
  filter?: string;
@@ -6348,7 +6367,7 @@ export interface GetProjectsListParams {
6348
6367
  */
6349
6368
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6350
6369
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6351
- export interface DeleteResourcesParams3 {
6370
+ export interface DeleteResourcesParams9 {
6352
6371
  /** Resource names. */
6353
6372
  names?: string[];
6354
6373
  }
@@ -6540,7 +6559,7 @@ export interface StatisticsDbParams {
6540
6559
  /** Type of required statistic function. */
6541
6560
  types?: AggregationFunction[];
6542
6561
  }
6543
- export interface ClassifyParams6 {
6562
+ export interface ClassifyParams4 {
6544
6563
  /** Layer name. */
6545
6564
  name?: string;
6546
6565
  /** Attribute name. */
@@ -6567,6 +6586,8 @@ export interface ClassifyParams6 {
6567
6586
  * equalInterval
6568
6587
  *
6569
6588
  * quantile
6589
+ *
6590
+ * unique
6570
6591
  */
6571
6592
  type?: ClassificationType;
6572
6593
  /**
@@ -6575,6 +6596,8 @@ export interface ClassifyParams6 {
6575
6596
  * decimal
6576
6597
  *
6577
6598
  * dateTime
6599
+ *
6600
+ * text
6578
6601
  */
6579
6602
  attributeType?: ClassifyAttributeType;
6580
6603
  }
@@ -6641,7 +6664,7 @@ export interface GetTableListParams {
6641
6664
  */
6642
6665
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6643
6666
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6644
- export interface DeleteResourcesParams1 {
6667
+ export interface DeleteResourcesParams6 {
6645
6668
  /** Resource names. */
6646
6669
  names?: string[];
6647
6670
  }
@@ -6746,7 +6769,7 @@ export interface GetCapabilitiesParams {
6746
6769
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6747
6770
  AcceptFormats?: string[];
6748
6771
  }
6749
- export interface GetCapabilitiesParams5 {
6772
+ export interface GetCapabilitiesParams1 {
6750
6773
  /** Output format of service metadata. */
6751
6774
  Format?: string;
6752
6775
  /** Must be WMS. */