@evergis/api 4.0.22 → 4.0.24

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.
@@ -1,6 +1,3 @@
1
- interface BrandedType<T> {
2
- __type__?: T;
3
- }
4
1
  /**
5
2
  * Access control list for a security object.
6
3
  */
@@ -50,13 +47,6 @@ export interface ActiveWorkerTaskDc {
50
47
  /** SettingsFields. */
51
48
  settingsFields?: WorkerSettingsFieldDc[];
52
49
  }
53
- export declare type AggregatedClusterSymbolDc = SymbolDc & {
54
- type?: string | null;
55
- pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
56
- gridSize?: number;
57
- fixedCenter?: boolean;
58
- aggregations?: Record<string, AggregationFunction>;
59
- };
60
50
  /**
61
51
  * Describes data contract of aggregation result.
62
52
  */
@@ -182,63 +172,6 @@ export declare enum AggregationFunction {
182
172
  DensityIndicators = "DensityIndicators",
183
173
  DividedSum = "DividedSum"
184
174
  }
185
- /**
186
- * Attributes aggregation mapping.
187
- */
188
- export interface AggregationMappingDc {
189
- /** Name of the attribute. */
190
- attributeName: string;
191
- /** Alias of the attribute. */
192
- alias?: string;
193
- /** Description of the attribute. */
194
- description?: string;
195
- /**
196
- *
197
- *
198
- * None
199
- *
200
- * Array
201
- *
202
- * Min
203
- *
204
- * Max
205
- *
206
- * Avg
207
- *
208
- * Sum
209
- *
210
- * Extent
211
- *
212
- * H3
213
- *
214
- * Count
215
- *
216
- * TotalCount
217
- *
218
- * DistinctCount
219
- *
220
- * First
221
- *
222
- * Last
223
- *
224
- * Median
225
- *
226
- * Mod
227
- *
228
- * StdDeviation
229
- *
230
- * SumOfProduct
231
- *
232
- * OnlyValue
233
- *
234
- * WeightedAvg
235
- *
236
- * DensityIndicators
237
- *
238
- * DividedSum
239
- */
240
- aggregationFunction: AggregationFunction;
241
- }
242
175
  /**
243
176
  * S3 data source settings.
244
177
  */
@@ -255,17 +188,50 @@ export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
255
188
  serviceUrl?: string | null;
256
189
  };
257
190
  /**
258
- * Simple not filled arrow.
191
+ * Archive calendar response.
259
192
  */
260
- export declare type ArrowLineEndingDc = LineEndingBaseDc & {
261
- type?: LineEndingType;
262
- color?: ParameterDcColor;
263
- strokeWidth?: ParameterDcDouble;
264
- width?: ParameterDcDouble;
265
- lenght?: ParameterDcDouble;
266
- vOffset?: ParameterDcDouble;
267
- hOffset?: ParameterDcDouble;
268
- };
193
+ export interface ArchiveCalendarDc {
194
+ /** Each value represents the percentage of time covered by archive records within the corresponding day. */
195
+ calendar?: ArchiveCalendarItemDc[];
196
+ /** Check if request success. */
197
+ success?: boolean;
198
+ }
199
+ /**
200
+ * Archive calendar item.
201
+ */
202
+ export interface ArchiveCalendarItemDc {
203
+ /** Date. */
204
+ date?: string;
205
+ /**
206
+ * Daily coverage values.
207
+ * @format int32
208
+ */
209
+ coverage?: number;
210
+ }
211
+ /**
212
+ * Archive timeline request.
213
+ */
214
+ export interface ArchiveTimelineDc {
215
+ /** A list of daily coverage values. */
216
+ timeline?: ArchiveTimelineItemDc[];
217
+ /** Check if request success. */
218
+ success?: boolean;
219
+ }
220
+ /**
221
+ * Represents the percentage of time covered by archive records within the corresponding day.
222
+ */
223
+ export interface ArchiveTimelineItemDc {
224
+ /**
225
+ * Corresponding day.
226
+ * @format date-time
227
+ */
228
+ startTime?: string;
229
+ /**
230
+ * Percentage of time covered by archive record.
231
+ * @format int32
232
+ */
233
+ duration?: number;
234
+ }
269
235
  /**
270
236
  * Configuration of an attribute in a feature layer.
271
237
  */
@@ -674,18 +640,6 @@ export declare enum AuthorizationGrant {
674
640
  AuthorizationCode = "authorization_code",
675
641
  RefreshToken = "refresh_token"
676
642
  }
677
- /**
678
- * The symbol that draws a raster with classification.
679
- */
680
- export declare type AutoClassificationRasterSymbolDc = RasterSymbolDc & {
681
- type?: string | null;
682
- autoClassify?: ParameterDcBoolean;
683
- ignoreEmptyValues?: ParameterDcBoolean;
684
- startIndex?: ParameterDcDouble;
685
- endIndex?: ParameterDcDouble;
686
- startColor?: ParameterDcColor;
687
- endColor?: ParameterDcColor;
688
- };
689
643
  /**
690
644
  * Availiable values data contract.
691
645
  */
@@ -722,13 +676,6 @@ export interface BookmarkDc {
722
676
  /** Map place preview. */
723
677
  image?: string;
724
678
  }
725
- /**
726
- * Provides stroke and fill brush properties.
727
- */
728
- export interface BrushDc {
729
- /** Type of the brush. */
730
- type?: string;
731
- }
732
679
  /**
733
680
  * Get bulk extents data contract.
734
681
  */
@@ -756,6 +703,26 @@ export interface BulkOperationResultDc {
756
703
  /** Sets true. */
757
704
  isSuccess?: boolean;
758
705
  }
706
+ /**
707
+ * Camera item.
708
+ */
709
+ export interface CameraDc {
710
+ /** Id of the camera. */
711
+ id?: string;
712
+ /** Name of the camera. */
713
+ name?: string;
714
+ /** Checks if camera online. */
715
+ online?: boolean;
716
+ }
717
+ /**
718
+ * Cameras list response.
719
+ */
720
+ export interface CameraListDc {
721
+ /** The retrieved items in the list. */
722
+ items?: CameraDc[];
723
+ /** Check if request success. */
724
+ success?: boolean;
725
+ }
759
726
  /**
760
727
  * Resource catalog item.
761
728
  */
@@ -877,37 +844,6 @@ export declare enum CatalogResourceType {
877
844
  TaskPrototype = "TaskPrototype",
878
845
  DataSource = "DataSource"
879
846
  }
880
- /**
881
- * Ending with an empty circle.
882
- */
883
- export declare type CircleLineEndingDc = LineEndingBaseDc & {
884
- type?: LineEndingType;
885
- color?: ParameterDcColor;
886
- size?: ParameterDcDouble;
887
- strokeWidth?: ParameterDcDouble;
888
- vOffset?: ParameterDcDouble;
889
- hOffset?: ParameterDcDouble;
890
- };
891
- /**
892
- * The symbol that draws a feature as a circle.
893
- */
894
- export declare type CirclePointSymbolDc = SymbolDc & {
895
- type?: string | null;
896
- size?: ParameterDcDouble;
897
- fillColor?: ParameterDcColor;
898
- strokeColor?: ParameterDcColor;
899
- strokeWidth?: ParameterDcDouble;
900
- offset?: ParameterDcDouble[] | null;
901
- angle?: ParameterDcDouble;
902
- };
903
- /**
904
- * The symbol that draws a raster with classification.
905
- */
906
- export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
907
- type?: string | null;
908
- rasterClassifications?: RasterClassificationCfg[] | null;
909
- defaultColor?: ParameterDcColor;
910
- };
911
847
  /**
912
848
  *
913
849
 
@@ -963,23 +899,6 @@ export interface ClassifyResultObject {
963
899
  /** Count. */
