@evergis/api 3.0.131 → 3.0.133

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 {
@@ -154,6 +154,10 @@ export declare enum AggregationFunction {
154
154
  export interface AggregationMappingDc {
155
155
  /** Name of the attribute. */
156
156
  attributeName: string;
157
+ /** Alias of the attribute. */
158
+ alias?: string;
159
+ /** Description of the attribute. */
160
+ description?: string;
157
161
  /**
158
162
  *
159
163
  *
@@ -501,29 +505,29 @@ export interface AttributeFormatDefinitionDc {
501
505
  }
502
506
  /**
503
507
  * Types of the attributes that are supported by the system.
504
-
508
+
505
509
  Unknown
506
-
510
+
507
511
  String
508
-
512
+
509
513
  Int32
510
-
514
+
511
515
  Int64
512
-
516
+
513
517
  Double
514
-
518
+
515
519
  DateTime
516
-
520
+
517
521
  Boolean
518
-
522
+
519
523
  Point
520
-
524
+
521
525
  Polyline
522
-
526
+
523
527
  Polygon
524
-
528
+
525
529
  Multipoint
526
-
530
+
527
531
  H3Index
528
532
  */
529
533
  export declare enum AttributeType {
@@ -688,15 +692,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
688
692
  };
689
693
  /**
690
694
  * Describes classification methods.
691
-
695
+
692
696
  none
693
-
697
+
694
698
  naturalBreaks
695
-
699
+
696
700
  equalInterval
697
-
701
+
698
702
  quantile
699
-
703
+
700
704
  unique
701
705
  */
702
706
  export declare enum ClassificationType {
@@ -708,11 +712,11 @@ export declare enum ClassificationType {
708
712
  }
709
713
  /**
710
714
  * Type of attribute.
711
-
715
+
712
716
  decimal
713
-
717
+
714
718
  dateTime
715
-
719
+
716
720
  text
717
721
  */
718
722
  export declare enum ClassifyAttributeType {
@@ -749,6 +753,9 @@ export declare type ClusterSymbolDc = SymbolDc & {
749
753
  minClusterSize?: number;
750
754
  maxObjectCount?: number;
751
755
  gridSize?: number;
756
+ cacheTimeout?: number;
757
+ idAttributeAlias?: string;
758
+ countAttributeAlias?: string;
752
759
  };
753
760
  /**
754
761
  * Description of a table column.
@@ -979,55 +986,55 @@ export interface ConfigDc {
979
986
  }
980
987
  /**
981
988
  * Types of errors that can occur during layer initialize.
982
-
989
+
983
990
  Unknown
984
-
991
+
985
992
  SerializeError
986
-
993
+
987
994
  InvalidDataService
988
-
995
+
989
996
  InvalidConfiguration
990
-
997
+
991
998
  InvalidDataServiceName
992
-
999
+
993
1000
  InvalidTableName
994
-
1001
+
995
1002
  InvalidLayerName
996
-
1003
+
997
1004
  ResourceNotFound
998
-
1005
+
999
1006
  InvalidCondition
1000
-
1007
+
1001
1008
  InvalidAttributes
1002
-
1009
+
1003
1010
  InvalidIdAttribute
1004
-
1011
+
1005
1012
  InvalidGeometryAttribute
1006
-
1013
+
1007
1014
  InvalidGeometryAttributeType
1008
-
1015
+
1009
1016
  InvalidColumnName
1010
-
1017
+
1011
1018
  InvalidIdColumnSettings
1012
-
1019
+
1013
1020
  ColumnNotExistsInTable
1014
-
1021
+
1015
1022
  InvalidStyle
1016
-
1023
+
1017
1024
  InvalidLayerType
1018
-
1025
+
1019
1026
  ColumnLoadingError
1020
-
1027
+
1021
1028
  InvalidAttributeFormat
1022
-
1029
+
1023
1030
  DataSourceNotFound
1024
-
1031
+
1025
1032
  DuplicateColumns
1026
-
1033
+
1027
1034
  DuplicateAttributes
1028
-
1035
+
1029
1036
  TableWithoutColumns
1030
-
1037
+
1031
1038
  InvalidTableReferenceConfiguration
1032
1039
  */
1033
1040
  export declare enum ConfigurationErrorEnum {
@@ -1309,15 +1316,15 @@ export interface ErrorDetailsDc {
1309
1316
  }
1310
1317
  /**
1311
1318
  * Type of the error.
1312
-
1319
+
1313
1320
  ResourceLimitExceeded
1314
-
1321
+
1315
1322
  ResourceNotFound
1316
-
1323
+
1317
1324
  InternalError
1318
-
1325
+
1319
1326
  BadRequest
1320
-
1327
+
1321
1328
  DuplicateContent
1322
1329
  */
1323
1330
  export declare enum ErrorDetailsType {
@@ -1811,9 +1818,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1811
1818
  };
1812
1819
  /**
1813
1820
  * Type of the feature.
1814
-
1821
+
1815
1822
  Unknown
1816
-
1823
+
1817
1824
  GeometricFeature
1818
1825
  */
1819
1826
  export declare enum FeatureType {
@@ -1887,11 +1894,11 @@ export interface FilterDc {
1887
1894
  }
1888
1895
  /**
1889
1896
  * Sets whether font should be styled.
1890
-
1897
+
1891
1898
  normal
1892
-
1899
+
1893
1900
  oblique
1894
-
1901
+
1895
1902
  italic
1896
1903
  */
1897
1904
  export declare enum FontStyle {
@@ -1901,27 +1908,27 @@ export declare enum FontStyle {
1901
1908
  }
1902
1909
  /**
1903
1910
  * Specifies the weight (or boldness) of the font.
1904
-
1911
+
1905
1912
  Thin
1906
-
1913
+
1907
1914
  ExtraLight
1908
-
1915
+
1909
1916
  Light
1910
-
1917
+
1911
1918
  SemiLight
1912
-
1919
+
1913
1920
  Normal
1914
-
1921
+
1915
1922
  Medium
1916
-
1923
+
1917
1924
  DemiBold
1918
-
1925
+
1919
1926
  Bold
1920
-
1927
+
1921
1928
  ExtraBold
1922
-
1929
+
1923
1930
  Black
1924
-
1931
+
1925
1932
  ExtraBlack
1926
1933
  */
1927
1934
  export declare enum FontWeight {
@@ -2016,17 +2023,17 @@ export interface GeometryDc {
2016
2023
  }
2017
2024
  /**
2018
2025
  *
2019
-
2026
+
2020
2027
  unknown
2021
-
2028
+
2022
2029
  point
2023
-
2030
+
2024
2031
  polyline
2025
-
2032
+
2026
2033
  polygon
2027
-
2034
+
2028
2035
  envelope
2029
-
2036
+
2030
2037
  multipoint
2031
2038
  */
2032
2039
  export declare enum GeometryType {
@@ -2046,13 +2053,13 @@ export declare type GridElementDc = ModelElementDc & {
2046
2053
  };
2047
2054
  /**
2048
2055
  * Resource group.
2049
-
2056
+
2050
2057
  my
2051
-
2058
+
2052
2059
  role
2053
-
2060
+
2054
2061
  public
2055
-
2062
+
2056
2063
  all
2057
2064
  */
2058
2065
  export declare enum Group {
@@ -2275,7 +2282,7 @@ export interface ImportDataSchema {
2275
2282
  type: string;
2276
2283
  }
2277
2284
  /**
2278
- * Data schema of a file for import.
2285
+ * Get features count data contract.
2279
2286
  */
2280
2287
  export interface ImportFileFeaturesCountDc {
2281
2288
  /** Name of the layer. */
@@ -2291,6 +2298,8 @@ export interface ImportFileFeaturesCountDc {
2291
2298
  export interface ImportLayerDataSchema {
2292
2299
  /** Name of the layer. */
2293
2300
  name: string;
2301
+ /** Storage type. */
2302
+ type?: string;
2294
2303
  /** First feature in the layer. */
2295
2304
  firstRow?: Record<string, any>;
2296
2305
  /**
@@ -2298,6 +2307,8 @@ export interface ImportLayerDataSchema {
2298
2307
  * @format int64
2299
2308
  */
2300
2309
  objectCount?: number;
2310
+ /** Assumed coordinate fields. */
2311
+ coordinateFields?: string[];
2301
2312
  /** Information about the layer attributes and their configuration. */
2302
2313
  layerDefinition?: LayerDefinitionDc;
2303
2314
  /** Schema of a inner layers. */
@@ -2515,9 +2526,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2515
2526
  /**
2516
2527
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2517
2528
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2518
-
2529
+
2519
2530
  small
2520
-
2531
+
2521
2532
  large
2522
2533
  */
2523
2534
  export declare enum LineEndingSize {
@@ -2526,19 +2537,19 @@ export declare enum LineEndingSize {
2526
2537
  }
2527
2538
  /**
2528
2539
  * Type of the line ending.
2529
-
2540
+
2530
2541
  none
2531
-
2542
+
2532
2543
  arrow
2533
-
2544
+
2534
2545
  filledArrow
2535
-
2546
+
2536
2547
  square
2537
-
2548
+
2538
2549
  filledSquare
2539
-
2550
+
2540
2551
  circle
2541
-
2552
+
2542
2553
  filledCircle
2543
2554
  */
2544
2555
  export declare enum LineEndingType {
@@ -2678,15 +2689,15 @@ export interface NamespaceInfoDc {
2678
2689
  export declare type ObjectId = object;
2679
2690
  /**
2680
2691
  *
2681
-
2692
+
2682
2693
  Unknown
2683
-
2694
+
2684
2695
  union
2685
-
2696
+
2686
2697
  intersection
2687
-
2698
+
2688
2699
  subtraction
2689
-
2700
+
2690
2701
  symDifference
2691
2702
  */
2692
2703
  export declare enum Operation {
@@ -3022,19 +3033,19 @@ export declare type PatternBrushDc = FillBrushDc & {
3022
3033
  };
3023
3034
  /**
3024
3035
  * User permissions for server security objects (services, projects etc.)
3025
-
3036
+
3026
3037
  none
3027
-
3038
+
3028
3039
  configure
3029
-
3040
+
3030
3041
  write
3031
-
3042
+
3032
3043
  read
3033
-
3044
+
3034
3045
  read,configure
3035
-
3046
+
3036
3047
  read,write
3037
-
3048
+
3038
3049
  read,write,configure
3039
3050
  */
3040
3051
  export declare enum Permissions {
@@ -3092,19 +3103,19 @@ export interface PolicyDc {
3092
3103
  }
3093
3104
  /**
3094
3105
  * Type of the authorization policy.
3095
-
3106
+
3096
3107
  Unknown
3097
-
3108
+
3098
3109
  CreateTable
3099
-
3110
+
3100
3111
  CreateLayer
3101
-
3112
+
3102
3113
  CreateProject
3103
-
3114
+
3104
3115
  MaxFeaturesInOneTable
3105
-
3116
+
3106
3117
  MaxObjectsToExport
3107
-
3118
+
3108
3119
  MaxUploadContentSize
3109
3120
  */
3110
3121
  export declare enum PolicyType {
@@ -3463,11 +3474,11 @@ export interface Rectangle2 {
3463
3474
  }
3464
3475
  /**
3465
3476
  * Types of table reference.
3466
-
3477
+
3467
3478
  OneToMany
3468
-
3479
+
3469
3480
  OneToOne
3470
-
3481
+
3471
3482
  Intersect
3472
3483
  */
3473
3484
  export declare enum ReferenceJoinType {
@@ -3600,19 +3611,19 @@ export interface ResourceInfoDc {
3600
3611
  }
3601
3612
  /**
3602
3613
  * The `ResourceType` represents resource manager supports types.
3603
-
3614
+
3604
3615
  Unknown
3605
-
3616
+
3606
3617
  table
3607
-
3618
+
3608
3619
  layer
3609
-
3620
+
3610
3621
  project
3611
-
3622
+
3612
3623
  file
3613
-
3624
+
3614
3625
  feature
3615
-
3626
+
3616
3627
  tag
3617
3628
  */
3618
3629
  export declare enum ResourceType {
@@ -3780,21 +3791,21 @@ export interface ServerInfoDc {
3780
3791
  }
3781
3792
  /**
3782
3793
  * Status of the server task.
3783
-
3794
+
3784
3795
  None
3785
-
3796
+
3786
3797
  Scheduled
3787
-
3798
+
3788
3799
  Planning
3789
-
3800
+
3790
3801
  Executing
3791
-
3802
+
3792
3803
  Completed
3793
-
3804
+
3794
3805
  Failed
3795
-
3806
+
3796
3807
  Canceled
3797
-
3808
+
3798
3809
  Timeout
3799
3810
  */
3800
3811
  export declare enum ServerTaskStatus {
@@ -4025,9 +4036,9 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
4025
4036
  };
4026
4037
  /**
4027
4038
  * Simplify type.
4028
-
4039
+
4029
4040
  Basic
4030
-
4041
+
4031
4042
  PreserveTopology
4032
4043
  */
4033
4044
  export declare enum SimplifyType {
@@ -4152,11 +4163,11 @@ export declare type StepResultDc = BaseStepResultDc & {
4152
4163
  };
4153
4164
  /**
4154
4165
  * The `StringSubType` provides information about string attribute subtype.
4155
-
4166
+
4156
4167
  None
4157
-
4168
+
4158
4169
  Image
4159
-
4170
+
4160
4171
  PkkCode
4161
4172
  */
4162
4173
  export declare enum StringSubType {
@@ -4368,9 +4379,9 @@ export interface TagInfoDc {
4368
4379
  }
4369
4380
  /**
4370
4381
  * Task owner group.
4371
-
4382
+
4372
4383
  my
4373
-
4384
+
4374
4385
  all
4375
4386
  */
4376
4387
  export declare enum TaskGroup {
@@ -4584,13 +4595,13 @@ export interface TemplateModelDc {
4584
4595
  }
4585
4596
  /**
4586
4597
  * Sets the horizontal alignment of text.
4587
-
4598
+
4588
4599
  right
4589
-
4600
+
4590
4601
  left
4591
-
4602
+
4592
4603
  center
4593
-
4604
+
4594
4605
  justified
4595
4606
  */
4596
4607
  export declare enum TextAlignment {
@@ -4610,11 +4621,11 @@ export interface TextBackgroundDc {
4610
4621
  }
4611
4622
  /**
4612
4623
  * Sets the vertical alignment of text.
4613
-
4624
+
4614
4625
  top
4615
-
4626
+
4616
4627
  bottom
4617
-
4628
+
4618
4629
  middle
4619
4630
  */
4620
4631
  export declare enum TextVerticalAlignment {
@@ -5350,13 +5361,12 @@ export interface FeedbackParams {
5350
5361
  /** Message text. */
5351
5362
  Message?: string;
5352
5363
  }
5353
- export interface FaviconParams {
5354
- /** Bucket name. */
5355
- bucketName?: string;
5356
- }
5357
- export interface LogoParams {
5358
- /** Bucket name. */
5359
- bucketName?: string;
5364
+ export interface CancelTestParams {
5365
+ /**
5366
+ * Wait delay in ms.
5367
+ * @format int32
5368
+ */
5369
+ waitTimeout?: number;
5360
5370
  }
5361
5371
  export interface GeocodeParams {
5362
5372
  /** Input address. */
@@ -5401,6 +5411,24 @@ export interface GetDataSchemaParams {
5401
5411
  /** File id. */
5402
5412
  fileId?: string;
5403
5413
  }
5414
+ export interface ReadPartParams {
5415
+ /** Name of the layer. */
5416
+ LayerName?: string;
5417
+ /** Id of the file in the temporary static storage. */
5418
+ FileId: string;
5419
+ /** Condition. */
5420
+ Condition?: string;
5421
+ /**
5422
+ * Offset.
5423
+ * @format int32
5424
+ */
5425
+ Offset?: number;
5426
+ /**
5427
+ * Count.
5428
+ * @format int32
5429
+ */
5430
+ Count?: number;
5431
+ }
5404
5432
  export interface GetExternalWmsLayersParams {
5405
5433
  /** WMS service url. */
5406
5434
  url?: string;
@@ -5617,6 +5645,21 @@ export interface GetLayerImageParams {
5617
5645
  extentSr?: number;
5618
5646
  /** Condition to apply to the layer to filter the features. */
5619
5647
  condition?: string;
5648
+ /**
5649
+ * Simplify type.
5650
+ *
5651
+ * Basic
5652
+ *
5653
+ * PreserveTopology
5654
+ */
5655
+ SimplifyType?: SimplifyType;
5656
+ /**
5657
+ * Tolerance.
5658
+ * @format float
5659
+ */
5660
+ SimplifyTolerance?: number;
5661
+ /** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
5662
+ SimplifyPreserveCollapsed?: boolean;
5620
5663
  /**
5621
5664
  * Opacity to apply to the layer image.
5622
5665
  * @format float
@@ -5855,6 +5898,11 @@ export interface SelectFeaturesParams {
5855
5898
  filters?: string[];
5856
5899
  /** If set to true, the response will include the specific symbol for each feature. */
5857
5900
  includeSymbols?: boolean;
5901
+ /**
5902
+ * Spatial reference of features to be returned.
5903
+ * @format int32
5904
+ */
5905
+ targetSr?: number;
5858
5906
  }
5859
5907
  export interface ValidateExpressionParams {
5860
5908
  /** Expression to validate. */
@@ -5951,7 +5999,7 @@ export interface GetProjectsListParams {
5951
5999
  tags?: string[];
5952
6000
  }
5953
6001
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5954
- export interface DeleteResourcesParams7 {
6002
+ export interface DeleteResourcesParams9 {
5955
6003
  /** Resource names. */
5956
6004
  names?: string[];
5957
6005
  }
@@ -6189,7 +6237,7 @@ export interface StatisticsDbParams {
6189
6237
  */
6190
6238
  types?: AggregationFunction[];
6191
6239
  }
6192
- export interface ClassifyParams6 {
6240
+ export interface ClassifyParams5 {
6193
6241
  /** Layer name. */
6194
6242
  name?: string;
6195
6243
  /** Attribute name. */
@@ -6313,7 +6361,7 @@ export interface GetTableListParams {
6313
6361
  acl?: string;
6314
6362
  }
6315
6363
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6316
- export interface DeleteResourcesParams9 {
6364
+ export interface DeleteResourcesParams6 {
6317
6365
  /** Resource names. */
6318
6366
  names?: string[];
6319
6367
  }
@@ -6402,8 +6450,6 @@ export interface GetVectorTileParams {
6402
6450
  condition?: string;
6403
6451
  /** True if name is project name, otherwise false. */
6404
6452
  isProject?: boolean;
6405
- /** Simpify geometry using the Douglas-Peucker algorithm. */
6406
- simplify?: boolean;
6407
6453
  /**
6408
6454
  * Simplify type.
6409
6455
  *
@@ -6411,14 +6457,14 @@ export interface GetVectorTileParams {
6411
6457
  *
6412
6458
  * PreserveTopology
6413
6459
  */
6414
- simplifyType?: SimplifyType;
6460
+ SimplifyType?: SimplifyType;
6415
6461
  /**
6416
- * Simplify tolerance.
6462
+ * Tolerance.
6417
6463
  * @format float
6418
6464
  */
6419
- simplifyTolerance?: number;
6420
- /** Simplify will retain objects that would otherwise be too small given the tolerance. */
6421
- simplifyPreserveCollapsed?: boolean;
6465
+ SimplifyTolerance?: number;
6466
+ /** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
6467
+ SimplifyPreserveCollapsed?: boolean;
6422
6468
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
6423
6469
  dataFilterId?: string;
6424
6470
  /** Project or layer name. */
@@ -6469,7 +6515,7 @@ export interface GetPublicCapabilitiesParams {
6469
6515
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6470
6516
  AcceptFormats?: string[];
6471
6517
  }
6472
- export interface GetCapabilitiesParams9 {
6518
+ export interface GetCapabilitiesParams8 {
6473
6519
  /** Output format of service metadata. */
6474
6520
  Format?: string;
6475
6521
  /** Must be WMS. */