@evergis/api 4.1.54 → 4.1.55-alpha.1

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.
@@ -379,9 +379,9 @@ export interface AttributeDefinitionDc {
379
379
  *
380
380
  * Polygon
381
381
  *
382
- * Multipoint
382
+ * MultiPoint
383
383
  *
384
- * Polyline
384
+ * MultiLineString
385
385
  *
386
386
  * H3Index
387
387
  *
@@ -622,9 +622,9 @@ LineString
622
622
 
623
623
  Polygon
624
624
 
625
- Multipoint
625
+ MultiPoint
626
626
 
627
- Polyline
627
+ MultiLineString
628
628
 
629
629
  H3Index
630
630
 
@@ -645,8 +645,8 @@ export declare enum AttributeType {
645
645
  Point = "Point",
646
646
  LineString = "LineString",
647
647
  Polygon = "Polygon",
648
- Multipoint = "Multipoint",
649
- Polyline = "Polyline",
648
+ MultiPoint = "MultiPoint",
649
+ MultiLineString = "MultiLineString",
650
650
  H3Index = "H3Index",
651
651
  Json = "Json",
652
652
  MultiPolygon = "MultiPolygon",
@@ -972,9 +972,9 @@ export interface ColumnDescriptionDc {
972
972
  *
973
973
  * Polygon
974
974
  *
975
- * Multipoint
975
+ * MultiPoint
976
976
  *
977
- * Polyline
977
+ * MultiLineString
978
978
  *
979
979
  * H3Index
980
980
  *
@@ -1587,30 +1587,6 @@ export interface EditAttributesInfoDc {
1587
1587
  * Envelope geometry.
1588
1588
  */
1589
1589
  export interface EnvelopeDc {
1590
- /**
1591
- *
1592
- *
1593
- * unknown
1594
- *
1595
- * point
1596
- *
1597
- * polyline
1598
- *
1599
- * polygon
1600
- *
1601
- * envelope
1602
- *
1603
- * multipoint
1604
- *
1605
- * line
1606
- *
1607
- * ring
1608
- *
1609
- * multipolygon
1610
- *
1611
- * collection
1612
- */
1613
- type: GeometryType;
1614
1590
  /** Coordinates of the envelope. Always has exactly 2 points: left bottom and right top. */
1615
1591
  coordinates: PositionDc[];
1616
1592
  /**
@@ -1646,9 +1622,9 @@ export type EqlAttributeConfigurationDc = AttributeConfigurationDc & {
1646
1622
  *
1647
1623
  * Polygon
1648
1624
  *
1649
- * Multipoint
1625
+ * MultiPoint
1650
1626
  *
1651
- * Polyline
1627
+ * MultiLineString
1652
1628
  *
1653
1629
  * H3Index
1654
1630
  *
@@ -1857,9 +1833,9 @@ export interface ExpressionValidationResultDc {
1857
1833
  *
1858
1834
  * Polygon
1859
1835
  *
1860
- * Multipoint
1836
+ * MultiPoint
1861
1837
  *
1862
- * Polyline
1838
+ * MultiLineString
1863
1839
  *
1864
1840
  * H3Index
1865
1841
  *
@@ -2028,39 +2004,24 @@ export type FailedServiceInfoDc = ServiceInfoDc & {
2028
2004
  * InvalidTableReferenceConfiguration
2029
2005
  */
2030
2006
  errorType?: ConfigurationErrorEnum;
2007
+ /** Type of error that occurred during initialization. */
2008
+ error?: string | null;
2031
2009
  };
2032
2010
  /**
2033
2011
  * Feature object definition.
2034
2012
  */
2035
2013
  export interface FeatureDc {
2014
+ /** Type. */
2015
+ type?: string;
2036
2016
  /** Feature geometry definition. */
2037
- geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2017
+ geometry?: GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc;
2038
2018
  /** Feature attributes collection. */
2039
- attributes: Record<string, any>;
2019
+ properties: Record<string, any>;
2040
2020
  /** Feature unique identifier. */
2041
2021
  id?: string;
2042
2022
  /** Values for all bands of feature by pixel point. */
2043
2023
  bandsValues?: Record<string, number>;
2044
2024
  }
2045
- /**
2046
- * Service info for a feature layer service.
2047
- */
2048
- export type FeatureLayerServiceInfoDc = ServiceInfoDc & {
2049
- /** Information about the layer attributes and their configuration. */
2050
- layerDefinition: LayerDefinitionDc;
2051
- /** Provides data source type. */
2052
- dataSourceType?: string | null;
2053
- /** Copyright text. */
2054
- copyrightText?: string | null;
2055
- /** Client data storage. Storage isn't used by server. */
2056
- clientData?: any;
2057
- /** Client style data storage. Storage isn't used by server. */
2058
- clientStyle?: any;
2059
- /** Card configuration. Storage isn't used by server. */
2060
- cardConfiguration?: any;
2061
- /** Edit configuration. Storage isn't used by server. */
2062
- editConfiguration?: any;
2063
- };
2064
2025
  export interface FileDto {
2065
2026
  path?: string;
2066
2027
  content?: string;
@@ -2122,7 +2083,7 @@ export interface GeocodeResultDc {
2122
2083
  /** The position at the map. */
2123
2084
  center?: PositionDc;
2124
2085
  /** Result geometry. */
2125
- geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2086
+ geometry?: GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc;
2126
2087
  }
2127
2088
  /**
2128
2089
  * Geocode suggest result.
@@ -2140,31 +2101,45 @@ export interface GeocodeSuggestResultDc {
2140
2101
  */
2141
2102
  export type GeometryCollectionDc = GeometryDc & {
2142
2103
  /** Multipoint coordinates. */
2143
- geometries: (GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc)[];
2104
+ geometries: (GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc)[];
2144
2105
  /**
2145
2106
  *
2146
2107
  *
2147
- * unknown
2108
+ * Unknown
2109
+ *
2110
+ * Point
2111
+ *
2112
+ * LineString
2113
+ *
2114
+ * Polygon
2115
+ *
2116
+ * MultiPoint
2117
+ *
2118
+ * MultiLineString
2119
+ *
2120
+ * MultiPolygon
2121
+ *
2122
+ * GeometryCollection
2148
2123
  *
2149
- * point
2124
+ * CircularString
2150
2125
  *
2151
- * polyline
2126
+ * CompoundCurve
2152
2127
  *
2153
- * polygon
2128
+ * CurvePolygon
2154
2129
  *
2155
- * envelope
2130
+ * MultiCurve
2156
2131
  *
2157
- * multipoint
2132
+ * MultiSurface
2158
2133
  *
2159
- * line
2134
+ * Curve
2160
2135
  *
2161
- * ring
2136
+ * Surface
2162
2137
  *
2163
- * multipolygon
2138
+ * PolyhedralSurface
2164
2139
  *
2165
- * collection
2140
+ * TIN
2166
2141
  */
2167
- type?: GeometryType;
2142
+ type?: OgcGeometryType;
2168
2143
  };
2169
2144
  /**
2170
2145
  * Geometry data contract.
@@ -2173,68 +2148,47 @@ export interface GeometryDc {
2173
2148
  /**
2174
2149
  *
2175
2150
  *
2176
- * unknown
2151
+ * Unknown
2152
+ *
2153
+ * Point
2154
+ *
2155
+ * LineString
2177
2156
  *
2178
- * point
2157
+ * Polygon
2158
+ *
2159
+ * MultiPoint
2179
2160
  *
2180
- * polyline
2161
+ * MultiLineString
2181
2162
  *
2182
- * polygon
2163
+ * MultiPolygon
2164
+ *
2165
+ * GeometryCollection
2183
2166
  *
2184
- * envelope
2167
+ * CircularString
2185
2168
  *
2186
- * multipoint
2169
+ * CompoundCurve
2187
2170
  *
2188
- * line
2171
+ * CurvePolygon
2189
2172
  *
2190
- * ring
2173
+ * MultiCurve
2191
2174
  *
2192
- * multipolygon
2175
+ * MultiSurface
2193
2176
  *
2194
- * collection
2177
+ * Curve
2178
+ *
2179
+ * Surface
2180
+ *
2181
+ * PolyhedralSurface
2182
+ *
2183
+ * TIN
2195
2184
  */
2196
- type: GeometryType;
2185
+ type: OgcGeometryType;
2197
2186
  /**
2198
2187
  * Spatial reference id.
2199
2188
  * @format int32
2200
2189
  */
2201
2190
  srId?: number;
2202
2191
  }
2203
- /**
2204
- *
2205
-
2206
- unknown
2207
-
2208
- point
2209
-
2210
- polyline
2211
-
2212
- polygon
2213
-
2214
- envelope
2215
-
2216
- multipoint
2217
-
2218
- line
2219
-
2220
- ring
2221
-
2222
- multipolygon
2223
-
2224
- collection
2225
- */
2226
- export declare enum GeometryType {
2227
- Unknown = "unknown",
2228
- Point = "point",
2229
- Polyline = "polyline",
2230
- Polygon = "polygon",
2231
- Envelope = "envelope",
2232
- Multipoint = "multipoint",
2233
- LineString = "line",
2234
- LinearRing = "ring",
2235
- MultiPolygon = "multipolygon",
2236
- GeometryCollection = "collection"
2237
- }
2238
2192
  /**
2239
2193
  * Get extent from layer paramaters.
2240
2194
  */
@@ -2589,27 +2543,41 @@ export interface LayerDefinitionDc {
2589
2543
  /**
2590
2544
  *
2591
2545
  *
2592
- * unknown
2546
+ * Unknown
2547
+ *
2548
+ * Point
2549
+ *
2550
+ * LineString
2551
+ *
2552
+ * Polygon
2553
+ *
2554
+ * MultiPoint
2555
+ *
2556
+ * MultiLineString
2557
+ *
2558
+ * MultiPolygon
2559
+ *
2560
+ * GeometryCollection
2593
2561
  *
2594
- * point
2562
+ * CircularString
2595
2563
  *
2596
- * polyline
2564
+ * CompoundCurve
2597
2565
  *
2598
- * polygon
2566
+ * CurvePolygon
2599
2567
  *
2600
- * envelope
2568
+ * MultiCurve
2601
2569
  *
2602
- * multipoint
2570
+ * MultiSurface
2603
2571
  *
2604
- * line
2572
+ * Curve
2605
2573
  *
2606
- * ring
2574
+ * Surface
2607
2575
  *
2608
- * multipolygon
2576
+ * PolyhedralSurface
2609
2577
  *
2610
- * collection
2578
+ * TIN
2611
2579
  */
2612
- geometryType?: GeometryType;
2580
+ geometryType?: OgcGeometryType;
2613
2581
  /**
2614
2582
  * The spatial reference of the layer.
2615
2583
  * @format int32
@@ -2655,33 +2623,47 @@ export interface LayerUpdateInfoDc {
2655
2623
  deletedIds?: string[];
2656
2624
  }
2657
2625
  /**
2658
- * Polyline geometry object definition.
2626
+ * MultiLineString geometry object definition.
2659
2627
  */
2660
2628
  export type LineStringDc = GeometryDc & {
2661
2629
  /**
2662
2630
  *
2663
2631
  *
2664
- * unknown
2632
+ * Unknown
2633
+ *
2634
+ * Point
2635
+ *
2636
+ * LineString
2637
+ *
2638
+ * Polygon
2639
+ *
2640
+ * MultiPoint
2641
+ *
2642
+ * MultiLineString
2665
2643
  *
2666
- * point
2644
+ * MultiPolygon
2645
+ *
2646
+ * GeometryCollection
2667
2647
  *
2668
- * polyline
2648
+ * CircularString
2669
2649
  *
2670
- * polygon
2650
+ * CompoundCurve
2671
2651
  *
2672
- * envelope
2652
+ * CurvePolygon
2673
2653
  *
2674
- * multipoint
2654
+ * MultiCurve
2675
2655
  *
2676
- * line
2656
+ * MultiSurface
2677
2657
  *
2678
- * ring
2658
+ * Curve
2679
2659
  *
2680
- * multipolygon
2660
+ * Surface
2681
2661
  *
2682
- * collection
2662
+ * PolyhedralSurface
2663
+ *
2664
+ * TIN
2683
2665
  */
2684
- type?: GeometryType;
2666
+ type?: OgcGeometryType;
2685
2667
  /** Poly coordinates. */
2686
2668
  coordinates: PositionDc[];
2687
2669
  };
@@ -2733,7 +2715,7 @@ export interface ListResourcesDc {
2733
2715
  /** System names filter. */
2734
2716
  systemNames?: string[];
2735
2717
  /** Geometry types filter. */
2736
- geometryTypes?: GeometryType[];
2718
+ geometryTypes?: OgcGeometryType[];
2737
2719
  /** Resources types filter. */
2738
2720
  types?: ResourceTypeFilter[];
2739
2721
  /** Filter by set of roles permissions. */
@@ -2866,6 +2848,51 @@ export interface MoveResourceDc {
2866
2848
  /** Rewrite target if exists. */
2867
2849
  rewrite?: boolean;
2868
2850
  }
2851
+ /**
2852
+ * MultiLineString geometry object definition.
2853
+ */
2854
+ export type MultiLineStringDc = GeometryDc & {
2855
+ /**
2856
+ *
2857
+ *
2858
+ * Unknown
2859
+ *
2860
+ * Point
2861
+ *
2862
+ * LineString
2863
+ *
2864
+ * Polygon
2865
+ *
2866
+ * MultiPoint
2867
+ *
2868
+ * MultiLineString
2869
+ *
2870
+ * MultiPolygon
2871
+ *
2872
+ * GeometryCollection
2873
+ *
2874
+ * CircularString
2875
+ *
2876
+ * CompoundCurve
2877
+ *
2878
+ * CurvePolygon
2879
+ *
2880
+ * MultiCurve
2881
+ *
2882
+ * MultiSurface
2883
+ *
2884
+ * Curve
2885
+ *
2886
+ * Surface
2887
+ *
2888
+ * PolyhedralSurface
2889
+ *
2890
+ * TIN
2891
+ */
2892
+ type?: OgcGeometryType;
2893
+ /** Poly coordinates. */
2894
+ coordinates: PositionDc[][];
2895
+ };
2869
2896
  /**
2870
2897
  * Multipoint geometry object definition.
2871
2898
  */
@@ -2875,27 +2902,41 @@ export type MultiPointDc = GeometryDc & {
2875
2902
  /**
2876
2903
  *
2877
2904
  *
2878
- * unknown
2905
+ * Unknown
2879
2906
  *
2880
- * point
2907
+ * Point
2881
2908
  *
2882
- * polyline
2909
+ * LineString
2883
2910
  *
2884
- * polygon
2911
+ * Polygon
2885
2912
  *
2886
- * envelope
2913
+ * MultiPoint
2887
2914
  *
2888
- * multipoint
2915
+ * MultiLineString
2889
2916
  *
2890
- * line
2917
+ * MultiPolygon
2891
2918
  *
2892
- * ring
2919
+ * GeometryCollection
2920
+ *
2921
+ * CircularString
2922
+ *
2923
+ * CompoundCurve
2924
+ *
2925
+ * CurvePolygon
2926
+ *
2927
+ * MultiCurve
2893
2928
  *
2894
- * multipolygon
2929
+ * MultiSurface
2895
2930
  *
2896
- * collection
2931
+ * Curve
2932
+ *
2933
+ * Surface
2934
+ *
2935
+ * PolyhedralSurface
2936
+ *
2937
+ * TIN
2897
2938
  */
2898
- type?: GeometryType;
2939
+ type?: OgcGeometryType;
2899
2940
  };
2900
2941
  /**
2901
2942
  * Multipoint geometry object definition.
@@ -2906,27 +2947,41 @@ export type MultiPolygonDc = GeometryDc & {
2906
2947
  /**
2907
2948
  *
2908
2949
  *
2909
- * unknown
2950
+ * Unknown
2951
+ *
2952
+ * Point
2953
+ *
2954
+ * LineString
2955
+ *
2956
+ * Polygon
2957
+ *
2958
+ * MultiPoint
2959
+ *
2960
+ * MultiLineString
2961
+ *
2962
+ * MultiPolygon
2963
+ *
2964
+ * GeometryCollection
2910
2965
  *
2911
- * point
2966
+ * CircularString
2912
2967
  *
2913
- * polyline
2968
+ * CompoundCurve
2914
2969
  *
2915
- * polygon
2970
+ * CurvePolygon
2916
2971
  *
2917
- * envelope
2972
+ * MultiCurve
2918
2973
  *
2919
- * multipoint
2974
+ * MultiSurface
2920
2975
  *
2921
- * line
2976
+ * Curve
2922
2977
  *
2923
- * ring
2978
+ * Surface
2924
2979
  *
2925
- * multipolygon
2980
+ * PolyhedralSurface
2926
2981
  *
2927
- * collection
2982
+ * TIN
2928
2983
  */
2929
- type?: GeometryType;
2984
+ type?: OgcGeometryType;
2930
2985
  };
2931
2986
  /**
2932
2987
  * Information about a namespace .
@@ -2954,6 +3009,62 @@ export type NetCdfMetaDc = RasterMetaDc & {
2954
3009
  dimExtraValues?: Record<string, string[] | null>;
2955
3010
  };
2956
3011
  export type ObjectId = object;
3012
+ /**
3013
+ *
3014
+
3015
+ Unknown
3016
+
3017
+ Point
3018
+
3019
+ LineString
3020
+
3021
+ Polygon
3022
+
3023
+ MultiPoint
3024
+
3025
+ MultiLineString
3026
+
3027
+ MultiPolygon
3028
+
3029
+ GeometryCollection
3030
+
3031
+ CircularString
3032
+
3033
+ CompoundCurve
3034
+
3035
+ CurvePolygon
3036
+
3037
+ MultiCurve
3038
+
3039
+ MultiSurface
3040
+
3041
+ Curve
3042
+
3043
+ Surface
3044
+
3045
+ PolyhedralSurface
3046
+
3047
+ TIN
3048
+ */
3049
+ export declare enum OgcGeometryType {
3050
+ Unknown = "Unknown",
3051
+ Point = "Point",
3052
+ LineString = "LineString",
3053
+ Polygon = "Polygon",
3054
+ MultiPoint = "MultiPoint",
3055
+ MultiLineString = "MultiLineString",
3056
+ MultiPolygon = "MultiPolygon",
3057
+ GeometryCollection = "GeometryCollection",
3058
+ CircularString = "CircularString",
3059
+ CompoundCurve = "CompoundCurve",
3060
+ CurvePolygon = "CurvePolygon",
3061
+ MultiCurve = "MultiCurve",
3062
+ MultiSurface = "MultiSurface",
3063
+ Curve = "Curve",
3064
+ Surface = "Surface",
3065
+ PolyhedralSurface = "PolyhedralSurface",
3066
+ TIN = "TIN"
3067
+ }
2957
3068
  export interface Operation {
2958
3069
  value?: any;
2959
3070
  path?: string;
@@ -2963,18 +3074,40 @@ export interface Operation {
2963
3074
  /**
2964
3075
  * Features list definition.
2965
3076
  */
2966
- export type PagedBulkFeaturesListDc = PagedListFeatureDc & {
3077
+ export interface PagedBulkFeaturesListDc {
2967
3078
  /** Layer name. */
2968
- layerName?: string | null;
3079
+ layerName?: string;
2969
3080
  /** Has error. */
2970
3081
  hasError?: boolean;
2971
3082
  /** Error text. */
2972
- error?: string | null;
2973
- };
3083
+ error?: string;
3084
+ /** Features list definition. */
3085
+ featureCollection?: PagedFeaturesListDc;
3086
+ }
2974
3087
  /**
2975
3088
  * Features list definition.
2976
3089
  */
2977
- export type PagedFeaturesListDc = PagedListFeatureDc & object;
3090
+ export interface PagedFeaturesListDc {
3091
+ /** Type. */
3092
+ type?: string;
3093
+ /** Features. */
3094
+ features?: FeatureDc[];
3095
+ /**
3096
+ * Total number of items that the list contains, e.g. if the paging is not applied.
3097
+ * @format int64
3098
+ */
3099
+ totalCount?: number;
3100
+ /**
3101
+ * The first index of the item in the list that is returned in the Items parameter.
3102
+ * @format int32
3103
+ */
3104
+ offset?: number;
3105
+ /**
3106
+ * Maximum number of the items that the Items parameter may contain.
3107
+ * @format int32
3108
+ */
3109
+ limit?: number;
3110
+ }
2978
3111
  export interface PagedListConfigDc {
2979
3112
  /** @format int64 */
2980
3113
  totalCount?: number;
@@ -3174,27 +3307,41 @@ export type PointDc = GeometryDc & {
3174
3307
  /**
3175
3308
  *
3176
3309
  *
3177
- * unknown
3310
+ * Unknown
3178
3311
  *
3179
- * point
3312
+ * Point
3180
3313
  *
3181
- * polyline
3314
+ * LineString
3182
3315
  *
3183
- * polygon
3316
+ * Polygon
3184
3317
  *
3185
- * envelope
3318
+ * MultiPoint
3186
3319
  *
3187
- * multipoint
3320
+ * MultiLineString
3188
3321
  *
3189
- * line
3322
+ * MultiPolygon
3190
3323
  *
3191
- * ring
3324
+ * GeometryCollection
3192
3325
  *
3193
- * multipolygon
3326
+ * CircularString
3194
3327
  *
3195
- * collection
3328
+ * CompoundCurve
3329
+ *
3330
+ * CurvePolygon
3331
+ *
3332
+ * MultiCurve
3333
+ *
3334
+ * MultiSurface
3335
+ *
3336
+ * Curve
3337
+ *
3338
+ * Surface
3339
+ *
3340
+ * PolyhedralSurface
3341
+ *
3342
+ * TIN
3196
3343
  */
3197
- type?: GeometryType;
3344
+ type?: OgcGeometryType;
3198
3345
  };
3199
3346
  export interface PolicyDc {
3200
3347
  /**
@@ -3257,59 +3404,42 @@ export type PolygonDc = GeometryDc & {
3257
3404
  /**
3258
3405
  *
3259
3406
  *
3260
- * unknown
3261
- *
3262
- * point
3263
- *
3264
- * polyline
3265
- *
3266
- * polygon
3267
- *
3268
- * envelope
3407
+ * Unknown
3269
3408
  *
3270
- * multipoint
3409
+ * Point
3271
3410
  *
3272
- * line
3411
+ * LineString
3273
3412
  *
3274
- * ring
3413
+ * Polygon
3275
3414
  *
3276
- * multipolygon
3415
+ * MultiPoint
3277
3416
  *
3278
- * collection
3279
- */
3280
- type?: GeometryType;
3281
- /** Polygon coordinates. */
3282
- coordinates: PositionDc[][];
3283
- };
3284
- /**
3285
- * Polyline geometry object definition.
3286
- */
3287
- export type PolylineDc = GeometryDc & {
3288
- /**
3417
+ * MultiLineString
3289
3418
  *
3419
+ * MultiPolygon
3290
3420
  *
3291
- * unknown
3421
+ * GeometryCollection
3292
3422
  *
3293
- * point
3423
+ * CircularString
3294
3424
  *
3295
- * polyline
3425
+ * CompoundCurve
3296
3426
  *
3297
- * polygon
3427
+ * CurvePolygon
3298
3428
  *
3299
- * envelope
3429
+ * MultiCurve
3300
3430
  *
3301
- * multipoint
3431
+ * MultiSurface
3302
3432
  *
3303
- * line
3433
+ * Curve
3304
3434
  *
3305
- * ring
3435
+ * Surface
3306
3436
  *
3307
- * multipolygon
3437
+ * PolyhedralSurface
3308
3438
  *
3309
- * collection
3439
+ * TIN
3310
3440
  */
3311
- type?: GeometryType;
3312
- /** Poly coordinates. */
3441
+ type?: OgcGeometryType;
3442
+ /** Polygon coordinates. */
3313
3443
  coordinates: PositionDc[][];
3314
3444
  };
3315
3445
  /**
@@ -3551,27 +3681,41 @@ export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3551
3681
  /**
3552
3682
  *
3553
3683
  *
3554
- * unknown
3684
+ * Unknown
3685
+ *
3686
+ * Point
3687
+ *
3688
+ * LineString
3689
+ *
3690
+ * Polygon
3691
+ *
3692
+ * MultiPoint
3693
+ *
3694
+ * MultiLineString
3695
+ *
3696
+ * MultiPolygon
3697
+ *
3698
+ * GeometryCollection
3555
3699
  *
3556
- * point
3700
+ * CircularString
3557
3701
  *
3558
- * polyline
3702
+ * CompoundCurve
3559
3703
  *
3560
- * polygon
3704
+ * CurvePolygon
3561
3705
  *
3562
- * envelope
3706
+ * MultiCurve
3563
3707
  *
3564
- * multipoint
3708
+ * MultiSurface
3565
3709
  *
3566
- * line
3710
+ * Curve
3567
3711
  *
3568
- * ring
3712
+ * Surface
3569
3713
  *
3570
- * multipolygon
3714
+ * PolyhedralSurface
3571
3715
  *
3572
- * collection
3716
+ * TIN
3573
3717
  */
3574
- geometryType?: GeometryType;
3718
+ geometryType?: OgcGeometryType;
3575
3719
  /** Source system type, e.g. "ArcGIS". */
3576
3720
  sourceType?: string | null;
3577
3721
  /** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
@@ -3774,37 +3918,39 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
3774
3918
  *
3775
3919
  * Unknown
3776
3920
  *
3777
- * String
3921
+ * Point
3778
3922
  *
3779
- * Int32
3923
+ * LineString
3780
3924
  *
3781
- * Int64
3925
+ * Polygon
3782
3926
  *
3783
- * Double
3927
+ * MultiPoint
3784
3928
  *
3785
- * DateTime
3929
+ * MultiLineString
3786
3930
  *
3787
- * Boolean
3931
+ * MultiPolygon
3788
3932
  *
3789
- * Point
3933
+ * GeometryCollection
3790
3934
  *
3791
- * LineString
3935
+ * CircularString
3792
3936
  *
3793
- * Polygon
3937
+ * CompoundCurve
3794
3938
  *
3795
- * Multipoint
3939
+ * CurvePolygon
3796
3940
  *
3797
- * Polyline
3941
+ * MultiCurve
3798
3942
  *
3799
- * H3Index
3943
+ * MultiSurface
3800
3944
  *
3801
- * Json
3945
+ * Curve
3802
3946
  *
3803
- * MultiPolygon
3947
+ * Surface
3804
3948
  *
3805
- * GeometryCollection
3949
+ * PolyhedralSurface
3950
+ *
3951
+ * TIN
3806
3952
  */
3807
- geometryType?: AttributeType;
3953
+ geometryType?: OgcGeometryType;
3808
3954
  /** Configuration of the attribute set in a feature layer. */
3809
3955
  attributesConfiguration?: EqlAttributesConfigurationDc;
3810
3956
  /** Client style data storage. Storage isn't used by server. */
@@ -3850,9 +3996,9 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
3850
3996
  *
3851
3997
  * Polygon
3852
3998
  *
3853
- * Multipoint
3999
+ * MultiPoint
3854
4000
  *
3855
- * Polyline
4001
+ * MultiLineString
3856
4002
  *
3857
4003
  * H3Index
3858
4004
  *
@@ -4617,27 +4763,41 @@ export type ServiceInfoDc = ResourceInfoDc & {
4617
4763
  /**
4618
4764
  *
4619
4765
  *
4620
- * unknown
4766
+ * Unknown
4767
+ *
4768
+ * Point
4621
4769
  *
4622
- * point
4770
+ * LineString
4623
4771
  *
4624
- * polyline
4772
+ * Polygon
4625
4773
  *
4626
- * polygon
4774
+ * MultiPoint
4627
4775
  *
4628
- * envelope
4776
+ * MultiLineString
4629
4777
  *
4630
- * multipoint
4778
+ * MultiPolygon
4631
4779
  *
4632
- * line
4780
+ * GeometryCollection
4633
4781
  *
4634
- * ring
4782
+ * CircularString
4635
4783
  *
4636
- * multipolygon
4784
+ * CompoundCurve
4637
4785
  *
4638
- * collection
4786
+ * CurvePolygon
4787
+ *
4788
+ * MultiCurve
4789
+ *
4790
+ * MultiSurface
4791
+ *
4792
+ * Curve
4793
+ *
4794
+ * Surface
4795
+ *
4796
+ * PolyhedralSurface
4797
+ *
4798
+ * TIN
4639
4799
  */
4640
- geometryType: GeometryType;
4800
+ geometryType: OgcGeometryType;
4641
4801
  /**
4642
4802
  * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4643
4803
  * 0 is returned.
@@ -4713,27 +4873,41 @@ export interface ServiceListItemDc {
4713
4873
  /**
4714
4874
  *
4715
4875
  *
4716
- * unknown
4876
+ * Unknown
4877
+ *
4878
+ * Point
4879
+ *
4880
+ * LineString
4881
+ *
4882
+ * Polygon
4883
+ *
4884
+ * MultiPoint
4885
+ *
4886
+ * MultiLineString
4887
+ *
4888
+ * MultiPolygon
4889
+ *
4890
+ * GeometryCollection
4717
4891
  *
4718
- * point
4892
+ * CircularString
4719
4893
  *
4720
- * polyline
4894
+ * CompoundCurve
4721
4895
  *
4722
- * polygon
4896
+ * CurvePolygon
4723
4897
  *
4724
- * envelope
4898
+ * MultiCurve
4725
4899
  *
4726
- * multipoint
4900
+ * MultiSurface
4727
4901
  *
4728
- * line
4902
+ * Curve
4729
4903
  *
4730
- * ring
4904
+ * Surface
4731
4905
  *
4732
- * multipolygon
4906
+ * PolyhedralSurface
4733
4907
  *
4734
- * collection
4908
+ * TIN
4735
4909
  */
4736
- geometryType?: GeometryType;
4910
+ geometryType?: OgcGeometryType;
4737
4911
  /** Provides data source type info. */
4738
4912
  dataSourceType?: string;
4739
4913
  /** A set of tags. */
@@ -5115,7 +5289,7 @@ export interface TableInfoDc {
5115
5289
  */
5116
5290
  rowCount?: number;
5117
5291
  /** The geometry of the table. */
5118
- geometries?: GeometryType[];
5292
+ geometries?: OgcGeometryType[];
5119
5293
  /** The type of the table. */
5120
5294
  type?: string;
5121
5295
  /** Configuration of the table. */
@@ -5723,7 +5897,7 @@ export interface TokenResponseDc {
5723
5897
  */
5724
5898
  export interface UpdateFeatureDc {
5725
5899
  /** Feature geometry definition. */
5726
- geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
5900
+ geometry?: GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc;
5727
5901
  /** Feature attributes collection. */
5728
5902
  attributes?: Record<string, any>;
5729
5903
  /** Feature unique identifier. */