@evergis/api 3.0.157 → 3.0.162

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.
@@ -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,8 @@ export interface AttributeConfigurationDc {
356
403
  clientData?: any;
357
404
  /** Id of table given attribute is referenced. */
358
405
  referenceId?: string;
406
+ /** Values range. */
407
+ ranges?: ValuesRange[];
359
408
  }
360
409
  /**
361
410
  * Information about an attribute.
@@ -382,11 +431,13 @@ export interface AttributeDefinitionDc {
382
431
  *
383
432
  * Polyline
384
433
  *
385
- * Polygon
434
+ * MultiPolygon
386
435
  *
387
436
  * Multipoint
388
437
  *
389
438
  * H3Index
439
+ *
440
+ * Json
390
441
  */
391
442
  type: AttributeType;
392
443
  /** Alias of the attribute. */
@@ -407,6 +458,8 @@ export interface AttributeDefinitionDc {
407
458
  * Image
408
459
  *
409
460
  * PkkCode
461
+ *
462
+ * Attachments
410
463
  */
411
464
  subType?: StringSubType;
412
465
  /** Ensures that the data in the attribute is unique across all rows in a table. */
@@ -536,11 +589,13 @@ Point
536
589
 
537
590
  Polyline
538
591
 
539
- Polygon
592
+ MultiPolygon
540
593
 
541
594
  Multipoint
542
595
 
543
596
  H3Index
597
+
598
+ Json
544
599
  */
545
600
  export declare enum AttributeType {
546
601
  Unknown = "Unknown",
@@ -552,9 +607,10 @@ export declare enum AttributeType {
552
607
  Boolean = "Boolean",
553
608
  Point = "Point",
554
609
  Polyline = "Polyline",
555
- MultiPolygon = "Polygon",
610
+ MultiPolygon = "MultiPolygon",
556
611
  Multipoint = "Multipoint",
557
- H3Index = "H3Index"
612
+ H3Index = "H3Index",
613
+ Json = "Json"
558
614
  }
559
615
  /**
560
616
  * Configuration of the attribute set in a feature layer.
@@ -572,6 +628,10 @@ export interface AttributesConfigurationDc {
572
628
  attributes?: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
573
629
  /** Configurations of the related tables. */
574
630
  tableReferences?: TableReferenceConfigurationDc[];
631
+ /** Configuration of layer references. */
632
+ layerReferences?: LayerReferenceConfigurationDc[];
633
+ /** Values ranges. */
634
+ valuesRange?: ValuesRangeDc[];
575
635
  }
576
636
  /**
577
637
  * The symbol that draws a raster with classification.
@@ -693,6 +753,26 @@ export declare type CalculatedParameterDc = ParameterDcDouble & {
693
753
  expression?: string;
694
754
  defaultValue?: number;
695
755
  };
756
+ /**
757
+ * Camera item.
758
+ */
759
+ export interface CameraDc {
760
+ /** Id of the camera. */
761
+ id?: string;
762
+ /** Name of the camera. */
763
+ name?: string;
764
+ /** Checks if camera online. */
765
+ online?: boolean;
766
+ }
767
+ /**
768
+ * Cameras list response.
769
+ */
770
+ export interface CameraListDc {
771
+ /** The retrieved items in the list. */
772
+ items?: CameraDc[];
773
+ /** Check if request success. */
774
+ success?: boolean;
775
+ }
696
776
  /**
697
777
  * Provides catalog resources with users.
698
778
  */
@@ -831,11 +911,13 @@ export interface ColumnDescriptionDc {
831
911
  *
832
912
  * Polyline
833
913
  *
834
- * Polygon
914
+ * MultiPolygon
835
915
  *
836
916
  * Multipoint
837
917
  *
838
918
  * H3Index
919
+ *
920
+ * Json
839
921
  */
840
922
  type: AttributeType;
841
923
  /**
@@ -1313,6 +1395,17 @@ export interface DependentResourceDc {
1313
1395
  export declare type DetailedTableInfoDc = TableInfoDc & {
1314
1396
  columns: ColumnDescriptionDc[];
1315
1397
  };
1398
+ /**
1399
+ * Empty square ending.
1400
+ */
1401
+ export declare type DiamondLineEndingDc = LineEndingBaseDc & {
1402
+ type?: LineEndingType;
1403
+ color?: ParameterDcColor;
1404
+ size?: CalculatedParameterDc;
1405
+ strokeWidth?: CalculatedParameterDc;
1406
+ vOffset?: CalculatedParameterDc;
1407
+ hOffset?: CalculatedParameterDc;
1408
+ };
1316
1409
  /**
1317
1410
  * Provides attributes edit info.
1318
1411
  */
@@ -1488,11 +1581,13 @@ export interface ExpressionValidationResultDc {
1488
1581
  *
1489
1582
  * Polyline
1490
1583
  *
1491
- * Polygon
1584
+ * MultiPolygon
1492
1585
  *
1493
1586
  * Multipoint
1494
1587
  *
1495
1588
  * H3Index
1589
+ *
1590
+ * Json
1496
1591
  */
1497
1592
  returnType?: AttributeType;
1498
1593
  /** The expression that was validated. */
@@ -1969,6 +2064,28 @@ export declare type FilledCircleLineEndingDc = LineEndingBaseDc & {
1969
2064
  vOffset?: CalculatedParameterDc;
1970
2065
  hOffset?: CalculatedParameterDc;
1971
2066
  };
2067
+ /**
2068
+ * Simple solid filled square ending.
2069
+ */
2070
+ export declare type FilledDiamondLineEndingDc = LineEndingBaseDc & {
2071
+ type?: LineEndingType;
2072
+ color?: ParameterDcColor;
2073
+ size?: CalculatedParameterDc;
2074
+ vOffset?: CalculatedParameterDc;
2075
+ hOffset?: CalculatedParameterDc;
2076
+ };
2077
+ /**
2078
+ * Round square ending.
2079
+ */
2080
+ export declare type FilledRoundSquareEndingDc = LineEndingBaseDc & {
2081
+ type?: LineEndingType;
2082
+ color?: ParameterDcColor;
2083
+ size?: CalculatedParameterDc;
2084
+ strokeWidth?: CalculatedParameterDc;
2085
+ vOffset?: CalculatedParameterDc;
2086
+ hOffset?: CalculatedParameterDc;
2087
+ cornersRadius?: number;
2088
+ };
1972
2089
  /**
1973
2090
  * Simple solid filled square ending.
1974
2091
  */
@@ -2529,6 +2646,21 @@ export interface LayerModelDc {
2529
2646
  /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
2530
2647
  dataFilterId?: string;
2531
2648
  }
2649
+ /**
2650
+ * Layer reference configuration.
2651
+ */
2652
+ export interface LayerReferenceConfigurationDc {
2653
+ /** Name of the layer. */
2654
+ layerName?: string;
2655
+ /** Condition to apply. */
2656
+ condition?: string;
2657
+ /** Attribute name in base layer. */
2658
+ referenceAttribute?: string;
2659
+ /** Attribute name in target layer. */
2660
+ targetAttribute?: string;
2661
+ /** Id of the reference. */
2662
+ referenceId?: string;
2663
+ }
2532
2664
  /**
2533
2665
  * The description of the layer service as a server task data storage.
2534
2666
  */
@@ -3452,8 +3584,8 @@ export declare type PolylineLabelSymbolDc = LabelSymbolDc & {
3452
3584
  export declare type PolylineSymbolDc = SymbolDc & {
3453
3585
  type?: string;
3454
3586
  stroke?: DashedBrushDc | SolidStrokeBrushDc;
3455
- beginning?: ArrowLineEndingDc | CircleLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledSquareLineEndingDc | NoneEndingDc | SquareLineEndingDc;
3456
- ending?: ArrowLineEndingDc | CircleLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledSquareLineEndingDc | NoneEndingDc | SquareLineEndingDc;
3587
+ beginning?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc;
3588
+ ending?: ArrowLineEndingDc | CircleLineEndingDc | DiamondLineEndingDc | FilledArrowLineEndingDc | FilledCircleLineEndingDc | FilledDiamondLineEndingDc | FilledRoundSquareEndingDc | FilledSquareLineEndingDc | NoneEndingDc | RoundSquareEndingDc | SquareLineEndingDc;
3457
3589
  joinType?: LineJoinType;
3458
3590
  joinRadius?: number;
3459
3591
  miterLimit?: number;
@@ -4248,6 +4380,18 @@ export interface RolePermissionDc {
4248
4380
  */
4249
4381
  permissions: Permissions;
4250
4382
  }
4383
+ /**
4384
+ * Round square ending.
4385
+ */
4386
+ export declare type RoundSquareEndingDc = LineEndingBaseDc & {
4387
+ type?: LineEndingType;
4388
+ color?: ParameterDcColor;
4389
+ size?: CalculatedParameterDc;
4390
+ strokeWidth?: CalculatedParameterDc;
4391
+ vOffset?: CalculatedParameterDc;
4392
+ hOffset?: CalculatedParameterDc;
4393
+ cornersRadius?: number;
4394
+ };
4251
4395
  /**
4252
4396
  * Route feature dc.
4253
4397
  */
@@ -4540,18 +4684,31 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
4540
4684
  * List of the services in service manager.
4541
4685
  */
4542
4686
  export declare type ServiceListDc = PagedListServiceListItemDc;
4687
+ /**
4688
+ * An entry in the service list response.
4689
+ */
4543
4690
  export interface ServiceListItemDc {
4691
+ /** Name of the resource. */
4544
4692
  name?: string;
4693
+ /** Type of the service. */
4545
4694
  type?: string;
4695
+ /** Alias of the resource. */
4546
4696
  alias?: string;
4697
+ /** Description of the resource. */
4547
4698
  description?: string;
4548
4699
  /** System name of the resource owner. */
4549
4700
  owner?: string;
4550
4701
  /** User name of the resource owner (human friendly name). */
4551
4702
  ownerName?: string;
4552
- /** @format date-time */
4703
+ /**
4704
+ * The date and time the resource was created.
4705
+ * @format date-time
4706
+ */
4553
4707
  createdDate?: string;
4554
- /** @format date-time */
4708
+ /**
4709
+ * The date and time the resource was modified the last time.
4710
+ * @format date-time
4711
+ */
4555
4712
  changedDate?: string;
4556
4713
  /**
4557
4714
  * User permissions for server security objects (services, projects etc.)
@@ -4606,12 +4763,6 @@ export interface ServiceListItemDc {
4606
4763
  * multipoint
4607
4764
  */
4608
4765
  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
4766
  /** Provides data source type info. */
4616
4767
  dataSourceType?: string;
4617
4768
  /** A set of tags. */
@@ -4873,11 +5024,14 @@ None
4873
5024
  Image
4874
5025
 
4875
5026
  PkkCode
5027
+
5028
+ Attachments
4876
5029
  */
4877
5030
  export declare enum StringSubType {
4878
5031
  None = "None",
4879
5032
  Image = "Image",
4880
- PkkCode = "PkkCode"
5033
+ PkkCode = "PkkCode",
5034
+ Attachments = "Attachments"
4881
5035
  }
4882
5036
  /**
4883
5037
  * Defines the brush for the stroke.
@@ -5833,6 +5987,24 @@ export interface ValueTupleStringString {
5833
5987
  item1?: string;
5834
5988
  item2?: string;
5835
5989
  }
5990
+ /**
5991
+ * Values range.
5992
+ */
5993
+ export interface ValuesRange {
5994
+ /** Minimum value. */
5995
+ min?: any;
5996
+ /** Maximum value. */
5997
+ max?: any;
5998
+ }
5999
+ /**
6000
+ * Values range.
6001
+ */
6002
+ export interface ValuesRangeDc {
6003
+ /** Minimum value. */
6004
+ min: any;
6005
+ /** Maximum value. */
6006
+ max: any;
6007
+ }
5836
6008
  export interface Vector2 {
5837
6009
  /** @format double */
5838
6010
  x?: number;
@@ -6025,6 +6197,83 @@ export interface UploadPreviewParams {
6025
6197
  /** User name. */
6026
6198
  username: string;
6027
6199
  }
6200
+ export interface GetCamerasParams {
6201
+ /**
6202
+ * Page objects limit.
6203
+ * @format int32
6204
+ */
6205
+ limit?: number;
6206
+ /**
6207
+ * Objects skip.
6208
+ * @format int32
6209
+ */
6210
+ offset?: number;
6211
+ }
6212
+ export interface GetArchiveFeedParams {
6213
+ /**
6214
+ * Timestamp from which to start the archive playback.
6215
+ * UNIX time (both seconds and milliseconds are supported).
6216
+ * @format date-time
6217
+ */
6218
+ startTime?: string;
6219
+ /**
6220
+ * Timestamp at which to stop the playback.
6221
+ * UNIX time (both seconds and milliseconds are supported).
6222
+ * @format date-time
6223
+ */
6224
+ endTime?: string;
6225
+ /**
6226
+ * Playback speed factor.
6227
+ * Possible values: 1 2 4 8 16 32 64.
6228
+ * @format int32
6229
+ */
6230
+ speed?: number;
6231
+ /** Camera id. */
6232
+ cameraId: string;
6233
+ }
6234
+ export interface GetArchiveTimelineParams {
6235
+ /**
6236
+ * Start of the timeframe UNIX time (seconds).
6237
+ * @format date-time
6238
+ */
6239
+ startTime?: string;
6240
+ /**
6241
+ * End of the timeframe UNIX time (seconds).
6242
+ * @format date-time
6243
+ */
6244
+ endTime?: string;
6245
+ /** Camera id. */
6246
+ cameraId: string;
6247
+ }
6248
+ export interface GetArchiveCalendarParams {
6249
+ /** Start of the timeframe UNIX time (seconds). */
6250
+ startTime?: string;
6251
+ /** End of the timeframe UNIX time (seconds). */
6252
+ endTime?: string;
6253
+ /** Timezone. */
6254
+ tz?: string;
6255
+ /** Camera id. */
6256
+ cameraId: string;
6257
+ }
6258
+ export interface GetArchiveSnapshotParams {
6259
+ /**
6260
+ * Timestamp of the moment at which to take the snapshot.
6261
+ * UNIX timestamp (in seconds).
6262
+ * @format date-time
6263
+ */
6264
+ time?: string;
6265
+ /** Camera id. */
6266
+ cameraId: string;
6267
+ }
6268
+ export interface GetLiveFeedParams {
6269
+ /**
6270
+ * Duration.
6271
+ * @format int64
6272
+ */
6273
+ duration?: number;
6274
+ /** Camera id. */
6275
+ cameraId: string;
6276
+ }
6028
6277
  export interface GetConfigurationsListParams {
6029
6278
  /**
6030
6279
  * Offset.
@@ -6162,6 +6411,10 @@ export interface GetExternalPbfLayersParams {
6162
6411
  /** PBF service url. */
6163
6412
  url?: string;
6164
6413
  }
6414
+ export interface GetExternalArcgisFsLayersParams {
6415
+ /** Arcgis FeatureServer url. */
6416
+ url?: string;
6417
+ }
6165
6418
  export interface GetExternalArcGisLayersParams {
6166
6419
  /** ArcGis map service url. */
6167
6420
  url?: string;
@@ -6182,8 +6435,6 @@ export interface GetLayersListParams {
6182
6435
  * <br>`^` - query any value that begins with query.<br>`@` - query any value that contains query.</remarks>
6183
6436
  */
6184
6437
  filter?: string;
6185
- /** Filter by a collection of layers types. Sends in comma separated way. */
6186
- types?: string[];
6187
6438
  /**
6188
6439
  * Objects limit per response.
6189
6440
  * @format int32
@@ -6206,6 +6457,8 @@ export interface GetLayersListParams {
6206
6457
  * all
6207
6458
  */
6208
6459
  group?: Group;
6460
+ /** Filter by a collection of layers types. Sends in comma separated way. */
6461
+ types?: string[];
6209
6462
  /** Strict list of names of the resources to get. */
6210
6463
  names?: string[];
6211
6464
  /** A list of `ServiceInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
@@ -6636,7 +6889,7 @@ export interface ValidateExpressionParams {
6636
6889
  /** Layer name. */
6637
6890
  layerName: string;
6638
6891
  }
6639
- export interface GetRasterMetaParams5 {
6892
+ export interface GetRasterMetaParams7 {
6640
6893
  /**
6641
6894
  * Min value for build histogram.
6642
6895
  * @format double
@@ -7007,7 +7260,7 @@ export interface StatisticsDbParams {
7007
7260
  */
7008
7261
  types?: AggregationFunction[];
7009
7262
  }
7010
- export interface ClassifyParams7 {
7263
+ export interface ClassifyParams8 {
7011
7264
  /** Layer name. */
7012
7265
  name?: string;
7013
7266
  /** Attribute name. */
@@ -7140,7 +7393,7 @@ export interface GetTableListParams {
7140
7393
  acl?: string;
7141
7394
  }
7142
7395
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7143
- export interface DeleteResourcesParams10 {
7396
+ export interface DeleteResourcesParams5 {
7144
7397
  /** Resource names. */
7145
7398
  names?: string[];
7146
7399
  }
@@ -7297,7 +7550,7 @@ export interface GetPublicCapabilitiesParams {
7297
7550
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7298
7551
  AcceptFormats?: string[];
7299
7552
  }
7300
- export interface GetCapabilitiesParams3 {
7553
+ export interface GetCapabilitiesParams2 {
7301
7554
  /** Output format of service metadata. */
7302
7555
  Format?: string;
7303
7556
  /** Must be WMS. */