@evergis/api 3.0.159 → 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 {
@@ -262,6 +262,51 @@ export interface AggregationSettingDc {
262
262
  */
263
263
  aggregationFunction: AggregationFunction;
264
264
  }
265
+ /**
266
+ * Archive calendar response.
267
+ */
268
+ export interface ArchiveCalendarDc {
269
+ /** Each value represents the percentage of time covered by archive records within the corresponding day. */
270
+ calendar?: ArchiveCalendarItemDc[];
271
+ /** Check if request success. */
272
+ success?: boolean;
273
+ }
274
+ /**
275
+ * Archive calendar item.
276
+ */
277
+ export interface ArchiveCalendarItemDc {
278
+ /** Date. */
279
+ date?: string;
280
+ /**
281
+ * Daily coverage values.
282
+ * @format int32
283
+ */
284
+ coverage?: number;
285
+ }
286
+ /**
287
+ * Archive timeline request.
288
+ */
289
+ export interface ArchiveTimelineDc {
290
+ /** A list of daily coverage values. */
291
+ timeline?: ArchiveTimelineItemDc[];
292
+ /** Check if request success. */
293
+ success?: boolean;
294
+ }
295
+ /**
296
+ * Represents the percentage of time covered by archive records within the corresponding day.
297
+ */
298
+ export interface ArchiveTimelineItemDc {
299
+ /**
300
+ * Corresponding day.
301
+ * @format date-time
302
+ */
303
+ startTime?: string;
304
+ /**
305
+ * Percentage of time covered by archive record.
306
+ * @format int32
307
+ */
308
+ duration?: number;
309
+ }
265
310
  /**
266
311
  * Simple not filled arrow.
267
312
  */
@@ -294,6 +339,8 @@ export interface AttributeConfigurationDc {
294
339
  * Image
295
340
  *
296
341
  * PkkCode
342
+ *
343
+ * Attachments
297
344
  */
298
345
  subType?: StringSubType;
299
346
  /** If set to false, editing of the attribute value will be prohibited. */
@@ -356,6 +403,20 @@ export interface AttributeConfigurationDc {
356
403
  clientData?: any;
357
404
  /** Id of table given attribute is referenced. */
358
405
  referenceId?: string;
406
+ /**
407
+ * Attribute selector type.
408
+ *
409
+ * None
410
+ *
411
+ * SelectFromHandBook
412
+ *
413
+ * SelectFromRange
414
+ *
415
+ * ViewHandBook
416
+ */
417
+ attributeSelectorType?: AttributeSelectorType;
418
+ /** Values range. */
419
+ ranges?: ValuesRange[];
359
420
  }
360
421
  /**
361
422
  * Information about an attribute.
@@ -382,11 +443,13 @@ export interface AttributeDefinitionDc {
382
443
  *
383
444
  * Polyline
384
445
  *
385
- * Polygon
446
+ * MultiPolygon
386
447
  *
387
448
  * Multipoint
388
449
  *
389
450
  * H3Index
451
+ *
452
+ * Json
390
453
  */
391
454
  type: AttributeType;
392
455
  /** Alias of the attribute. */
@@ -407,6 +470,8 @@ export interface AttributeDefinitionDc {
407
470
  * Image
408
471
  *
409
472
  * PkkCode
473
+ *
474
+ * Attachments
410
475
  */
411
476
  subType?: StringSubType;
412
477
  /** Ensures that the data in the attribute is unique across all rows in a table. */
@@ -516,31 +581,50 @@ export interface AttributeFormatDefinitionDc {
516
581
  rounding?: number;
517
582
  }
518
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
+ /**
519
601
  * Types of the attributes that are supported by the system.
520
-
602
+
521
603
  Unknown
522
-
604
+
523
605
  String
524
-
606
+
525
607
  Int32
526
-
608
+
527
609
  Int64
528
-
610
+
529
611
  Double
530
-
612
+
531
613
  DateTime
532
-
614
+
533
615
  Boolean
534
-
616
+
535
617
  Point
536
-
618
+
537
619
  Polyline
538
-
539
- Polygon
540
-
620
+
621
+ MultiPolygon
622
+
541
623
  Multipoint
542
-
624
+
543
625
  H3Index
626
+
627
+ Json
544
628
  */
545
629
  export declare enum AttributeType {
546
630
  Unknown = "Unknown",
@@ -552,9 +636,10 @@ export declare enum AttributeType {
552
636
  Boolean = "Boolean",
553
637
  Point = "Point",
554
638
  Polyline = "Polyline",
555
- MultiPolygon = "Polygon",
639
+ MultiPolygon = "MultiPolygon",
556
640
  Multipoint = "Multipoint",
557
- H3Index = "H3Index"
641
+ H3Index = "H3Index",
642
+ Json = "Json"
558
643
  }
559
644
  /**
560
645
  * Configuration of the attribute set in a feature layer.
@@ -572,6 +657,10 @@ export interface AttributesConfigurationDc {
572
657
  attributes?: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
573
658
  /** Configurations of the related tables. */
574
659
  tableReferences?: TableReferenceConfigurationDc[];
660
+ /** Configuration of layer references. */
661
+ layerReferences?: LayerReferenceConfigurationDc[];
662
+ /** Values ranges. */
663
+ valuesRange?: ValuesRangeDc[];
575
664
  }
576
665
  /**
577
666
  * The symbol that draws a raster with classification.
@@ -693,6 +782,26 @@ export declare type CalculatedParameterDc = ParameterDcDouble & {
693
782
  expression?: string;
694
783
  defaultValue?: number;
695
784
  };
785
+ /**
786
+ * Camera item.
787
+ */
788
+ export interface CameraDc {
789
+ /** Id of the camera. */
790
+ id?: string;
791
+ /** Name of the camera. */
792
+ name?: string;
793
+ /** Checks if camera online. */
794
+ online?: boolean;
795
+ }
796
+ /**
797
+ * Cameras list response.
798
+ */
799
+ export interface CameraListDc {
800
+ /** The retrieved items in the list. */
801
+ items?: CameraDc[];
802
+ /** Check if request success. */
803
+ success?: boolean;
804
+ }
696
805
  /**
697
806
  * Provides catalog resources with users.
698
807
  */
@@ -735,15 +844,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
735
844
  };
736
845
  /**
737
846
  * Describes classification methods.
738
-
847
+
739
848
  none
740
-
849
+
741
850
  naturalBreaks
742
-
851
+
743
852
  equalInterval
744
-
853
+
745
854
  quantile
746
-
855
+
747
856
  unique
748
857
  */
749
858
  export declare enum ClassificationType {
@@ -754,12 +863,12 @@ export declare enum ClassificationType {
754
863
  Unique = "unique"
755
864
  }
756
865
  /**
757
- * Type of attribute.
758
-
866
+ *
867
+
759
868
  decimal
760
-
869
+
761
870
  dateTime
762
-
871
+
763
872
  text
764
873
  */
765
874
  export declare enum ClassifyAttributeType {
@@ -831,11 +940,13 @@ export interface ColumnDescriptionDc {
831
940
  *
832
941
  * Polyline
833
942
  *
834
- * Polygon
943
+ * MultiPolygon
835
944
  *
836
945
  * Multipoint
837
946
  *
838
947
  * H3Index
948
+ *
949
+ * Json
839
950
  */
840
951
  type: AttributeType;
841
952
  /**
@@ -1038,55 +1149,55 @@ export interface ConfigDc {
1038
1149
  }
1039
1150
  /**
1040
1151
  * Types of errors that can occur during layer initialize.
1041
-
1152
+
1042
1153
  Unknown
1043
-
1154
+
1044
1155
  SerializeError
1045
-
1156
+
1046
1157
  InvalidDataService
1047
-
1158
+
1048
1159
  InvalidConfiguration
1049
-
1160
+
1050
1161
  InvalidDataServiceName
1051
-
1162
+
1052
1163
  InvalidTableName
1053
-
1164
+
1054
1165
  InvalidLayerName
1055
-
1166
+
1056
1167
  ResourceNotFound
1057
-
1168
+
1058
1169
  InvalidCondition
1059
-
1170
+
1060
1171
  InvalidAttributes
1061
-
1172
+
1062
1173
  InvalidIdAttribute
1063
-
1174
+
1064
1175
  InvalidGeometryAttribute
1065
-
1176
+
1066
1177
  InvalidGeometryAttributeType
1067
-
1178
+
1068
1179
  InvalidColumnName
1069
-
1180
+
1070
1181
  InvalidIdColumnSettings
1071
-
1182
+
1072
1183
  ColumnNotExistsInTable
1073
-
1184
+
1074
1185
  InvalidStyle
1075
-
1186
+
1076
1187
  InvalidLayerType
1077
-
1188
+
1078
1189
  ColumnLoadingError
1079
-
1190
+
1080
1191
  InvalidAttributeFormat
1081
-
1192
+
1082
1193
  DataSourceNotFound
1083
-
1194
+
1084
1195
  DuplicateColumns
1085
-
1196
+
1086
1197
  DuplicateAttributes
1087
-
1198
+
1088
1199
  TableWithoutColumns
1089
-
1200
+
1090
1201
  InvalidTableReferenceConfiguration
1091
1202
  */
1092
1203
  export declare enum ConfigurationErrorEnum {
@@ -1313,6 +1424,17 @@ export interface DependentResourceDc {
1313
1424
  export declare type DetailedTableInfoDc = TableInfoDc & {
1314
1425
  columns: ColumnDescriptionDc[];
1315
1426
  };
1427
+ /**
1428
+ * Empty square ending.
1429
+ */
1430
+ export declare type DiamondLineEndingDc = LineEndingBaseDc & {
1431
+ type?: LineEndingType;
1432
+ color?: ParameterDcColor;
1433
+ size?: CalculatedParameterDc;
1434
+ strokeWidth?: CalculatedParameterDc;
1435
+ vOffset?: CalculatedParameterDc;
1436
+ hOffset?: CalculatedParameterDc;
1437
+ };
1316
1438
  /**
1317
1439
  * Provides attributes edit info.
1318
1440
  */
@@ -1397,15 +1519,15 @@ export interface ErrorDetailsDc {
1397
1519
  }
1398
1520
  /**
1399
1521
  * Type of the error.
1400
-
1522
+
1401
1523
  ResourceLimitExceeded
1402
-
1524
+
1403
1525
  ResourceNotFound
1404
-
1526
+
1405
1527
  InternalError
1406
-
1528
+
1407
1529
  BadRequest
1408
-
1530
+
1409
1531
  DuplicateContent
1410
1532
  */
1411
1533
  export declare enum ErrorDetailsType {
@@ -1488,11 +1610,13 @@ export interface ExpressionValidationResultDc {
1488
1610
  *
1489
1611
  * Polyline
1490
1612
  *
1491
- * Polygon
1613
+ * MultiPolygon
1492
1614
  *
1493
1615
  * Multipoint
1494
1616
  *
1495
1617
  * H3Index
1618
+ *
1619
+ * Json
1496
1620
  */
1497
1621
  returnType?: AttributeType;
1498
1622
  /** The expression that was validated. */
@@ -1898,9 +2022,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1898
2022
  };
1899
2023
  /**
1900
2024
  * Type of the feature.
1901
-
2025
+
1902
2026
  Unknown
1903
-
2027
+
1904
2028
  GeometricFeature
1905
2029
  */
1906
2030
  export declare enum FeatureType {
@@ -1969,6 +2093,28 @@ export declare type FilledCircleLineEndingDc = LineEndingBaseDc & {
1969
2093
  vOffset?: CalculatedParameterDc;
1970
2094
  hOffset?: CalculatedParameterDc;
1971
2095
  };
2096
+ /**
2097
+ * Simple solid filled square ending.
2098
+ */
2099
+ export declare type FilledDiamondLineEndingDc = LineEndingBaseDc & {
2100
+ type?: LineEndingType;
2101
+ color?: ParameterDcColor;
2102
+ size?: CalculatedParameterDc;
2103
+ vOffset?: CalculatedParameterDc;
2104
+ hOffset?: CalculatedParameterDc;
2105
+ };
2106
+ /**
2107
+ * Round square ending.
2108
+ */
2109
+ export declare type FilledRoundSquareEndingDc = LineEndingBaseDc & {
2110
+ type?: LineEndingType;
2111
+ color?: ParameterDcColor;
2112
+ size?: CalculatedParameterDc;
2113
+ strokeWidth?: CalculatedParameterDc;
2114
+ vOffset?: CalculatedParameterDc;
2115
+ hOffset?: CalculatedParameterDc;
2116
+ cornersRadius?: number;
2117
+ };
1972
2118
  /**
1973
2119
  * Simple solid filled square ending.
1974
2120
  */
@@ -2005,11 +2151,11 @@ export interface FilterDc {
2005
2151
  }
2006
2152
  /**
2007
2153
  * Sets whether font should be styled.
2008
-
2154
+
2009
2155
  normal
2010
-
2156
+
2011
2157
  oblique
2012
-
2158
+
2013
2159
  italic
2014
2160
  */
2015
2161
  export declare enum FontStyle {
@@ -2019,27 +2165,27 @@ export declare enum FontStyle {
2019
2165
  }
2020
2166
  /**
2021
2167
  * Specifies the weight (or boldness) of the font.
2022
-
2168
+
2023
2169
  Thin
2024
-
2170
+
2025
2171
  ExtraLight
2026
-
2172
+
2027
2173
  Light
2028
-
2174
+
2029
2175
  SemiLight
2030
-
2176
+
2031
2177
  Normal
2032
-
2178
+
2033
2179
  Medium
2034
-
2180
+
2035
2181
  DemiBold
2036
-
2182
+
2037
2183
  Bold
2038
-
2184
+
2039
2185
  ExtraBold
2040
-
2186
+
2041
2187
  Black
2042
-
2188
+
2043
2189
  ExtraBlack
2044
2190
  */
2045
2191
  export declare enum FontWeight {
@@ -2134,17 +2280,17 @@ export interface GeometryDc {
2134
2280
  }
2135
2281
  /**
2136
2282
  *
2137
-
2283
+
2138
2284
  unknown
2139
-
2285
+
2140
2286
  point
2141
-
2287
+
2142
2288
  polyline
2143
-
2289
+
2144
2290
  multipolygon
2145
-
2291
+
2146
2292
  envelope
2147
-
2293
+
2148
2294
  multipoint
2149
2295
  */
2150
2296
  export declare enum GeometryType {
@@ -2164,13 +2310,13 @@ export declare type GridElementDc = ModelElementDc & {
2164
2310
  };
2165
2311
  /**
2166
2312
  * Resource group.
2167
-
2313
+
2168
2314
  my
2169
-
2315
+
2170
2316
  role
2171
-
2317
+
2172
2318
  public
2173
-
2319
+
2174
2320
  all
2175
2321
  */
2176
2322
  export declare enum Group {
@@ -2529,6 +2675,21 @@ export interface LayerModelDc {
2529
2675
  /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
2530
2676
  dataFilterId?: string;
2531
2677
  }
2678
+ /**
2679
+ * Layer reference configuration.
2680
+ */
2681
+ export interface LayerReferenceConfigurationDc {
2682
+ /** Name of the layer. */
2683
+ layerName?: string;
2684
+ /** Condition to apply. */
2685
+ condition?: string;
2686
+ /** Attribute name in base layer. */
2687
+ referenceAttribute?: string;
2688
+ /** Attribute name in target layer. */
2689
+ targetAttribute?: string;
2690
+ /** Id of the reference. */
2691
+ referenceId?: string;
2692
+ }
2532
2693
  /**
2533
2694
  * The description of the layer service as a server task data storage.
2534
2695
  */
@@ -2635,13 +2796,13 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2635
2796
  };
2636
2797
  /**
2637
2798
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
2638
-
2799
+
2639
2800
  Flat
2640
-
2801
+
2641
2802
  Square
2642
-
2803
+
2643
2804
  Round
2644
-
2805
+
2645
2806
  Triangle
2646
2807
  */
2647
2808
  export declare enum LineCapStyle {
@@ -2685,29 +2846,29 @@ export interface LineEndingBaseDc {
2685
2846
  }
2686
2847
  /**
2687
2848
  * Type of the line ending.
2688
-
2849
+
2689
2850
  none
2690
-
2851
+
2691
2852
  arrow
2692
-
2853
+
2693
2854
  filledArrow
2694
-
2855
+
2695
2856
  square
2696
-
2857
+
2697
2858
  filledSquare
2698
-
2859
+
2699
2860
  circle
2700
-
2861
+
2701
2862
  filledCircle
2702
-
2863
+
2703
2864
  diamond
2704
-
2865
+
2705
2866
  filledDiamond
2706
-
2867
+
2707
2868
  roundSquare
2708
-
2869
+
2709
2870
  filledRoundSquare
2710
-
2871
+
2711
2872
  svg
2712
2873
  */
2713
2874
  export declare enum LineEndingType {
@@ -2726,11 +2887,11 @@ export declare enum LineEndingType {
2726
2887
  }
2727
2888
  /**
2728
2889
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
2729
-
2890
+
2730
2891
  Miter
2731
-
2892
+
2732
2893
  Bevel
2733
-
2894
+
2734
2895
  Round
2735
2896
  */
2736
2897
  export declare enum LineJoinType {
@@ -2878,15 +3039,15 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
2878
3039
  export declare type ObjectId = object;
2879
3040
  /**
2880
3041
  *
2881
-
3042
+
2882
3043
  Unknown
2883
-
3044
+
2884
3045
  union
2885
-
3046
+
2886
3047
  intersection
2887
-
3048
+
2888
3049
  subtraction
2889
-
3050
+
2890
3051
  symDifference
2891
3052
  */
2892
3053
  export declare enum Operation {
@@ -3268,9 +3429,9 @@ export declare type PatternBrushDc = FillBrushDc & {
3268
3429
  };
3269
3430
  /**
3270
3431
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3271
-
3432
+
3272
3433
  xyz
3273
-
3434
+
3274
3435
  tms
3275
3436
  */
3276
3437
  export declare enum PbfSchema {
@@ -3291,19 +3452,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
3291
3452
  };
3292
3453
  /**
3293
3454
  * User permissions for server security objects (services, projects etc.)
3294
-
3455
+
3295
3456
  none
3296
-
3457
+
3297
3458
  configure
3298
-
3459
+
3299
3460
  write
3300
-
3461
+
3301
3462
  read
3302
-
3463
+
3303
3464
  read,configure
3304
-
3465
+
3305
3466
  read,write
3306
-
3467
+
3307
3468
  read,write,configure
3308
3469
  */
3309
3470
  export declare enum Permissions {
@@ -3361,19 +3522,19 @@ export interface PolicyDc {
3361
3522
  }
3362
3523
  /**
3363
3524
  * Type of the authorization policy.
3364
-
3525
+
3365
3526
  Unknown
3366
-
3527
+
3367
3528
  CreateTable
3368
-
3529
+
3369
3530
  CreateLayer
3370
-
3531
+
3371
3532
  CreateProject
3372
-
3533
+
3373
3534
  MaxFeaturesInOneTable
3374
-
3535
+
3375
3536
  MaxObjectsToExport
3376
-
3537
+
3377
3538
  MaxUploadContentSize
3378
3539
  */
3379
3540
  export declare enum PolicyType {
@@ -3452,8 +3613,8 @@ export declare type PolylineLabelSymbolDc = LabelSymbolDc & {
3452
3613
  export declare type PolylineSymbolDc = SymbolDc & {
3453
3614
  type?: string;
3454
3615
  stroke?: DashedBrushDc | SolidStrokeBrushDc;
3455
- beginning?: ArrowLineEndingDc | CircleLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledSquareLineEndingDc | NoneEndingDc | SquareLineEndingDc;
3456
- ending?: ArrowLineEndingDc | CircleLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledSquareLineEndingDc | NoneEndingDc | SquareLineEndingDc;
3616
+ beginning?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc;
3617
+ ending?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc;
3457
3618
  joinType?: LineJoinType;
3458
3619
  joinRadius?: number;
3459
3620
  miterLimit?: number;
@@ -4015,17 +4176,17 @@ export interface RasterVrtFeatureSourceDc {
4015
4176
  }
4016
4177
  /**
4017
4178
  * Types of table reference.
4018
-
4179
+
4019
4180
  OneToMany
4020
-
4181
+
4021
4182
  OneToOne
4022
-
4183
+
4023
4184
  Intersect
4024
-
4185
+
4025
4186
  RightJoin
4026
-
4187
+
4027
4188
  FullJoin
4028
-
4189
+
4029
4190
  CrossJoin
4030
4191
  */
4031
4192
  export declare enum ReferenceJoinType {
@@ -4161,19 +4322,19 @@ export interface ResourceInfoDc {
4161
4322
  }
4162
4323
  /**
4163
4324
  * The `ResourceType` represents resource manager supports types.
4164
-
4325
+
4165
4326
  Unknown
4166
-
4327
+
4167
4328
  table
4168
-
4329
+
4169
4330
  layer
4170
-
4331
+
4171
4332
  project
4172
-
4333
+
4173
4334
  file
4174
-
4335
+
4175
4336
  feature
4176
-
4337
+
4177
4338
  tag
4178
4339
  */
4179
4340
  export declare enum ResourceType {
@@ -4248,6 +4409,18 @@ export interface RolePermissionDc {
4248
4409
  */
4249
4410
  permissions: Permissions;
4250
4411
  }
4412
+ /**
4413
+ * Round square ending.
4414
+ */
4415
+ export declare type RoundSquareEndingDc = LineEndingBaseDc & {
4416
+ type?: LineEndingType;
4417
+ color?: ParameterDcColor;
4418
+ size?: CalculatedParameterDc;
4419
+ strokeWidth?: CalculatedParameterDc;
4420
+ vOffset?: CalculatedParameterDc;
4421
+ hOffset?: CalculatedParameterDc;
4422
+ cornersRadius?: number;
4423
+ };
4251
4424
  /**
4252
4425
  * Route feature dc.
4253
4426
  */
@@ -4393,21 +4566,21 @@ export interface ServerInfoDc {
4393
4566
  }
4394
4567
  /**
4395
4568
  * Status of the server task.
4396
-
4569
+
4397
4570
  None
4398
-
4571
+
4399
4572
  Scheduled
4400
-
4573
+
4401
4574
  Planning
4402
-
4575
+
4403
4576
  Executing
4404
-
4577
+
4405
4578
  Completed
4406
-
4579
+
4407
4580
  Failed
4408
-
4581
+
4409
4582
  Canceled
4410
-
4583
+
4411
4584
  Timeout
4412
4585
  */
4413
4586
  export declare enum ServerTaskStatus {
@@ -4540,18 +4713,31 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
4540
4713
  * List of the services in service manager.
4541
4714
  */
4542
4715
  export declare type ServiceListDc = PagedListServiceListItemDc;
4716
+ /**
4717
+ * An entry in the service list response.
4718
+ */
4543
4719
  export interface ServiceListItemDc {
4720
+ /** Name of the resource. */
4544
4721
  name?: string;
4722
+ /** Type of the service. */
4545
4723
  type?: string;
4724
+ /** Alias of the resource. */
4546
4725
  alias?: string;
4726
+ /** Description of the resource. */
4547
4727
  description?: string;
4548
4728
  /** System name of the resource owner. */
4549
4729
  owner?: string;
4550
4730
  /** User name of the resource owner (human friendly name). */
4551
4731
  ownerName?: string;
4552
- /** @format date-time */
4732
+ /**
4733
+ * The date and time the resource was created.
4734
+ * @format date-time
4735
+ */
4553
4736
  createdDate?: string;
4554
- /** @format date-time */
4737
+ /**
4738
+ * The date and time the resource was modified the last time.
4739
+ * @format date-time
4740
+ */
4555
4741
  changedDate?: string;
4556
4742
  /**
4557
4743
  * User permissions for server security objects (services, projects etc.)
@@ -4606,12 +4792,6 @@ export interface ServiceListItemDc {
4606
4792
  * multipoint
4607
4793
  */
4608
4794
  geometryType?: GeometryType;
4609
- /**
4610
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4611
- * 0 is returned.
4612
- * @format int32
4613
- */
4614
- objectCount?: number;
4615
4795
  /** Provides data source type info. */
4616
4796
  dataSourceType?: string;
4617
4797
  /** A set of tags. */
@@ -4672,7 +4852,7 @@ export interface SimpleEndingDc {
4672
4852
  }
4673
4853
  /**
4674
4854
  * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
4675
-
4855
+
4676
4856
  If the ending is set to be other then None, the size and color of the ending will be calculated based on the
4677
4857
  stroke width and color of the symbol.
4678
4858
  */
@@ -4726,11 +4906,11 @@ export interface SimplifyInfoItemDc {
4726
4906
  }
4727
4907
  /**
4728
4908
  * Simplify type.
4729
-
4909
+
4730
4910
  Basic
4731
-
4911
+
4732
4912
  PreserveTopology
4733
-
4913
+
4734
4914
  VW
4735
4915
  */
4736
4916
  export declare enum SimplifyType {
@@ -4867,17 +5047,20 @@ export declare type StepResultDc = BaseStepResultDc & {
4867
5047
  };
4868
5048
  /**
4869
5049
  * The `StringSubType` provides information about string attribute subtype.
4870
-
5050
+
4871
5051
  None
4872
-
5052
+
4873
5053
  Image
4874
-
5054
+
4875
5055
  PkkCode
5056
+
5057
+ Attachments
4876
5058
  */
4877
5059
  export declare enum StringSubType {
4878
5060
  None = "None",
4879
5061
  Image = "Image",
4880
- PkkCode = "PkkCode"
5062
+ PkkCode = "PkkCode",
5063
+ Attachments = "Attachments"
4881
5064
  }
4882
5065
  /**
4883
5066
  * Defines the brush for the stroke.
@@ -5095,9 +5278,9 @@ export interface TagInfoDc {
5095
5278
  }
5096
5279
  /**
5097
5280
  * Task owner group.
5098
-
5281
+
5099
5282
  my
5100
-
5283
+
5101
5284
  all
5102
5285
  */
5103
5286
  export declare enum TaskGroup {
@@ -5311,13 +5494,13 @@ export interface TemplateModelDc {
5311
5494
  }
5312
5495
  /**
5313
5496
  * Sets the horizontal alignment of text.
5314
-
5497
+
5315
5498
  right
5316
-
5499
+
5317
5500
  left
5318
-
5501
+
5319
5502
  center
5320
-
5503
+
5321
5504
  justified
5322
5505
  */
5323
5506
  export declare enum TextAlignment {
@@ -5337,11 +5520,11 @@ export interface TextBackgroundDc {
5337
5520
  }
5338
5521
  /**
5339
5522
  * Sets the vertical alignment of text.
5340
-
5523
+
5341
5524
  top
5342
-
5525
+
5343
5526
  bottom
5344
-
5527
+
5345
5528
  middle
5346
5529
  */
5347
5530
  export declare enum TextVerticalAlignment {
@@ -5833,6 +6016,24 @@ export interface ValueTupleStringString {
5833
6016
  item1?: string;
5834
6017
  item2?: string;
5835
6018
  }
6019
+ /**
6020
+ * Values range.
6021
+ */
6022
+ export interface ValuesRange {
6023
+ /** Minimum value. */
6024
+ min?: any;
6025
+ /** Maximum value. */
6026
+ max?: any;
6027
+ }
6028
+ /**
6029
+ * Values range.
6030
+ */
6031
+ export interface ValuesRangeDc {
6032
+ /** Minimum value. */
6033
+ min: any;
6034
+ /** Maximum value. */
6035
+ max: any;
6036
+ }
5836
6037
  export interface Vector2 {
5837
6038
  /** @format double */
5838
6039
  x?: number;
@@ -6025,6 +6226,83 @@ export interface UploadPreviewParams {
6025
6226
  /** User name. */
6026
6227
  username: string;
6027
6228
  }
6229
+ export interface GetCamerasParams {
6230
+ /**
6231
+ * Page objects limit.
6232
+ * @format int32
6233
+ */
6234
+ limit?: number;
6235
+ /**
6236
+ * Objects skip.
6237
+ * @format int32
6238
+ */
6239
+ offset?: number;
6240
+ }
6241
+ export interface GetArchiveFeedParams {
6242
+ /**
6243
+ * Timestamp from which to start the archive playback.
6244
+ * UNIX time (both seconds and milliseconds are supported).
6245
+ * @format date-time
6246
+ */
6247
+ startTime?: string;
6248
+ /**
6249
+ * Timestamp at which to stop the playback.
6250
+ * UNIX time (both seconds and milliseconds are supported).
6251
+ * @format date-time
6252
+ */
6253
+ endTime?: string;
6254
+ /**
6255
+ * Playback speed factor.
6256
+ * Possible values: 1 2 4 8 16 32 64.
6257
+ * @format int32
6258
+ */
6259
+ speed?: number;
6260
+ /** Camera id. */
6261
+ cameraId: string;
6262
+ }
6263
+ export interface GetArchiveTimelineParams {
6264
+ /**
6265
+ * Start of the timeframe UNIX time (seconds).
6266
+ * @format date-time
6267
+ */
6268
+ startTime?: string;
6269
+ /**
6270
+ * End of the timeframe UNIX time (seconds).
6271
+ * @format date-time
6272
+ */
6273
+ endTime?: string;
6274
+ /** Camera id. */
6275
+ cameraId: string;
6276
+ }
6277
+ export interface GetArchiveCalendarParams {
6278
+ /** Start of the timeframe UNIX time (seconds). */
6279
+ startTime?: string;
6280
+ /** End of the timeframe UNIX time (seconds). */
6281
+ endTime?: string;
6282
+ /** Timezone. */
6283
+ tz?: string;
6284
+ /** Camera id. */
6285
+ cameraId: string;
6286
+ }
6287
+ export interface GetArchiveSnapshotParams {
6288
+ /**
6289
+ * Timestamp of the moment at which to take the snapshot.
6290
+ * UNIX timestamp (in seconds).
6291
+ * @format date-time
6292
+ */
6293
+ time?: string;
6294
+ /** Camera id. */
6295
+ cameraId: string;
6296
+ }
6297
+ export interface GetLiveFeedParams {
6298
+ /**
6299
+ * Duration.
6300
+ * @format int64
6301
+ */
6302
+ duration?: number;
6303
+ /** Camera id. */
6304
+ cameraId: string;
6305
+ }
6028
6306
  export interface GetConfigurationsListParams {
6029
6307
  /**
6030
6308
  * Offset.
@@ -6162,6 +6440,10 @@ export interface GetExternalPbfLayersParams {
6162
6440
  /** PBF service url. */
6163
6441
  url?: string;
6164
6442
  }
6443
+ export interface GetExternalArcgisFsLayersParams {
6444
+ /** Arcgis FeatureServer url. */
6445
+ url?: string;
6446
+ }
6165
6447
  export interface GetExternalArcGisLayersParams {
6166
6448
  /** ArcGis map service url. */
6167
6449
  url?: string;
@@ -6182,8 +6464,6 @@ export interface GetLayersListParams {
6182
6464
  * <br>`^` - query any value that begins with query.<br>`@` - query any value that contains query.</remarks>
6183
6465
  */
6184
6466
  filter?: string;
6185
- /** Filter by a collection of layers types. Sends in comma separated way. */
6186
- types?: string[];
6187
6467
  /**
6188
6468
  * Objects limit per response.
6189
6469
  * @format int32
@@ -6206,6 +6486,8 @@ export interface GetLayersListParams {
6206
6486
  * all
6207
6487
  */
6208
6488
  group?: Group;
6489
+ /** Filter by a collection of layers types. Sends in comma separated way. */
6490
+ types?: string[];
6209
6491
  /** Strict list of names of the resources to get. */
6210
6492
  names?: string[];
6211
6493
  /** A list of `ServiceInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
@@ -6636,7 +6918,7 @@ export interface ValidateExpressionParams {
6636
6918
  /** Layer name. */
6637
6919
  layerName: string;
6638
6920
  }
6639
- export interface GetRasterMetaParams5 {
6921
+ export interface GetRasterMetaParams6 {
6640
6922
  /**
6641
6923
  * Min value for build histogram.
6642
6924
  * @format double
@@ -6763,7 +7045,7 @@ export interface GetProjectsListParams {
6763
7045
  tags?: string[];
6764
7046
  }
6765
7047
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6766
- export interface DeleteResourcesParams2 {
7048
+ export interface DeleteResourcesParams3 {
6767
7049
  /** Resource names. */
6768
7050
  names?: string[];
6769
7051
  }
@@ -7007,7 +7289,7 @@ export interface StatisticsDbParams {
7007
7289
  */
7008
7290
  types?: AggregationFunction[];
7009
7291
  }
7010
- export interface ClassifyParams7 {
7292
+ export interface ClassifyParams6 {
7011
7293
  /** Layer name. */
7012
7294
  name?: string;
7013
7295
  /** Attribute name. */
@@ -7140,7 +7422,7 @@ export interface GetTableListParams {
7140
7422
  acl?: string;
7141
7423
  }
7142
7424
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7143
- export interface DeleteResourcesParams10 {
7425
+ export interface DeleteResourcesParams2 {
7144
7426
  /** Resource names. */
7145
7427
  names?: string[];
7146
7428
  }
@@ -7297,7 +7579,7 @@ export interface GetPublicCapabilitiesParams {
7297
7579
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7298
7580
  AcceptFormats?: string[];
7299
7581
  }
7300
- export interface GetCapabilitiesParams3 {
7582
+ export interface GetCapabilitiesParams9 {
7301
7583
  /** Output format of service metadata. */
7302
7584
  Format?: string;
7303
7585
  /** Must be WMS. */