@evergis/api 3.0.162 → 3.0.163

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.
@@ -82,47 +82,47 @@ export interface AggregationDataResultDc {
82
82
  }
83
83
  /**
84
84
  *
85
-
85
+
86
86
  None
87
-
87
+
88
88
  Array
89
-
89
+
90
90
  Min
91
-
91
+
92
92
  Max
93
-
93
+
94
94
  Avg
95
-
95
+
96
96
  Sum
97
-
97
+
98
98
  Extent
99
-
99
+
100
100
  H3
101
-
101
+
102
102
  Count
103
-
103
+
104
104
  TotalCount
105
-
105
+
106
106
  DistinctCount
107
-
107
+
108
108
  First
109
-
109
+
110
110
  Last
111
-
111
+
112
112
  Median
113
-
113
+
114
114
  Mod
115
-
115
+
116
116
  StdDeviation
117
-
117
+
118
118
  SumOfProduct
119
-
119
+
120
120
  OnlyValue
121
-
121
+
122
122
  WeightedAvg
123
-
123
+
124
124
  DensityIndicators
125
-
125
+
126
126
  DividedSum
127
127
  */
128
128
  export declare enum AggregationFunction {
@@ -403,6 +403,18 @@ export interface AttributeConfigurationDc {
403
403
  clientData?: any;
404
404
  /** Id of table given attribute is referenced. */
405
405
  referenceId?: string;
406
+ /**
407
+ * Attribute selector type.
408
+ *
409
+ * None
410
+ *
411
+ * SelectFromHandBook
412
+ *
413
+ * SelectFromRange
414
+ *
415
+ * ViewHandBook
416
+ */
417
+ attributeSelectorType?: AttributeSelectorType;
406
418
  /** Values range. */
407
419
  ranges?: ValuesRange[];
408
420
  }
@@ -569,32 +581,49 @@ export interface AttributeFormatDefinitionDc {
569
581
  rounding?: number;
570
582
  }
571
583
  /**
584
+ * Attribute selector type.
585
+
586
+ None
587
+
588
+ SelectFromHandBook
589
+
590
+ SelectFromRange
591
+
592
+ ViewHandBook
593
+ */
594
+ export declare enum AttributeSelectorType {
595
+ None = "None",
596
+ SelectFromHandBook = "SelectFromHandBook",
597
+ SelectFromRange = "SelectFromRange",
598
+ ViewHandBook = "ViewHandBook"
599
+ }
600
+ /**
572
601
  * Types of the attributes that are supported by the system.
573
-
602
+
574
603
  Unknown
575
-
604
+
576
605
  String
577
-
606
+
578
607
  Int32
579
-
608
+
580
609
  Int64
581
-
610
+
582
611
  Double
583
-
612
+
584
613
  DateTime
585
-
614
+
586
615
  Boolean
587
-
616
+
588
617
  Point
589
-
618
+
590
619
  Polyline
591
-
620
+
592
621
  MultiPolygon
593
-
622
+
594
623
  Multipoint
595
-
624
+
596
625
  H3Index
597
-
626
+
598
627
  Json
599
628
  */
600
629
  export declare enum AttributeType {
@@ -815,15 +844,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
815
844
  };
816
845
  /**
817
846
  * Describes classification methods.
818
-
847
+
819
848
  none
820
-
849
+
821
850
  naturalBreaks
822
-
851
+
823
852
  equalInterval
824
-
853
+
825
854
  quantile
826
-
855
+
827
856
  unique
828
857
  */
829
858
  export declare enum ClassificationType {
@@ -834,12 +863,12 @@ export declare enum ClassificationType {
834
863
  Unique = "unique"
835
864
  }
836
865
  /**
837
- * Type of attribute.
838
-
866
+ *
867
+
839
868
  decimal
840
-
869
+
841
870
  dateTime
842
-
871
+
843
872
  text
844
873
  */
845
874
  export declare enum ClassifyAttributeType {
@@ -1120,55 +1149,55 @@ export interface ConfigDc {
1120
1149
  }
1121
1150
  /**
1122
1151
  * Types of errors that can occur during layer initialize.
1123
-
1152
+
1124
1153
  Unknown
1125
-
1154
+
1126
1155
  SerializeError
1127
-
1156
+
1128
1157
  InvalidDataService
1129
-
1158
+
1130
1159
  InvalidConfiguration
1131
-
1160
+
1132
1161
  InvalidDataServiceName
1133
-
1162
+
1134
1163
  InvalidTableName
1135
-
1164
+
1136
1165
  InvalidLayerName
1137
-
1166
+
1138
1167
  ResourceNotFound
1139
-
1168
+
1140
1169
  InvalidCondition
1141
-
1170
+
1142
1171
  InvalidAttributes
1143
-
1172
+
1144
1173
  InvalidIdAttribute
1145
-
1174
+
1146
1175
  InvalidGeometryAttribute
1147
-
1176
+
1148
1177
  InvalidGeometryAttributeType
1149
-
1178
+
1150
1179
  InvalidColumnName
1151
-
1180
+
1152
1181
  InvalidIdColumnSettings
1153
-
1182
+
1154
1183
  ColumnNotExistsInTable
1155
-
1184
+
1156
1185
  InvalidStyle
1157
-
1186
+
1158
1187
  InvalidLayerType
1159
-
1188
+
1160
1189
  ColumnLoadingError
1161
-
1190
+
1162
1191
  InvalidAttributeFormat
1163
-
1192
+
1164
1193
  DataSourceNotFound
1165
-
1194
+
1166
1195
  DuplicateColumns
1167
-
1196
+
1168
1197
  DuplicateAttributes
1169
-
1198
+
1170
1199
  TableWithoutColumns
1171
-
1200
+
1172
1201
  InvalidTableReferenceConfiguration
1173
1202
  */
1174
1203
  export declare enum ConfigurationErrorEnum {
@@ -1490,15 +1519,15 @@ export interface ErrorDetailsDc {
1490
1519
  }
1491
1520
  /**
1492
1521
  * Type of the error.
1493
-
1522
+
1494
1523
  ResourceLimitExceeded
1495
-
1524
+
1496
1525
  ResourceNotFound
1497
-
1526
+
1498
1527
  InternalError
1499
-
1528
+
1500
1529
  BadRequest
1501
-
1530
+
1502
1531
  DuplicateContent
1503
1532
  */
1504
1533
  export declare enum ErrorDetailsType {
@@ -1993,9 +2022,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1993
2022
  };
1994
2023
  /**
1995
2024
  * Type of the feature.
1996
-
2025
+
1997
2026
  Unknown
1998
-
2027
+
1999
2028
  GeometricFeature
2000
2029
  */
2001
2030
  export declare enum FeatureType {
@@ -2122,11 +2151,11 @@ export interface FilterDc {
2122
2151
  }
2123
2152
  /**
2124
2153
  * Sets whether font should be styled.
2125
-
2154
+
2126
2155
  normal
2127
-
2156
+
2128
2157
  oblique
2129
-
2158
+
2130
2159
  italic
2131
2160
  */
2132
2161
  export declare enum FontStyle {
@@ -2136,27 +2165,27 @@ export declare enum FontStyle {
2136
2165
  }
2137
2166
  /**
2138
2167
  * Specifies the weight (or boldness) of the font.
2139
-
2168
+
2140
2169
  Thin
2141
-
2170
+
2142
2171
  ExtraLight
2143
-
2172
+
2144
2173
  Light
2145
-
2174
+
2146
2175
  SemiLight
2147
-
2176
+
2148
2177
  Normal
2149
-
2178
+
2150
2179
  Medium
2151
-
2180
+
2152
2181
  DemiBold
2153
-
2182
+
2154
2183
  Bold
2155
-
2184
+
2156
2185
  ExtraBold
2157
-
2186
+
2158
2187
  Black
2159
-
2188
+
2160
2189
  ExtraBlack
2161
2190
  */
2162
2191
  export declare enum FontWeight {
@@ -2251,17 +2280,17 @@ export interface GeometryDc {
2251
2280
  }
2252
2281
  /**
2253
2282
  *
2254
-
2283
+
2255
2284
  unknown
2256
-
2285
+
2257
2286
  point
2258
-
2287
+
2259
2288
  polyline
2260
-
2289
+
2261
2290
  multipolygon
2262
-
2291
+
2263
2292
  envelope
2264
-
2293
+
2265
2294
  multipoint
2266
2295
  */
2267
2296
  export declare enum GeometryType {
@@ -2281,13 +2310,13 @@ export declare type GridElementDc = ModelElementDc & {
2281
2310
  };
2282
2311
  /**
2283
2312
  * Resource group.
2284
-
2313
+
2285
2314
  my
2286
-
2315
+
2287
2316
  role
2288
-
2317
+
2289
2318
  public
2290
-
2319
+
2291
2320
  all
2292
2321
  */
2293
2322
  export declare enum Group {
@@ -2767,13 +2796,13 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2767
2796
  };
2768
2797
  /**
2769
2798
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
2770
-
2799
+
2771
2800
  Flat
2772
-
2801
+
2773
2802
  Square
2774
-
2803
+
2775
2804
  Round
2776
-
2805
+
2777
2806
  Triangle
2778
2807
  */
2779
2808
  export declare enum LineCapStyle {
@@ -2817,29 +2846,29 @@ export interface LineEndingBaseDc {
2817
2846
  }
2818
2847
  /**
2819
2848
  * Type of the line ending.
2820
-
2849
+
2821
2850
  none
2822
-
2851
+
2823
2852
  arrow
2824
-
2853
+
2825
2854
  filledArrow
2826
-
2855
+
2827
2856
  square
2828
-
2857
+
2829
2858
  filledSquare
2830
-
2859
+
2831
2860
  circle
2832
-
2861
+
2833
2862
  filledCircle
2834
-
2863
+
2835
2864
  diamond
2836
-
2865
+
2837
2866
  filledDiamond
2838
-
2867
+
2839
2868
  roundSquare
2840
-
2869
+
2841
2870
  filledRoundSquare
2842
-
2871
+
2843
2872
  svg
2844
2873
  */
2845
2874
  export declare enum LineEndingType {
@@ -2858,11 +2887,11 @@ export declare enum LineEndingType {
2858
2887
  }
2859
2888
  /**
2860
2889
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
2861
-
2890
+
2862
2891
  Miter
2863
-
2892
+
2864
2893
  Bevel
2865
-
2894
+
2866
2895
  Round
2867
2896
  */
2868
2897
  export declare enum LineJoinType {
@@ -3010,15 +3039,15 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
3010
3039
  export declare type ObjectId = object;
3011
3040
  /**
3012
3041
  *
3013
-
3042
+
3014
3043
  Unknown
3015
-
3044
+
3016
3045
  union
3017
-
3046
+
3018
3047
  intersection
3019
-
3048
+
3020
3049
  subtraction
3021
-
3050
+
3022
3051
  symDifference
3023
3052
  */
3024
3053
  export declare enum Operation {
@@ -3400,9 +3429,9 @@ export declare type PatternBrushDc = FillBrushDc & {
3400
3429
  };
3401
3430
  /**
3402
3431
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3403
-
3432
+
3404
3433
  xyz
3405
-
3434
+
3406
3435
  tms
3407
3436
  */
3408
3437
  export declare enum PbfSchema {
@@ -3423,19 +3452,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
3423
3452
  };
3424
3453
  /**
3425
3454
  * User permissions for server security objects (services, projects etc.)
3426
-
3455
+
3427
3456
  none
3428
-
3457
+
3429
3458
  configure
3430
-
3459
+
3431
3460
  write
3432
-
3461
+
3433
3462
  read
3434
-
3463
+
3435
3464
  read,configure
3436
-
3465
+
3437
3466
  read,write
3438
-
3467
+
3439
3468
  read,write,configure
3440
3469
  */
3441
3470
  export declare enum Permissions {
@@ -3493,19 +3522,19 @@ export interface PolicyDc {
3493
3522
  }
3494
3523
  /**
3495
3524
  * Type of the authorization policy.
3496
-
3525
+
3497
3526
  Unknown
3498
-
3527
+
3499
3528
  CreateTable
3500
-
3529
+
3501
3530
  CreateLayer
3502
-
3531
+
3503
3532
  CreateProject
3504
-
3533
+
3505
3534
  MaxFeaturesInOneTable
3506
-
3535
+
3507
3536
  MaxObjectsToExport
3508
-
3537
+
3509
3538
  MaxUploadContentSize
3510
3539
  */
3511
3540
  export declare enum PolicyType {
@@ -4147,17 +4176,17 @@ export interface RasterVrtFeatureSourceDc {
4147
4176
  }
4148
4177
  /**
4149
4178
  * Types of table reference.
4150
-
4179
+
4151
4180
  OneToMany
4152
-
4181
+
4153
4182
  OneToOne
4154
-
4183
+
4155
4184
  Intersect
4156
-
4185
+
4157
4186
  RightJoin
4158
-
4187
+
4159
4188
  FullJoin
4160
-
4189
+
4161
4190
  CrossJoin
4162
4191
  */
4163
4192
  export declare enum ReferenceJoinType {
@@ -4293,19 +4322,19 @@ export interface ResourceInfoDc {
4293
4322
  }
4294
4323
  /**
4295
4324
  * The `ResourceType` represents resource manager supports types.
4296
-
4325
+
4297
4326
  Unknown
4298
-
4327
+
4299
4328
  table
4300
-
4329
+
4301
4330
  layer
4302
-
4331
+
4303
4332
  project
4304
-
4333
+
4305
4334
  file
4306
-
4335
+
4307
4336
  feature
4308
-
4337
+
4309
4338
  tag
4310
4339
  */
4311
4340
  export declare enum ResourceType {
@@ -4537,21 +4566,21 @@ export interface ServerInfoDc {
4537
4566
  }
4538
4567
  /**
4539
4568
  * Status of the server task.
4540
-
4569
+
4541
4570
  None
4542
-
4571
+
4543
4572
  Scheduled
4544
-
4573
+
4545
4574
  Planning
4546
-
4575
+
4547
4576
  Executing
4548
-
4577
+
4549
4578
  Completed
4550
-
4579
+
4551
4580
  Failed
4552
-
4581
+
4553
4582
  Canceled
4554
-
4583
+
4555
4584
  Timeout
4556
4585
  */
4557
4586
  export declare enum ServerTaskStatus {
@@ -4823,7 +4852,7 @@ export interface SimpleEndingDc {
4823
4852
  }
4824
4853
  /**
4825
4854
  * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
4826
-
4855
+
4827
4856
  If the ending is set to be other then None, the size and color of the ending will be calculated based on the
4828
4857
  stroke width and color of the symbol.
4829
4858
  */
@@ -4877,11 +4906,11 @@ export interface SimplifyInfoItemDc {
4877
4906
  }
4878
4907
  /**
4879
4908
  * Simplify type.
4880
-
4909
+
4881
4910
  Basic
4882
-
4911
+
4883
4912
  PreserveTopology
4884
-
4913
+
4885
4914
  VW
4886
4915
  */
4887
4916
  export declare enum SimplifyType {
@@ -5018,13 +5047,13 @@ export declare type StepResultDc = BaseStepResultDc & {
5018
5047
  };
5019
5048
  /**
5020
5049
  * The `StringSubType` provides information about string attribute subtype.
5021
-
5050
+
5022
5051
  None
5023
-
5052
+
5024
5053
  Image
5025
-
5054
+
5026
5055
  PkkCode
5027
-
5056
+
5028
5057
  Attachments
5029
5058
  */
5030
5059
  export declare enum StringSubType {
@@ -5249,9 +5278,9 @@ export interface TagInfoDc {
5249
5278
  }
5250
5279
  /**
5251
5280
  * Task owner group.
5252
-
5281
+
5253
5282
  my
5254
-
5283
+
5255
5284
  all
5256
5285
  */
5257
5286
  export declare enum TaskGroup {
@@ -5465,13 +5494,13 @@ export interface TemplateModelDc {
5465
5494
  }
5466
5495
  /**
5467
5496
  * Sets the horizontal alignment of text.
5468
-
5497
+
5469
5498
  right
5470
-
5499
+
5471
5500
  left
5472
-
5501
+
5473
5502
  center
5474
-
5503
+
5475
5504
  justified
5476
5505
  */
5477
5506
  export declare enum TextAlignment {
@@ -5491,11 +5520,11 @@ export interface TextBackgroundDc {
5491
5520
  }
5492
5521
  /**
5493
5522
  * Sets the vertical alignment of text.
5494
-
5523
+
5495
5524
  top
5496
-
5525
+
5497
5526
  bottom
5498
-
5527
+
5499
5528
  middle
5500
5529
  */
5501
5530
  export declare enum TextVerticalAlignment {
@@ -6889,7 +6918,7 @@ export interface ValidateExpressionParams {
6889
6918
  /** Layer name. */
6890
6919
  layerName: string;
6891
6920
  }
6892
- export interface GetRasterMetaParams7 {
6921
+ export interface GetRasterMetaParams6 {
6893
6922
  /**
6894
6923
  * Min value for build histogram.
6895
6924
  * @format double
@@ -7016,7 +7045,7 @@ export interface GetProjectsListParams {
7016
7045
  tags?: string[];
7017
7046
  }
7018
7047
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7019
- export interface DeleteResourcesParams2 {
7048
+ export interface DeleteResourcesParams3 {
7020
7049
  /** Resource names. */
7021
7050
  names?: string[];
7022
7051
  }
@@ -7260,7 +7289,7 @@ export interface StatisticsDbParams {
7260
7289
  */
7261
7290
  types?: AggregationFunction[];
7262
7291
  }
7263
- export interface ClassifyParams8 {
7292
+ export interface ClassifyParams6 {
7264
7293
  /** Layer name. */
7265
7294
  name?: string;
7266
7295
  /** Attribute name. */
@@ -7393,7 +7422,7 @@ export interface GetTableListParams {
7393
7422
  acl?: string;
7394
7423
  }
7395
7424
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7396
- export interface DeleteResourcesParams5 {
7425
+ export interface DeleteResourcesParams2 {
7397
7426
  /** Resource names. */
7398
7427
  names?: string[];
7399
7428
  }
@@ -7550,7 +7579,7 @@ export interface GetPublicCapabilitiesParams {
7550
7579
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7551
7580
  AcceptFormats?: string[];
7552
7581
  }
7553
- export interface GetCapabilitiesParams2 {
7582
+ export interface GetCapabilitiesParams9 {
7554
7583
  /** Output format of service metadata. */
7555
7584
  Format?: string;
7556
7585
  /** Must be WMS. */