@evergis/api 3.0.77 → 3.0.80

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 {
@@ -2175,12 +2277,25 @@ export interface ImportDataSchema {
2175
2277
  /** Importing file type. */
2176
2278
  type: string;
2177
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
+ }
2178
2291
  /**
2179
2292
  * Schema of a layer in an imported file.
2180
2293
  */
2181
2294
  export interface ImportLayerDataSchema {
2182
2295
  /** Name of the layer. */
2183
2296
  name: string;
2297
+ /** First feature in the layer. */
2298
+ firstRow?: Record<string, any>;
2184
2299
  /**
2185
2300
  * Number of objects in the layer.
2186
2301
  * @format int64
@@ -2371,6 +2486,8 @@ export interface LayerModelDc {
2371
2486
  export interface LayerTaskDataStorageDc {
2372
2487
  /** The name of the layer service. If 'temp' namespace. */
2373
2488
  serviceName: string;
2489
+ /** Condition. */
2490
+ condition?: string;
2374
2491
  /**
2375
2492
  * If set to true, a new service with the given LayerServiceName will be created before the task is executed.
2376
2493
  * If create new service within 'temp' namespace, name of the table will be equal to LayerServiceName.
@@ -2768,15 +2885,15 @@ export interface NamespaceInfoDc {
2768
2885
  export declare type ObjectId = object;
2769
2886
  /**
2770
2887
  *
2771
-
2888
+
2772
2889
  Unknown
2773
-
2890
+
2774
2891
  union
2775
-
2892
+
2776
2893
  intersection
2777
-
2894
+
2778
2895
  subtraction
2779
-
2896
+
2780
2897
  symDifference
2781
2898
  */
2782
2899
  export declare enum Operation {
@@ -2890,19 +3007,19 @@ export interface PatternBrushDc {
2890
3007
  }
2891
3008
  /**
2892
3009
  * User permissions for server security objects (services, projects etc.)
2893
-
3010
+
2894
3011
  none
2895
-
3012
+
2896
3013
  configure
2897
-
3014
+
2898
3015
  write
2899
-
3016
+
2900
3017
  read
2901
-
3018
+
2902
3019
  read,configure
2903
-
3020
+
2904
3021
  read,write
2905
-
3022
+
2906
3023
  read,write,configure
2907
3024
  */
2908
3025
  export declare enum Permissions {
@@ -3013,15 +3130,15 @@ export interface PolicyDc {
3013
3130
  }
3014
3131
  /**
3015
3132
  * Type of the authorization policy.
3016
-
3133
+
3017
3134
  Unknown
3018
-
3135
+
3019
3136
  CreateTable
3020
-
3137
+
3021
3138
  CreateLayer
3022
-
3139
+
3023
3140
  CreateProject
3024
-
3141
+
3025
3142
  MaxFeaturesInOneTable
3026
3143
  */
3027
3144
  export declare enum PolicyType {
@@ -3567,6 +3684,45 @@ export interface ProxyServiceInfoDc {
3567
3684
  copyrightText?: string;
3568
3685
  /** The type of the resource. */
3569
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;
3570
3726
  /** The category of the service. */
3571
3727
  categories?: string[];
3572
3728
  /** Configuration of the service. */
@@ -3732,6 +3888,45 @@ export interface RemoteTileServiceInfoDc {
3732
3888
  copyrightText?: string;
3733
3889
  /** The type of the resource. */
3734
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;
3735
3930
  /** The category of the service. */
3736
3931
  categories?: string[];
3737
3932
  /** Configuration of the service. */
@@ -3846,17 +4041,17 @@ export interface ResourceInfoDc {
3846
4041
  }
3847
4042
  /**
3848
4043
  * The `ResourceType` represents resource manager supports types.
3849
-
4044
+
3850
4045
  Unknown
3851
-
4046
+
3852
4047
  table
3853
-
4048
+
3854
4049
  layer
3855
-
4050
+
3856
4051
  project
3857
-
4052
+
3858
4053
  file
3859
-
4054
+
3860
4055
  feature
3861
4056
  */
3862
4057
  export declare enum ResourceType {
@@ -4007,21 +4202,21 @@ export interface ServerInfoDc {
4007
4202
  }
4008
4203
  /**
4009
4204
  * Status of the server task.
4010
-
4205
+
4011
4206
  None
4012
-
4207
+
4013
4208
  Scheduled
4014
-
4209
+
4015
4210
  Planning
4016
-
4211
+
4017
4212
  Executing
4018
-
4213
+
4019
4214
  Completed
4020
-
4215
+
4021
4216
  Failed
4022
-
4217
+
4023
4218
  Canceled
4024
-
4219
+
4025
4220
  Timeout
4026
4221
  */
4027
4222
  export declare enum ServerTaskStatus {
@@ -4129,54 +4324,6 @@ export interface ServiceInfo {
4129
4324
  export interface ServiceInfoDc {
4130
4325
  /** The type of the resource. */
4131
4326
  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
4327
  /**
4181
4328
  * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4182
4329
  * style of the service, or if no such property is available for this type of the service, 0 is returned.
@@ -4216,8 +4363,6 @@ export interface ServiceInfoPubDc {
4216
4363
  * @format int32
4217
4364
  */
4218
4365
  objectCount?: number;
4219
- /** The type of the resource. */
4220
- type: string;
4221
4366
  /** The category of the service. */
4222
4367
  categories?: string[];
4223
4368
  /** Configuration of the service. */
@@ -4360,154 +4505,6 @@ export interface SessionStaticTaskDataStorageDescription {
4360
4505
  /** The name of the folder. */
4361
4506
  folderName?: string;
4362
4507
  }
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
4508
  export interface SimplePolylineSymbolDc {
4512
4509
  type?: string;
4513
4510
  /** Defines the brush for the stroke. */
@@ -4683,11 +4680,11 @@ export interface StepResultDc {
4683
4680
  }
4684
4681
  /**
4685
4682
  * The `StringSubType` provides information about string attribute subtype.
4686
-
4683
+
4687
4684
  None
4688
-
4685
+
4689
4686
  Image
4690
-
4687
+
4691
4688
  PkkCode
4692
4689
  */
4693
4690
  export declare enum StringSubType {
@@ -5195,6 +5192,45 @@ export interface TileServiceInfoDc {
5195
5192
  copyrightText?: string;
5196
5193
  /** The type of the resource. */
5197
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;
5198
5234
  /** The category of the service. */
5199
5235
  categories?: string[];
5200
5236
  /** Configuration of the service. */
@@ -5737,18 +5773,10 @@ export interface GetDataSchemaParams {
5737
5773
  /** File id. */
5738
5774
  fileId?: string;
5739
5775
  }
5740
- export interface GetExcelDataSchemaParams {
5741
- /** Id of the excel file in the temporary static storage. */
5742
- fileId?: string;
5743
- }
5744
- export interface GetCsvDataSchemaParams {
5745
- /** Id of the csv file in the temporary static storage. */
5746
- fileId?: string;
5747
- }
5748
- export interface GetKmlDataSchemaParams {
5749
- /** Id of the kml file in the temporary static storage. */
5750
- fileId?: string;
5751
- }
5776
+ /**
5777
+ * Data schema of a file for import.
5778
+ */
5779
+ export declare type GetFeaturesCountPayload = ImportFileFeaturesCountDc;
5752
5780
  export interface GetRasterAttributesParams {
5753
5781
  /** File name in the temporary static storage. */
5754
5782
  fileName?: string;
@@ -6070,8 +6098,6 @@ export interface DeleteFeaturesParams {
6070
6098
  export interface DeleteByConditionParams {
6071
6099
  /** Filtering query. */
6072
6100
  condition?: string;
6073
- /** Excluded ids. */
6074
- excludedIds?: string[];
6075
6101
  /** Full name of the layer. */
6076
6102
  name: string;
6077
6103
  }
@@ -6126,6 +6152,8 @@ export interface ClassifyParams {
6126
6152
  * equalInterval
6127
6153
  *
6128
6154
  * quantile
6155
+ *
6156
+ * unique
6129
6157
  */
6130
6158
  type?: ClassificationType;
6131
6159
  /** The name of the layer. */
@@ -6309,10 +6337,6 @@ export interface UploadTemplateParams {
6309
6337
  /** Rewrite if exits. */
6310
6338
  rewrite?: boolean;
6311
6339
  }
6312
- /**
6313
- * The `SharedProjectConfigurationDc` describes shared project configuration.
6314
- */
6315
- export declare type CreateShareProjectPayload = SharedProjectConfigurationDc | ServiceConfigurationBaseDc | CompositeServiceConfigurationDc;
6316
6340
  export interface GetProjectsListParams {
6317
6341
  /** Project name filter (support % and _ wildcards). */
6318
6342
  filter?: string;
@@ -6348,7 +6372,7 @@ export interface GetProjectsListParams {
6348
6372
  */
6349
6373
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6350
6374
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6351
- export interface DeleteResourcesParams3 {
6375
+ export interface DeleteResourcesParams4 {
6352
6376
  /** Resource names. */
6353
6377
  names?: string[];
6354
6378
  }
@@ -6540,7 +6564,7 @@ export interface StatisticsDbParams {
6540
6564
  /** Type of required statistic function. */
6541
6565
  types?: AggregationFunction[];
6542
6566
  }
6543
- export interface ClassifyParams6 {
6567
+ export interface ClassifyParams2 {
6544
6568
  /** Layer name. */
6545
6569
  name?: string;
6546
6570
  /** Attribute name. */
@@ -6567,6 +6591,8 @@ export interface ClassifyParams6 {
6567
6591
  * equalInterval
6568
6592
  *
6569
6593
  * quantile
6594
+ *
6595
+ * unique
6570
6596
  */
6571
6597
  type?: ClassificationType;
6572
6598
  /**
@@ -6575,6 +6601,8 @@ export interface ClassifyParams6 {
6575
6601
  * decimal
6576
6602
  *
6577
6603
  * dateTime
6604
+ *
6605
+ * text
6578
6606
  */
6579
6607
  attributeType?: ClassifyAttributeType;
6580
6608
  }
@@ -6641,7 +6669,7 @@ export interface GetTableListParams {
6641
6669
  */
6642
6670
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6643
6671
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6644
- export interface DeleteResourcesParams1 {
6672
+ export interface DeleteResourcesParams10 {
6645
6673
  /** Resource names. */
6646
6674
  names?: string[];
6647
6675
  }
@@ -6746,7 +6774,7 @@ export interface GetCapabilitiesParams {
6746
6774
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6747
6775
  AcceptFormats?: string[];
6748
6776
  }
6749
- export interface GetCapabilitiesParams5 {
6777
+ export interface GetCapabilitiesParams2 {
6750
6778
  /** Output format of service metadata. */
6751
6779
  Format?: string;
6752
6780
  /** Must be WMS. */