964
900
  count?: any;
965
901
  }
966
- export declare type ClusterSymbolDc = SymbolDc & {
967
- type?: string | null;
968
- labelSymbol?: PointLabelSymbolDc;
969
- customClusterSymbol?: SvgPointSymbolDc;
970
- singleObjectSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
971
- fillColor?: ParameterDcColor;
972
- strokeColor?: ParameterDcColor;
973
- strokeWidth?: ParameterDcDouble;
974
- maxClusterSize?: number;
975
- minClusterSize?: number;
976
- maxObjectCount?: number;
977
- gridSize?: number;
978
- cacheTimeout?: number;
979
- idAttributeAlias?: string | null;
980
- countAttributeAlias?: string | null;
981
- selectionObjectsLimit?: number;
982
- };
983
902
  /**
984
903
  * Description of a table column.
985
904
  */
@@ -1037,31 +956,6 @@ export interface ColumnDescriptionDc {
1037
956
  /** If sets true, index will be configured. */
1038
957
  hasIndex?: boolean;
1039
958
  }
1040
- /**
1041
- * Combined polyline symbol.
1042
- */
1043
- export declare type CombinedPolylineSymbolDc = SymbolDc & {
1044
- type?: string | null;
1045
- values?: SimplePolylineSymbolDc[] | null;
1046
- };
1047
- /**
1048
- * Symbol combine multiple svg symbols.
1049
- */
1050
- export declare type CombinedSvgSymbolDc = SymbolDc & {
1051
- type?: string | null;
1052
- id?: string | null;
1053
- values?: SvgSymbolDc[] | null;
1054
- size?: ParameterDcDouble;
1055
- angle?: ParameterDcDouble;
1056
- offset?: ParameterDcDouble[] | null;
1057
- };
1058
- /**
1059
- * Composite symbol.
1060
- */
1061
- export declare type CompositeSymbolDc = SymbolDc & {
1062
- type?: string | null;
1063
- childSymbols?: (AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[] | null;
1064
- };
1065
959
  /**
1066
960
  * Get configuration information.
1067
961
  */
@@ -1355,14 +1249,6 @@ export interface CreatedTaskResultDto {
1355
1249
  /** Success flag. */
1356
1250
  success?: boolean;
1357
1251
  }
1358
- /**
1359
- * Describes stroked dashed brush.
1360
- */
1361
- export declare type DashedBrushDc = StrokeBrushDc & {
1362
- type: string;
1363
- intervals?: ParameterDcDoubleArray;
1364
- phase?: number;
1365
- };
1366
1252
  /**
1367
1253
  * Data source data contract.
1368
1254
  */
@@ -1478,17 +1364,6 @@ export interface DependentResourceDc {
1478
1364
  export declare type DetailedTableInfoDc = TableInfoDc & {
1479
1365
  columns?: ColumnDescriptionDc[] | null;
1480
1366
  };
1481
- /**
1482
- * Empty square ending.
1483
- */
1484
- export declare type DiamondLineEndingDc = LineEndingBaseDc & {
1485
- type?: LineEndingType;
1486
- color?: ParameterDcColor;
1487
- size?: ParameterDcDouble;
1488
- strokeWidth?: ParameterDcDouble;
1489
- vOffset?: ParameterDcDouble;
1490
- hOffset?: ParameterDcDouble;
1491
- };
1492
1367
  /**
1493
1368
  * Provides attributes edit info.
1494
1369
  */
@@ -1861,7 +1736,7 @@ export interface FailedServiceInfoDc {
1861
1736
  /** The category of the service. */
1862
1737
  categories?: string[];
1863
1738
  /** Configuration of the service. */
1864
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
1739
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
1865
1740
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1866
1741
  name: string;
1867
1742
  /** Resource alias. */
@@ -1930,8 +1805,6 @@ export interface FeatureDc {
1930
1805
  export interface FeatureLayerServiceInfoDc {
1931
1806
  /** Information about the layer attributes and their configuration. */
1932
1807
  layerDefinition: LayerDefinitionDc;
1933
- /** Feature layer rendering style. */
1934
- style?: StyleDc;
1935
1808
  /** Provides data source type. */
1936
1809
  dataSourceType?: string;
1937
1810
  /** Copyright text. */
@@ -1984,7 +1857,7 @@ export interface FeatureLayerServiceInfoDc {
1984
1857
  /** The category of the service. */
1985
1858
  categories?: string[];
1986
1859
  /** Configuration of the service. */
1987
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
1860
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
1988
1861
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
1989
1862
  name: string;
1990
1863
  /** Resource alias. */
@@ -2047,65 +1920,6 @@ export interface FileUploadResponse {
2047
1920
  /** Url to file. */
2048
1921
  url?: string;
2049
1922
  }
2050
- /**
2051
- * Defines the brush for the fill.
2052
- */
2053
- export declare type FillBrushDc = BrushDc & {
2054
- color?: ParameterDcColor;
2055
- };
2056
- /**
2057
- * Line ending with 3-point filled arrow.
2058
- */
2059
- export declare type FilledArrowLineEndingDc = LineEndingBaseDc & {
2060
- type?: LineEndingType;
2061
- color?: ParameterDcColor;
2062
- width?: ParameterDcDouble;
2063
- length?: ParameterDcDouble;
2064
- vOffset?: ParameterDcDouble;
2065
- hOffset?: ParameterDcDouble;
2066
- };
2067
- /**
2068
- * Ending with simple solid filled circle.
2069
- */
2070
- export declare type FilledCircleLineEndingDc = LineEndingBaseDc & {
2071
- type?: LineEndingType;
2072
- color?: ParameterDcColor;
2073
- size?: ParameterDcDouble;
2074
- vOffset?: ParameterDcDouble;
2075
- hOffset?: ParameterDcDouble;
2076
- };
2077
- /**
2078
- * Simple solid filled square ending.
2079
- */
2080
- export declare type FilledDiamondLineEndingDc = LineEndingBaseDc & {
2081
- type?: LineEndingType;
2082
- color?: ParameterDcColor;
2083
- size?: ParameterDcDouble;
2084
- vOffset?: ParameterDcDouble;
2085
- hOffset?: ParameterDcDouble;
2086
- };
2087
- /**
2088
- * Round square ending.
2089
- */
2090
- export declare type FilledRoundSquareEndingDc = LineEndingBaseDc & {
2091
- type?: LineEndingType;
2092
- color?: ParameterDcColor;
2093
- size?: ParameterDcDouble;
2094
- strokeWidth?: ParameterDcDouble;
2095
- vOffset?: ParameterDcDouble;
2096
- hOffset?: ParameterDcDouble;
2097
- cornersRadius?: number;
2098
- };
2099
- /**
2100
- * Simple solid filled square ending.
2101
- */
2102
- export declare type FilledSquareLineEndingDc = LineEndingBaseDc & {
2103
- type?: LineEndingType;
2104
- color?: ParameterDcColor;
2105
- size?: ParameterDcDouble;
2106
- vOffset?: ParameterDcDouble;
2107
- hOffset?: ParameterDcDouble;
2108
- };
2109
1923
  /**
2110
1924
  * Provides filter data contract.
2111
1925
  */
@@ -2126,65 +1940,6 @@ export interface FilterResponseDc {
2126
1940
  /** Id of the filter. */
2127
1941
  id?: string;
2128
1942
  }
2129
- /**
2130
- * Sets whether font should be styled.
2131
-
2132
- normal
2133
-
2134
- oblique
2135
-
2136
- italic
2137
- */
2138
- export declare enum FontStyle {
2139
- Normal = "normal",
2140
- Oblique = "oblique",
2141
- Italic = "italic"
2142
- }
2143
- /**
2144
- * Specifies the weight (or boldness) of the font.
2145
-
2146
- Thin
2147
-
2148
- ExtraLight
2149
-
2150
- Light
2151
-
2152
- SemiLight
2153
-
2154
- Normal
2155
-
2156
- Medium
2157
-
2158
- DemiBold
2159
-
2160
- Bold
2161
-
2162
- ExtraBold
2163
-
2164
- Black
2165
-
2166
- ExtraBlack
2167
- */
2168
- export declare enum FontWeight {
2169
- Thin = "Thin",
2170
- ExtraLight = "ExtraLight",
2171
- Light = "Light",
2172
- SemiLight = "SemiLight",
2173
- Normal = "Normal",
2174
- Medium = "Medium",
2175
- DemiBold = "DemiBold",
2176
- Bold = "Bold",
2177
- ExtraBold = "ExtraBold",
2178
- Black = "Black",
2179
- ExtraBlack = "ExtraBlack"
2180
- }
2181
- /**
2182
- * Information about function argument.
2183
- */
2184
- export interface FunctionArgumentInfoDc {
2185
- /** Name. */
2186
- name?: string;
2187
- }
2188
1943
  /**
2189
1944
  * Information about function.
2190
1945
  */
@@ -2193,8 +1948,6 @@ export interface FunctionInfoDc {
2193
1948
  name?: string;
2194
1949
  /** Description. */
2195
1950
  description?: string;
2196
- /** List of function arguments. */
2197
- arguments?: FunctionArgumentInfoDc[];
2198
1951
  }
2199
1952
  /**
2200
1953
  * Geocode result.
@@ -2513,65 +2266,13 @@ export declare enum Group {
2513
2266
  Public = "public",
2514
2267
  All = "all"
2515
2268
  }
2516
- /**
2517
- * <inheritdoc cref="T:SPCore.Connectors.Connectors.Base.Models.Style.Adv.H3GridSymbolDc" />
2518
- */
2519
- export declare type H3GridSymbolDc = SymbolDc & {
2520
- type?: string | null;
2521
- cellSize?: ParameterDcDouble;
2522
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
2523
- fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
2524
- aggregations?: AggregationMappingDc[] | null;
2525
- };
2526
- /**
2527
- * Defines the brush for the hatch fill.
2528
- */
2529
- export declare type HatchBrushDc = FillBrushDc & {
2530
- type?: string | null;
2531
- hatchColor?: ParameterDcColor;
2532
- hatchAngle?: ParameterDcDouble;
2533
- hatchWidth?: number;
2534
- scalingFactor: number[];
2535
- };
2536
- /**
2537
- * <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.HexGridSymbol" />
2538
- */
2539
- export declare type HexGridSymbolDc = SymbolDc & {
2540
- type?: string | null;
2541
- gridHeight?: number;
2542
- gridWidth?: number;
2543
- hexagonOrientation?: number;
2544
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
2545
- fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
2546
- aggregations?: Record<string, AggregationFunction>;
2547
- };
2548
- /**
2549
- * A single image point symbol with an outer stroke.
2550
- */
2551
- export declare type ImagePointSymbolDc = SymbolDc & {
2552
- type?: string | null;
2553
- image?: string | null;
2554
- width?: ParameterDcDouble;
2555
- height?: ParameterDcDouble;
2556
- offset?: ParameterDcDouble[] | null;
2557
- angle?: ParameterDcDouble;
2558
- };
2559
- /**
2560
- * Image polygon symbol.
2561
- */
2562
- export declare type ImagePolygonSymbolDc = SymbolDc & {
2563
- type?: string | null;
2564
- image?: string | null;
2565
- fillColor?: ParameterDcColor;
2566
- strokeColor?: ParameterDcColor;
2567
- strokeWidth?: ParameterDcDouble;
2568
- };
2269
+ export declare type IAsyncEnumerableLivePreviewDc = object;
2569
2270
  /**
2570
2271
  * Data schema of a file for import.
2571
2272
  */
2572
- export interface ImportDataSchema {
2273
+ export interface ImportDataSchemaDc {
2573
2274
  /** List of layers in the data-set. */
2574
- layers: ImportLayerDataSchema[];
2275
+ layers: ImportLayerDataSchemaDc[];
2575
2276
  /** Importing file type. */
2576
2277
  type: string;
2577
2278
  }
@@ -2589,7 +2290,7 @@ export interface ImportFileFeaturesCountDc {
2589
2290
  /**
2590
2291
  * Schema of a layer in an imported file.
2591
2292
  */
2592
- export interface ImportLayerDataSchema {
2293
+ export interface ImportLayerDataSchemaDc {
2593
2294
  /** Name of the layer. */
2594
2295
  name: string;
2595
2296
  /** Storage type. */
@@ -2606,39 +2307,11 @@ export interface ImportLayerDataSchema {
2606
2307
  /** Information about the layer attributes and their configuration. */
2607
2308
  layerDefinition?: LayerDefinitionDc;
2608
2309
  /** Schema of a inner layers. */
2609
- children?: ImportLayerDataSchema[];
2310
+ children?: ImportLayerDataSchemaDc[];
2610
2311
  }
2611
- /**
2612
- * Isolines label symbol.
2613
- */
2614
- export declare type IsolinesLabelSymbolDc = LabelSymbolDc & {
2615
- type?: string | null;
2616
- placement?: ParameterDcString;
2617
- };
2618
2312
  export interface JsonPatchDocumentExtendedProjectInfoDcV2 {
2619
2313
  operations?: OperationExtendedProjectInfoDcV2[];
2620
2314
  }
2621
- /**
2622
- * Base class for labels.
2623
- */
2624
- export declare type LabelSymbolDc = SymbolDc & {
2625
- fieldFormat?: string | null;
2626
- fontFamily?: string | null;
2627
- fontStyle?: FontStyle;
2628
- fontWeight?: FontWeight;
2629
- fontColor?: ParameterDcColor;
2630
- fontSize?: ParameterDcDouble;
2631
- horizontalAlignment?: TextAlignment;
2632
- verticalAlignment?: TextVerticalAlignment;
2633
- haloColor?: ParameterDcColor;
2634
- haloWidth?: number;
2635
- offset?: ParameterDcDouble[] | null;
2636
- textBackground?: TextBackgroundDc;
2637
- };
2638
- export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2639
- type?: string | null;
2640
- symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
2641
- };
2642
2315
  /**
2643
2316
  * Information about the layer attributes and their configuration.
2644
2317
  */
@@ -2706,117 +2379,11 @@ export interface LayerUpdateInfoDc {
2706
2379
  /** Array of deleted ids. */
2707
2380
  deletedIds?: ObjectId[];
2708
2381
  }
2709
- /**
2710
- * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
2711
-
2712
- Flat
2713
-
2714
- Square
2715
-
2716
- Round
2717
-
2718
- Triangle
2719
- */
2720
- export declare enum LineCapStyle {
2721
- Flat = "Flat",
2722
- Square = "Square",
2723
- Round = "Round",
2724
- Triangle = "Triangle"
2725
- }
2726
- /**
2727
- * Base class of line ending.
2728
- */
2729
- export interface LineEndingBaseDc {
2730
- /**
2731
- * Type of the line ending.
2732
- *
2733
- * none
2734
- *
2735
- * arrow
2736
- *
2737
- * filledArrow
2738
- *
2739
- * square
2740
- *
2741
- * filledSquare
2742
- *
2743
- * circle
2744
- *
2745
- * filledCircle
2746
- *
2747
- * diamond
2748
- *
2749
- * filledDiamond
2750
- *
2751
- * roundSquare
2752
- *
2753
- * filledRoundSquare
2754
- *
2755
- * svg
2756
- */
2757
- type?: LineEndingType;
2758
- }
2759
- /**
2760
- * Type of the line ending.
2761
-
2762
- none
2763
-
2764
- arrow
2765
-
2766
- filledArrow
2767
-
2768
- square
2769
-
2770
- filledSquare
2771
-
2772
- circle
2773
-
2774
- filledCircle
2775
-
2776
- diamond
2777
-
2778
- filledDiamond
2779
-
2780
- roundSquare
2781
-
2782
- filledRoundSquare
2783
-
2784
- svg
2785
- */
2786
- export declare enum LineEndingType {
2787
- None = "none",
2788
- Arrow = "arrow",
2789
- FilledArrow = "filledArrow",
2790
- Square = "square",
2791
- FilledSquare = "filledSquare",
2792
- Circle = "circle",
2793
- FilledCircle = "filledCircle",
2794
- Diamond = "diamond",
2795
- FilledDiamond = "filledDiamond",
2796
- RoundSquare = "roundSquare",
2797
- FilledRoundSquare = "filledRoundSquare",
2798
- Svg = "svg"
2799
- }
2800
- /**
2801
- * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
2802
-
2803
- Miter
2804
-
2805
- Bevel
2806
-
2807
- Round
2808
- */
2809
- export declare enum LineJoinType {
2810
- Miter = "Miter",
2811
- Bevel = "Bevel",
2812
- Round = "Round"
2813
- }
2814
2382
  /**
2815
2383
  * Linear service configuration Dc.
2816
2384
  */
2817
2385
  export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
2818
2386
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
2819
- style?: StyleDc;
2820
2387
  condition?: string | null;
2821
2388
  featuresLimit?: number;
2822
2389
  extentOffset?: number;
@@ -2914,31 +2481,6 @@ export interface MapTableInfoDc {
2914
2481
  /** Access control list for a security object. */
2915
2482
  acl?: AccessControlListDc;
2916
2483
  }
2917
- /**
2918
- * The point symbol drawing as image with the mask.
2919
- */
2920
- export declare type MaskedImagePointSymbolDc = SymbolDc & {
2921
- type?: string | null;
2922
- width?: ParameterDcDouble;
2923
- height?: ParameterDcDouble;
2924
- offset?: ParameterDcDouble[] | null;
2925
- image?: string | null;
2926
- imageMask?: string | null;
2927
- maskedColor?: ParameterDcColor;
2928
- angle?: ParameterDcDouble;
2929
- };
2930
- /**
2931
- * Polygon symbol drawing as image with the mask.
2932
- */
2933
- export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
2934
- type?: string | null;
2935
- fillColor?: ParameterDcColor;
2936
- strokeColor?: ParameterDcColor;
2937
- strokeWidth?: ParameterDcDouble;
2938
- image?: string | null;
2939
- imageMask?: string | null;
2940
- maskedColor?: ParameterDcColor;
2941
- };
2942
2484
  /**
2943
2485
  * Configuration of a table for feature layer.
2944
2486
  */
@@ -2947,15 +2489,6 @@ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc &
2947
2489
  eql?: string | null;
2948
2490
  eqlParameters?: Record<string, any>;
2949
2491
  };
2950
- /**
2951
- * 3D model symbol.
2952
- */
2953
- export declare type Model3DSymbolDc = SymbolDc & {
2954
- type?: string | null;
2955
- urlModel?: ParameterDcString;
2956
- size?: ParameterDcDouble;
2957
- angle?: ParameterDcDouble;
2958
- };
2959
2492
  /**
2960
2493
  * MosRu data source.
2961
2494
  */
@@ -2987,13 +2520,6 @@ export declare type MultiPointDc = GeometryDc & {
2987
2520
  coordinates: PositionDc[];
2988
2521
  type?: GeometryType;
2989
2522
  };
2990
- /**
2991
- * A multipoint symbol.
2992
- */
2993
- export declare type MultipointSymbolDc = SymbolDc & {
2994
- type?: string | null;
2995
- pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
2996
- };
2997
2523
  /**
2998
2524
  * Information about a namespace .
2999
2525
  */
@@ -3018,12 +2544,6 @@ export interface NamespaceInfoDc {
3018
2544
  export declare type NetCdfMetaDc = RasterMetaDc & {
3019
2545
  dimExtraValues?: Record<string, string[] | null>;
3020
2546
  };
3021
- /**
3022
- * Define no ending data contract.
3023
- */
3024
- export declare type NoneEndingDc = LineEndingBaseDc & {
3025
- type?: LineEndingType;
3026
- };
3027
2547
  export declare type ObjectId = object;
3028
2548
  export interface Operation {
3029
2549
  value?: any;
@@ -3079,7 +2599,7 @@ export interface PagedListDataSourceInfoDc {
3079
2599
  offset?: number;
3080
2600
  /** @format int32 */
3081
2601
  limit?: number;
3082
- items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
2602
+ items?: (ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
3083
2603
  }
3084
2604
  export interface PagedListExtendedUserInfoDc {
3085
2605
  /** @format int64 */
@@ -3190,50 +2710,10 @@ export interface PagedTagsListDc {
3190
2710
  /** @format int64 */
3191
2711
  totalCount?: number;
3192
2712
  /** @format int32 */
3193
- offset?: number;
3194
- /** @format int32 */
3195
- limit?: number;
3196
- items?: string[];
3197
- }
3198
- /**
3199
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
3200
- as an object with a "type" parameter specified.
3201
- */
3202
- export interface ParameterDcBoolean {
3203
- /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3204
- type?: string;
3205
- }
3206
- /**
3207
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
3208
- as an object with a "type" parameter specified.
3209
- */
3210
- export interface ParameterDcColor extends BrandedType<'ParameterDcColor'> {
3211
- /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3212
- type?: string;
3213
- }
3214
- /**
3215
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
3216
- as an object with a "type" parameter specified.
3217
- */
3218
- export interface ParameterDcDouble extends BrandedType<'ParameterDcDouble'> {
3219
- /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3220
- type?: string;
3221
- }
3222
- /**
3223
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
3224
- as an object with a "type" parameter specified.
3225
- */
3226
- export interface ParameterDcDoubleArray {
3227
- /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3228
- type?: string;
3229
- }
3230
- /**
3231
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
3232
- as an object with a "type" parameter specified.
3233
- */
3234
- export interface ParameterDcString {
3235
- /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3236
- type?: string;
2713
+ offset?: number;
2714
+ /** @format int32 */
2715
+ limit?: number;
2716
+ items?: string[];
3237
2717
  }
3238
2718
  /**
3239
2719
  * Patch resource request.
@@ -3248,16 +2728,6 @@ export interface PatchResourceDc {
3248
2728
  /** Resource icon. */
3249
2729
  icon?: string;
3250
2730
  }
3251
- /**
3252
- * Provides image pattern brush properties.
3253
- */
3254
- export declare type PatternBrushDc = FillBrushDc & {
3255
- type: string;
3256
- pattern: string;
3257
- patternColor?: ParameterDcColor;
3258
- angle?: number;
3259
- scalingFactor?: number[] | null;
3260
- };
3261
2731
  /**
3262
2732
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3263
2733
 
@@ -3314,12 +2784,6 @@ export declare type PointDc = GeometryDc & {
3314
2784
  coordinates: PositionDc;
3315
2785
  type?: GeometryType;
3316
2786
  };
3317
- /**
3318
- * Label of a point object.
3319
- */
3320
- export declare type PointLabelSymbolDc = LabelSymbolDc & {
3321
- type?: string | null;
3322
- };
3323
2787
  export interface PolicyDc {
3324
2788
  /**
3325
2789
  * Type of the authorization policy.
@@ -3374,13 +2838,6 @@ export declare enum PolicyType {
3374
2838
  MaxUploadContentSize = "MaxUploadContentSize",
3375
2839
  MaxEqlQueryParametersValues = "MaxEqlQueryParametersValues"
3376
2840
  }
3377
- /**
3378
- * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
3379
- */
3380
- export declare type PolygonCenterLabelSymbolDc = LabelSymbolDc & {
3381
- fixCenter?: boolean;
3382
- type?: string | null;
3383
- };
3384
2841
  /**
3385
2842
  * Polygon geometry object definition.
3386
2843
  */
@@ -3388,31 +2845,6 @@ export declare type PolygonDc = GeometryDc & {
3388
2845
  type?: GeometryType;
3389
2846
  coordinates: PositionDc[][];
3390
2847
  };
3391
- /**
3392
- * <inheritdoc cref="T:SPCore.Kernel.Rendering.Symbols.Adv.PolygonGridSymbol" />
3393
- */
3394
- export declare type PolygonGridSymbolDc = SymbolDc & {
3395
- type?: string | null;
3396
- gridSize?: number;
3397
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
3398
- fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
3399
- aggregations?: Record<string, AggregationFunction>;
3400
- };
3401
- /**
3402
- * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
3403
- */
3404
- export declare type PolygonLabelSymbolDc = LabelSymbolDc & {
3405
- type?: string | null;
3406
- };
3407
- /**
3408
- * A simple polygon symbol.
3409
- */
3410
- export declare type PolygonSymbolDc = SymbolDc & {
3411
- type?: string | null;
3412
- height?: ParameterDcDouble;
3413
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
3414
- fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc | null;
3415
- };
3416
2848
  /**
3417
2849
  * Polyline geometry object definition.
3418
2850
  */
@@ -3420,35 +2852,6 @@ export declare type PolylineDc = GeometryDc & {
3420
2852
  type?: GeometryType;
3421
2853
  coordinates: PositionDc[][];
3422
2854
  };
3423
- /**
3424
- * Label for polyline objects. It is drawn repeatedly along a line.
3425
- */
3426
- export declare type PolylineLabelSymbolDc = LabelSymbolDc & {
3427
- type?: string | null;
3428
- labelRepeatDistance?: number;
3429
- criticalAngle?: number;
3430
- invertLabelDirection?: boolean;
3431
- offsetFromSymbol?: boolean;
3432
- offset?: number[] | null;
3433
- maxWidth?: number;
3434
- };
3435
- /**
3436
- * The symbol that draws a feature as a square.
3437
- */
3438
- export declare type PolylineSymbolDc = SymbolDc & {
3439
- type?: string | null;
3440
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
3441
- beginning?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc | null;
3442
- ending?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc | null;
3443
- joinType?: LineJoinType;
3444
- joinRadius?: number;
3445
- miterLimit?: number;
3446
- offset?: ParameterDcDouble;
3447
- lineCap?: LineCapStyle;
3448
- outlined?: boolean;
3449
- outlinedOnSingleSide?: boolean;
3450
- quadrantSegments?: number;
3451
- };
3452
2855
  /**
3453
2856
  * The position at the map in [X, Y] format.
3454
2857
  */
@@ -3476,24 +2879,11 @@ export declare type PostgresDataSourceInfoDc = DataSourceInfoDc & {
3476
2879
  database?: string | null;
3477
2880
  schema?: string | null;
3478
2881
  };
3479
- /**
3480
- * Configuration of a postgres feature layer service.
3481
- */
3482
- export declare type PostgresLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
3483
- attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
3484
- style?: StyleDc;
3485
- condition?: string | null;
3486
- featuresLimit?: number;
3487
- extentOffset?: number;
3488
- simplify?: SimplifyInfoDc;
3489
- clientStyle?: any;
3490
- };
3491
2882
  /**
3492
2883
  * Configuration of a postgres tile catalog service.
3493
2884
  */
3494
2885
  export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
3495
2886
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
3496
- style?: StyleDc;
3497
2887
  clientStyle?: any;
3498
2888
  condition?: string | null;
3499
2889
  featuresLimit?: number;
@@ -3581,10 +2971,6 @@ export declare type ProjectInfoDc = ResourceInfoDc & {
3581
2971
  layersCount?: number;
3582
2972
  zoom?: number | null;
3583
2973
  };
3584
- /**
3585
- * List of the projects in projects manager service.
3586
- */
3587
- export declare type ProjectsListDc = PagedListProjectInfoDc & object;
3588
2974
  /**
3589
2975
  * Data contract for inner layer Legend.
3590
2976
  */
@@ -3623,11 +3009,6 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3623
3009
  minResolution?: number;
3624
3010
  maxResolution?: number;
3625
3011
  layers?: string[] | null;
3626
- styles?: Record<string, {
3627
- point?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3628
- polyline?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3629
- polygon?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3630
- }>;
3631
3012
  };
3632
3013
  /**
3633
3014
  * Service info for a Proxy service.
@@ -3689,7 +3070,7 @@ export interface ProxyServiceInfoDc {
3689
3070
  /** The category of the service. */
3690
3071
  categories?: string[];
3691
3072
  /** Configuration of the service. */
3692
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3073
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3693
3074
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
3694
3075
  name: string;
3695
3076
  /** Resource alias. */
@@ -3784,8 +3165,22 @@ export interface PythonTaskMethodConfiguration {
3784
3165
  */
3785
3166
  export declare type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
3786
3167
  fileName?: string | null;
3787
- methodName?: string | null;
3168
+ method?: string | null;
3788
3169
  };
3170
+ /**
3171
+ * Stream quality.
3172
+
3173
+ Low
3174
+
3175
+ Medium
3176
+
3177
+ High
3178
+ */
3179
+ export declare enum Quality {
3180
+ Low = "Low",
3181
+ Medium = "Medium",
3182
+ High = "High"
3183
+ }
3789
3184
  /**
3790
3185
  * Query geometry data contract.
3791
3186
  */
@@ -3819,7 +3214,6 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
3819
3214
  srId?: number | null;
3820
3215
  geometryType?: AttributeType;
3821
3216
  attributesConfiguration?: EqlAttributesConfigurationDc;
3822
- style?: StyleDc;
3823
3217
  clientStyle?: any;
3824
3218
  condition?: string | null;
3825
3219
  featuresLimit?: number;
@@ -3903,8 +3297,6 @@ export interface QueryLayerServiceEqlParameterQueryValueConfigurationDc {
3903
3297
  export interface QueryLayerServiceInfoDc {
3904
3298
  /** Information about the layer attributes and their configuration. */
3905
3299
  layerDefinition: LayerDefinitionDc;
3906
- /** Feature layer rendering style. */
3907
- style?: StyleDc;
3908
3300
  /** Provides data source type. */
3909
3301
  dataSourceType?: string;
3910
3302
  /** Copyright text. */
@@ -3957,7 +3349,7 @@ export interface QueryLayerServiceInfoDc {
3957
3349
  /** The category of the service. */
3958
3350
  categories?: string[];
3959
3351
  /** Configuration of the service. */
3960
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3352
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3961
3353
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
3962
3354
  name: string;
3963
3355
  /** Resource alias. */
@@ -4018,26 +3410,6 @@ export interface QueryTokenDc {
4018
3410
  revokeDt?: string;
4019
3411
  isActive?: boolean;
4020
3412
  }
4021
- /**
4022
- * Raster band cfg.
4023
- */
4024
- export interface RasterBandCfg {
4025
- /**
4026
- * Gets or sets band id.
4027
- * @format int32
4028
- */
4029
- bandId?: number;
4030
- /**
4031
- * Gets or sets band min value.
4032
- * @format float
4033
- */
4034
- bandMin?: number;
4035
- /**
4036
- * Gets or sets band max value.
4037
- * @format float
4038
- */
4039
- bandMax?: number;
4040
- }
4041
3413
  /**
4042
3414
  * RasterBandMetaDc.
4043
3415
  */
@@ -4089,23 +3461,6 @@ export interface RasterBandMetaDc {
4089
3461
  /** Data histogram. */
4090
3462
  dataHistogram?: Record<string, number>;
4091
3463
  }
4092
- /**
4093
- * Raster classification cfg.
4094
- */
4095
- export interface RasterClassificationCfg {
4096
- /**
4097
- * Min value.
4098
- * @format double
4099
- */
4100
- minValue?: number;
4101
- /**
4102
- * Max value.
4103
- * @format double
4104
- */
4105
- maxValue?: number;
4106
- /** Color. */
4107
- color?: string;
4108
- }
4109
3464
  /**
4110
3465
  * RasterMetaDc.
4111
3466
  */
@@ -4142,26 +3497,6 @@ export interface RasterMetaDc {
4142
3497
  /** Bands. */
4143
3498
  bands?: RasterBandMetaDc[];
4144
3499
  }
4145
- /**
4146
- * Raster render cfg.
4147
- */
4148
- export interface RasterRenderCfg {
4149
- /**
4150
- * No data value.
4151
- * @format double
4152
- */
4153
- noDataValue?: number;
4154
- }
4155
- /**
4156
- * The symbol that draws a raster.
4157
- */
4158
- export declare type RasterSymbolDc = SymbolDc & {
4159
- type?: string | null;
4160
- opacity?: ParameterDcDouble;
4161
- rasterRenderConfiguration?: RasterRenderCfg;
4162
- band?: RasterBandCfg;
4163
- bandA?: RasterBandCfg;
4164
- };
4165
3500
  /**
4166
3501
  * Refresh token request data contract.
4167
3502
  */
@@ -4314,7 +3649,7 @@ export interface RemoteTileServiceInfoDc {
4314
3649
  /** The category of the service. */
4315
3650
  categories?: string[];
4316
3651
  /** Configuration of the service. */
4317
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3652
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4318
3653
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
4319
3654
  name: string;
4320
3655
  /** Resource alias. */
@@ -4453,8 +3788,6 @@ RemoteTileService
4453
3788
 
4454
3789
  ProxyService
4455
3790
 
4456
- PostgresLayerService
4457
-
4458
3791
  QueryLayerService
4459
3792
 
4460
3793
  TileCatalogTable
@@ -4462,7 +3795,6 @@ TileCatalogTable
4462
3795
  export declare enum ResourceSubTypeFilter {
4463
3796
  RemoteTileService = "RemoteTileService",
4464
3797
  ProxyService = "ProxyService",
4465
- PostgresLayerService = "PostgresLayerService",
4466
3798
  QueryLayerService = "QueryLayerService",
4467
3799
  TileCatalogTable = "TileCatalogTable"
4468
3800
  }
@@ -4543,15 +3875,6 @@ export declare enum ResponseType {
4543
3875
  Code = "code",
4544
3876
  Token = "token"
4545
3877
  }
4546
- /**
4547
- * The symbol that draws a rgb raster.
4548
- */
4549
- export declare type RgbRasterSymbolDc = RasterSymbolDc & {
4550
- type?: string | null;
4551
- bandR?: RasterBandCfg;
4552
- bandG?: RasterBandCfg;
4553
- bandB?: RasterBandCfg;
4554
- };
4555
3878
  /**
4556
3879
  * Short role information.
4557
3880
  */
@@ -4603,24 +3926,11 @@ export interface RolePermissionDc {
4603
3926
  */
4604
3927
  permissions: Permissions;
4605
3928
  }
4606
- /**
4607
- * Round square ending.
4608
- */
4609
- export declare type RoundSquareEndingDc = LineEndingBaseDc & {
4610
- type?: LineEndingType;
4611
- color?: ParameterDcColor;
4612
- size?: ParameterDcDouble;
4613
- strokeWidth?: ParameterDcDouble;
4614
- vOffset?: ParameterDcDouble;
4615
- hOffset?: ParameterDcDouble;
4616
- cornersRadius?: number;
4617
- };
4618
3929
  /**
4619
3930
  * Route service configuration Dc.
4620
3931
  */
4621
3932
  export declare type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
4622
3933
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
4623
- style?: StyleDc;
4624
3934
  clientStyle?: any;
4625
3935
  condition?: string | null;
4626
3936
  featuresLimit?: number;
@@ -4733,7 +4043,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
4733
4043
  geometryType: GeometryType;
4734
4044
  objectCount?: number;
4735
4045
  categories?: string[] | null;
4736
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
4046
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
4737
4047
  };
4738
4048
  /**
4739
4049
  * List of the services in service manager.
@@ -4825,76 +4135,6 @@ export interface ServiceListItemDc {
4825
4135
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4826
4136
  invisibleInCatalog?: boolean;
4827
4137
  }
4828
- /**
4829
- * Ending settings.
4830
- */
4831
- export interface SimpleEndingDc {
4832
- /**
4833
- * Type of the line ending.
4834
- *
4835
- * none
4836
- *
4837
- * arrow
4838
- *
4839
- * filledArrow
4840
- *
4841
- * square
4842
- *
4843
- * filledSquare
4844
- *
4845
- * circle
4846
- *
4847
- * filledCircle
4848
- *
4849
- * diamond
4850
- *
4851
- * filledDiamond
4852
- *
4853
- * roundSquare
4854
- *
4855
- * filledRoundSquare
4856
- *
4857
- * svg
4858
- */
4859
- type?: LineEndingType;
4860
- /**
4861
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
4862
- * as an object with a "type" parameter specified.
4863
- */
4864
- size?: ParameterDcDouble;
4865
- /** Ending offset. */
4866
- offset?: ParameterDcDouble[];
4867
- /**
4868
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
4869
- * as an object with a "type" parameter specified.
4870
- */
4871
- color?: ParameterDcColor;
4872
- /**
4873
- * Size multiplier.
4874
- * @format int32
4875
- */
4876
- multiplier?: number;
4877
- }
4878
- /**
4879
- * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
4880
-
4881
- If the ending is set to be other then None, the size and color of the ending will be calculated based on the
4882
- stroke width and color of the symbol.
4883
- */
4884
- export declare type SimplePolylineSymbolDc = SymbolDc & {
4885
- type?: string | null;
4886
- stroke?: DashedBrushDc | SolidStrokeBrushDc | null;
4887
- beginning?: SimpleEndingDc;
4888
- ending?: SimpleEndingDc;
4889
- joinType?: LineJoinType;
4890
- lineCap?: LineCapStyle;
4891
- joinRadius?: number;
4892
- miterLimit?: number;
4893
- offset?: ParameterDcDouble;
4894
- outlined?: boolean;
4895
- outlinedOnSingleSide?: boolean;
4896
- quadrantSegments?: number;
4897
- };
4898
4138
  /**
4899
4139
  * Simplify configuration information.
4900
4140
  */
@@ -4952,18 +4192,6 @@ export interface SocialNetworkInfoDc {
4952
4192
  /** External provider name. */
4953
4193
  providerName?: string;
4954
4194
  }
4955
- /**
4956
- * Defines the brush for the solid fill.
4957
- */
4958
- export declare type SolidFillBrushDc = FillBrushDc & {
4959
- type?: string | null;
4960
- };
4961
- /**
4962
- * Defines the brush for the solid stroke.
4963
- */
4964
- export declare type SolidStrokeBrushDc = StrokeBrushDc & {
4965
- type?: string | null;
4966
- };
4967
4195
  /**
4968
4196
  * SpTaskMethodConfiguration.
4969
4197
  */
@@ -4983,28 +4211,6 @@ export interface SpTaskMethodConfiguration {
4983
4211
  export declare type SpTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
4984
4212
  method?: string | null;
4985
4213
  };
4986
- /**
4987
- * Empty square ending.
4988
- */
4989
- export declare type SquareLineEndingDc = LineEndingBaseDc & {
4990
- type?: LineEndingType;
4991
- color?: ParameterDcColor;
4992
- size?: ParameterDcDouble;
4993
- strokeWidth?: ParameterDcDouble;
4994
- vOffset?: ParameterDcDouble;
4995
- hOffset?: ParameterDcDouble;
4996
- };
4997
- /**
4998
- * The symbol that draws a feature as a square.
4999
- */
5000
- export declare type SquarePointSymbolDc = SymbolDc & {
5001
- type?: string | null;
5002
- size?: ParameterDcDouble;
5003
- fillColor?: ParameterDcColor;
5004
- strokeColor?: ParameterDcColor;
5005
- strokeWidth?: ParameterDcDouble;
5006
- offset?: ParameterDcDouble[] | null;
5007
- };
5008
4214
  /**
5009
4215
  * Spatial reference information data contract.
5010
4216
  */
@@ -5096,44 +4302,6 @@ export declare enum StringSubType {
5096
4302
  PkkCode = "PkkCode",
5097
4303
  Attachments = "Attachments"
5098
4304
  }
5099
- /**
5100
- * Defines the brush for the stroke.
5101
- */
5102
- export declare type StrokeBrushDc = BrushDc & {
5103
- color?: ParameterDcColor;
5104
- width?: ParameterDcDouble;
5105
- };
5106
- /**
5107
- * Feature layer rendering style.
5108
- */
5109
- export interface StyleDc {
5110
- /** Name of the style. This is used for identifying symbol in the layer legend. */
5111
- title?: string;
5112
- /**
5113
- * Condition string for the style application. If the condition is not met for a feature,
5114
- * nor the style nor its children are used when rendering the feature.
5115
- */
5116
- condition?: string;
5117
- /** Symbol that is used to draw the features of the layer. */
5118
- symbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | Model3DSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
5119
- /**
5120
- * Child styles. Before rendering a feature, the children style conditions are checked. If none
5121
- * of the child styles were applied, then the paren style is used to draw the feature.
5122
- */
5123
- children?: StyleDc[];
5124
- /**
5125
- * Min resolution to draw symbol.
5126
- * @format double
5127
- */
5128
- minResolution?: number;
5129
- /**
5130
- * Max resolution to draw symbol.
5131
- * @format double
5132
- */
5133
- maxResolution?: number;
5134
- /** If set true style will not be rendered. */
5135
- disabled?: boolean;
5136
- }
5137
4305
  /**
5138
4306
  * SubTaskSettingsDto.
5139
4307
  */
@@ -5211,56 +4379,6 @@ export interface SubTasksDto {
5211
4379
  /** Results. */
5212
4380
  results?: Record<string, any>;
5213
4381
  }
5214
- /**
5215
- * Provides properties overrides svg attributes.
5216
- */
5217
- export interface SvgParameterDc {
5218
- /**
5219
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
5220
- * as an object with a "type" parameter specified.
5221
- */
5222
- fillColor?: ParameterDcColor;
5223
- /**
5224
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
5225
- * as an object with a "type" parameter specified.
5226
- */
5227
- strokeColor?: ParameterDcColor;
5228
- /**
5229
- * Number parameter of a symbol. The parameter can be represented as a simple number, or
5230
- * as an object with a "type" parameter specified.
5231
- */
5232
- strokeWidth?: ParameterDcDouble;
5233
- /** Id of the svg element. */
5234
- id?: string;
5235
- /** Element type. */
5236
- type?: string;
5237
- }
5238
- /**
5239
- * Svg point symbol.
5240
- */
5241
- export declare type SvgPointSymbolDc = SymbolDc & {
5242
- type?: string | null;
5243
- data?: ParameterDcString;
5244
- background?: SvgParameterDc;
5245
- figure?: SvgParameterDc;
5246
- size?: ParameterDcDouble;
5247
- offset?: ParameterDcDouble[] | null;
5248
- angle?: ParameterDcDouble;
5249
- };
5250
- /**
5251
- * Svg symbol settings.
5252
- */
5253
- export declare type SvgSymbolDc = SymbolDc & {
5254
- type?: string | null;
5255
- id?: string | null;
5256
- data?: string | null;
5257
- size?: ParameterDcDouble;
5258
- fillColor?: ParameterDcColor;
5259
- strokeColor?: ParameterDcColor;
5260
- strokeWidth?: ParameterDcDouble;
5261
- offset?: ParameterDcDouble[] | null;
5262
- angle?: ParameterDcDouble;
5263
- };
5264
4382
  /**
5265
4383
  * Symbol category data contract.
5266
4384
  */
@@ -5278,15 +4396,6 @@ export interface SymbolCategoryInfoDc {
5278
4396
  */
5279
4397
  parentId?: number;
5280
4398
  }
5281
- /**
5282
- * Feature symbol.
5283
- */
5284
- export interface SymbolDc {
5285
- /** Type of the symbol. */
5286
- type?: string;
5287
- /** If set true symbol will not be rendered. */
5288
- disabled?: boolean;
5289
- }
5290
4399
  /**
5291
4400
  * Symbols.
5292
4401
  */
@@ -5801,54 +4910,12 @@ export interface TestConnectionInfoDc {
5801
4910
  /** Message. */
5802
4911
  message?: string;
5803
4912
  }
5804
- /**
5805
- * Sets the horizontal alignment of text.
5806
-
5807
- right
5808
-
5809
- left
5810
-
5811
- center
5812
-
5813
- justified
5814
- */
5815
- export declare enum TextAlignment {
5816
- Right = "right",
5817
- Left = "left",
5818
- Center = "center",
5819
- Justified = "justified"
5820
- }
5821
- export interface TextBackgroundDc {
5822
- /** Defines the brush for the fill. */
5823
- fill?: HatchBrushDc | PatternBrushDc | SolidFillBrushDc;
5824
- /** Defines the brush for the stroke. */
5825
- stroke?: DashedBrushDc | SolidStrokeBrushDc;
5826
- offset?: number[];
5827
- /** @format float */
5828
- rounding?: number;
5829
- }
5830
- /**
5831
- * Sets the vertical alignment of text.
5832
-
5833
- top
5834
-
5835
- bottom
5836
-
5837
- middle
5838
- */
5839
- export declare enum TextVerticalAlignment {
5840
- Top = "top",
5841
- Bottom = "bottom",
5842
- Middle = "middle"
5843
- }
5844
4913
  /**
5845
4914
  * Service info for a tile catalog layer service.
5846
4915
  */
5847
4916
  export interface TileCatalogServiceInfoDc {
5848
4917
  /** Information about the layer attributes and their configuration. */
5849
4918
  layerDefinition: LayerDefinitionDc;
5850
- /** Feature layer rendering style. */
5851
- style?: StyleDc;
5852
4919
  /** Tile info structure. */
5853
4920
  tileInfo: TileInfoDc;
5854
4921
  /** Copyright text. */
@@ -5897,7 +4964,7 @@ export interface TileCatalogServiceInfoDc {
5897
4964
  /** The category of the service. */
5898
4965
  categories?: string[];
5899
4966
  /** Configuration of the service. */
5900
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4967
+ configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
5901
4968
  /** Name of the resource including its namespaces (names of the service managers that contain this service). */
5902
4969
  name: string;
5903
4970
  /** Resource alias. */
@@ -6029,16 +5096,6 @@ export interface TokenResponseDc {
6029
5096
  /** Refresh token. */
6030
5097
  refresh_token?: string;
6031
5098
  }
6032
- export declare type TrackSymbolBaseDc = SymbolDc & {
6033
- groupAttribute?: string | null;
6034
- sourceAttribute?: string | null;
6035
- maxSelectionSize?: number;
6036
- };
6037
- export declare type TracksSymbolDc = TrackSymbolBaseDc & {
6038
- type?: string | null;
6039
- pointSymbol?: CirclePointSymbolDc;
6040
- lineSymbol?: PolylineSymbolDc;
6041
- };
6042
5099
  /**
6043
5100
  * Feature object definition for updating.
6044
5101
  */
@@ -6611,6 +5668,102 @@ export interface UploadPreview1Payload {
6611
5668
  /** @format binary */
6612
5669
  file?: File;
6613
5670
  }
5671
+ export interface GetCamerasParams {
5672
+ /**
5673
+ * Page objects limit.
5674
+ * @format int32
5675
+ */
5676
+ limit?: number;
5677
+ /**
5678
+ * Objects skip.
5679
+ * @format int32
5680
+ */
5681
+ offset?: number;
5682
+ }
5683
+ export interface GetArchiveFeedParams {
5684
+ /**
5685
+ * Timestamp from which to start the archive playback.
5686
+ * UNIX time (both seconds and milliseconds are supported).
5687
+ * @format date-time
5688
+ */
5689
+ startTime?: string;
5690
+ /**
5691
+ * Timestamp at which to stop the playback.
5692
+ * UNIX time (both seconds and milliseconds are supported).
5693
+ * @format date-time
5694
+ */
5695
+ endTime?: string;
5696
+ /**
5697
+ * Playback speed factor.
5698
+ * Possible values: 1 2 4 8 16 32 64.
5699
+ * @format int32
5700
+ */
5701
+ speed?: number;
5702
+ /** Camera id. */
5703
+ cameraId: string;
5704
+ }
5705
+ export interface GetArchiveTimelineParams {
5706
+ /**
5707
+ * Start of the timeframe UNIX time (seconds).
5708
+ * @format date-time
5709
+ */
5710
+ startTime?: string;
5711
+ /**
5712
+ * End of the timeframe UNIX time (seconds).
5713
+ * @format date-time
5714
+ */
5715
+ endTime?: string;
5716
+ /** Camera id. */
5717
+ cameraId: string;
5718
+ }
5719
+ export interface GetArchiveCalendarParams {
5720
+ /** Start of the timeframe UNIX time (seconds). */
5721
+ startTime?: string;
5722
+ /** End of the timeframe UNIX time (seconds). */
5723
+ endTime?: string;
5724
+ /** Timezone. */
5725
+ tz?: string;
5726
+ /** Camera id. */
5727
+ cameraId: string;
5728
+ }
5729
+ export interface GetArchiveSnapshotParams {
5730
+ /**
5731
+ * Timestamp of the moment at which to take the snapshot.
5732
+ * UNIX timestamp (in seconds).
5733
+ * @format date-time
5734
+ */
5735
+ time?: string;
5736
+ /** Camera id. */
5737
+ cameraId: string;
5738
+ }
5739
+ export interface GetLiveFeedParams {
5740
+ /**
5741
+ * Duration.
5742
+ * @format int64
5743
+ */
5744
+ duration?: number;
5745
+ /** Camera id. */
5746
+ cameraId: string;
5747
+ }
5748
+ export interface GetLivePreviewStreamParams {
5749
+ /**
5750
+ * Frame per second.
5751
+ * @format float
5752
+ */
5753
+ fps?: number;
5754
+ /**
5755
+ * Quality.
5756
+ *
5757
+ * Low
5758
+ *
5759
+ * Medium
5760
+ *
5761
+ * High
5762
+ */
5763
+ quality?: Quality;
5764
+ /** Id of the camera. */
5765
+ cameraId: string;
5766
+ }
6614
5767
  export interface GetTagsParams {
6615
5768
  /** Text filter. */
6616
5769
  filter?: string;
@@ -6784,14 +5937,6 @@ export interface IncreaseResourcesLimitParams {
6784
5937
  /** Request justification. */
6785
5938
  Justification?: string;
6786
5939
  }
6787
- export interface MoreSymbolsParams {
6788
- /** Request. */
6789
- Request?: string;
6790
- /** Request additional information. */
6791
- Additional?: string;
6792
- /** Request justification. */
6793
- Justification?: string;
6794
- }
6795
5940
  export interface FeedbackPayload {
6796
5941
  /** Attachments. */
6797
5942
  Attachments?: File[];
@@ -6880,11 +6025,6 @@ export interface GetExternalPbfFeaturesParams {
6880
6025
  url?: string;
6881
6026
  /** PBF layer name. */
6882
6027
  layerName?: string;
6883
- /**
6884
- * Output geometry srid.
6885
- * @format int32
6886
- */
6887
- srId?: number;
6888
6028
  /**
6889
6029
  * Features count have to skip.
6890
6030
  * @format int32
@@ -7269,7 +6409,7 @@ export interface ValidateExpressionParams {
7269
6409
  /** Layer name. */
7270
6410
  layerName: string;
7271
6411
  }
7272
- export interface GetRasterMetaParams3 {
6412
+ export interface GetRasterMetaParams8 {
7273
6413
  /**
7274
6414
  * Min value for build histogram.
7275
6415
  * @format double
@@ -7330,7 +6470,7 @@ export interface GetProjectsListParams {
7330
6470
  /** Filter layers by set of tags. */
7331
6471
  tags?: string[];
7332
6472
  }
7333
- export interface DeleteResourcesParams3 {
6473
+ export interface DeleteResourcesParams1 {
7334
6474
  /** Resource names. */
7335
6475
  names?: string[];
7336
6476
  }
@@ -7549,6 +6689,10 @@ export interface GetTableListParams {
7549
6689
  /** All available permissions list. */
7550
6690
  acl?: string;
7551
6691
  }
6692
+ export interface DeleteResourcesParams5 {
6693
+ /** Resource names. */
6694
+ names?: string[];
6695
+ }
7552
6696
  export interface GetTablesInfoParams {
7553
6697
  /** Table names. */
7554
6698
  tableNames?: string[];
@@ -7660,7 +6804,7 @@ export interface GetPublicCapabilitiesParams {
7660
6804
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7661
6805
  AcceptFormats?: string[];
7662
6806
  }
7663
- export interface GetCapabilitiesParams10 {
6807
+ export interface GetCapabilitiesParams7 {
7664
6808
  /** Output format of service metadata. */
7665
6809
  Format?: string;
7666
6810
  /** Must be WMS. */
@@ -7895,4 +7039,3 @@ export interface ProcessRequestParams {
7895
7039
  */
7896
7040
  tileCol?: number;
7897
7041
  }
7898
- export {};