@evergis/api 3.0.70 → 3.0.73

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
@@ -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 {
@@ -463,6 +517,17 @@ export interface BatchResourcesAclDc {
463
517
  /** A set of projects acl. */
464
518
  projects?: ResourceAclDc[];
465
519
  }
520
+ /**
521
+ * Provides bulk request to manage catalog resources.
522
+ */
523
+ export interface BatchResourcesCatalogDc {
524
+ /** List of layers. */
525
+ layers?: CatalogResourceDc[];
526
+ /** List of tables. */
527
+ tables?: CatalogResourceDc[];
528
+ /** List of projects. */
529
+ projects?: CatalogResourceDc[];
530
+ }
466
531
  /**
467
532
  * The class describes data contract of bookmark at the map.
468
533
  */
@@ -525,6 +590,15 @@ export interface CalculatedParameterDc {
525
590
  /** @format double */
526
591
  defaultValue?: number;
527
592
  }
593
+ /**
594
+ * Provides catalog resources with users.
595
+ */
596
+ export interface CatalogResourceDc {
597
+ /** Name of the resource to add. */
598
+ objectName: string;
599
+ /** Users list. */
600
+ users: string[];
601
+ }
528
602
  /**
529
603
  * The symbol that draws a feature as a circle.
530
604
  */
@@ -560,27 +634,53 @@ export interface CirclePointSymbolDc {
560
634
  }
561
635
  /**
562
636
  * Describes classification methods.
563
-
637
+
638
+ none
639
+
564
640
  naturalBreaks
565
-
641
+
566
642
  equalInterval
567
-
643
+
568
644
  quantile
569
645
  */
570
646
  export declare enum ClassificationType {
647
+ None = "none",
571
648
  NaturalBreaks = "naturalBreaks",
572
649
  EqualInterval = "equalInterval",
573
650
  Quantile = "quantile"
574
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
+ }
575
663
  /**
576
664
  * Classification result.
577
665
  */
578
666
  export interface ClassifyDc {
579
667
  /** Classification result. */
580
- classifyResult: any;
668
+ classifyResult: ClassifyResultObject[];
581
669
  /** Type. */
582
670
  type: string;
583
671
  }
672
+ /**
673
+ * Classification result.
674
+ */
675
+ export interface ClassifyResultObject {
676
+ /** Value. */
677
+ value?: any;
678
+ /**
679
+ * Count.
680
+ * @format int64
681
+ */
682
+ count?: number;
683
+ }
584
684
  /**
585
685
  * Description of a table column.
586
686
  */
@@ -711,6 +811,8 @@ export interface CompositeServiceConfigurationDc {
711
811
  *
712
812
  */
713
813
  owner?: string;
814
+ /** Copyright text. */
815
+ copyrightText?: string;
714
816
  }
715
817
  /**
716
818
  * Information about composite service.
@@ -1160,15 +1262,15 @@ export interface ErrorDetailsDc {
1160
1262
  }
1161
1263
  /**
1162
1264
  * Type of the error.
1163
-
1265
+
1164
1266
  ResourceLimitExceeded
1165
-
1267
+
1166
1268
  ResourceNotFound
1167
-
1269
+
1168
1270
  InternalError
1169
-
1271
+
1170
1272
  BadRequest
1171
-
1273
+
1172
1274
  DuplicateContent
1173
1275
  */
1174
1276
  export declare enum ErrorDetailsType {
@@ -1504,6 +1606,8 @@ export interface FeatureLayerServiceInfoDc {
1504
1606
  objectCount?: number;
1505
1607
  /** Provides data source type. */
1506
1608
  dataSourceType?: string;
1609
+ /** Copyright text. */
1610
+ copyrightText?: string;
1507
1611
  /** The type of the resource. */
1508
1612
  type: string;
1509
1613
  /** The category of the service. */
@@ -1595,9 +1699,9 @@ export interface FeatureTaskParametersDc {
1595
1699
  }
1596
1700
  /**
1597
1701
  * Type of the feature.
1598
-
1702
+
1599
1703
  Unknown
1600
-
1704
+
1601
1705
  GeometricFeature
1602
1706
  */
1603
1707
  export declare enum FeatureType {
@@ -1672,21 +1776,15 @@ export declare enum FontStyle {
1672
1776
  export declare enum FontWeight {
1673
1777
  Thin = "Thin",
1674
1778
  ExtraLight = "ExtraLight",
1675
- UltraLight = "UltraLight",
1676
1779
  Light = "Light",
1677
1780
  SemiLight = "SemiLight",
1678
1781
  Normal = "Normal",
1679
- Regular = "Regular",
1680
1782
  Medium = "Medium",
1681
1783
  DemiBold = "DemiBold",
1682
- SemiBold = "SemiBold",
1683
1784
  Bold = "Bold",
1684
1785
  ExtraBold = "ExtraBold",
1685
- UltraBold = "UltraBold",
1686
1786
  Black = "Black",
1687
- Heavy = "Heavy",
1688
- ExtraBlack = "ExtraBlack",
1689
- UltraBlack = "UltraBlack"
1787
+ ExtraBlack = "ExtraBlack"
1690
1788
  }
1691
1789
  /**
1692
1790
  * Information about function argument.
@@ -1758,17 +1856,17 @@ export interface GeometryDc {
1758
1856
  }
1759
1857
  /**
1760
1858
  *
1761
-
1859
+
1762
1860
  unknown
1763
-
1861
+
1764
1862
  point
1765
-
1863
+
1766
1864
  polyline
1767
-
1865
+
1768
1866
  polygon
1769
-
1867
+
1770
1868
  envelope
1771
-
1869
+
1772
1870
  multipoint
1773
1871
  */
1774
1872
  export declare enum GeometryType {
@@ -1795,13 +1893,13 @@ export interface GridElementDc {
1795
1893
  }
1796
1894
  /**
1797
1895
  * Resource group.
1798
-
1896
+
1799
1897
  my
1800
-
1898
+
1801
1899
  role
1802
-
1900
+
1803
1901
  public
1804
-
1902
+
1805
1903
  all
1806
1904
  */
1807
1905
  export declare enum Group {
@@ -2518,6 +2616,8 @@ export interface LocalTileServiceConfigurationDc {
2518
2616
  *
2519
2617
  */
2520
2618
  owner?: string;
2619
+ /** Copyright text. */
2620
+ copyrightText?: string;
2521
2621
  }
2522
2622
  /**
2523
2623
  * Tile LOD structure.
@@ -2650,15 +2750,15 @@ export interface NamespaceInfoDc {
2650
2750
  export declare type ObjectId = object;
2651
2751
  /**
2652
2752
  *
2653
-
2753
+
2654
2754
  Unknown
2655
-
2755
+
2656
2756
  union
2657
-
2757
+
2658
2758
  intersection
2659
-
2759
+
2660
2760
  subtraction
2661
-
2761
+
2662
2762
  symDifference
2663
2763
  */
2664
2764
  export declare enum Operation {
@@ -2772,19 +2872,19 @@ export interface PatternBrushDc {
2772
2872
  }
2773
2873
  /**
2774
2874
  * User permissions for server security objects (services, projects etc.)
2775
-
2875
+
2776
2876
  none
2777
-
2877
+
2778
2878
  configure
2779
-
2879
+
2780
2880
  write
2781
-
2881
+
2782
2882
  read
2783
-
2883
+
2784
2884
  read,configure
2785
-
2885
+
2786
2886
  read,write
2787
-
2887
+
2788
2888
  read,write,configure
2789
2889
  */
2790
2890
  export declare enum Permissions {
@@ -2895,15 +2995,15 @@ export interface PolicyDc {
2895
2995
  }
2896
2996
  /**
2897
2997
  * Type of the authorization policy.
2898
-
2998
+
2899
2999
  Unknown
2900
-
3000
+
2901
3001
  CreateTable
2902
-
3002
+
2903
3003
  CreateLayer
2904
-
3004
+
2905
3005
  CreateProject
2906
-
3006
+
2907
3007
  MaxFeaturesInOneTable
2908
3008
  */
2909
3009
  export declare enum PolicyType {
@@ -2941,6 +3041,50 @@ export interface PolyDc {
2941
3041
  */
2942
3042
  sr?: number;
2943
3043
  }
3044
+ /**
3045
+ * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
3046
+ */
3047
+ export interface PolygonCenterLabelSymbolDc {
3048
+ /** Is sets true label center fixed and not accept envelope. */
3049
+ fixCenter?: boolean;
3050
+ type?: string;
3051
+ /** Label text format. */
3052
+ fieldFormat?: string;
3053
+ /** Label text font family. */
3054
+ fontFamily?: string;
3055
+ /** Sets whether font should be styled. */
3056
+ fontStyle?: FontStyle;
3057
+ /** Specifies the weight (or boldness) of the font. */
3058
+ fontWeight?: FontWeight;
3059
+ /**
3060
+ * Number parameter of a symbol. The parameter can be represented as a simple number, or
3061
+ * as an object with a "type" parameter specified.
3062
+ */
3063
+ fontColor?: ParameterDcColor;
3064
+ /**
3065
+ * Number parameter of a symbol. The parameter can be represented as a simple number, or
3066
+ * as an object with a "type" parameter specified.
3067
+ */
3068
+ fontSize?: ParameterDcDouble;
3069
+ /** Sets the horizontal alignment of text. */
3070
+ horizontalAlignment?: TextAlignment;
3071
+ /** Sets the vertical alignment of text. */
3072
+ verticalAlignment?: TextVerticalAlignment;
3073
+ /**
3074
+ * Number parameter of a symbol. The parameter can be represented as a simple number, or
3075
+ * as an object with a "type" parameter specified.
3076
+ */
3077
+ haloColor?: ParameterDcColor;
3078
+ /**
3079
+ * Width of label stroke (halo).
3080
+ * @format float
3081
+ */
3082
+ haloWidth?: number;
3083
+ /** Offset of the label center from the geographic point. */
3084
+ offset?: ParameterDcDouble[];
3085
+ /** Specifies text background. */
3086
+ textBackground?: TextBackgroundDc;
3087
+ }
2944
3088
  /**
2945
3089
  * Polygon geometry object definition.
2946
3090
  */
@@ -3161,6 +3305,8 @@ export interface PostgresLayerServiceConfigurationDc {
3161
3305
  *
3162
3306
  */
3163
3307
  owner?: string;
3308
+ /** Copyright text. */
3309
+ copyrightText?: string;
3164
3310
  }
3165
3311
  /**
3166
3312
  * Configuration of a postgres tile catalog service.
@@ -3204,6 +3350,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
3204
3350
  *
3205
3351
  */
3206
3352
  owner?: string;
3353
+ /** Copyright text. */
3354
+ copyrightText?: string;
3207
3355
  }
3208
3356
  /**
3209
3357
  * Print operation print map and map elements to png files.
@@ -3363,8 +3511,6 @@ export interface ProxyServiceConfigurationDc {
3363
3511
  sourceUrl: string;
3364
3512
  /** Names of layers to include in proxy layer (can be numbers). */
3365
3513
  layers: string[];
3366
- /** Copyright text. */
3367
- copyrightText?: string;
3368
3514
  /** Name of the service. */
3369
3515
  name: string;
3370
3516
  /** Human friendly name of the service. */
@@ -3382,6 +3528,8 @@ export interface ProxyServiceConfigurationDc {
3382
3528
  *
3383
3529
  */
3384
3530
  owner?: string;
3531
+ /** Copyright text. */
3532
+ copyrightText?: string;
3385
3533
  }
3386
3534
  /**
3387
3535
  * Service info for a Proxy service.
@@ -3393,10 +3541,10 @@ export interface ProxyServiceInfoDc {
3393
3541
  sourceUrl: string;
3394
3542
  /** Names of layers to include in proxy layer (can be numbers). */
3395
3543
  layers: string[];
3396
- /** Copyright text. */
3397
- copyrightText?: string;
3398
3544
  /** Layer legend. */
3399
3545
  legend?: ProxyLayerLegendDc;
3546
+ /** Copyright text. */
3547
+ copyrightText?: string;
3400
3548
  /** The type of the resource. */
3401
3549
  type: string;
3402
3550
  /** The category of the service. */
@@ -3510,8 +3658,6 @@ export interface RemoteTileServiceConfigurationDc {
3510
3658
  * Will be inserted into the UrlFormat {0}.
3511
3659
  */
3512
3660
  subDomains?: string[];
3513
- /** Copyright text. */
3514
- copyrightText?: string;
3515
3661
  /** Allows the client to receive tiles directly from the source server. */
3516
3662
  allowDirectAccess?: boolean;
3517
3663
  /** @format int32 */
@@ -3533,6 +3679,8 @@ export interface RemoteTileServiceConfigurationDc {
3533
3679
  *
3534
3680
  */
3535
3681
  owner?: string;
3682
+ /** Copyright text. */
3683
+ copyrightText?: string;
3536
3684
  }
3537
3685
  export interface RemoteTileServiceInfo {
3538
3686
  /** Description of a service in the Spatial Processor. */
@@ -3558,10 +3706,10 @@ export interface RemoteTileServiceInfoDc {
3558
3706
  sourceUrlMask?: string;
3559
3707
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3560
3708
  sourceServers?: string[];
3561
- /** Copyright text. */
3562
- copyrightText?: string;
3563
3709
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
3564
3710
  tileInfo: TileInfoDc;
3711
+ /** Copyright text. */
3712
+ copyrightText?: string;
3565
3713
  /** The type of the resource. */
3566
3714
  type: string;
3567
3715
  /** The category of the service. */
@@ -3678,17 +3826,17 @@ export interface ResourceInfoDc {
3678
3826
  }
3679
3827
  /**
3680
3828
  * The `ResourceType` represents resource manager supports types.
3681
-
3829
+
3682
3830
  Unknown
3683
-
3831
+
3684
3832
  table
3685
-
3833
+
3686
3834
  layer
3687
-
3835
+
3688
3836
  project
3689
-
3837
+
3690
3838
  file
3691
-
3839
+
3692
3840
  feature
3693
3841
  */
3694
3842
  export declare enum ResourceType {
@@ -3829,21 +3977,21 @@ export interface ServerInfoDc {
3829
3977
  }
3830
3978
  /**
3831
3979
  * Status of the server task.
3832
-
3980
+
3833
3981
  None
3834
-
3982
+
3835
3983
  Scheduled
3836
-
3984
+
3837
3985
  Planning
3838
-
3986
+
3839
3987
  Executing
3840
-
3988
+
3841
3989
  Completed
3842
-
3990
+
3843
3991
  Failed
3844
-
3992
+
3845
3993
  Canceled
3846
-
3994
+
3847
3995
  Timeout
3848
3996
  */
3849
3997
  export declare enum ServerTaskStatus {
@@ -3877,6 +4025,8 @@ export interface ServiceConfigurationBaseDc {
3877
4025
  *
3878
4026
  */
3879
4027
  owner?: string;
4028
+ /** Copyright text. */
4029
+ copyrightText?: string;
3880
4030
  }
3881
4031
  /**
3882
4032
  * Description of a service in the Spatial Processor.
@@ -4231,6 +4381,8 @@ export interface SharedProjectConfigurationDc {
4231
4381
  *
4232
4382
  */
4233
4383
  owner?: string;
4384
+ /** Copyright text. */
4385
+ copyrightText?: string;
4234
4386
  }
4235
4387
  /**
4236
4388
  * The `SharedProjectInfoDc` describes shared project info data contract.
@@ -4420,39 +4572,58 @@ export interface StaticTaskDataStorageDc {
4420
4572
  type?: string;
4421
4573
  }
4422
4574
  /**
4423
- * Describes statistics methods.
4424
-
4425
- min
4426
-
4427
- max
4428
-
4429
- avg
4430
-
4431
- med
4432
-
4433
- mod
4434
-
4435
- sum
4436
-
4437
- sumOfProduct
4438
-
4439
- count
4440
-
4441
- firstLast
4442
-
4443
- standardDeviation
4444
- */
4445
- export declare enum StatisticsType {
4446
- Min = "min",
4447
- Max = "max",
4448
- Avg = "avg",
4449
- Med = "med",
4450
- Mod = "mod",
4451
- Sum = "sum",
4452
- SumOfProduct = "sumOfProduct",
4453
- Count = "count",
4454
- FirstLast = "firstLast",
4455
- StandardDeviation = "standardDeviation"
4575
+ * Statistics result.
4576
+ */
4577
+ export interface StatisticsDc {
4578
+ /** Statistics result. */
4579
+ statisticsResult: StatisticsResultObject[];
4580
+ }
4581
+ /**
4582
+ * Statistics result.
4583
+ */
4584
+ export interface StatisticsResultObject {
4585
+ /**
4586
+ *
4587
+ *
4588
+ * None
4589
+ *
4590
+ * Array
4591
+ *
4592
+ * Min
4593
+ *
4594
+ * Max
4595
+ *
4596
+ * Avg
4597
+ *
4598
+ * Sum
4599
+ *
4600
+ * Extent
4601
+ *
4602
+ * Count
4603
+ *
4604
+ * First
4605
+ *
4606
+ * Last
4607
+ *
4608
+ * Median
4609
+ *
4610
+ * Mod
4611
+ *
4612
+ * StdDeviation
4613
+ *
4614
+ * SumOfProduct
4615
+ *
4616
+ * OnlyValue
4617
+ *
4618
+ * WeightedAvg
4619
+ *
4620
+ * DensityIndicators
4621
+ *
4622
+ * DividedSum
4623
+ */
4624
+ type?: AggregationFunction;
4625
+ /** Value. */
4626
+ value?: any;
4456
4627
  }
4457
4628
  /**
4458
4629
  * The result of a server task step execution.
@@ -4482,11 +4653,11 @@ export interface StepResultDc {
4482
4653
  }
4483
4654
  /**
4484
4655
  * The `StringSubType` provides information about string attribute subtype.
4485
-
4656
+
4486
4657
  None
4487
-
4658
+
4488
4659
  Image
4489
-
4660
+
4490
4661
  PkkCode
4491
4662
  */
4492
4663
  export declare enum StringSubType {
@@ -4573,6 +4744,8 @@ export interface StyledLayerServiceConfigurationDc {
4573
4744
  *
4574
4745
  */
4575
4746
  owner?: string;
4747
+ /** Copyright text. */
4748
+ copyrightText?: string;
4576
4749
  }
4577
4750
  /**
4578
4751
  * Feature symbol.
@@ -4988,6 +5161,8 @@ export interface TileInfoDc {
4988
5161
  export interface TileServiceInfoDc {
4989
5162
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
4990
5163
  tileInfo: TileInfoDc;
5164
+ /** Copyright text. */
5165
+ copyrightText?: string;
4991
5166
  /** The type of the resource. */
4992
5167
  type: string;
4993
5168
  /** The category of the service. */
@@ -5900,6 +6075,8 @@ export interface ClassifyParams {
5900
6075
  /**
5901
6076
  * Classification method.
5902
6077
  *
6078
+ * none
6079
+ *
5903
6080
  * naturalBreaks
5904
6081
  *
5905
6082
  * equalInterval
@@ -5949,6 +6126,18 @@ export interface AggregateAttributeParams {
5949
6126
  *
5950
6127
  * Count
5951
6128
  *
6129
+ * First
6130
+ *
6131
+ * Last
6132
+ *
6133
+ * Median
6134
+ *
6135
+ * Mod
6136
+ *
6137
+ * StdDeviation
6138
+ *
6139
+ * SumOfProduct
6140
+ *
5952
6141
  * OnlyValue
5953
6142
  *
5954
6143
  * WeightedAvg
@@ -6106,14 +6295,14 @@ export interface GetProjectsListParams {
6106
6295
  /** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
6107
6296
  orderByFields?: string[];
6108
6297
  /** All available permissions list. */
6109
- acl?: RolePermissionDc[];
6298
+ acl?: string;
6110
6299
  }
6111
6300
  /**
6112
6301
  * Project extended configuration data contract.
6113
6302
  */
6114
6303
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6115
6304
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6116
- export interface DeleteResourcesParams8 {
6305
+ export interface DeleteResourcesParams6 {
6117
6306
  /** Resource names. */
6118
6307
  names?: string[];
6119
6308
  }
@@ -6295,39 +6484,17 @@ export interface DeleteFileParams {
6295
6484
  /** File id to delete. */
6296
6485
  fileid?: string;
6297
6486
  }
6298
- export interface StatisticParams {
6487
+ export interface StatisticsDbParams {
6299
6488
  /** Layer name. */
6300
6489
  layerName?: string;
6301
6490
  /** Attribute name. */
6302
6491
  attribute?: string;
6303
6492
  /** Condition. */
6304
6493
  condition?: string;
6305
- /**
6306
- * Type of required statistic function.
6307
- *
6308
- * min
6309
- *
6310
- * max
6311
- *
6312
- * avg
6313
- *
6314
- * med
6315
- *
6316
- * mod
6317
- *
6318
- * sum
6319
- *
6320
- * sumOfProduct
6321
- *
6322
- * count
6323
- *
6324
- * firstLast
6325
- *
6326
- * standardDeviation
6327
- */
6328
- type?: StatisticsType;
6494
+ /** Type of required statistic function. */
6495
+ types?: AggregationFunction[];
6329
6496
  }
6330
- export interface ClassifyParams6 {
6497
+ export interface ClassifyParams7 {
6331
6498
  /** Layer name. */
6332
6499
  layerName?: string;
6333
6500
  /** Attribute name. */
@@ -6347,6 +6514,8 @@ export interface ClassifyParams6 {
6347
6514
  /**
6348
6515
  * Classification method.
6349
6516
  *
6517
+ * none
6518
+ *
6350
6519
  * naturalBreaks
6351
6520
  *
6352
6521
  * equalInterval
@@ -6354,6 +6523,14 @@ export interface ClassifyParams6 {
6354
6523
  * quantile
6355
6524
  */
6356
6525
  type?: ClassificationType;
6526
+ /**
6527
+ * Type of given attribute.
6528
+ *
6529
+ * decimal
6530
+ *
6531
+ * dateTime
6532
+ */
6533
+ attributeType?: ClassifyAttributeType;
6357
6534
  }
6358
6535
  /**
6359
6536
  * Feature layer rendering style.
@@ -6363,6 +6540,14 @@ export declare type UpdateStylePayload = StyleDc;
6363
6540
  * Feature layer rendering style.
6364
6541
  */
6365
6542
  export declare type CreateStylePayload = StyleDc;
6543
+ export interface AddFontPayload {
6544
+ /** @format binary */
6545
+ formFile?: File;
6546
+ }
6547
+ export interface RemoveFontParams {
6548
+ /** Font name. */
6549
+ fontName?: string;
6550
+ }
6366
6551
  export interface GetTableListParams {
6367
6552
  /** Table name filter (support % and _ wildcards). */
6368
6553
  filter?: string;
@@ -6395,7 +6580,7 @@ export interface GetTableListParams {
6395
6580
  /** Filters layers by geometry types. */
6396
6581
  geometryFilter?: string[];
6397
6582
  /** All available permissions list. */
6398
- acl?: RolePermissionDc[];
6583
+ acl?: string;
6399
6584
  }
6400
6585
  /**
6401
6586
  * Table description with columns and access control list.
@@ -6507,7 +6692,7 @@ export interface GetCapabilitiesParams {
6507
6692
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6508
6693
  AcceptFormats?: string[];
6509
6694
  }
6510
- export interface GetCapabilitiesParams9 {
6695
+ export interface GetCapabilitiesParams8 {
6511
6696
  /** Output format of service metadata. */
6512
6697
  Format?: string;
6513
6698
  /** Must be WMS. */