@evergis/api 4.1.13 → 4.1.15

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.
@@ -420,15 +420,21 @@ export interface AttributeDefinitionDc {
420
420
  *
421
421
  * Point
422
422
  *
423
- * Polyline
423
+ * LineString
424
424
  *
425
- * MultiPolygon
425
+ * Polygon
426
426
  *
427
427
  * Multipoint
428
428
  *
429
+ * Polyline
430
+ *
429
431
  * H3Index
430
432
  *
431
433
  * Json
434
+ *
435
+ * MultiPolygon
436
+ *
437
+ * GeometryCollection
432
438
  */
433
439
  type: AttributeType;
434
440
  /** Alias of the attribute. */
@@ -657,15 +663,21 @@ Boolean
657
663
 
658
664
  Point
659
665
 
660
- Polyline
666
+ LineString
661
667
 
662
- MultiPolygon
668
+ Polygon
663
669
 
664
670
  Multipoint
665
671
 
672
+ Polyline
673
+
666
674
  H3Index
667
675
 
668
676
  Json
677
+
678
+ MultiPolygon
679
+
680
+ GeometryCollection
669
681
  */
670
682
  export declare enum AttributeType {
671
683
  Unknown = "Unknown",
@@ -676,11 +688,14 @@ export declare enum AttributeType {
676
688
  DateTime = "DateTime",
677
689
  Boolean = "Boolean",
678
690
  Point = "Point",
679
- Polyline = "Polyline",
680
- MultiPolygon = "MultiPolygon",
691
+ LineString = "LineString",
692
+ Polygon = "Polygon",
681
693
  Multipoint = "Multipoint",
694
+ Polyline = "Polyline",
682
695
  H3Index = "H3Index",
683
- Json = "Json"
696
+ Json = "Json",
697
+ MultiPolygon = "MultiPolygon",
698
+ GeometryCollection = "GeometryCollection"
684
699
  }
685
700
  /**
686
701
  * Configuration of the attribute set in a feature layer.
@@ -741,7 +756,7 @@ export interface BatchResourcesAclDc {
741
756
  export interface BookmarkDc {
742
757
  /** The title of the bookmark. */
743
758
  title?: string;
744
- /** The position at the map in [X, Y] format. */
759
+ /** The position at the map. */
745
760
  position?: PositionDc;
746
761
  /**
747
762
  * Resolution of the map.
@@ -826,6 +841,8 @@ export interface CatalogConfigurationDc {
826
841
  export interface CatalogResourceDc {
827
842
  /** Resource id. */
828
843
  resourceId?: string;
844
+ /** Resource id. */
845
+ targetResourceId?: string;
829
846
  /** System name. */
830
847
  systemName?: string;
831
848
  /** Parent resource id. */
@@ -869,6 +886,8 @@ export interface CatalogResourceDc {
869
886
  isTemporary?: boolean;
870
887
  /** Check if resource is system. */
871
888
  isSystem?: boolean;
889
+ /** Check if resource is symlink. */
890
+ isSymlink?: boolean;
872
891
  /** Owner of the resource. */
873
892
  owner?: string;
874
893
  /** Resource path. */
@@ -1036,15 +1055,21 @@ export interface ColumnDescriptionDc {
1036
1055
  *
1037
1056
  * Point
1038
1057
  *
1039
- * Polyline
1058
+ * LineString
1040
1059
  *
1041
- * MultiPolygon
1060
+ * Polygon
1042
1061
  *
1043
1062
  * Multipoint
1044
1063
  *
1064
+ * Polyline
1065
+ *
1045
1066
  * H3Index
1046
1067
  *
1047
1068
  * Json
1069
+ *
1070
+ * MultiPolygon
1071
+ *
1072
+ * GeometryCollection
1048
1073
  */
1049
1074
  type: AttributeType;
1050
1075
  /**
@@ -1321,6 +1346,23 @@ export interface CreateSymbolDc {
1321
1346
  */
1322
1347
  categoryId?: number;
1323
1348
  }
1349
+ /**
1350
+ * Create symlink.
1351
+ */
1352
+ export interface CreateSymlinkDc {
1353
+ /** Symlink name. */
1354
+ name: string;
1355
+ /** System name. */
1356
+ systemName: string;
1357
+ /** Target resource. */
1358
+ targetResourceId: string;
1359
+ /** Description of the file. */
1360
+ description?: string;
1361
+ /** Parent resource id. */
1362
+ parentId?: string;
1363
+ /** A set of tags. */
1364
+ tags?: string[];
1365
+ }
1324
1366
  /**
1325
1367
  * Data contract for create new user.
1326
1368
  */
@@ -1588,11 +1630,19 @@ export type EnvelopeDc = GeometryDc & {
1588
1630
  *
1589
1631
  * polyline
1590
1632
  *
1591
- * multipolygon
1633
+ * polygon
1592
1634
  *
1593
1635
  * envelope
1594
1636
  *
1595
1637
  * multipoint
1638
+ *
1639
+ * line
1640
+ *
1641
+ * ring
1642
+ *
1643
+ * multipolygon
1644
+ *
1645
+ * collection
1596
1646
  */
1597
1647
  type?: GeometryType;
1598
1648
  };
@@ -1619,15 +1669,21 @@ export type EqlAttributeConfigurationDc = AttributeConfigurationDc & {
1619
1669
  *
1620
1670
  * Point
1621
1671
  *
1622
- * Polyline
1672
+ * LineString
1623
1673
  *
1624
- * MultiPolygon
1674
+ * Polygon
1625
1675
  *
1626
1676
  * Multipoint
1627
1677
  *
1678
+ * Polyline
1679
+ *
1628
1680
  * H3Index
1629
1681
  *
1630
1682
  * Json
1683
+ *
1684
+ * MultiPolygon
1685
+ *
1686
+ * GeometryCollection
1631
1687
  */
1632
1688
  type?: AttributeType;
1633
1689
  };
@@ -1777,15 +1833,21 @@ export interface ExpressionValidationResultDc {
1777
1833
  *
1778
1834
  * Point
1779
1835
  *
1780
- * Polyline
1836
+ * LineString
1781
1837
  *
1782
- * MultiPolygon
1838
+ * Polygon
1783
1839
  *
1784
1840
  * Multipoint
1785
1841
  *
1842
+ * Polyline
1843
+ *
1786
1844
  * H3Index
1787
1845
  *
1788
1846
  * Json
1847
+ *
1848
+ * MultiPolygon
1849
+ *
1850
+ * GeometryCollection
1789
1851
  */
1790
1852
  returnType?: AttributeType;
1791
1853
  /** The expression that was validated. */
@@ -1977,11 +2039,19 @@ export interface FailedServiceInfoDc {
1977
2039
  *
1978
2040
  * polyline
1979
2041
  *
1980
- * multipolygon
2042
+ * polygon
1981
2043
  *
1982
2044
  * envelope
1983
2045
  *
1984
2046
  * multipoint
2047
+ *
2048
+ * line
2049
+ *
2050
+ * ring
2051
+ *
2052
+ * multipolygon
2053
+ *
2054
+ * collection
1985
2055
  */
1986
2056
  geometryType: GeometryType;
1987
2057
  /**
@@ -2055,7 +2125,7 @@ export interface FailedServiceInfoDc {
2055
2125
  */
2056
2126
  export interface FeatureDc {
2057
2127
  /** Feature geometry definition. */
2058
- geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
2128
+ geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2059
2129
  /** Feature attributes collection. */
2060
2130
  attributes: Record<string, any>;
2061
2131
  /** Feature unique identifier. */
@@ -2110,11 +2180,19 @@ export interface FeatureLayerServiceInfoDc {
2110
2180
  *
2111
2181
  * polyline
2112
2182
  *
2113
- * multipolygon
2183
+ * polygon
2114
2184
  *
2115
2185
  * envelope
2116
2186
  *
2117
2187
  * multipoint
2188
+ *
2189
+ * line
2190
+ *
2191
+ * ring
2192
+ *
2193
+ * multipolygon
2194
+ *
2195
+ * collection
2118
2196
  */
2119
2197
  geometryType: GeometryType;
2120
2198
  /**
@@ -2235,10 +2313,10 @@ export interface GeocodeResultDc {
2235
2313
  * @format double
2236
2314
  */
2237
2315
  score?: number;
2238
- /** The position at the map in [X, Y] format. */
2316
+ /** The position at the map. */
2239
2317
  center?: PositionDc;
2240
2318
  /** Result geometry. */
2241
- geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
2319
+ geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2242
2320
  }
2243
2321
  /**
2244
2322
  * Geocode suggest result.
@@ -2251,6 +2329,37 @@ export interface GeocodeSuggestResultDc {
2251
2329
  /** Source id. */
2252
2330
  id?: string;
2253
2331
  }
2332
+ /**
2333
+ * Multipoint geometry object definition.
2334
+ */
2335
+ export type GeometryCollectionDc = GeometryDc & {
2336
+ /** Multipoint coordinates. */
2337
+ geometries: (EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc)[];
2338
+ /**
2339
+ *
2340
+ *
2341
+ * unknown
2342
+ *
2343
+ * point
2344
+ *
2345
+ * polyline
2346
+ *
2347
+ * polygon
2348
+ *
2349
+ * envelope
2350
+ *
2351
+ * multipoint
2352
+ *
2353
+ * line
2354
+ *
2355
+ * ring
2356
+ *
2357
+ * multipolygon
2358
+ *
2359
+ * collection
2360
+ */
2361
+ type?: GeometryType;
2362
+ };
2254
2363
  /**
2255
2364
  * Geometry data contract.
2256
2365
  */
@@ -2264,11 +2373,19 @@ export interface GeometryDc {
2264
2373
  *
2265
2374
  * polyline
2266
2375
  *
2267
- * multipolygon
2376
+ * polygon
2268
2377
  *
2269
2378
  * envelope
2270
2379
  *
2271
2380
  * multipoint
2381
+ *
2382
+ * line
2383
+ *
2384
+ * ring
2385
+ *
2386
+ * multipolygon
2387
+ *
2388
+ * collection
2272
2389
  */
2273
2390
  type: GeometryType;
2274
2391
  /**
@@ -2286,19 +2403,31 @@ point
2286
2403
 
2287
2404
  polyline
2288
2405
 
2289
- multipolygon
2406
+ polygon
2290
2407
 
2291
2408
  envelope
2292
2409
 
2293
2410
  multipoint
2411
+
2412
+ line
2413
+
2414
+ ring
2415
+
2416
+ multipolygon
2417
+
2418
+ collection
2294
2419
  */
2295
2420
  export declare enum GeometryType {
2296
2421
  Unknown = "unknown",
2297
2422
  Point = "point",
2298
2423
  Polyline = "polyline",
2299
- Polygon = "multipolygon",
2424
+ Polygon = "polygon",
2300
2425
  Envelope = "envelope",
2301
- Multipoint = "multipoint"
2426
+ Multipoint = "multipoint",
2427
+ LineString = "line",
2428
+ LinearRing = "ring",
2429
+ MultiPolygon = "multipolygon",
2430
+ GeometryCollection = "collection"
2302
2431
  }
2303
2432
  /**
2304
2433
  * Get extent from layer paramaters.
@@ -2561,24 +2690,6 @@ export interface GetSumOfProductDc {
2561
2690
  /** Filter query geometries. */
2562
2691
  geometries?: QueryGeometryDc[];
2563
2692
  }
2564
- /**
2565
- * Resource group.
2566
-
2567
- my
2568
-
2569
- role
2570
-
2571
- public
2572
-
2573
- all
2574
- */
2575
- export declare enum Group {
2576
- My = "my",
2577
- Role = "role",
2578
- Public = "public",
2579
- All = "all"
2580
- }
2581
- export type IAsyncEnumerableLivePreviewDc = object;
2582
2693
  /**
2583
2694
  * Data schema of a file for import.
2584
2695
  */
@@ -2649,11 +2760,19 @@ export interface LayerDefinitionDc {
2649
2760
  *
2650
2761
  * polyline
2651
2762
  *
2652
- * multipolygon
2763
+ * polygon
2653
2764
  *
2654
2765
  * envelope
2655
2766
  *
2656
2767
  * multipoint
2768
+ *
2769
+ * line
2770
+ *
2771
+ * ring
2772
+ *
2773
+ * multipolygon
2774
+ *
2775
+ * collection
2657
2776
  */
2658
2777
  geometryType?: GeometryType;
2659
2778
  /**
@@ -2694,12 +2813,43 @@ export interface LayerUpdateInfoDc {
2694
2813
  /** Envelope geometry. */
2695
2814
  boundingBox?: EnvelopeDc;
2696
2815
  /** Array of created ids. */
2697
- createdIds?: ObjectId[];
2816
+ createdIds?: string[];
2698
2817
  /** Array of updated ids. */
2699
- updatedIds?: ObjectId[];
2818
+ updatedIds?: string[];
2700
2819
  /** Array of deleted ids. */
2701
- deletedIds?: ObjectId[];
2820
+ deletedIds?: string[];
2702
2821
  }
2822
+ /**
2823
+ * Polyline geometry object definition.
2824
+ */
2825
+ export type LineStringDc = GeometryDc & {
2826
+ /**
2827
+ *
2828
+ *
2829
+ * unknown
2830
+ *
2831
+ * point
2832
+ *
2833
+ * polyline
2834
+ *
2835
+ * polygon
2836
+ *
2837
+ * envelope
2838
+ *
2839
+ * multipoint
2840
+ *
2841
+ * line
2842
+ *
2843
+ * ring
2844
+ *
2845
+ * multipolygon
2846
+ *
2847
+ * collection
2848
+ */
2849
+ type?: GeometryType;
2850
+ /** Poly coordinates. */
2851
+ coordinates: PositionDc[];
2852
+ };
2703
2853
  /**
2704
2854
  * Linear service configuration Dc.
2705
2855
  */
@@ -2799,7 +2949,7 @@ export interface LoginResultDc {
2799
2949
  }
2800
2950
  /**
2801
2951
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
2802
-
2952
+
2803
2953
  SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
2804
2954
  */
2805
2955
  export interface MapTableInfoDc {
@@ -2876,6 +3026,8 @@ export interface MoveResourceDc {
2876
3026
  targetResource?: string;
2877
3027
  /** Name of target resource. */
2878
3028
  newName?: string;
3029
+ /** Rewrite target if exists. */
3030
+ rewrite?: boolean;
2879
3031
  }
2880
3032
  /**
2881
3033
  * Multipoint geometry object definition.
@@ -2892,11 +3044,50 @@ export type MultiPointDc = GeometryDc & {
2892
3044
  *
2893
3045
  * polyline
2894
3046
  *
3047
+ * polygon
3048
+ *
3049
+ * envelope
3050
+ *
3051
+ * multipoint
3052
+ *
3053
+ * line
3054
+ *
3055
+ * ring
3056
+ *
2895
3057
  * multipolygon
2896
3058
  *
3059
+ * collection
3060
+ */
3061
+ type?: GeometryType;
3062
+ };
3063
+ /**
3064
+ * Multipoint geometry object definition.
3065
+ */
3066
+ export type MultiPolygonDc = GeometryDc & {
3067
+ /** Multipoint coordinates. */
3068
+ coordinates: PositionDc[][][];
3069
+ /**
3070
+ *
3071
+ *
3072
+ * unknown
3073
+ *
3074
+ * point
3075
+ *
3076
+ * polyline
3077
+ *
3078
+ * polygon
3079
+ *
2897
3080
  * envelope
2898
3081
  *
2899
3082
  * multipoint
3083
+ *
3084
+ * line
3085
+ *
3086
+ * ring
3087
+ *
3088
+ * multipolygon
3089
+ *
3090
+ * collection
2900
3091
  */
2901
3092
  type?: GeometryType;
2902
3093
  };
@@ -2983,15 +3174,6 @@ export interface PagedListFeatureDc {
2983
3174
  limit?: number;
2984
3175
  items?: FeatureDc[];
2985
3176
  }
2986
- export interface PagedListProjectInfoDc {
2987
- /** @format int64 */
2988
- totalCount?: number;
2989
- /** @format int32 */
2990
- offset?: number;
2991
- /** @format int32 */
2992
- limit?: number;
2993
- items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
2994
- }
2995
3177
  export interface PagedListQueryHistoryDc {
2996
3178
  /** @format int64 */
2997
3179
  totalCount?: number;
@@ -3019,15 +3201,6 @@ export interface PagedListRoleInfoDc {
3019
3201
  limit?: number;
3020
3202
  items?: RoleInfoDc[];
3021
3203
  }
3022
- export interface PagedListServiceListItemDc {
3023
- /** @format int64 */
3024
- totalCount?: number;
3025
- /** @format int32 */
3026
- offset?: number;
3027
- /** @format int32 */
3028
- limit?: number;
3029
- items?: ServiceListItemDc[];
3030
- }
3031
3204
  export interface PagedListSymbolCategoryInfoDc {
3032
3205
  /** @format int64 */
3033
3206
  totalCount?: number;
@@ -3046,15 +3219,6 @@ export interface PagedListSymbolInfoDc {
3046
3219
  limit?: number;
3047
3220
  items?: SymbolInfoDc[];
3048
3221
  }
3049
- export interface PagedListTableListItemDc {
3050
- /** @format int64 */
3051
- totalCount?: number;
3052
- /** @format int32 */
3053
- offset?: number;
3054
- /** @format int32 */
3055
- limit?: number;
3056
- items?: TableListItemDc[];
3057
- }
3058
3222
  export interface PagedListUserInfoDc {
3059
3223
  /** @format int64 */
3060
3224
  totalCount?: number;
@@ -3168,7 +3332,7 @@ export declare enum Permissions {
3168
3332
  * Spatial point geometry object representation.
3169
3333
  */
3170
3334
  export type PointDc = GeometryDc & {
3171
- /** The position at the map in [X, Y] format. */
3335
+ /** The position at the map. */
3172
3336
  coordinates: PositionDc;
3173
3337
  /**
3174
3338
  *
@@ -3179,11 +3343,19 @@ export type PointDc = GeometryDc & {
3179
3343
  *
3180
3344
  * polyline
3181
3345
  *
3182
- * multipolygon
3346
+ * polygon
3183
3347
  *
3184
3348
  * envelope
3185
3349
  *
3186
3350
  * multipoint
3351
+ *
3352
+ * line
3353
+ *
3354
+ * ring
3355
+ *
3356
+ * multipolygon
3357
+ *
3358
+ * collection
3187
3359
  */
3188
3360
  type?: GeometryType;
3189
3361
  };
@@ -3254,14 +3426,22 @@ export type PolygonDc = GeometryDc & {
3254
3426
  *
3255
3427
  * polyline
3256
3428
  *
3257
- * multipolygon
3429
+ * polygon
3258
3430
  *
3259
3431
  * envelope
3260
3432
  *
3261
3433
  * multipoint
3434
+ *
3435
+ * line
3436
+ *
3437
+ * ring
3438
+ *
3439
+ * multipolygon
3440
+ *
3441
+ * collection
3262
3442
  */
3263
3443
  type?: GeometryType;
3264
- /** Poly coordinates. */
3444
+ /** Polygon coordinates. */
3265
3445
  coordinates: PositionDc[][];
3266
3446
  };
3267
3447
  /**
@@ -3277,18 +3457,26 @@ export type PolylineDc = GeometryDc & {
3277
3457
  *
3278
3458
  * polyline
3279
3459
  *
3280
- * multipolygon
3460
+ * polygon
3281
3461
  *
3282
3462
  * envelope
3283
3463
  *
3284
3464
  * multipoint
3465
+ *
3466
+ * line
3467
+ *
3468
+ * ring
3469
+ *
3470
+ * multipolygon
3471
+ *
3472
+ * collection
3285
3473
  */
3286
3474
  type?: GeometryType;
3287
3475
  /** Poly coordinates. */
3288
3476
  coordinates: PositionDc[][];
3289
3477
  };
3290
3478
  /**
3291
- * The position at the map in [X, Y] format.
3479
+ * The position at the map.
3292
3480
  */
3293
3481
  export type PositionDc = number[];
3294
3482
  /**
@@ -3385,7 +3573,7 @@ export interface ProjectConfigurationDc {
3385
3573
  * @default 0
3386
3574
  */
3387
3575
  resolution?: number;
3388
- /** The position at the map in [X, Y] format. */
3576
+ /** The position at the map. */
3389
3577
  position?: PositionDc;
3390
3578
  /**
3391
3579
  * Map spatial reference code.
@@ -3530,11 +3718,19 @@ export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3530
3718
  *
3531
3719
  * polyline
3532
3720
  *
3533
- * multipolygon
3721
+ * polygon
3534
3722
  *
3535
3723
  * envelope
3536
3724
  *
3537
3725
  * multipoint
3726
+ *
3727
+ * line
3728
+ *
3729
+ * ring
3730
+ *
3731
+ * multipolygon
3732
+ *
3733
+ * collection
3538
3734
  */
3539
3735
  geometryType?: GeometryType;
3540
3736
  /** Source system type, e.g. "ArcGIS". */
@@ -3613,11 +3809,19 @@ export interface ProxyServiceInfoDc {
3613
3809
  *
3614
3810
  * polyline
3615
3811
  *
3616
- * multipolygon
3812
+ * polygon
3617
3813
  *
3618
3814
  * envelope
3619
3815
  *
3620
3816
  * multipoint
3817
+ *
3818
+ * line
3819
+ *
3820
+ * ring
3821
+ *
3822
+ * multipolygon
3823
+ *
3824
+ * collection
3621
3825
  */
3622
3826
  geometryType: GeometryType;
3623
3827
  /**
@@ -3738,20 +3942,6 @@ export type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
3738
3942
  /** Gets or sets method. */
3739
3943
  method?: string | null;
3740
3944
  };
3741
- /**
3742
- * Stream quality.
3743
-
3744
- Low
3745
-
3746
- Medium
3747
-
3748
- High
3749
- */
3750
- export declare enum Quality {
3751
- Low = "Low",
3752
- Medium = "Medium",
3753
- High = "High"
3754
- }
3755
3945
  /**
3756
3946
  * Query geometry data contract.
3757
3947
  */
@@ -3842,15 +4032,21 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
3842
4032
  *
3843
4033
  * Point
3844
4034
  *
3845
- * Polyline
4035
+ * LineString
3846
4036
  *
3847
- * MultiPolygon
4037
+ * Polygon
3848
4038
  *
3849
4039
  * Multipoint
3850
4040
  *
4041
+ * Polyline
4042
+ *
3851
4043
  * H3Index
3852
4044
  *
3853
4045
  * Json
4046
+ *
4047
+ * MultiPolygon
4048
+ *
4049
+ * GeometryCollection
3854
4050
  */
3855
4051
  geometryType?: AttributeType;
3856
4052
  /** Configuration of the attribute set in a feature layer. */
@@ -3894,15 +4090,21 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
3894
4090
  *
3895
4091
  * Point
3896
4092
  *
3897
- * Polyline
4093
+ * LineString
3898
4094
  *
3899
- * MultiPolygon
4095
+ * Polygon
3900
4096
  *
3901
4097
  * Multipoint
3902
4098
  *
4099
+ * Polyline
4100
+ *
3903
4101
  * H3Index
3904
4102
  *
3905
4103
  * Json
4104
+ *
4105
+ * MultiPolygon
4106
+ *
4107
+ * GeometryCollection
3906
4108
  */
3907
4109
  type?: AttributeType;
3908
4110
  /** Is array type. */
@@ -3992,11 +4194,19 @@ export interface QueryLayerServiceInfoDc {
3992
4194
  *
3993
4195
  * polyline
3994
4196
  *
3995
- * multipolygon
4197
+ * polygon
3996
4198
  *
3997
4199
  * envelope
3998
4200
  *
3999
4201
  * multipoint
4202
+ *
4203
+ * line
4204
+ *
4205
+ * ring
4206
+ *
4207
+ * multipolygon
4208
+ *
4209
+ * collection
4000
4210
  */
4001
4211
  geometryType: GeometryType;
4002
4212
  /**
@@ -4333,11 +4543,19 @@ export interface RemoteTileServiceInfoDc {
4333
4543
  *
4334
4544
  * polyline
4335
4545
  *
4336
- * multipolygon
4546
+ * polygon
4337
4547
  *
4338
4548
  * envelope
4339
4549
  *
4340
4550
  * multipoint
4551
+ *
4552
+ * line
4553
+ *
4554
+ * ring
4555
+ *
4556
+ * multipolygon
4557
+ *
4558
+ * collection
4341
4559
  */
4342
4560
  geometryType: GeometryType;
4343
4561
  /**
@@ -4827,11 +5045,19 @@ export type ServiceInfoDc = ResourceInfoDc & {
4827
5045
  *
4828
5046
  * polyline
4829
5047
  *
4830
- * multipolygon
5048
+ * polygon
4831
5049
  *
4832
5050
  * envelope
4833
5051
  *
4834
5052
  * multipoint
5053
+ *
5054
+ * line
5055
+ *
5056
+ * ring
5057
+ *
5058
+ * multipolygon
5059
+ *
5060
+ * collection
4835
5061
  */
4836
5062
  geometryType: GeometryType;
4837
5063
  /**
@@ -4845,10 +5071,6 @@ export type ServiceInfoDc = ResourceInfoDc & {
4845
5071
  /** Configuration of the service. */
4846
5072
  configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
4847
5073
  };
4848
- /**
4849
- * List of the services in service manager.
4850
- */
4851
- export type ServiceListDc = PagedListServiceListItemDc & object;
4852
5074
  /**
4853
5075
  * An entry in the service list response.
4854
5076
  */
@@ -4919,11 +5141,19 @@ export interface ServiceListItemDc {
4919
5141
  *
4920
5142
  * polyline
4921
5143
  *
4922
- * multipolygon
5144
+ * polygon
4923
5145
  *
4924
5146
  * envelope
4925
5147
  *
4926
5148
  * multipoint
5149
+ *
5150
+ * line
5151
+ *
5152
+ * ring
5153
+ *
5154
+ * multipolygon
5155
+ *
5156
+ * collection
4927
5157
  */
4928
5158
  geometryType?: GeometryType;
4929
5159
  /** Provides data source type info. */
@@ -5285,59 +5515,6 @@ export type TableInfoDc = ResourceInfoDc & {
5285
5515
  /** Configuration of the table. */
5286
5516
  configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5287
5517
  };
5288
- /**
5289
- * Table list item.
5290
- */
5291
- export interface TableListItemDc {
5292
- /** Name of the resource. */
5293
- name?: string;
5294
- /** Type of the service. */
5295
- type?: string;
5296
- /** Alias of the resource. */
5297
- alias?: string;
5298
- /** Description of the resource. */
5299
- description?: string;
5300
- /** Owner of the resource. */
5301
- owner?: string;
5302
- /** The geometry of the table. */
5303
- geometries?: GeometryType[];
5304
- /**
5305
- * The date and time the resource was created.
5306
- * @format date-time
5307
- */
5308
- createdDate?: string;
5309
- /**
5310
- * The date and time the resource was modified the last time.
5311
- * @format date-time
5312
- */
5313
- changedDate?: string;
5314
- /**
5315
- *
5316
- *
5317
- * none
5318
- *
5319
- * configure
5320
- *
5321
- * write
5322
- *
5323
- * read
5324
- *
5325
- * read,configure
5326
- *
5327
- * read,write
5328
- *
5329
- * read,write,configure
5330
- */
5331
- permissions?: Permissions;
5332
- /** A set of tags. */
5333
- tags?: string[];
5334
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5335
- invisibleInCatalog?: boolean;
5336
- /** Check if table is editable. */
5337
- isEditable?: boolean;
5338
- /** Icon. */
5339
- icon?: string;
5340
- }
5341
5518
  /**
5342
5519
  * Tags filter.
5343
5520
  */
@@ -5806,11 +5983,19 @@ export interface TileCatalogServiceInfoDc {
5806
5983
  *
5807
5984
  * polyline
5808
5985
  *
5809
- * multipolygon
5986
+ * polygon
5810
5987
  *
5811
5988
  * envelope
5812
5989
  *
5813
5990
  * multipoint
5991
+ *
5992
+ * line
5993
+ *
5994
+ * ring
5995
+ *
5996
+ * multipolygon
5997
+ *
5998
+ * collection
5814
5999
  */
5815
6000
  geometryType: GeometryType;
5816
6001
  /**
@@ -5984,7 +6169,7 @@ export interface TokenResponseDc {
5984
6169
  */
5985
6170
  export interface UpdateFeatureDc {
5986
6171
  /** Feature geometry definition. */
5987
- geometry?: EnvelopeDc | MultiPointDc | PointDc | PolygonDc | PolylineDc;
6172
+ geometry?: EnvelopeDc | GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
5988
6173
  /** Feature attributes collection. */
5989
6174
  attributes?: Record<string, any>;
5990
6175
  /** Feature unique identifier. */
@@ -7131,56 +7316,6 @@ export interface GetBulkExtentsParams {
7131
7316
  srId?: number;
7132
7317
  }
7133
7318
  export type GetFilteredFeaturesCountPayload = GetBulkFilteredFeaturesCountDc[];
7134
- export interface GetLayersListParams {
7135
- /**
7136
- * Full text query filter that allow to query in alias and name fields.
7137
- * <remarks>
7138
- * Additional, query string may contains special symbols for filter (by default query by full match)
7139
- *
7140
- * `^` - query any value that begins with query.
7141
- * `@` - query any value that contains query.</remarks>
7142
- */
7143
- filter?: string;
7144
- /**
7145
- * Objects limit per response.
7146
- * @format int32
7147
- */
7148
- offset?: number;
7149
- /**
7150
- * Objects count have to skip. Default limit sets in 20 object.
7151
- * @format int32
7152
- * @default 20
7153
- */
7154
- limit?: number;
7155
- /**
7156
- * Resource acl group.
7157
- *
7158
- * my
7159
- *
7160
- * role
7161
- *
7162
- * public
7163
- *
7164
- * all
7165
- */
7166
- group?: Group;
7167
- /** Filter by a collection of layers types. Sends in comma separated way. */
7168
- types?: string[];
7169
- /** Strict list of names of the resources to get. */
7170
- names?: string[];
7171
- /** A list of `ServiceInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
7172
- orderByFields?: string[];
7173
- /** Filters layers by geometry types. */
7174
- geometryFilter?: string[];
7175
- /** Filter layers by set of tags. */
7176
- tags?: string[];
7177
- /** ACL in string format `role:permissions;role:permissions`. */
7178
- acl?: string;
7179
- }
7180
- export interface DeleteResourcesParams {
7181
- /** Resource names. */
7182
- names?: string[];
7183
- }
7184
7319
  export interface GetLayersInfoParams {
7185
7320
  /** Name array of the layers. */
7186
7321
  layerNames?: string[];
@@ -7505,6 +7640,10 @@ export interface GetRasterMetaParams2 {
7505
7640
  */
7506
7641
  id: number;
7507
7642
  }
7643
+ export interface DeleteResourcesParams {
7644
+ /** Resource names. */
7645
+ names?: string[];
7646
+ }
7508
7647
  export interface SubscribeOperationParams {
7509
7648
  /** Notification tag. */
7510
7649
  tag?: string;
@@ -7515,39 +7654,6 @@ export interface UnsubscribeOperationParams {
7515
7654
  }
7516
7655
  export type SubscribeListOperationPayload = string[];
7517
7656
  export type UnsubscribeListOperationPayload = string[];
7518
- export interface GetProjectsListParams {
7519
- /** Project name filter (support % and _ wildcards). */
7520
- filter?: string;
7521
- /**
7522
- * First index to return.
7523
- * @format int32
7524
- */
7525
- offset?: number;
7526
- /**
7527
- * Max items to return.
7528
- * @format int32
7529
- * @default 20
7530
- */
7531
- limit?: number;
7532
- /**
7533
- * Resource acl group.
7534
- *
7535
- * my
7536
- *
7537
- * role
7538
- *
7539
- * public
7540
- *
7541
- * all
7542
- */
7543
- group?: Group;
7544
- /** A list of `ProjectInfoDc` fields for sorting. If a field starts with `-` ordering is by descending. */
7545
- orderByFields?: string[];
7546
- /** All available permissions list. */
7547
- acl?: string;
7548
- /** Filter layers by set of tags. */
7549
- tags?: string[];
7550
- }
7551
7657
  export interface DeleteResourcesParams2 {
7552
7658
  /** Resource names. */
7553
7659
  names?: string[];
@@ -7567,55 +7673,7 @@ export interface GetProjectEnvelopeParams {
7567
7673
  name: string;
7568
7674
  }
7569
7675
  export type PatchProjectConfigurationPayload = Operation[];
7570
- export interface PatchProjectConfigurationParams {
7571
- /**
7572
- * Configuration type.
7573
- *
7574
- * Default
7575
- *
7576
- * DevConfiguration
7577
- */
7578
- type?: ConfigurationType;
7579
- /** Name of the project. */
7580
- name: string;
7581
- }
7582
7676
  export type PutProjectConfigurationPayload = any;
7583
- export interface PutProjectConfigurationParams {
7584
- /**
7585
- * Configuration type.
7586
- *
7587
- * Default
7588
- *
7589
- * DevConfiguration
7590
- */
7591
- type?: ConfigurationType;
7592
- /** Name of the project. */
7593
- name: string;
7594
- }
7595
- export interface GetProjectConfigurationParams {
7596
- /**
7597
- * Configuration type.
7598
- *
7599
- * Default
7600
- *
7601
- * DevConfiguration
7602
- */
7603
- type?: ConfigurationType;
7604
- /** Name of the project. */
7605
- name: string;
7606
- }
7607
- export interface DeleteProjectConfigurationParams {
7608
- /**
7609
- * Configuration type.
7610
- *
7611
- * Default
7612
- *
7613
- * DevConfiguration
7614
- */
7615
- type?: ConfigurationType;
7616
- /** Name of the project. */
7617
- name: string;
7618
- }
7619
7677
  export interface GetAllScriptMethodsParams {
7620
7678
  /** ResourceId. */
7621
7679
  resourceId?: string;
@@ -7663,6 +7721,28 @@ export interface GetTaskPrototypesParams {
7663
7721
  Desc?: boolean;
7664
7722
  }
7665
7723
  export interface GetTasksForPrototypeParams {
7724
+ /**
7725
+ * Status.
7726
+ *
7727
+ * Init
7728
+ *
7729
+ * Process
7730
+ *
7731
+ * Completed
7732
+ *
7733
+ * Interrupted
7734
+ *
7735
+ * Error
7736
+ *
7737
+ * Timeout
7738
+ *
7739
+ * Waiting
7740
+ *
7741
+ * InQueue
7742
+ *
7743
+ * Unknown
7744
+ */
7745
+ Status?: RemoteTaskStatus;
7666
7746
  /**
7667
7747
  * Skip.
7668
7748
  * @format int32
@@ -7796,43 +7876,6 @@ export interface GetSymbolsListParams {
7796
7876
  */
7797
7877
  limit?: number;
7798
7878
  }
7799
- export interface GetTableListParams {
7800
- /** Table name filter (support % and _ wildcards). */
7801
- filter?: string;
7802
- /**
7803
- * First index to return.
7804
- * @format int32
7805
- */
7806
- offset?: number;
7807
- /**
7808
- * Max items to return.
7809
- * @format int32
7810
- * @default 20
7811
- */
7812
- limit?: number;
7813
- /**
7814
- * Resource acl group.
7815
- *
7816
- * my
7817
- *
7818
- * role
7819
- *
7820
- * public
7821
- *
7822
- * all
7823
- */
7824
- group?: Group;
7825
- /** Strict list of names of the resources to get. */
7826
- names?: string[];
7827
- /** A list of `TableListDc` fields for sorting. If a field starts with `-` ordering is by descending. */
7828
- orderByFields?: string[];
7829
- /** Filters layers by geometry types. */
7830
- geometryFilter?: string[];
7831
- /** Filter layers by set of tags. */
7832
- tags?: string[];
7833
- /** All available permissions list. */
7834
- acl?: string;
7835
- }
7836
7879
  export interface DeleteResourcesParams4 {
7837
7880
  /** Resource names. */
7838
7881
  names?: string[];