@evergis/api 4.1.48 → 4.1.50-alpha.0

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.
@@ -246,51 +246,6 @@ export type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
246
246
  /** Service url. */
247
247
  serviceUrl?: string | null;
248
248
  };
249
- /**
250
- * Archive calendar response.
251
- */
252
- export interface ArchiveCalendarDc {
253
- /** Each value represents the percentage of time covered by archive records within the corresponding day. */
254
- calendar?: ArchiveCalendarItemDc[];
255
- /** Check if request success. */
256
- success?: boolean;
257
- }
258
- /**
259
- * Archive calendar item.
260
- */
261
- export interface ArchiveCalendarItemDc {
262
- /** Date. */
263
- date?: string;
264
- /**
265
- * Daily coverage values.
266
- * @format int32
267
- */
268
- coverage?: number;
269
- }
270
- /**
271
- * Archive timeline request.
272
- */
273
- export interface ArchiveTimelineDc {
274
- /** A list of daily coverage values. */
275
- timeline?: ArchiveTimelineItemDc[];
276
- /** Check if request success. */
277
- success?: boolean;
278
- }
279
- /**
280
- * Represents the percentage of time covered by archive records within the corresponding day.
281
- */
282
- export interface ArchiveTimelineItemDc {
283
- /**
284
- * Corresponding day.
285
- * @format date-time
286
- */
287
- startTime?: string;
288
- /**
289
- * Percentage of time covered by archive record.
290
- * @format int32
291
- */
292
- duration?: number;
293
- }
294
249
  /**
295
250
  * Configuration of an attribute in a feature layer.
296
251
  */
@@ -793,48 +748,6 @@ export interface BulkOperationResultDc {
793
748
  /** Sets true. */
794
749
  isSuccess?: boolean;
795
750
  }
796
- /**
797
- * Camera item.
798
- */
799
- export interface CameraDc {
800
- /** Id of the camera. */
801
- id?: string;
802
- /** Name of the camera. */
803
- name?: string;
804
- /** Checks if camera online. */
805
- online?: boolean;
806
- }
807
- /**
808
- * Cameras list response.
809
- */
810
- export interface CameraListDc {
811
- /** The retrieved items in the list. */
812
- items?: CameraDc[];
813
- /** Check if request success. */
814
- success?: boolean;
815
- }
816
- /**
817
- * Catalog configuration data contract.
818
- */
819
- export interface CatalogConfigurationDc {
820
- /** Configuration id. */
821
- id?: string;
822
- /**
823
- *
824
- *
825
- * Default
826
- *
827
- * DevConfiguration
828
- */
829
- type?: ConfigurationType;
830
- /** Configuration data. */
831
- configuration?: any;
832
- /**
833
- * Updated at.
834
- * @format date-time
835
- */
836
- updatedAt?: string;
837
- }
838
751
  /**
839
752
  * Resource catalog item.
840
753
  */
