@evergis/api 3.0.72 → 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 {
@@ -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 {
@@ -1704,21 +1776,15 @@ export declare enum FontStyle {
1704
1776
  export declare enum FontWeight {
1705
1777
  Thin = "Thin",
1706
1778
  ExtraLight = "ExtraLight",
1707
- UltraLight = "UltraLight",
1708
1779
  Light = "Light",
1709
1780
  SemiLight = "SemiLight",
1710
1781
  Normal = "Normal",
1711
- Regular = "Regular",
1712
1782
  Medium = "Medium",
1713
1783
  DemiBold = "DemiBold",
1714
- SemiBold = "SemiBold",
1715
1784
  Bold = "Bold",
1716
1785
  ExtraBold = "ExtraBold",
1717
- UltraBold = "UltraBold",
1718
1786
  Black = "Black",
1719
- Heavy = "Heavy",
1720
- ExtraBlack = "ExtraBlack",
1721
- UltraBlack = "UltraBlack"
1787
+ ExtraBlack = "ExtraBlack"
1722
1788
  }
1723
1789
  /**
1724
1790
  * Information about function argument.
@@ -1790,17 +1856,17 @@ export interface GeometryDc {
1790
1856
  }
1791
1857
  /**
1792
1858
  *
1793
-
1859
+
1794
1860
  unknown
1795
-
1861
+
1796
1862
  point
1797
-
1863
+
1798
1864
  polyline
1799
-
1865
+
1800
1866
  polygon
1801
-
1867
+
1802
1868
  envelope
1803
-
1869
+
1804
1870
  multipoint
1805
1871
  */
1806
1872
  export declare enum GeometryType {
@@ -1827,13 +1893,13 @@ export interface GridElementDc {
1827
1893
  }
1828
1894
  /**
1829
1895
  * Resource group.
1830
-
1896
+
1831
1897
  my
1832
-
1898
+
1833
1899
  role
1834
-
1900
+
1835
1901
  public
1836
-
1902
+
1837
1903
  all
1838
1904
  */
1839
1905
  export declare enum Group {
@@ -2550,6 +2616,8 @@ export interface LocalTileServiceConfigurationDc {
2550
2616
  *
2551
2617
  */
2552
2618
  owner?: string;
2619
+ /** Copyright text. */
2620
+ copyrightText?: string;
2553
2621
  }
2554
2622
  /**
2555
2623
  * Tile LOD structure.
@@ -2682,15 +2750,15 @@ export interface NamespaceInfoDc {
2682
2750
  export declare type ObjectId = object;
2683
2751
  /**
2684
2752
  *
2685
-
2753
+
2686
2754
  Unknown
2687
-
2755
+
2688
2756
  union
2689
-
2757
+
2690
2758
  intersection
2691
-
2759
+
2692
2760
  subtraction
2693
-
2761
+
2694
2762
  symDifference
2695
2763
  */
2696
2764
  export declare enum Operation {
@@ -2804,19 +2872,19 @@ export interface PatternBrushDc {
2804
2872
  }
2805
2873
  /**
2806
2874
  * User permissions for server security objects (services, projects etc.)
2807
-
2875
+
2808
2876
  none
2809
-
2877
+
2810
2878
  configure
2811
-
2879
+
2812
2880
  write
2813
-
2881
+
2814
2882
  read
2815
-
2883
+
2816
2884
  read,configure
2817
-
2885
+
2818
2886
  read,write
2819
-
2887
+
2820
2888
  read,write,configure
2821
2889
  */
2822
2890
  export declare enum Permissions {
@@ -2927,15 +2995,15 @@ export interface PolicyDc {
2927
2995
  }
2928
2996
  /**
2929
2997
  * Type of the authorization policy.
2930
-
2998
+
2931
2999
  Unknown
2932
-
3000
+
2933
3001
  CreateTable
2934
-
3002
+
2935
3003
  CreateLayer
2936
-
3004
+
2937
3005
  CreateProject
2938
-
3006
+
2939
3007
  MaxFeaturesInOneTable
2940
3008
  */
2941
3009
  export declare enum PolicyType {
@@ -3237,6 +3305,8 @@ export interface PostgresLayerServiceConfigurationDc {
3237
3305
  *
3238
3306
  */
3239
3307
  owner?: string;
3308
+ /** Copyright text. */
3309
+ copyrightText?: string;
3240
3310
  }
3241
3311
  /**
3242
3312
  * Configuration of a postgres tile catalog service.
@@ -3280,6 +3350,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
3280
3350
  *
3281
3351
  */
3282
3352
  owner?: string;
3353
+ /** Copyright text. */
3354
+ copyrightText?: string;
3283
3355
  }
3284
3356
  /**
3285
3357
  * Print operation print map and map elements to png files.
@@ -3439,8 +3511,6 @@ export interface ProxyServiceConfigurationDc {
3439
3511
  sourceUrl: string;
3440
3512
  /** Names of layers to include in proxy layer (can be numbers). */
3441
3513
  layers: string[];
3442
- /** Copyright text. */
3443
- copyrightText?: string;
3444
3514
  /** Name of the service. */
3445
3515
  name: string;
3446
3516
  /** Human friendly name of the service. */
@@ -3458,6 +3528,8 @@ export interface ProxyServiceConfigurationDc {
3458
3528
  *
3459
3529
  */
3460
3530
  owner?: string;
3531
+ /** Copyright text. */
3532
+ copyrightText?: string;
3461
3533
  }
3462
3534
  /**
3463
3535
  * Service info for a Proxy service.
@@ -3469,10 +3541,10 @@ export interface ProxyServiceInfoDc {
3469
3541
  sourceUrl: string;
3470
3542
  /** Names of layers to include in proxy layer (can be numbers). */
3471
3543
  layers: string[];
3472
- /** Copyright text. */
3473
- copyrightText?: string;
3474
3544
  /** Layer legend. */
3475
3545
  legend?: ProxyLayerLegendDc;
3546
+ /** Copyright text. */
3547
+ copyrightText?: string;
3476
3548
  /** The type of the resource. */
3477
3549
  type: string;
3478
3550
  /** The category of the service. */
@@ -3586,8 +3658,6 @@ export interface RemoteTileServiceConfigurationDc {
3586
3658
  * Will be inserted into the UrlFormat {0}.
3587
3659
  */
3588
3660
  subDomains?: string[];
3589
- /** Copyright text. */
3590
- copyrightText?: string;
3591
3661
  /** Allows the client to receive tiles directly from the source server. */
3592
3662
  allowDirectAccess?: boolean;
3593
3663
  /** @format int32 */
@@ -3609,6 +3679,8 @@ export interface RemoteTileServiceConfigurationDc {
3609
3679
  *
3610
3680
  */
3611
3681
  owner?: string;
3682
+ /** Copyright text. */
3683
+ copyrightText?: string;
3612
3684
  }
3613
3685
  export interface RemoteTileServiceInfo {
3614
3686
  /** Description of a service in the Spatial Processor. */
@@ -3634,10 +3706,10 @@ export interface RemoteTileServiceInfoDc {
3634
3706
  sourceUrlMask?: string;
3635
3707
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3636
3708
  sourceServers?: string[];
3637
- /** Copyright text. */
3638
- copyrightText?: string;
3639
3709
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
3640
3710
  tileInfo: TileInfoDc;
3711
+ /** Copyright text. */
3712
+ copyrightText?: string;
3641
3713
  /** The type of the resource. */
3642
3714
  type: string;
3643
3715
  /** The category of the service. */
@@ -3754,17 +3826,17 @@ export interface ResourceInfoDc {
3754
3826
  }
3755
3827
  /**
3756
3828
  * The `ResourceType` represents resource manager supports types.
3757
-
3829
+
3758
3830
  Unknown
3759
-
3831
+
3760
3832
  table
3761
-
3833
+
3762
3834
  layer
3763
-
3835
+
3764
3836
  project
3765
-
3837
+
3766
3838
  file
3767
-
3839
+
3768
3840
  feature
3769
3841
  */
3770
3842
  export declare enum ResourceType {
@@ -3905,21 +3977,21 @@ export interface ServerInfoDc {
3905
3977
  }
3906
3978
  /**
3907
3979
  * Status of the server task.
3908
-
3980
+
3909
3981
  None
3910
-
3982
+
3911
3983
  Scheduled
3912
-
3984
+
3913
3985
  Planning
3914
-
3986
+
3915
3987
  Executing
3916
-
3988
+
3917
3989
  Completed
3918
-
3990
+
3919
3991
  Failed
3920
-
3992
+
3921
3993
  Canceled
3922
-
3994
+
3923
3995
  Timeout
3924
3996
  */
3925
3997
  export declare enum ServerTaskStatus {
@@ -3953,6 +4025,8 @@ export interface ServiceConfigurationBaseDc {
3953
4025
  *
3954
4026
  */
3955
4027
  owner?: string;
4028
+ /** Copyright text. */
4029
+ copyrightText?: string;
3956
4030
  }
3957
4031
  /**
3958
4032
  * Description of a service in the Spatial Processor.
@@ -4307,6 +4381,8 @@ export interface SharedProjectConfigurationDc {
4307
4381
  *
4308
4382
  */
4309
4383
  owner?: string;
4384
+ /** Copyright text. */
4385
+ copyrightText?: string;
4310
4386
  }
4311
4387
  /**
4312
4388
  * The `SharedProjectInfoDc` describes shared project info data contract.
@@ -4496,39 +4572,58 @@ export interface StaticTaskDataStorageDc {
4496
4572
  type?: string;
4497
4573
  }
4498
4574
  /**
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"
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;
4532
4627
  }
4533
4628
  /**
4534
4629
  * The result of a server task step execution.
@@ -4558,11 +4653,11 @@ export interface StepResultDc {
4558
4653
  }
4559
4654
  /**
4560
4655
  * The `StringSubType` provides information about string attribute subtype.
4561
-
4656
+
4562
4657
  None
4563
-
4658
+
4564
4659
  Image
4565
-
4660
+
4566
4661
  PkkCode
4567
4662
  */
4568
4663
  export declare enum StringSubType {
@@ -4649,6 +4744,8 @@ export interface StyledLayerServiceConfigurationDc {
4649
4744
  *
4650
4745
  */
4651
4746
  owner?: string;
4747
+ /** Copyright text. */
4748
+ copyrightText?: string;
4652
4749
  }
4653
4750
  /**
4654
4751
  * Feature symbol.
@@ -5064,6 +5161,8 @@ export interface TileInfoDc {
5064
5161
  export interface TileServiceInfoDc {
5065
5162
  /** Configuration of the service. This property is available only if the requesting user has CONFIGURE permission for the service. */
5066
5163
  tileInfo: TileInfoDc;
5164
+ /** Copyright text. */
5165
+ copyrightText?: string;
5067
5166
  /** The type of the resource. */
5068
5167
  type: string;
5069
5168
  /** The category of the service. */
@@ -5976,6 +6075,8 @@ export interface ClassifyParams {
5976
6075
  /**
5977
6076
  * Classification method.
5978
6077
  *
6078
+ * none
6079
+ *
5979
6080
  * naturalBreaks
5980
6081
  *
5981
6082
  * equalInterval
@@ -6025,6 +6126,18 @@ export interface AggregateAttributeParams {
6025
6126
  *
6026
6127
  * Count
6027
6128
  *
6129
+ * First
6130
+ *
6131
+ * Last
6132
+ *
6133
+ * Median
6134
+ *
6135
+ * Mod
6136
+ *
6137
+ * StdDeviation
6138
+ *
6139
+ * SumOfProduct
6140
+ *
6028
6141
  * OnlyValue
6029
6142
  *
6030
6143
  * WeightedAvg
@@ -6182,14 +6295,14 @@ export interface GetProjectsListParams {
6182
6295
  /** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
6183
6296
  orderByFields?: string[];
6184
6297
  /** All available permissions list. */
6185
- acl?: RolePermissionDc[];
6298
+ acl?: string;
6186
6299
  }
6187
6300
  /**
6188
6301
  * Project extended configuration data contract.
6189
6302
  */
6190
6303
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6191
6304
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6192
- export interface DeleteResourcesParams8 {
6305
+ export interface DeleteResourcesParams6 {
6193
6306
  /** Resource names. */
6194
6307
  names?: string[];
6195
6308
  }
@@ -6371,39 +6484,17 @@ export interface DeleteFileParams {
6371
6484
  /** File id to delete. */
6372
6485
  fileid?: string;
6373
6486
  }
6374
- export interface StatisticParams {
6487
+ export interface StatisticsDbParams {
6375
6488
  /** Layer name. */
6376
6489
  layerName?: string;
6377
6490
  /** Attribute name. */
6378
6491
  attribute?: string;
6379
6492
  /** Condition. */
6380
6493
  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;
6494
+ /** Type of required statistic function. */
6495
+ types?: AggregationFunction[];
6405
6496
  }
6406
- export interface ClassifyParams6 {
6497
+ export interface ClassifyParams7 {
6407
6498
  /** Layer name. */
6408
6499
  layerName?: string;
6409
6500
  /** Attribute name. */
@@ -6423,6 +6514,8 @@ export interface ClassifyParams6 {
6423
6514
  /**
6424
6515
  * Classification method.
6425
6516
  *
6517
+ * none
6518
+ *
6426
6519
  * naturalBreaks
6427
6520
  *
6428
6521
  * equalInterval
@@ -6430,6 +6523,14 @@ export interface ClassifyParams6 {
6430
6523
  * quantile
6431
6524
  */
6432
6525
  type?: ClassificationType;
6526
+ /**
6527
+ * Type of given attribute.
6528
+ *
6529
+ * decimal
6530
+ *
6531
+ * dateTime
6532
+ */
6533
+ attributeType?: ClassifyAttributeType;
6433
6534
  }
6434
6535
  /**
6435
6536
  * Feature layer rendering style.
@@ -6439,6 +6540,14 @@ export declare type UpdateStylePayload = StyleDc;
6439
6540
  * Feature layer rendering style.
6440
6541
  */
6441
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
+ }
6442
6551
  export interface GetTableListParams {
6443
6552
  /** Table name filter (support % and _ wildcards). */
6444
6553
  filter?: string;
@@ -6471,7 +6580,7 @@ export interface GetTableListParams {
6471
6580
  /** Filters layers by geometry types. */
6472
6581
  geometryFilter?: string[];
6473
6582
  /** All available permissions list. */
6474
- acl?: RolePermissionDc[];
6583
+ acl?: string;
6475
6584
  }
6476
6585
  /**
6477
6586
  * Table description with columns and access control list.
@@ -6583,7 +6692,7 @@ export interface GetCapabilitiesParams {
6583
6692
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6584
6693
  AcceptFormats?: string[];
6585
6694
  }
6586
- export interface GetCapabilitiesParams7 {
6695
+ export interface GetCapabilitiesParams8 {
6587
6696
  /** Output format of service metadata. */
6588
6697
  Format?: string;
6589
6698
  /** Must be WMS. */