@evergis/api 4.1.55-alpha.1 → 4.1.55

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