@@ -1189,17 +1102,6 @@ export declare enum ConfigurationErrorEnum {
1189
1102
  /**
1190
1103
  *
1191
1104
 
1192
- Default
1193
-
1194
- DevConfiguration
1195
- */
1196
- export declare enum ConfigurationType {
1197
- Default = "Default",
1198
- DevConfiguration = "DevConfiguration"
1199
- }
1200
- /**
1201
- *
1202
-
1203
1105
  Skip
1204
1106
 
1205
1107
  Overwrite
@@ -1214,6 +1116,35 @@ export declare enum ConflictResolutionStrategy {
1214
1116
  GenerateUnique = "GenerateUnique",
1215
1117
  ThrowError = "ThrowError"
1216
1118
  }
1119
+ /**
1120
+ * DTO for connection request containing resource connection parameters.
1121
+ */
1122
+ export interface ConnectRequestDc {
1123
+ /** Gets or sets the unique identifier of the resource to connect to. */
1124
+ resourceId: string;
1125
+ /** Gets or sets the URL of the repository containing the resource. */
1126
+ repositoryUrl: string;
1127
+ /** Gets or sets the access token for authentication with the repository. */
1128
+ accessToken: string;
1129
+ /** Gets or sets the optional branch name to use for the repository connection. */
1130
+ branch?: string;
1131
+ }
1132
+ /**
1133
+ * DTO for connection response containing resource connection parameters.
1134
+ */
1135
+ export interface ConnectResponseDc {
1136
+ /** The name of the storage/repository. */
1137
+ name?: string;
1138
+ /**
1139
+ * The timestamp when the connection was established.
1140
+ * @format date-time
1141
+ */
1142
+ connectedAt?: string;
1143
+ /** The SHA of the last commit in the connected branch. */
1144
+ lastCommitSha?: string;
1145
+ /** The branch that was connected to. */
1146
+ branch?: string;
1147
+ }
1217
1148
  /**
1218
1149
  * Describes resource to copy.
1219
1150
  */
@@ -1415,9 +1346,11 @@ export interface CreateUserDc {
1415
1346
  company?: string;
1416
1347
  /** Has newsletter subscription. */
1417
1348
  is_subscribed?: boolean;
1349
+ /** Additional information or goals. */
1350
+ goals?: string;
1418
1351
  }
1419
1352
  /**
1420
- * Create view from query layer data contract.
1353
+ * Create view from query data contract.
1421
1354
  */
1422
1355
  export interface CreateViewFromQueryDc {
1423
1356
  /** Add gid column. */
@@ -1653,9 +1586,7 @@ export interface EditAttributesInfoDc {
1653
1586
  /**
1654
1587
  * Envelope geometry.
1655
1588
  */
1656
- export type EnvelopeDc = GeometryDc & {
1657
- /** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
1658
- coordinates: PositionDc[];
1589
+ export interface EnvelopeDc {
1659
1590
  /**
1660
1591
  *
1661
1592
  *
@@ -1679,8 +1610,15 @@ export type EnvelopeDc = GeometryDc & {
1679
1610
  *
1680
1611
  * collection
1681
1612
  */
1682
- type?: GeometryType;
1683
- };
1613
+ type: GeometryType;
1614
+ /** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
1615
+ coordinates: PositionDc[];
1616
+ /**
1617
+ * Spatial reference id.
1618
+ * @format int32
1619
+ */
1620
+ srId?: number;
1621
+ }
1684
1622
  /**
1685
1623
  * Configuration of an attribute in a feature layer.
1686
1624
  */
@@ -2095,10 +2033,12 @@ export type FailedServiceInfoDc = ServiceInfoDc & {
2095
2033
  * Feature object definition.
2096
2034
  */
2097
2035
  export interface FeatureDc {
2036
+ /** Type. */
2037
+ type?: string;
2098
2038
  /** Feature geometry definition. */
2099
- geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2039
+ geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2100
2040
  /** Feature attributes collection. */
2101
- attributes: Record<string, any>;
2041
+ properties: Record<string, any>;
2102
2042
  /** Feature unique identifier. */
2103
2043
  id?: string;
2104
2044
  /** Values for all bands of feature by pixel point. */
@@ -2123,6 +2063,12 @@ export type FeatureLayerServiceInfoDc = ServiceInfoDc & {
2123
2063
  /** Edit configuration. Storage isn't used by server. */
2124
2064
  editConfiguration?: any;
2125
2065
  };
2066
+ export interface FileDto {
2067
+ path?: string;
2068
+ content?: string;
2069
+ /** @format int32 */
2070
+ size?: number;
2071
+ }
2126
2072
  /**
2127
2073
  * The result of uploading a file.
2128
2074
  */
@@ -2159,6 +2105,38 @@ export interface FilterResponseDc {
2159
2105
  /** Id of the filter. */
2160
2106
  id?: string;
2161
2107
  }
2108
+ /**
2109
+ *
2110
+
2111
+ Point
2112
+
2113
+ MultiPoint
2114
+
2115
+ LineString
2116
+
2117
+ MultiLineString
2118
+
2119
+ Polygon
2120
+
2121
+ MultiPolygon
2122
+
2123
+ GeometryCollection
2124
+
2125
+ Feature
2126
+
2127
+ FeatureCollection
2128
+ */
2129
+ export declare enum GeoJsonObjectType {
2130
+ Point = "Point",
2131
+ MultiPoint = "MultiPoint",
2132
+ LineString = "LineString",
2133
+ MultiLineString = "MultiLineString",
2134
+ Polygon = "Polygon",
2135
+ MultiPolygon = "MultiPolygon",
2136
+ GeometryCollection = "GeometryCollection",
2137
+ Feature = "Feature",
2138
+ FeatureCollection = "FeatureCollection"
2139
+ }
2162
2140
  /**
2163
2141
  * Geocode result.
2164
2142
  */
@@ -2178,7 +2156,7 @@ export interface GeocodeResultDc {
2178
2156
  /** The position at the map. */
2179
2157
  center?: PositionDc;
2180
2158
  /** Result geometry. */
2181
- geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2159
+ geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2182
2160
  }
2183
2161
  /**
2184
2162
  * Geocode suggest result.
@@ -2196,31 +2174,29 @@ export interface GeocodeSuggestResultDc {
2196
2174
  */
2197
2175
  export type GeometryCollectionDc = GeometryDc & {
2198
2176
  /** Multipoint coordinates. */
2199
- geometries: (EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc)[];
2177
+ geometries: (GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc)[];
2200
2178
  /**
2201
2179
  *
2202
2180
  *
2203
- * unknown
2204
- *
2205
- * point
2181
+ * Point
2206
2182
  *
2207
- * polyline
2183
+ * MultiPoint
2208
2184
  *
2209
- * polygon
2185
+ * LineString
2210
2186
  *
2211
- * envelope
2187
+ * MultiLineString
2212
2188
  *
2213
- * multipoint
2189
+ * Polygon
2214
2190
  *
2215
- * line
2191
+ * MultiPolygon
2216
2192
  *
2217
- * ring
2193
+ * GeometryCollection
2218
2194
  *
2219
- * multipolygon
2195
+ * Feature
2220
2196
  *
2221
- * collection
2197
+ * FeatureCollection
2222
2198
  */
2223
- type?: GeometryType;
2199
+ type?: GeoJsonObjectType;
2224
2200
  };
2225
2201
  /**
2226
2202
  * Geometry data contract.
@@ -2229,27 +2205,25 @@ export interface GeometryDc {
2229
2205
  /**
2230
2206
  *
2231
2207
  *
2232
- * unknown
2233
- *
2234
- * point
2208
+ * Point
2235
2209
  *
2236
- * polyline
2210
+ * MultiPoint
2237
2211
  *
2238
- * polygon
2212
+ * LineString
2239
2213
  *
2240
- * envelope
2214
+ * MultiLineString
2241
2215
  *
2242
- * multipoint
2216
+ * Polygon
2243
2217
  *
2244
- * line
2218
+ * MultiPolygon
2245
2219
  *
2246
- * ring
2220
+ * GeometryCollection
2247
2221
  *
2248
- * multipolygon
2222
+ * Feature
2249
2223
  *
2250
- * collection
2224
+ * FeatureCollection
2251
2225
  */
2252
- type: GeometryType;
2226
+ type: GeoJsonObjectType;
2253
2227
  /**
2254
2228
  * Spatial reference id.
2255
2229
  * @format int32
@@ -2559,7 +2533,6 @@ export interface GetSumOfProductDc {
2559
2533
  /** Filter query geometries. */
2560
2534
  geometries?: QueryGeometryDc[];
2561
2535
  }
2562
- export type IAsyncEnumerableLivePreviewDc = object;
2563
2536
  /**
2564
2537
  * Data schema of a file for import.
2565
2538
  */
@@ -2611,6 +2584,28 @@ export interface ImportLayerDataSchemaDc {
2611
2584
  /** Schema of a inner layers. */
2612
2585
  children?: ImportLayerDataSchemaDc[];
2613
2586
  }
2587
+ /**
2588
+ * Increase resources limit feedback data contract.
2589
+ */
2590
+ export interface IncreaseResourcesLimitDc {
2591
+ /**
2592
+ * Additional maps count.
2593
+ * @format int32
2594
+ */
2595
+ map?: number;
2596
+ /**
2597
+ * Additional layers count.
2598
+ * @format int32
2599
+ */
2600
+ layer?: number;
2601
+ /**
2602
+ * Additional data sources count.
2603
+ * @format int32
2604
+ */
2605
+ dataSource?: number;
2606
+ /** Request justification. */
2607
+ justification?: string;
2608
+ }
2614
2609
  /**
2615
2610
  * Information about the layer attributes and their configuration.
2616
2611
  */
@@ -2696,27 +2691,25 @@ export type LineStringDc = GeometryDc & {
2696
2691
  /**
2697
2692
  *
2698
2693
  *
2699
- * unknown
2700
- *
2701
- * point
2694
+ * Point
2702
2695
  *
2703
- * polyline
2696
+ * MultiPoint
2704
2697
  *
2705
- * polygon
2698
+ * LineString
2706
2699
  *
2707
- * envelope
2700
+ * MultiLineString
2708
2701
  *
2709
- * multipoint
2702
+ * Polygon
2710
2703
  *
2711
- * line
2704
+ * MultiPolygon
2712
2705
  *
2713
- * ring
2706
+ * GeometryCollection
2714
2707
  *
2715
- * multipolygon
2708
+ * Feature
2716
2709
  *
2717
- * collection
2710
+ * FeatureCollection
2718
2711
  */
2719
- type?: GeometryType;
2712
+ type?: GeoJsonObjectType;
2720
2713
  /** Poly coordinates. */
2721
2714
  coordinates: PositionDc[];
2722
2715
  };
@@ -2910,27 +2903,25 @@ export type MultiPointDc = GeometryDc & {
2910
2903
  /**
2911
2904
  *
2912
2905
  *
2913
- * unknown
2914
- *
2915
- * point
2906
+ * Point
2916
2907
  *
2917
- * polyline
2908
+ * MultiPoint
2918
2909
  *
2919
- * polygon
2910
+ * LineString
2920
2911
  *
2921
- * envelope
2912
+ * MultiLineString
2922
2913
  *
2923
- * multipoint
2914
+ * Polygon
2924
2915
  *
2925
- * line
2916
+ * MultiPolygon
2926
2917
  *
2927
- * ring
2918
+ * GeometryCollection
2928
2919
  *
2929
- * multipolygon
2920
+ * Feature
2930
2921
  *
2931
- * collection
2922
+ * FeatureCollection
2932
2923
  */
2933
- type?: GeometryType;
2924
+ type?: GeoJsonObjectType;
2934
2925
  };
2935
2926
  /**
2936
2927
  * Multipoint geometry object definition.
@@ -2941,27 +2932,25 @@ export type MultiPolygonDc = GeometryDc & {
2941
2932
  /**
2942
2933
  *
2943
2934
  *
2944
- * unknown
2945
- *
2946
- * point
2935
+ * Point
2947
2936
  *
2948
- * polyline
2937
+ * MultiPoint
2949
2938
  *
2950
- * polygon
2939
+ * LineString
2951
2940
  *
2952
- * envelope
2941
+ * MultiLineString
2953
2942
  *
2954
- * multipoint
2943
+ * Polygon
2955
2944
  *
2956
- * line
2945
+ * MultiPolygon
2957
2946
  *
2958
- * ring
2947
+ * GeometryCollection
2959
2948
  *
2960
- * multipolygon
2949
+ * Feature
2961
2950
  *
2962
- * collection
2951
+ * FeatureCollection
2963
2952
  */
2964
- type?: GeometryType;
2953
+ type?: GeoJsonObjectType;
2965
2954
  };
2966
2955
  /**
2967
2956
  * Information about a namespace .
@@ -2998,18 +2987,40 @@ export interface Operation {
2998
2987
  /**
2999
2988
  * Features list definition.
3000
2989
  */
3001
- export type PagedBulkFeaturesListDc = PagedListFeatureDc & {
2990
+ export interface PagedBulkFeaturesListDc {
3002
2991
  /** Layer name. */
3003
- layerName?: string | null;
2992
+ layerName?: string;
3004
2993
  /** Has error. */
3005
2994
  hasError?: boolean;
3006
2995
  /** Error text. */
3007
- error?: string | null;
3008
- };
2996
+ error?: string;
2997
+ /** Features list definition. */
2998
+ featureCollection?: PagedFeaturesListDc;
2999
+ }
3009
3000
  /**
3010
3001
  * Features list definition.
3011
3002
  */
3012
- export type PagedFeaturesListDc = PagedListFeatureDc & object;
3003
+ export interface PagedFeaturesListDc {
3004
+ /** Type. */
3005
+ type?: string;
3006
+ /** Features. */
3007
+ features?: FeatureDc[];
3008
+ /**
3009
+ * Total number of items that the list contains, e.g. if the paging is not applied.
3010
+ * @format int64
3011
+ */
3012
+ totalCount?: number;
3013
+ /**
3014
+ * The first index of the item in the list that is returned in the Items parameter.
3015
+ * @format int32
3016
+ */
3017
+ offset?: number;
3018
+ /**
3019
+ * Maximum number of the items that the Items parameter may contain.
3020
+ * @format int32
3021
+ */
3022
+ limit?: number;
3023
+ }
3013
3024
  export interface PagedListConfigDc {
3014
3025
  /** @format int64 */
3015
3026
  totalCount?: number;
@@ -3209,27 +3220,25 @@ export type PointDc = GeometryDc & {
3209
3220
  /**
3210
3221
  *
3211
3222
  *
3212
- * unknown
3213
- *
3214
- * point
3223
+ * Point
3215
3224
  *
3216
- * polyline
3225
+ * MultiPoint
3217
3226
  *
3218
- * polygon
3227
+ * LineString
3219
3228
  *
3220
- * envelope
3229
+ * MultiLineString
3221
3230
  *
3222
- * multipoint
3231
+ * Polygon
3223
3232
  *
3224
- * line
3233
+ * MultiPolygon
3225
3234
  *
3226
- * ring
3235
+ * GeometryCollection
3227
3236
  *
3228
- * multipolygon
3237
+ * Feature
3229
3238
  *
3230
- * collection
3239
+ * FeatureCollection
3231
3240
  */
3232
- type?: GeometryType;
3241
+ type?: GeoJsonObjectType;
3233
3242
  };
3234
3243
  export interface PolicyDc {
3235
3244
  /**
@@ -3292,27 +3301,25 @@ export type PolygonDc = GeometryDc & {
3292
3301
  /**
3293
3302
  *
3294
3303
  *
3295
- * unknown
3296
- *
3297
- * point
3304
+ * Point
3298
3305
  *
3299
- * polyline
3306
+ * MultiPoint
3300
3307
  *
3301
- * polygon
3308
+ * LineString
3302
3309
  *
3303
- * envelope
3310
+ * MultiLineString
3304
3311
  *
3305
- * multipoint
3312
+ * Polygon
3306
3313
  *
3307
- * line
3314
+ * MultiPolygon
3308
3315
  *
3309
- * ring
3316
+ * GeometryCollection
3310
3317
  *
3311
- * multipolygon
3318
+ * Feature
3312
3319
  *
3313
- * collection
3320
+ * FeatureCollection
3314
3321
  */
3315
- type?: GeometryType;
3322
+ type?: GeoJsonObjectType;
3316
3323
  /** Polygon coordinates. */
3317
3324
  coordinates: PositionDc[][];
3318
3325
  };
@@ -3323,27 +3330,25 @@ export type PolylineDc = GeometryDc & {
3323
3330
  /**
3324
3331
  *
3325
3332
  *
3326
- * unknown
3327
- *
3328
- * point
3333
+ * Point
3329
3334
  *
3330
- * polyline
3335
+ * MultiPoint
3331
3336
  *
3332
- * polygon
3337
+ * LineString
3333
3338
  *
3334
- * envelope
3339
+ * MultiLineString
3335
3340
  *
3336
- * multipoint
3341
+ * Polygon
3337
3342
  *
3338
- * line
3343
+ * MultiPolygon
3339
3344
  *
3340
- * ring
3345
+ * GeometryCollection
3341
3346
  *
3342
- * multipolygon
3347
+ * Feature
3343
3348
  *
3344
- * collection
3349
+ * FeatureCollection
3345
3350
  */
3346
- type?: GeometryType;
3351
+ type?: GeoJsonObjectType;
3347
3352
  /** Poly coordinates. */
3348
3353
  coordinates: PositionDc[][];
3349
3354
  };
@@ -3655,6 +3660,32 @@ export type ProxyServiceInfoDc = ServiceInfoDc & {
3655
3660
  /** Edit configuration. Storage isn't used by server. */
3656
3661
  editConfiguration?: any;
3657
3662
  };
3663
+ export interface PullResponse {
3664
+ commitSha?: string;
3665
+ files?: FileDto[];
3666
+ /** @format int32 */
3667
+ syncVersion?: number;
3668
+ /** @format date-time */
3669
+ pulledAt?: string;
3670
+ }
3671
+ /**
3672
+ * Push request data transfer object.
3673
+ */
3674
+ export interface PushRequestDc {
3675
+ /** Resource id to push. */
3676
+ resourceId: string;
3677
+ /** Commit message. */
3678
+ commitMessage: string;
3679
+ }
3680
+ export interface PushResponse {
3681
+ commitSha?: string;
3682
+ /** @format int32 */
3683
+ syncVersion?: number;
3684
+ /** @format int32 */
3685
+ changesCount?: number;
3686
+ /** @format date-time */
3687
+ pushedAt?: string;
3688
+ }
3658
3689
  /**
3659
3690
  * Configuration for the python service.
3660
3691
  */
@@ -3707,20 +3738,6 @@ export type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
3707
3738
  /** Gets or sets method. */
3708
3739
  method?: string | null;
3709
3740
  };
3710
- /**
3711
- * Stream quality.
3712
-
3713
- Low
3714
-
3715
- Medium
3716
-
3717
- High
3718
- */
3719
- export declare enum Quality {
3720
- Low = "Low",
3721
- Medium = "Medium",
3722
- High = "High"
3723
- }
3724
3741
  /**
3725
3742
  * Query geometry data contract.
3726
3743
  */
@@ -4106,6 +4123,8 @@ export interface RegisterUserDc {
4106
4123
  company?: string;
4107
4124
  /** Has newsletter subscription. */
4108
4125
  is_subscribed?: boolean;
4126
+ /** Additional information or goals. */
4127
+ goals?: string;
4109
4128
  }
4110
4129
  /**
4111
4130
  *
@@ -4443,6 +4462,27 @@ export interface RolePermissionDc {
4443
4462
  */
4444
4463
  permissions: Permissions;
4445
4464
  }
4465
+ /**
4466
+ * Rollback request data transfer object.
4467
+ */
4468
+ export interface RollbackRequestDc {
4469
+ /** Resource id to rollback. */
4470
+ resourceId: string;
4471
+ /**
4472
+ * Target version rollback to.
4473
+ * @format int32
4474
+ */
4475
+ targetVersion: number;
4476
+ }
4477
+ export interface RollbackResponse {
4478
+ newCommitSha?: string;
4479
+ /** @format int32 */
4480
+ syncVersion?: number;
4481
+ /** @format int32 */
4482
+ rolledBackToVersion?: number;
4483
+ /** @format date-time */
4484
+ rolledBackAt?: string;
4485
+ }
4446
4486
  /**
4447
4487
  * Route service configuration Dc.
4448
4488
  */
@@ -4932,6 +4972,32 @@ export interface StatisticsResultObject {
4932
4972
  /** Value. */
4933
4973
  value?: any;
4934
4974
  }
4975
+ /**
4976
+ * Represents the current status of a connected storage.
4977
+ */
4978
+ export interface StatusResponseDc {
4979
+ /** Repository url. */
4980
+ repositoryUrl?: string;
4981
+ /** Branch. */
4982
+ branch?: string;
4983
+ /** Last commit sha. */
4984
+ lastCommitSha?: string;
4985
+ /**
4986
+ * Latest repository version.
4987
+ * @format int32
4988
+ */
4989
+ latestVersion?: number;
4990
+ /**
4991
+ * Connection timestamp.
4992
+ * @format date-time
4993
+ */
4994
+ connectedAt?: string;
4995
+ /**
4996
+ * Last sync timestamp.
4997
+ * @format date-time
4998
+ */
4999
+ lastSyncAt?: string;
5000
+ }
4935
5001
  /**
4936
5002
  *
4937
5003
 
@@ -4960,6 +5026,8 @@ export interface SubTaskSettingsDto {
4960
5026
  order?: number;
4961
5027
  /** Type. */
4962
5028
  type?: string;
5029
+ /** Description. */
5030
+ description?: string;
4963
5031
  /** StartParameters. */
4964
5032
  startParameters?: any;
4965
5033
  }
