@evergis/api 3.0.72 → 3.0.75

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.
@@ -49,6 +49,18 @@ export interface AggregationDataResultDc {
49
49
  *
50
50
  * Count
51
51
  *
52
+ * First
53
+ *
54
+ * Last
55
+ *
56
+ * Median
57
+ *
58
+ * Mod
59
+ *
60
+ * StdDeviation
61
+ *
62
+ * SumOfProduct
63
+ *
52
64
  * OnlyValue
53
65
  *
54
66
  * WeightedAvg
@@ -63,29 +75,41 @@ export interface AggregationDataResultDc {
63
75
  }
64
76
  /**
65
77
  *
66
-
78
+
67
79
  None
68
-
80
+
69
81
  Array
70
-
82
+
71
83
  Min
72
-
84
+
73
85
  Max
74
-
86
+
75
87
  Avg
76
-
88
+
77
89
  Sum
78
-
90
+
79
91
  Extent
80
-
92
+
81
93
  Count
82
-
94
+
95
+ First
96
+
97
+ Last
98
+
99
+ Median
100
+
101
+ Mod
102
+
103
+ StdDeviation
104
+
105
+ SumOfProduct
106
+
83
107
  OnlyValue
84
-
108
+
85
109
  WeightedAvg
86
-
110
+
87
111
  DensityIndicators
88
-
112
+
89
113
  DividedSum
90
114
  */
91
115
  export declare enum AggregationFunction {
@@ -97,6 +121,12 @@ export declare enum AggregationFunction {
97
121
  Sum = "Sum",
98
122
  Extent = "Extent",
99
123
  Count = "Count",
124
+ First = "First",
125
+ Last = "Last",
126
+ Median = "Median",
127
+ Mod = "Mod",
128
+ StdDeviation = "StdDeviation",
129
+ SumOfProduct = "SumOfProduct",
100
130
  OnlyValue = "OnlyValue",
101
131
  WeightedAvg = "WeightedAvg",
102
132
  DensityIndicators = "DensityIndicators",
@@ -131,6 +161,18 @@ export interface AggregationSettingDc {
131
161
  *
132
162
  * Count
133
163
  *
164
+ * First
165
+ *
166
+ * Last
167
+ *
168
+ * Median
169
+ *
170
+ * Mod
171
+ *
172
+ * StdDeviation
173
+ *
174
+ * SumOfProduct
175
+ *
134
176
  * OnlyValue
135
177
  *
136
178
  * WeightedAvg
@@ -184,6 +226,18 @@ export interface AttributeConfigurationDc {
184
226
  *
185
227
  * Count
186
228
  *
229
+ * First
230
+ *
231
+ * Last
232
+ *
233
+ * Median
234
+ *
235
+ * Mod
236
+ *
237
+ * StdDeviation
238
+ *
239
+ * SumOfProduct
240
+ *
187
241
  * OnlyValue
188
242
  *
189
243
  * WeightedAvg
@@ -258,7 +312,7 @@ export interface AttributeDefinitionDc {
258
312
  */
259
313
  export interface AttributeDistinctDc {
260
314
  /** Attribute value. */
261
- attributeValue: string;
315
+ value: string;
262
316
  /**
263
317
  * Count of this attribute value at table.
264
318
  * @format int64
@@ -354,27 +408,27 @@ export interface AttributeFormatDefinitionDc {
354
408
  }
355
409
  /**
356
410
  * Types of the attributes that are supported by the system.
357
-
411
+
358
412
  Unknown
359
-
413
+
360
414
  String
361
-
415
+
362
416
  Int32
363
-
417
+
364
418
  Int64
365
-
419
+
366
420
  Double
367
-
421
+
368
422
  DateTime
369
-
423
+
370
424
  Boolean
371
-
425
+
372
426
  Point
373
-
427
+
374
428
  Polyline
375
-
429
+
376
430
  Polygon
377
-
431
+
378
432
  Multipoint
379
433
  */
380
434
  export declare enum AttributeType {
@@ -580,18 +634,32 @@ export interface CirclePointSymbolDc {
580
634
  }
581
635
  /**
582
636
  * Describes classification methods.
583
-
637
+
638
+ none
639
+
584
640
  naturalBreaks
585
-
641
+
586
642
  equalInterval
587
-
643
+
588
644
  quantile
589
645
  */
590
646
  export declare enum ClassificationType {
647
+ None = "none",
591
648
  NaturalBreaks = "naturalBreaks",
592
649
  EqualInterval = "equalInterval",
593
650
  Quantile = "quantile"
594
651
  }
652
+ /**
653
+ * Type of attribute.
654
+
655
+ decimal
656
+
657
+ dateTime
658
+ */
659
+ export declare enum ClassifyAttributeType {
660
+ Decimal = "decimal",
661
+ DateTime = "dateTime"
662
+ }
595
663
  /**
596
664
  * Classification result.
597
665
  */
@@ -609,7 +677,7 @@ export interface ClassifyResultObject {
609
677
  value?: any;
610
678
  /**
611
679
  * Count.
612
- * @format int32
680
+ * @format int64
613
681
  */
614
682
  count?: number;
615
683
  }
@@ -743,6 +811,8 @@ export interface CompositeServiceConfigurationDc {
743
811
  *
744
812
  */
745
813
  owner?: string;
814
+ /** Copyright text. */
815
+ copyrightText?: string;
746
816
  }
747
817
  /**
748
818
  * Information about composite service.
@@ -1192,15 +1262,15 @@ export interface ErrorDetailsDc {
1192
1262
  }
1193
1263
  /**
1194
1264
  * Type of the error.
1195
-
1265
+
1196
1266
  ResourceLimitExceeded
1197
-
1267
+
1198
1268
  ResourceNotFound
1199
-
1269
+
1200
1270
  InternalError
1201
-
1271
+
1202
1272
  BadRequest
1203
-
1273
+
1204
1274
  DuplicateContent
1205
1275
  */
1206
1276
  export declare enum ErrorDetailsType {
@@ -1536,6 +1606,8 @@ export interface FeatureLayerServiceInfoDc {
1536
1606
  objectCount?: number;
1537
1607
  /** Provides data source type. */
1538
1608
  dataSourceType?: string;
1609
+ /** Copyright text. */
1610
+ copyrightText?: string;
1539
1611
  /** The type of the resource. */
1540
1612
  type: string;
1541
1613
  /** The category of the service. */
@@ -1627,9 +1699,9 @@ export interface FeatureTaskParametersDc {
1627
1699
  }
1628
1700
  /**
1629
1701
  * Type of the feature.
1630
-
1702
+
1631
1703
  Unknown
1632
-
1704
+
1633
1705
  GeometricFeature
1634
1706
  */
1635
1707
  export declare enum FeatureType {
@@ -1690,6 +1762,20 @@ export interface FilterCopyTaskParametersDc {
1690
1762
  /** Storage that is to be used as a target for writing the task result. */
1691
1763
  target: BaseTaskDataStorageDc;
1692
1764
  }
1765
+ /**
1766
+ * Server response for the creation of a filter in filter service.
1767
+ */
1768
+ export interface FilterCreationResponseDc {
1769
+ /** Id of the filter. */
1770
+ id?: string;
1771
+ }
1772
+ /**
1773
+ * Provides filter data contract.
1774
+ */
1775
+ export interface FilterDc {
1776
+ /** Filter string to save. */
1777
+ filterString: string;
1778
+ }
1693
1779
  /**
1694
1780
  * Sets whether font should be styled.
1695
1781
  */
@@ -1704,21 +1790,15 @@ export declare enum FontStyle {
1704
1790
  export declare enum FontWeight {
1705
1791
  Thin = "Thin",
1706
1792
  ExtraLight = "ExtraLight",
1707
- UltraLight = "UltraLight",
1708
1793
  Light = "Light",
1709
1794
  SemiLight = "SemiLight",
1710
1795
  Normal = "Normal",
1711
- Regular = "Regular",
1712
1796
  Medium = "Medium",
1713
1797
  DemiBold = "DemiBold",
1714
- SemiBold = "SemiBold",
1715
1798
  Bold = "Bold",
1716
1799
  ExtraBold = "ExtraBold",
1717
- UltraBold = "UltraBold",
1718
1800
  Black = "Black",
1719
- Heavy = "Heavy",
1720
- ExtraBlack = "ExtraBlack",
1721
- UltraBlack = "UltraBlack"
1801
+ ExtraBlack = "ExtraBlack"
1722
1802
  }
1723
1803
  /**
1724
1804
  * Information about function argument.
@@ -1790,17 +1870,17 @@ export interface GeometryDc {
1790
1870
  }
1791
1871
  /**
1792
1872
  *
1793
-
1873
+
1794
1874
  unknown
1795
-
1875
+
1796
1876
  point
1797
-
1877
+
1798
1878
  polyline
1799
-
1879
+
1800
1880
  polygon
1801
-
1881
+
1802
1882
  envelope
1803
-
1883
+
1804
1884
  multipoint
1805
1885
  */
1806
1886
  export declare enum GeometryType {
@@ -1827,13 +1907,13 @@ export interface GridElementDc {
1827
1907
  }
1828
1908
  /**
1829
1909
  * Resource group.
1830
-
1910
+
1831
1911
  my
1832
-
1912
+
1833
1913
  role
1834
-
1914
+
1835
1915
  public
1836
-
1916
+
1837
1917
  all
1838
1918
  */
1839
1919
  export declare enum Group {
@@ -2092,6 +2172,8 @@ export interface ImagePointSymbolDc {
2092
2172
  export interface ImportDataSchema {
2093
2173
  /** List of layers in the data-set. */
2094
2174
  layers: ImportLayerDataSchema[];
2175
+ /** Importing file type. */
2176
+ type: string;
2095
2177
  }
2096
2178
  /**
2097
2179
  * Schema of a layer in an imported file.
@@ -2280,6 +2362,8 @@ export interface LayerModelDc {
2280
2362
  condition?: string;
2281
2363
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
2282
2364
  styleId?: string;
2365
+ /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
2366
+ dataFilterId?: string;
2283
2367
  }
2284
2368
  /**
2285
2369
  * The description of the layer service as a server task data storage.
@@ -2550,6 +2634,8 @@ export interface LocalTileServiceConfigurationDc {
2550
2634
  *
2551
2635
  */
2552
2636
  owner?: string;
2637
+ /** Copyright text. */
2638
+ copyrightText?: string;
2553
2639
  }
2554
2640
  /**
2555
2641
  * Tile LOD structure.
@@ -2682,15 +2768,15 @@ export interface NamespaceInfoDc {
2682
2768
  export declare type ObjectId = object;
2683
2769
  /**
2684
2770
  *
2685
-
2771
+
2686
2772
  Unknown
2687
-
2773
+
2688
2774
  union
2689
-
2775
+
2690
2776
  intersection
2691
-
2777
+
2692
2778
  subtraction
2693
-
2779
+
2694
2780
  symDifference
2695
2781
  */
2696
2782
  export declare enum Operation {
@@ -2804,19 +2890,19 @@ export interface PatternBrushDc {
2804
2890
  }
2805
2891
  /**
2806
2892
  * User permissions for server security objects (services, projects etc.)
2807
-
2893
+
2808
2894
  none
2809
-
2895
+
2810
2896
  configure
2811
-
2897
+
2812
2898
  write
2813
-
2899
+
2814
2900
  read
2815
-
2901
+
2816
2902
  read,configure
2817
-
2903
+
2818
2904
  read,write
2819
-
2905
+
2820
2906
  read,write,configure
2821
2907
  */
2822
2908
  export declare enum Permissions {
@@ -2927,15 +3013,15 @@ export interface PolicyDc {
2927
3013
  }
2928
3014
  /**
2929
3015
  * Type of the authorization policy.
2930
-
3016
+
2931
3017
  Unknown
2932
-
3018
+
2933
3019
  CreateTable
2934
-
3020
+
2935
3021
  CreateLayer
2936
-
3022
+
2937
3023
  CreateProject
2938
-
3024
+
2939
3025
  MaxFeaturesInOneTable
2940
3026
  */
2941
3027
  export declare enum PolicyType {
@@ -3237,6 +3323,8 @@ export interface PostgresLayerServiceConfigurationDc {
3237
3323
  *
3238
3324
  */
3239
3325
  owner?: string;
3326
+ /** Copyright text. */
3327
+ copyrightText?: string;
3240
3328
  }
3241
3329
  /**
3242
3330
  * Configuration of a postgres tile catalog service.
@@ -3263,6 +3351,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
3263
3351
  * @format int32
3264
3352
  */
3265
3353
  maxLodLevel?: number;
3354
+ /** IsCogLayer. */
3355
+ isCogLayer?: boolean;
3266
3356
  /** Name of the service. */
3267
3357
  name: string;
3268
3358
  /** Human friendly name of the service. */
@@ -3280,6 +3370,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
3280
3370
  *
3281
3371
  */
3282
3372
  owner?: string;
3373
+ /** Copyright text. */
3374
+ copyrightText?: string;
3283
3375
  }
3284
3376
  /**
3285
3377
  * Print operation print map and map elements to png files.
@@ -3439,8 +3531,6 @@ export interface ProxyServiceConfigurationDc {
3439
3531
  sourceUrl: string;
3440
3532
  /** Names of layers to include in proxy layer (can be numbers). */
3441
3533
  layers: string[];
3442
- /** Copyright text. */
3443
- copyrightText?: string;
3444
3534
  /** Name of the service. */
3445
3535
  name: string;
3446
3536
  /** Human friendly name of the service. */
@@ -3458,6 +3548,8 @@ export interface ProxyServiceConfigurationDc {
3458
3548
  *
3459
3549
  */
3460
3550
  owner?: string;
3551
+ /** Copyright text. */
3552
+ copyrightText?: string;
3461
3553
  }
3462
3554
  /**
3463
3555
  * Service info for a Proxy service.
@@ -3469,10 +3561,10 @@ export interface ProxyServiceInfoDc {
3469
3561
  sourceUrl: string;
3470
3562
  /** Names of layers to include in proxy layer (can be numbers). */
3471
3563
  layers: string[];
3472
- /** Copyright text. */
3473
- copyrightText?: string;
3474
3564
  /** Layer legend. */
3475
3565
  legend?: ProxyLayerLegendDc;
3566
+ /** Copyright text. */
3567
+ copyrightText?: string;
3476
3568
  /** The type of the resource. */
3477
3569
  type: string;
3478
3570
  /** The category of the service. */
@@ -3586,8 +3678,6 @@ export interface RemoteTileServiceConfigurationDc {
3586
3678
  * Will be inserted into the UrlFormat {0}.
3587
3679
  */
3588
3680
  subDomains?: string[];
3589
- /** Copyright text. */
3590
- copyrightText?: string;
3591
3681
  /** Allows the client to receive tiles directly from the source server. */
3592
3682
  allowDirectAccess?: boolean;
3593
3683
  /** @format int32 */
@@ -3609,6 +3699,8 @@ export interface RemoteTileServiceConfigurationDc {
3609
3699
  *
3610
3700
  */
3611
3701
  owner?: string;
3702
+ /** Copyright text. */
3703
+ copyrightText?: string;
3612
3704
  }
3613
3705
  export interface RemoteTileServiceInfo {
3614
3706
  /** Description of a service in the Spatial Processor. */
@@ -3634,10 +3726,10 @@ export interface RemoteTileServiceInfoDc {
3634
3726
  sourceUrlMask?: string;
3635
3727
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3636
3728
  sourceServers?: string[];
3637
- /** Copyright text. */
3638
- copyrightText?: string;
3639
3729
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
3640
3730
  tileInfo: TileInfoDc;
3731
+ /** Copyright text. */
3732
+ copyrightText?: string;
3641
3733
  /** The type of the resource. */
3642
3734
  type: string;
3643
3735
  /** The category of the service. */
@@ -3754,17 +3846,17 @@ export interface ResourceInfoDc {
3754
3846
  }
3755
3847
  /**
3756
3848
  * The `ResourceType` represents resource manager supports types.
3757
-
3849
+
3758
3850
  Unknown
3759
-
3851
+
3760
3852
  table
3761
-
3853
+
3762
3854
  layer
3763
-
3855
+
3764
3856
  project
3765
-
3857
+
3766
3858
  file
3767
-
3859
+
3768
3860
  feature
3769
3861
  */
3770
3862
  export declare enum ResourceType {
@@ -3842,6 +3934,16 @@ export interface RoutingProviderInfoDc {
3842
3934
  type?: string;
3843
3935
  /** Routing profile (e.g. car, walking, bicycle etc.) */
3844
3936
  profile?: string;
3937
+ /**
3938
+ * Timeout in seconds.
3939
+ * @format int32
3940
+ */
3941
+ timeout?: number;
3942
+ /**
3943
+ * Max points in single batch.
3944
+ * @format int32
3945
+ */
3946
+ maxPointsInBatch?: number;
3845
3947
  }
3846
3948
  /**
3847
3949
  * ScaleBar element data contract.
@@ -3905,21 +4007,21 @@ export interface ServerInfoDc {
3905
4007
  }
3906
4008
  /**
3907
4009
  * Status of the server task.
3908
-
4010
+
3909
4011
  None
3910
-
4012
+
3911
4013
  Scheduled
3912
-
4014
+
3913
4015
  Planning
3914
-
4016
+
3915
4017
  Executing
3916
-
4018
+
3917
4019
  Completed
3918
-
4020
+
3919
4021
  Failed
3920
-
4022
+
3921
4023
  Canceled
3922
-
4024
+
3923
4025
  Timeout
3924
4026
  */
3925
4027
  export declare enum ServerTaskStatus {
@@ -3953,6 +4055,8 @@ export interface ServiceConfigurationBaseDc {
3953
4055
  *
3954
4056
  */
3955
4057
  owner?: string;
4058
+ /** Copyright text. */
4059
+ copyrightText?: string;
3956
4060
  }
3957
4061
  /**
3958
4062
  * Description of a service in the Spatial Processor.
@@ -4307,6 +4411,8 @@ export interface SharedProjectConfigurationDc {
4307
4411
  *
4308
4412
  */
4309
4413
  owner?: string;
4414
+ /** Copyright text. */
4415
+ copyrightText?: string;
4310
4416
  }
4311
4417
  /**
4312
4418
  * The `SharedProjectInfoDc` describes shared project info data contract.
@@ -4496,39 +4602,58 @@ export interface StaticTaskDataStorageDc {
4496
4602
  type?: string;
4497
4603
  }
4498
4604
  /**
4499
- * Describes statistics methods.
4500
-
4501
- min
4502
-
4503
- max
4504
-
4505
- avg
4506
-
4507
- med
4508
-
4509
- mod
4510
-
4511
- sum
4512
-
4513
- sumOfProduct
4514
-
4515
- count
4516
-
4517
- firstLast
4518
-
4519
- standardDeviation
4520
- */
4521
- export declare enum StatisticsType {
4522
- Min = "min",
4523
- Max = "max",
4524
- Avg = "avg",
4525
- Med = "med",
4526
- Mod = "mod",
4527
- Sum = "sum",
4528
- SumOfProduct = "sumOfProduct",
4529
- Count = "count",
4530
- FirstLast = "firstLast",
4531
- StandardDeviation = "standardDeviation"
4605
+ * Statistics result.
4606
+ */
4607
+ export interface StatisticsDc {
4608
+ /** Statistics result. */
4609
+ statisticsResult: StatisticsResultObject[];
4610
+ }
4611
+ /**
4612
+ * Statistics result.
4613
+ */
4614
+ export interface StatisticsResultObject {
4615
+ /**
4616
+ *
4617
+ *
4618
+ * None
4619
+ *
4620
+ * Array
4621
+ *
4622
+ * Min
4623
+ *
4624
+ * Max
4625
+ *
4626
+ * Avg
4627
+ *
4628
+ * Sum
4629
+ *
4630
+ * Extent
4631
+ *
4632
+ * Count
4633
+ *
4634
+ * First
4635
+ *
4636
+ * Last
4637
+ *
4638
+ * Median
4639
+ *
4640
+ * Mod
4641
+ *
4642
+ * StdDeviation
4643
+ *
4644
+ * SumOfProduct
4645
+ *
4646
+ * OnlyValue
4647
+ *
4648
+ * WeightedAvg
4649
+ *
4650
+ * DensityIndicators
4651
+ *
4652
+ * DividedSum
4653
+ */
4654
+ type?: AggregationFunction;
4655
+ /** Value. */
4656
+ value?: any;
4532
4657
  }
4533
4658
  /**
4534
4659
  * The result of a server task step execution.
@@ -4558,11 +4683,11 @@ export interface StepResultDc {
4558
4683
  }
4559
4684
  /**
4560
4685
  * The `StringSubType` provides information about string attribute subtype.
4561
-
4686
+
4562
4687
  None
4563
-
4688
+
4564
4689
  Image
4565
-
4690
+
4566
4691
  PkkCode
4567
4692
  */
4568
4693
  export declare enum StringSubType {
@@ -4649,6 +4774,8 @@ export interface StyledLayerServiceConfigurationDc {
4649
4774
  *
4650
4775
  */
4651
4776
  owner?: string;
4777
+ /** Copyright text. */
4778
+ copyrightText?: string;
4652
4779
  }
4653
4780
  /**
4654
4781
  * Feature symbol.
@@ -5064,6 +5191,8 @@ export interface TileInfoDc {
5064
5191
  export interface TileServiceInfoDc {
5065
5192
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
5066
5193
  tileInfo: TileInfoDc;
5194
+ /** Copyright text. */
5195
+ copyrightText?: string;
5067
5196
  /** The type of the resource. */
5068
5197
  type: string;
5069
5198
  /** The category of the service. */
@@ -5261,6 +5390,8 @@ export interface UploadRasterTaskParametersDc {
5261
5390
  maxZoomLevel: number;
5262
5391
  /** Get geometry from bbox or polygonize. */
5263
5392
  polygonize?: boolean;
5393
+ /** Import as COG. */
5394
+ useCog?: boolean;
5264
5395
  type?: string;
5265
5396
  }
5266
5397
  /**
@@ -5541,6 +5672,28 @@ export interface MoreSymbolsParams {
5541
5672
  /** Request justification. */
5542
5673
  Justification?: string;
5543
5674
  }
5675
+ export interface FeedbackPayload {
5676
+ /** Attachments. */
5677
+ Attachments?: File[];
5678
+ }
5679
+ export interface FeedbackParams {
5680
+ /** Name. */
5681
+ Name?: string;
5682
+ /** Phone number. */
5683
+ Phone?: string;
5684
+ /** Email address. */
5685
+ Email?: string;
5686
+ /** Message text. */
5687
+ Message?: string;
5688
+ }
5689
+ /**
5690
+ * Provides filter data contract.
5691
+ */
5692
+ export declare type UpdatePayload = FilterDc;
5693
+ /**
5694
+ * Provides filter data contract.
5695
+ */
5696
+ export declare type CreatePayload = FilterDc;
5544
5697
  export interface GeocodeParams {
5545
5698
  /** Input address. */
5546
5699
  address?: string;
@@ -5587,26 +5740,10 @@ export interface GetDataSchemaParams {
5587
5740
  export interface GetExcelDataSchemaParams {
5588
5741
  /** Id of the excel file in the temporary static storage. */
5589
5742
  fileId?: string;
5590
- /**
5591
- * Attribute name row number.
5592
- * @format int32
5593
- */
5594
- attributeNameRowNumber?: number;
5595
- /** Coord source fields. */
5596
- coordSourceFields?: string[];
5597
- /**
5598
- * Alias row number.
5599
- * @format int32
5600
- */
5601
- aliasRowNumber?: number;
5602
5743
  }
5603
5744
  export interface GetCsvDataSchemaParams {
5604
5745
  /** Id of the csv file in the temporary static storage. */
5605
5746
  fileId?: string;
5606
- /** If set true - second row will be read as alias row. */
5607
- containsAliasRow?: boolean;
5608
- /** Coord source fields. */
5609
- coordSourceFields?: string[];
5610
5747
  }
5611
5748
  export interface GetKmlDataSchemaParams {
5612
5749
  /** Id of the kml file in the temporary static storage. */
@@ -5718,6 +5855,8 @@ export declare type UpdateCompositeServicePayload = CompositeServiceConfiguratio
5718
5855
  export interface GetFeaturesParams {
5719
5856
  /** Sets features filtering query. */
5720
5857
  query?: string;
5858
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
5859
+ dataFilterId?: string;
5721
5860
  /**
5722
5861
  * Features count have to skip.
5723
5862
  * @format int32
@@ -5868,6 +6007,8 @@ export interface GetLayerImageParams {
5868
6007
  opacity?: number;
5869
6008
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
5870
6009
  styleId?: string;
6010
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
6011
+ dataFilterId?: string;
5871
6012
  /** Full name of the layer. */
5872
6013
  name: string;
5873
6014
  }
@@ -5957,6 +6098,8 @@ export interface GetByGeometryGetParams {
5957
6098
  query?: string;
5958
6099
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
5959
6100
  styleId?: string;
6101
+ /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
6102
+ dataFilterId?: string;
5960
6103
  /** The name of the layer. */
5961
6104
  name: string;
5962
6105
  }
@@ -5976,6 +6119,8 @@ export interface ClassifyParams {
5976
6119
  /**
5977
6120
  * Classification method.
5978
6121
  *
6122
+ * none
6123
+ *
5979
6124
  * naturalBreaks
5980
6125
  *
5981
6126
  * equalInterval
@@ -6025,6 +6170,18 @@ export interface AggregateAttributeParams {
6025
6170
  *
6026
6171
  * Count
6027
6172
  *
6173
+ * First
6174
+ *
6175
+ * Last
6176
+ *
6177
+ * Median
6178
+ *
6179
+ * Mod
6180
+ *
6181
+ * StdDeviation
6182
+ *
6183
+ * SumOfProduct
6184
+ *
6028
6185
  * OnlyValue
6029
6186
  *
6030
6187
  * WeightedAvg
@@ -6077,6 +6234,8 @@ export interface SelectFeaturesParams {
6077
6234
  query?: string[];
6078
6235
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
6079
6236
  styles?: string[];
6237
+ /** Id of the data filter to override data filter of the layer. If not set, the layer original data filter is used. */
6238
+ filters?: string[];
6080
6239
  /** If set to true, the response will include the specific symbol for each feature. */
6081
6240
  includeSymbols?: boolean;
6082
6241
  }
@@ -6182,14 +6341,14 @@ export interface GetProjectsListParams {
6182
6341
  /** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
6183
6342
  orderByFields?: string[];
6184
6343
  /** All available permissions list. */
6185
- acl?: RolePermissionDc[];
6344
+ acl?: string;
6186
6345
  }
6187
6346
  /**
6188
6347
  * Project extended configuration data contract.
6189
6348
  */
6190
6349
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6191
6350
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6192
- export interface DeleteResourcesParams8 {
6351
+ export interface DeleteResourcesParams7 {
6193
6352
  /** Resource names. */
6194
6353
  names?: string[];
6195
6354
  }
@@ -6371,41 +6530,19 @@ export interface DeleteFileParams {
6371
6530
  /** File id to delete. */
6372
6531
  fileid?: string;
6373
6532
  }
6374
- export interface StatisticParams {
6533
+ export interface StatisticsDbParams {
6375
6534
  /** Layer name. */
6376
- layerName?: string;
6535
+ name?: string;
6377
6536
  /** Attribute name. */
6378
6537
  attribute?: string;
6379
6538
  /** Condition. */
6380
6539
  condition?: string;
6381
- /**
6382
- * Type of required statistic function.
6383
- *
6384
- * min
6385
- *
6386
- * max
6387
- *
6388
- * avg
6389
- *
6390
- * med
6391
- *
6392
- * mod
6393
- *
6394
- * sum
6395
- *
6396
- * sumOfProduct
6397
- *
6398
- * count
6399
- *
6400
- * firstLast
6401
- *
6402
- * standardDeviation
6403
- */
6404
- type?: StatisticsType;
6540
+ /** Type of required statistic function. */
6541
+ types?: AggregationFunction[];
6405
6542
  }
6406
- export interface ClassifyParams6 {
6543
+ export interface ClassifyParams3 {
6407
6544
  /** Layer name. */
6408
- layerName?: string;
6545
+ name?: string;
6409
6546
  /** Attribute name. */
6410
6547
  attribute?: string;
6411
6548
  /** Layer condition. */
@@ -6423,6 +6560,8 @@ export interface ClassifyParams6 {
6423
6560
  /**
6424
6561
  * Classification method.
6425
6562
  *
6563
+ * none
6564
+ *
6426
6565
  * naturalBreaks
6427
6566
  *
6428
6567
  * equalInterval
@@ -6430,6 +6569,14 @@ export interface ClassifyParams6 {
6430
6569
  * quantile
6431
6570
  */
6432
6571
  type?: ClassificationType;
6572
+ /**
6573
+ * Type of given attribute.
6574
+ *
6575
+ * decimal
6576
+ *
6577
+ * dateTime
6578
+ */
6579
+ attributeType?: ClassifyAttributeType;
6433
6580
  }
6434
6581
  /**
6435
6582
  * Feature layer rendering style.
@@ -6439,6 +6586,14 @@ export declare type UpdateStylePayload = StyleDc;
6439
6586
  * Feature layer rendering style.
6440
6587
  */
6441
6588
  export declare type CreateStylePayload = StyleDc;
6589
+ export interface AddFontPayload {
6590
+ /** @format binary */
6591
+ formFile?: File;
6592
+ }
6593
+ export interface RemoveFontParams {
6594
+ /** Font name. */
6595
+ fontName?: string;
6596
+ }
6442
6597
  export interface GetTableListParams {
6443
6598
  /** Table name filter (support % and _ wildcards). */
6444
6599
  filter?: string;
@@ -6471,7 +6626,7 @@ export interface GetTableListParams {
6471
6626
  /** Filters layers by geometry types. */
6472
6627
  geometryFilter?: string[];
6473
6628
  /** All available permissions list. */
6474
- acl?: RolePermissionDc[];
6629
+ acl?: string;
6475
6630
  }
6476
6631
  /**
6477
6632
  * Table description with columns and access control list.
@@ -6583,7 +6738,7 @@ export interface GetCapabilitiesParams {
6583
6738
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6584
6739
  AcceptFormats?: string[];
6585
6740
  }
6586
- export interface GetCapabilitiesParams7 {
6741
+ export interface GetCapabilitiesParams9 {
6587
6742
  /** Output format of service metadata. */
6588
6743
  Format?: string;
6589
6744
  /** Must be WMS. */