@@ -5695,7 +5763,7 @@ export interface TokenResponseDc {
5695
5763
  */
5696
5764
  export interface UpdateFeatureDc {
5697
5765
  /** Feature geometry definition. */
5698
- geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
5766
+ geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
5699
5767
  /** Feature attributes collection. */
5700
5768
  attributes?: Record<string, any>;
5701
5769
  /** Feature unique identifier. */
@@ -5818,6 +5886,8 @@ export interface UpdateUserDc {
5818
5886
  company?: string;
5819
5887
  /** Has newsletter subscription. */
5820
5888
  is_subscribed?: boolean;
5889
+ /** Additional information or goals. */
5890
+ goals?: string;
5821
5891
  }
5822
5892
  /**
5823
5893
  * Set used project.
@@ -5896,6 +5966,17 @@ export interface ValuesRangeDc {
5896
5966
  /** Maximum value. */
5897
5967
  max: any;
5898
5968
  }
5969
+ export interface VersionDto {
5970
+ /** @format int32 */
5971
+ versionNumber?: number;
5972
+ commitSha?: string;
5973
+ message?: string;
5974
+ /** @format date-time */
5975
+ createdAt?: string;
5976
+ }
5977
+ export interface VersionsResponse {
5978
+ versions?: VersionDto[];
5979
+ }
5899
5980
  /**
5900
5981
  * Configuration of a table for feature layer.
5901
5982
  */
@@ -6387,104 +6468,6 @@ export interface UploadPreview1Payload {
6387
6468
  /** @format binary */
6388
6469
  file?: File;
6389
6470
  }
6390
- export interface GetCamerasParams {
6391
- /**
6392
- * Page objects limit.
6393
- * @format int32
6394
- * @default 50
6395
- */
6396
- limit?: number;
6397
- /**
6398
- * Objects skip.
6399
- * @format int32
6400
- * @default 0
6401
- */
6402
- offset?: number;
6403
- }
6404
- export interface GetArchiveFeedParams {
6405
- /**
6406
- * Timestamp from which to start the archive playback.
6407
- * UNIX time (both seconds and milliseconds are supported).
6408
- * @format date-time
6409
- */
6410
- startTime?: string;
6411
- /**
6412
- * Timestamp at which to stop the playback.
6413
- * UNIX time (both seconds and milliseconds are supported).
6414
- * @format date-time
6415
- */
6416
- endTime?: string;
6417
- /**
6418
- * Playback speed factor.
6419
- * Possible values: 1 2 4 8 16 32 64.
6420
- * @format int32
6421
- */
6422
- speed?: number;
6423
- /** Camera id. */
6424
- cameraId: string;
6425
- }
6426
- export interface GetArchiveTimelineParams {
6427
- /**
6428
- * Start of the timeframe UNIX time (seconds).
6429
- * @format date-time
6430
- */
6431
- startTime?: string;
6432
- /**
6433
- * End of the timeframe UNIX time (seconds).
6434
- * @format date-time
6435
- */
6436
- endTime?: string;
6437
- /** Camera id. */
6438
- cameraId: string;
6439
- }
6440
- export interface GetArchiveCalendarParams {
6441
- /** Start of the timeframe UNIX time (seconds). */
6442
- startTime?: string;
6443
- /** End of the timeframe UNIX time (seconds). */
6444
- endTime?: string;
6445
- /** Timezone. */
6446
- tz?: string;
6447
- /** Camera id. */
6448
- cameraId: string;
6449
- }
6450
- export interface GetArchiveSnapshotParams {
6451
- /**
6452
- * Timestamp of the moment at which to take the snapshot.
6453
- * UNIX timestamp (in seconds).
6454
- * @format date-time
6455
- */
6456
- time?: string;
6457
- /** Camera id. */
6458
- cameraId: string;
6459
- }
6460
- export interface GetLiveFeedParams {
6461
- /**
6462
- * Duration.
6463
- * @format int64
6464
- */
6465
- duration?: number;
6466
- /** Camera id. */
6467
- cameraId: string;
6468
- }
6469
- export interface GetLivePreviewStreamParams {
6470
- /**
6471
- * Frame per second.
6472
- * @format float
6473
- */
6474
- fps?: number;
6475
- /**
6476
- * Quality.
6477
- *
6478
- * Low
6479
- *
6480
- * Medium
6481
- *
6482
- * High
6483
- */
6484
- quality?: Quality;
6485
- /** Id of the camera. */
6486
- cameraId: string;
6487
- }
6488
6471
  export interface GetTagsParams {
6489
6472
  /** Text filter. */
6490
6473
  filter?: string;
@@ -6574,6 +6557,16 @@ export interface CreateFile1Payload {
6574
6557
  }
6575
6558
  export type SetPermissionsPayload = ResourceAclDc[];
6576
6559
  export type CopyResourcesPayload = CopyResourceDc[];
6560
+ export interface GitVersionsParams {
6561
+ /**
6562
+ * Limit of versions to get.
6563
+ * @format int32
6564
+ * @default 10
6565
+ */
6566
+ limit?: number;
6567
+ /** Resource id to get versions. */
6568
+ resourceId: string;
6569
+ }
6577
6570
  export interface GetConfigurationsListParams {
6578
6571
  /**
6579
6572
  * Offset.
@@ -6723,25 +6716,6 @@ export interface BindCallbackParams {
6723
6716
  /** Redirect URL. */
6724
6717
  redirect?: string;
6725
6718
  }
6726
- export interface IncreaseResourcesLimitParams {
6727
- /**
6728
- * Additional maps count.
6729
- * @format int32
6730
- */
6731
- MapLimit?: number;
6732
- /**
6733
- * Additional layers count.
6734
- * @format int32
6735
- */
6736
- LayersLimit?: number;
6737
- /**
6738
- * Additional data sources count.
6739
- * @format int32
6740
- */
6741
- DataSourceLimit?: number;
6742
- /** Request justification. */
6743
- Justification?: string;
6744
- }
6745
6719
  export interface FeedbackPayload {
6746
6720
  /** Attachments. */
6747
6721
  Attachments?: File[];
@@ -6905,6 +6879,7 @@ export type PublishProxyServicePayload = ProxyServiceConfigurationDc | PbfServic
6905
6879
  * Configuration for the proxy service.
6906
6880
  */
6907
6881
  export type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
6882
+ export type PatchQueryLayerServicePayload = Operation[];
6908
6883
  export interface GetFeatures1Params {
6909
6884
  /** Click geometry. */
6910
6885
  ewktGeometry?: string;
@@ -7256,8 +7231,6 @@ export interface GetProjectEnvelopeParams {
7256
7231
  /** The name of the project. */
7257
7232
  name: string;
7258
7233
  }
7259
- export type PatchProjectConfigurationPayload = Operation[];
7260
- export type PutProjectConfigurationPayload = any;
7261
7234
  export interface GetAllScriptMethodsParams {
7262
7235
  /** ResourceId. */
7263
7236
  resourceId?: string;