@evergis/api 4.1.55-alpha.0 → 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.
- package/dist/__generated__/EqlService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +4 -4
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +259 -447
- package/dist/api.esm.js +28 -80
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +27 -79
- package/dist/index.js.map +1 -1
- package/dist/services/Layers.d.ts +2 -2
- package/package.json +2 -2
|
@@ -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
|
/**
|
|
@@ -2009,17 +2033,34 @@ export type FailedServiceInfoDc = ServiceInfoDc & {
|
|
|
2009
2033
|
* Feature object definition.
|
|
2010
2034
|
*/
|
|
2011
2035
|
export interface FeatureDc {
|
|
2012
|
-
/** Type. */
|
|
2013
|
-
type?: string;
|
|
2014
2036
|
/** Feature geometry definition. */
|
|
2015
|
-
geometry?: GeometryCollectionDc | LineStringDc |
|
|
2037
|
+
geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
|
|
2016
2038
|
/** Feature attributes collection. */
|
|
2017
|
-
|
|
2039
|
+
attributes: Record<string, any>;
|
|
2018
2040
|
/** Feature unique identifier. */
|
|
2019
2041
|
id?: string;
|
|
2020
2042
|
/** Values for all bands of feature by pixel point. */
|
|
2021
2043
|
bandsValues?: Record<string, number>;
|
|
2022
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
|
+
};
|
|
2023
2064
|
export interface FileDto {
|
|
2024
2065
|
path?: string;
|
|
2025
2066
|
content?: string;
|
|
@@ -2062,38 +2103,6 @@ export interface FilterResponseDc {
|
|
|
2062
2103
|
/** Id of the filter. */
|
|
2063
2104
|
id?: string;
|
|
2064
2105
|
}
|
|
2065
|
-
/**
|
|
2066
|
-
*
|
|
2067
|
-
|
|
2068
|
-
Point
|
|
2069
|
-
|
|
2070
|
-
MultiPoint
|
|
2071
|
-
|
|
2072
|
-
LineString
|
|
2073
|
-
|
|
2074
|
-
MultiLineString
|
|
2075
|
-
|
|
2076
|
-
Polygon
|
|
2077
|
-
|
|
2078
|
-
MultiPolygon
|
|
2079
|
-
|
|
2080
|
-
GeometryCollection
|
|
2081
|
-
|
|
2082
|
-
Feature
|
|
2083
|
-
|
|
2084
|
-
FeatureCollection
|
|
2085
|
-
*/
|
|
2086
|
-
export declare enum GeoJsonObjectType {
|
|
2087
|
-
Point = "Point",
|
|
2088
|
-
MultiPoint = "MultiPoint",
|
|
2089
|
-
LineString = "LineString",
|
|
2090
|
-
MultiLineString = "MultiLineString",
|
|
2091
|
-
Polygon = "Polygon",
|
|
2092
|
-
MultiPolygon = "MultiPolygon",
|
|
2093
|
-
GeometryCollection = "GeometryCollection",
|
|
2094
|
-
Feature = "Feature",
|
|
2095
|
-
FeatureCollection = "FeatureCollection"
|
|
2096
|
-
}
|
|
2097
2106
|
/**
|
|
2098
2107
|
* Geocode result.
|
|
2099
2108
|
*/
|
|
@@ -2113,7 +2122,7 @@ export interface GeocodeResultDc {
|
|
|
2113
2122
|
/** The position at the map. */
|
|
2114
2123
|
center?: PositionDc;
|
|
2115
2124
|
/** Result geometry. */
|
|
2116
|
-
geometry?: GeometryCollectionDc | LineStringDc |
|
|
2125
|
+
geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
|
|
2117
2126
|
}
|
|
2118
2127
|
/**
|
|
2119
2128
|
* Geocode suggest result.
|
|
@@ -2131,45 +2140,31 @@ export interface GeocodeSuggestResultDc {
|
|
|
2131
2140
|
*/
|
|
2132
2141
|
export type GeometryCollectionDc = GeometryDc & {
|
|
2133
2142
|
/** Multipoint coordinates. */
|
|
2134
|
-
geometries: (GeometryCollectionDc | LineStringDc |
|
|
2143
|
+
geometries: (GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc)[];
|
|
2135
2144
|
/**
|
|
2136
2145
|
*
|
|
2137
2146
|
*
|
|
2138
|
-
*
|
|
2139
|
-
*
|
|
2140
|
-
* Point
|
|
2147
|
+
* unknown
|
|
2141
2148
|
*
|
|
2142
|
-
*
|
|
2149
|
+
* point
|
|
2143
2150
|
*
|
|
2144
|
-
*
|
|
2151
|
+
* polyline
|
|
2145
2152
|
*
|
|
2146
|
-
*
|
|
2153
|
+
* polygon
|
|
2147
2154
|
*
|
|
2148
|
-
*
|
|
2155
|
+
* envelope
|
|
2149
2156
|
*
|
|
2150
|
-
*
|
|
2157
|
+
* multipoint
|
|
2151
2158
|
*
|
|
2152
|
-
*
|
|
2159
|
+
* line
|
|
2153
2160
|
*
|
|
2154
|
-
*
|
|
2161
|
+
* ring
|
|
2155
2162
|
*
|
|
2156
|
-
*
|
|
2163
|
+
* multipolygon
|
|
2157
2164
|
*
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2160
|
-
* MultiCurve
|
|
2161
|
-
*
|
|
2162
|
-
* MultiSurface
|
|
2163
|
-
*
|
|
2164
|
-
* Curve
|
|
2165
|
-
*
|
|
2166
|
-
* Surface
|
|
2167
|
-
*
|
|
2168
|
-
* PolyhedralSurface
|
|
2169
|
-
*
|
|
2170
|
-
* TIN
|
|
2165
|
+
* collection
|
|
2171
2166
|
*/
|
|
2172
|
-
type?:
|
|
2167
|
+
type?: GeometryType;
|
|
2173
2168
|
};
|
|
2174
2169
|
/**
|
|
2175
2170
|
* Geometry data contract.
|
|
@@ -2178,47 +2173,68 @@ export interface GeometryDc {
|
|
|
2178
2173
|
/**
|
|
2179
2174
|
*
|
|
2180
2175
|
*
|
|
2181
|
-
*
|
|
2182
|
-
*
|
|
2183
|
-
* Point
|
|
2184
|
-
*
|
|
2185
|
-
* LineString
|
|
2186
|
-
*
|
|
2187
|
-
* Polygon
|
|
2188
|
-
*
|
|
2189
|
-
* MultiPoint
|
|
2190
|
-
*
|
|
2191
|
-
* MultiLineString
|
|
2176
|
+
* unknown
|
|
2192
2177
|
*
|
|
2193
|
-
*
|
|
2194
|
-
*
|
|
2195
|
-
* GeometryCollection
|
|
2178
|
+
* point
|
|
2196
2179
|
*
|
|
2197
|
-
*
|
|
2180
|
+
* polyline
|
|
2198
2181
|
*
|
|
2199
|
-
*
|
|
2182
|
+
* polygon
|
|
2200
2183
|
*
|
|
2201
|
-
*
|
|
2184
|
+
* envelope
|
|
2202
2185
|
*
|
|
2203
|
-
*
|
|
2186
|
+
* multipoint
|
|
2204
2187
|
*
|
|
2205
|
-
*
|
|
2188
|
+
* line
|
|
2206
2189
|
*
|
|
2207
|
-
*
|
|
2190
|
+
* ring
|
|
2208
2191
|
*
|
|
2209
|
-
*
|
|
2192
|
+
* multipolygon
|
|
2210
2193
|
*
|
|
2211
|
-
*
|
|
2212
|
-
*
|
|
2213
|
-
* TIN
|
|
2194
|
+
* collection
|
|
2214
2195
|
*/
|
|
2215
|
-
type:
|
|
2196
|
+
type: GeometryType;
|
|
2216
2197
|
/**
|
|
2217
2198
|
* Spatial reference id.
|
|
2218
2199
|
* @format int32
|
|
2219
2200
|
*/
|
|
2220
2201
|
srId?: number;
|
|
2221
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
|
+
}
|
|
2222
2238
|
/**
|
|
2223
2239
|
* Get extent from layer paramaters.
|
|
2224
2240
|
*/
|
|
@@ -2573,41 +2589,27 @@ export interface LayerDefinitionDc {
|
|
|
2573
2589
|
/**
|
|
2574
2590
|
*
|
|
2575
2591
|
*
|
|
2576
|
-
*
|
|
2577
|
-
*
|
|
2578
|
-
* Point
|
|
2579
|
-
*
|
|
2580
|
-
* LineString
|
|
2592
|
+
* unknown
|
|
2581
2593
|
*
|
|
2582
|
-
*
|
|
2594
|
+
* point
|
|
2583
2595
|
*
|
|
2584
|
-
*
|
|
2596
|
+
* polyline
|
|
2585
2597
|
*
|
|
2586
|
-
*
|
|
2598
|
+
* polygon
|
|
2587
2599
|
*
|
|
2588
|
-
*
|
|
2600
|
+
* envelope
|
|
2589
2601
|
*
|
|
2590
|
-
*
|
|
2602
|
+
* multipoint
|
|
2591
2603
|
*
|
|
2592
|
-
*
|
|
2604
|
+
* line
|
|
2593
2605
|
*
|
|
2594
|
-
*
|
|
2606
|
+
* ring
|
|
2595
2607
|
*
|
|
2596
|
-
*
|
|
2608
|
+
* multipolygon
|
|
2597
2609
|
*
|
|
2598
|
-
*
|
|
2599
|
-
*
|
|
2600
|
-
* MultiSurface
|
|
2601
|
-
*
|
|
2602
|
-
* Curve
|
|
2603
|
-
*
|
|
2604
|
-
* Surface
|
|
2605
|
-
*
|
|
2606
|
-
* PolyhedralSurface
|
|
2607
|
-
*
|
|
2608
|
-
* TIN
|
|
2610
|
+
* collection
|
|
2609
2611
|
*/
|
|
2610
|
-
geometryType?:
|
|
2612
|
+
geometryType?: GeometryType;
|
|
2611
2613
|
/**
|
|
2612
2614
|
* The spatial reference of the layer.
|
|
2613
2615
|
* @format int32
|
|
@@ -2659,41 +2661,27 @@ export type LineStringDc = GeometryDc & {
|
|
|
2659
2661
|
/**
|
|
2660
2662
|
*
|
|
2661
2663
|
*
|
|
2662
|
-
*
|
|
2663
|
-
*
|
|
2664
|
-
* Point
|
|
2665
|
-
*
|
|
2666
|
-
* LineString
|
|
2667
|
-
*
|
|
2668
|
-
* Polygon
|
|
2669
|
-
*
|
|
2670
|
-
* MultiPoint
|
|
2671
|
-
*
|
|
2672
|
-
* MultiLineString
|
|
2673
|
-
*
|
|
2674
|
-
* MultiPolygon
|
|
2675
|
-
*
|
|
2676
|
-
* GeometryCollection
|
|
2664
|
+
* unknown
|
|
2677
2665
|
*
|
|
2678
|
-
*
|
|
2666
|
+
* point
|
|
2679
2667
|
*
|
|
2680
|
-
*
|
|
2668
|
+
* polyline
|
|
2681
2669
|
*
|
|
2682
|
-
*
|
|
2670
|
+
* polygon
|
|
2683
2671
|
*
|
|
2684
|
-
*
|
|
2672
|
+
* envelope
|
|
2685
2673
|
*
|
|
2686
|
-
*
|
|
2674
|
+
* multipoint
|
|
2687
2675
|
*
|
|
2688
|
-
*
|
|
2676
|
+
* line
|
|
2689
2677
|
*
|
|
2690
|
-
*
|
|
2678
|
+
* ring
|
|
2691
2679
|
*
|
|
2692
|
-
*
|
|
2680
|
+
* multipolygon
|
|
2693
2681
|
*
|
|
2694
|
-
*
|
|
2682
|
+
* collection
|
|
2695
2683
|
*/
|
|
2696
|
-
type?:
|
|
2684
|
+
type?: GeometryType;
|
|
2697
2685
|
/** Poly coordinates. */
|
|
2698
2686
|
coordinates: PositionDc[];
|
|
2699
2687
|
};
|
|
@@ -2745,7 +2733,7 @@ export interface ListResourcesDc {
|
|
|
2745
2733
|
/** System names filter. */
|
|
2746
2734
|
systemNames?: string[];
|
|
2747
2735
|
/** Geometry types filter. */
|
|
2748
|
-
geometryTypes?:
|
|
2736
|
+
geometryTypes?: GeometryType[];
|
|
2749
2737
|
/** Resources types filter. */
|
|
2750
2738
|
types?: ResourceTypeFilter[];
|
|
2751
2739
|
/** Filter by set of roles permissions. */
|
|
@@ -2878,51 +2866,6 @@ export interface MoveResourceDc {
|
|
|
2878
2866
|
/** Rewrite target if exists. */
|
|
2879
2867
|
rewrite?: boolean;
|
|
2880
2868
|
}
|
|
2881
|
-
/**
|
|
2882
|
-
* Polyline geometry object definition.
|
|
2883
|
-
*/
|
|
2884
|
-
export type MultiLineStringDc = GeometryDc & {
|
|
2885
|
-
/**
|
|
2886
|
-
*
|
|
2887
|
-
*
|
|
2888
|
-
* Unknown
|
|
2889
|
-
*
|
|
2890
|
-
* Point
|
|
2891
|
-
*
|
|
2892
|
-
* LineString
|
|
2893
|
-
*
|
|
2894
|
-
* Polygon
|
|
2895
|
-
*
|
|
2896
|
-
* MultiPoint
|
|
2897
|
-
*
|
|
2898
|
-
* MultiLineString
|
|
2899
|
-
*
|
|
2900
|
-
* MultiPolygon
|
|
2901
|
-
*
|
|
2902
|
-
* GeometryCollection
|
|
2903
|
-
*
|
|
2904
|
-
* CircularString
|
|
2905
|
-
*
|
|
2906
|
-
* CompoundCurve
|
|
2907
|
-
*
|
|
2908
|
-
* CurvePolygon
|
|
2909
|
-
*
|
|
2910
|
-
* MultiCurve
|
|
2911
|
-
*
|
|
2912
|
-
* MultiSurface
|
|
2913
|
-
*
|
|
2914
|
-
* Curve
|
|
2915
|
-
*
|
|
2916
|
-
* Surface
|
|
2917
|
-
*
|
|
2918
|
-
* PolyhedralSurface
|
|
2919
|
-
*
|
|
2920
|
-
* TIN
|
|
2921
|
-
*/
|
|
2922
|
-
type?: OgcGeometryType;
|
|
2923
|
-
/** Poly coordinates. */
|
|
2924
|
-
coordinates: PositionDc[][];
|
|
2925
|
-
};
|
|
2926
2869
|
/**
|
|
2927
2870
|
* Multipoint geometry object definition.
|
|
2928
2871
|
*/
|
|
@@ -2932,41 +2875,27 @@ export type MultiPointDc = GeometryDc & {
|
|
|
2932
2875
|
/**
|
|
2933
2876
|
*
|
|
2934
2877
|
*
|
|
2935
|
-
*
|
|
2936
|
-
*
|
|
2937
|
-
* Point
|
|
2938
|
-
*
|
|
2939
|
-
* LineString
|
|
2940
|
-
*
|
|
2941
|
-
* Polygon
|
|
2942
|
-
*
|
|
2943
|
-
* MultiPoint
|
|
2878
|
+
* unknown
|
|
2944
2879
|
*
|
|
2945
|
-
*
|
|
2880
|
+
* point
|
|
2946
2881
|
*
|
|
2947
|
-
*
|
|
2948
|
-
*
|
|
2949
|
-
* GeometryCollection
|
|
2882
|
+
* polyline
|
|
2950
2883
|
*
|
|
2951
|
-
*
|
|
2884
|
+
* polygon
|
|
2952
2885
|
*
|
|
2953
|
-
*
|
|
2886
|
+
* envelope
|
|
2954
2887
|
*
|
|
2955
|
-
*
|
|
2888
|
+
* multipoint
|
|
2956
2889
|
*
|
|
2957
|
-
*
|
|
2890
|
+
* line
|
|
2958
2891
|
*
|
|
2959
|
-
*
|
|
2892
|
+
* ring
|
|
2960
2893
|
*
|
|
2961
|
-
*
|
|
2894
|
+
* multipolygon
|
|
2962
2895
|
*
|
|
2963
|
-
*
|
|
2964
|
-
*
|
|
2965
|
-
* PolyhedralSurface
|
|
2966
|
-
*
|
|
2967
|
-
* TIN
|
|
2896
|
+
* collection
|
|
2968
2897
|
*/
|
|
2969
|
-
type?:
|
|
2898
|
+
type?: GeometryType;
|
|
2970
2899
|
};
|
|
2971
2900
|
/**
|
|
2972
2901
|
* Multipoint geometry object definition.
|
|
@@ -2977,41 +2906,27 @@ export type MultiPolygonDc = GeometryDc & {
|
|
|
2977
2906
|
/**
|
|
2978
2907
|
*
|
|
2979
2908
|
*
|
|
2980
|
-
*
|
|
2909
|
+
* unknown
|
|
2981
2910
|
*
|
|
2982
|
-
*
|
|
2911
|
+
* point
|
|
2983
2912
|
*
|
|
2984
|
-
*
|
|
2913
|
+
* polyline
|
|
2985
2914
|
*
|
|
2986
|
-
*
|
|
2915
|
+
* polygon
|
|
2987
2916
|
*
|
|
2988
|
-
*
|
|
2989
|
-
*
|
|
2990
|
-
* MultiLineString
|
|
2991
|
-
*
|
|
2992
|
-
* MultiPolygon
|
|
2993
|
-
*
|
|
2994
|
-
* GeometryCollection
|
|
2917
|
+
* envelope
|
|
2995
2918
|
*
|
|
2996
|
-
*
|
|
2919
|
+
* multipoint
|
|
2997
2920
|
*
|
|
2998
|
-
*
|
|
2921
|
+
* line
|
|
2999
2922
|
*
|
|
3000
|
-
*
|
|
2923
|
+
* ring
|
|
3001
2924
|
*
|
|
3002
|
-
*
|
|
2925
|
+
* multipolygon
|
|
3003
2926
|
*
|
|
3004
|
-
*
|
|
3005
|
-
*
|
|
3006
|
-
* Curve
|
|
3007
|
-
*
|
|
3008
|
-
* Surface
|
|
3009
|
-
*
|
|
3010
|
-
* PolyhedralSurface
|
|
3011
|
-
*
|
|
3012
|
-
* TIN
|
|
2927
|
+
* collection
|
|
3013
2928
|
*/
|
|
3014
|
-
type?:
|
|
2929
|
+
type?: GeometryType;
|
|
3015
2930
|
};
|
|
3016
2931
|
/**
|
|
3017
2932
|
* Information about a namespace .
|
|
@@ -3039,62 +2954,6 @@ export type NetCdfMetaDc = RasterMetaDc & {
|
|
|
3039
2954
|
dimExtraValues?: Record<string, string[] | null>;
|
|
3040
2955
|
};
|
|
3041
2956
|
export type ObjectId = object;
|
|
3042
|
-
/**
|
|
3043
|
-
*
|
|
3044
|
-
|
|
3045
|
-
Unknown
|
|
3046
|
-
|
|
3047
|
-
Point
|
|
3048
|
-
|
|
3049
|
-
LineString
|
|
3050
|
-
|
|
3051
|
-
Polygon
|
|
3052
|
-
|
|
3053
|
-
MultiPoint
|
|
3054
|
-
|
|
3055
|
-
MultiLineString
|
|
3056
|
-
|
|
3057
|
-
MultiPolygon
|
|
3058
|
-
|
|
3059
|
-
GeometryCollection
|
|
3060
|
-
|
|
3061
|
-
CircularString
|
|
3062
|
-
|
|
3063
|
-
CompoundCurve
|
|
3064
|
-
|
|
3065
|
-
CurvePolygon
|
|
3066
|
-
|
|
3067
|
-
MultiCurve
|
|
3068
|
-
|
|
3069
|
-
MultiSurface
|
|
3070
|
-
|
|
3071
|
-
Curve
|
|
3072
|
-
|
|
3073
|
-
Surface
|
|
3074
|
-
|
|
3075
|
-
PolyhedralSurface
|
|
3076
|
-
|
|
3077
|
-
TIN
|
|
3078
|
-
*/
|
|
3079
|
-
export declare enum OgcGeometryType {
|
|
3080
|
-
Unknown = "Unknown",
|
|
3081
|
-
Point = "Point",
|
|
3082
|
-
LineString = "LineString",
|
|
3083
|
-
Polygon = "Polygon",
|
|
3084
|
-
MultiPoint = "MultiPoint",
|
|
3085
|
-
MultiLineString = "MultiLineString",
|
|
3086
|
-
MultiPolygon = "MultiPolygon",
|
|
3087
|
-
GeometryCollection = "GeometryCollection",
|
|
3088
|
-
CircularString = "CircularString",
|
|
3089
|
-
CompoundCurve = "CompoundCurve",
|
|
3090
|
-
CurvePolygon = "CurvePolygon",
|
|
3091
|
-
MultiCurve = "MultiCurve",
|
|
3092
|
-
MultiSurface = "MultiSurface",
|
|
3093
|
-
Curve = "Curve",
|
|
3094
|
-
Surface = "Surface",
|
|
3095
|
-
PolyhedralSurface = "PolyhedralSurface",
|
|
3096
|
-
TIN = "TIN"
|
|
3097
|
-
}
|
|
3098
2957
|
export interface Operation {
|
|
3099
2958
|
value?: any;
|
|
3100
2959
|
path?: string;
|
|
@@ -3104,40 +2963,18 @@ export interface Operation {
|
|
|
3104
2963
|
/**
|
|
3105
2964
|
* Features list definition.
|
|
3106
2965
|
*/
|
|
3107
|
-
export
|
|
2966
|
+
export type PagedBulkFeaturesListDc = PagedListFeatureDc & {
|
|
3108
2967
|
/** Layer name. */
|
|
3109
|
-
layerName?: string;
|
|
2968
|
+
layerName?: string | null;
|
|
3110
2969
|
/** Has error. */
|
|
3111
2970
|
hasError?: boolean;
|
|
3112
2971
|
/** Error text. */
|
|
3113
|
-
error?: string;
|
|
3114
|
-
|
|
3115
|
-
featureCollection?: PagedFeaturesListDc;
|
|
3116
|
-
}
|
|
2972
|
+
error?: string | null;
|
|
2973
|
+
};
|
|
3117
2974
|
/**
|
|
3118
2975
|
* Features list definition.
|
|
3119
2976
|
*/
|
|
3120
|
-
export
|
|
3121
|
-
/** Type. */
|
|
3122
|
-
type?: string;
|
|
3123
|
-
/** Features. */
|
|
3124
|
-
features?: FeatureDc[];
|
|
3125
|
-
/**
|
|
3126
|
-
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
3127
|
-
* @format int64
|
|
3128
|
-
*/
|
|
3129
|
-
totalCount?: number;
|
|
3130
|
-
/**
|
|
3131
|
-
* The first index of the item in the list that is returned in the Items parameter.
|
|
3132
|
-
* @format int32
|
|
3133
|
-
*/
|
|
3134
|
-
offset?: number;
|
|
3135
|
-
/**
|
|
3136
|
-
* Maximum number of the items that the Items parameter may contain.
|
|
3137
|
-
* @format int32
|
|
3138
|
-
*/
|
|
3139
|
-
limit?: number;
|
|
3140
|
-
}
|
|
2977
|
+
export type PagedFeaturesListDc = PagedListFeatureDc & object;
|
|
3141
2978
|
export interface PagedListConfigDc {
|
|
3142
2979
|
/** @format int64 */
|
|
3143
2980
|
totalCount?: number;
|
|
@@ -3337,41 +3174,27 @@ export type PointDc = GeometryDc & {
|
|
|
3337
3174
|
/**
|
|
3338
3175
|
*
|
|
3339
3176
|
*
|
|
3340
|
-
*
|
|
3341
|
-
*
|
|
3342
|
-
* Point
|
|
3343
|
-
*
|
|
3344
|
-
* LineString
|
|
3345
|
-
*
|
|
3346
|
-
* Polygon
|
|
3347
|
-
*
|
|
3348
|
-
* MultiPoint
|
|
3349
|
-
*
|
|
3350
|
-
* MultiLineString
|
|
3351
|
-
*
|
|
3352
|
-
* MultiPolygon
|
|
3353
|
-
*
|
|
3354
|
-
* GeometryCollection
|
|
3177
|
+
* unknown
|
|
3355
3178
|
*
|
|
3356
|
-
*
|
|
3179
|
+
* point
|
|
3357
3180
|
*
|
|
3358
|
-
*
|
|
3181
|
+
* polyline
|
|
3359
3182
|
*
|
|
3360
|
-
*
|
|
3183
|
+
* polygon
|
|
3361
3184
|
*
|
|
3362
|
-
*
|
|
3185
|
+
* envelope
|
|
3363
3186
|
*
|
|
3364
|
-
*
|
|
3187
|
+
* multipoint
|
|
3365
3188
|
*
|
|
3366
|
-
*
|
|
3189
|
+
* line
|
|
3367
3190
|
*
|
|
3368
|
-
*
|
|
3191
|
+
* ring
|
|
3369
3192
|
*
|
|
3370
|
-
*
|
|
3193
|
+
* multipolygon
|
|
3371
3194
|
*
|
|
3372
|
-
*
|
|
3195
|
+
* collection
|
|
3373
3196
|
*/
|
|
3374
|
-
type?:
|
|
3197
|
+
type?: GeometryType;
|
|
3375
3198
|
};
|
|
3376
3199
|
export interface PolicyDc {
|
|
3377
3200
|
/**
|
|
@@ -3434,42 +3257,59 @@ export type PolygonDc = GeometryDc & {
|
|
|
3434
3257
|
/**
|
|
3435
3258
|
*
|
|
3436
3259
|
*
|
|
3437
|
-
*
|
|
3260
|
+
* unknown
|
|
3438
3261
|
*
|
|
3439
|
-
*
|
|
3262
|
+
* point
|
|
3440
3263
|
*
|
|
3441
|
-
*
|
|
3264
|
+
* polyline
|
|
3442
3265
|
*
|
|
3443
|
-
*
|
|
3266
|
+
* polygon
|
|
3444
3267
|
*
|
|
3445
|
-
*
|
|
3268
|
+
* envelope
|
|
3446
3269
|
*
|
|
3447
|
-
*
|
|
3270
|
+
* multipoint
|
|
3448
3271
|
*
|
|
3449
|
-
*
|
|
3272
|
+
* line
|
|
3450
3273
|
*
|
|
3451
|
-
*
|
|
3274
|
+
* ring
|
|
3452
3275
|
*
|
|
3453
|
-
*
|
|
3276
|
+
* multipolygon
|
|
3454
3277
|
*
|
|
3455
|
-
*
|
|
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
|
+
/**
|
|
3456
3289
|
*
|
|
3457
|
-
* CurvePolygon
|
|
3458
3290
|
*
|
|
3459
|
-
*
|
|
3291
|
+
* unknown
|
|
3460
3292
|
*
|
|
3461
|
-
*
|
|
3293
|
+
* point
|
|
3462
3294
|
*
|
|
3463
|
-
*
|
|
3295
|
+
* polyline
|
|
3464
3296
|
*
|
|
3465
|
-
*
|
|
3297
|
+
* polygon
|
|
3466
3298
|
*
|
|
3467
|
-
*
|
|
3299
|
+
* envelope
|
|
3468
3300
|
*
|
|
3469
|
-
*
|
|
3301
|
+
* multipoint
|
|
3302
|
+
*
|
|
3303
|
+
* line
|
|
3304
|
+
*
|
|
3305
|
+
* ring
|
|
3306
|
+
*
|
|
3307
|
+
* multipolygon
|
|
3308
|
+
*
|
|
3309
|
+
* collection
|
|
3470
3310
|
*/
|
|
3471
|
-
type?:
|
|
3472
|
-
/**
|
|
3311
|
+
type?: GeometryType;
|
|
3312
|
+
/** Poly coordinates. */
|
|
3473
3313
|
coordinates: PositionDc[][];
|
|
3474
3314
|
};
|
|
3475
3315
|
/**
|
|
@@ -3711,41 +3551,27 @@ export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3711
3551
|
/**
|
|
3712
3552
|
*
|
|
3713
3553
|
*
|
|
3714
|
-
*
|
|
3554
|
+
* unknown
|
|
3715
3555
|
*
|
|
3716
|
-
*
|
|
3556
|
+
* point
|
|
3717
3557
|
*
|
|
3718
|
-
*
|
|
3558
|
+
* polyline
|
|
3719
3559
|
*
|
|
3720
|
-
*
|
|
3560
|
+
* polygon
|
|
3721
3561
|
*
|
|
3722
|
-
*
|
|
3562
|
+
* envelope
|
|
3723
3563
|
*
|
|
3724
|
-
*
|
|
3564
|
+
* multipoint
|
|
3725
3565
|
*
|
|
3726
|
-
*
|
|
3727
|
-
*
|
|
3728
|
-
* GeometryCollection
|
|
3729
|
-
*
|
|
3730
|
-
* CircularString
|
|
3731
|
-
*
|
|
3732
|
-
* CompoundCurve
|
|
3566
|
+
* line
|
|
3733
3567
|
*
|
|
3734
|
-
*
|
|
3568
|
+
* ring
|
|
3735
3569
|
*
|
|
3736
|
-
*
|
|
3570
|
+
* multipolygon
|
|
3737
3571
|
*
|
|
3738
|
-
*
|
|
3739
|
-
*
|
|
3740
|
-
* Curve
|
|
3741
|
-
*
|
|
3742
|
-
* Surface
|
|
3743
|
-
*
|
|
3744
|
-
* PolyhedralSurface
|
|
3745
|
-
*
|
|
3746
|
-
* TIN
|
|
3572
|
+
* collection
|
|
3747
3573
|
*/
|
|
3748
|
-
geometryType?:
|
|
3574
|
+
geometryType?: GeometryType;
|
|
3749
3575
|
/** Source system type, e.g. "ArcGIS". */
|
|
3750
3576
|
sourceType?: string | null;
|
|
3751
3577
|
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
@@ -3946,25 +3772,39 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3946
3772
|
/**
|
|
3947
3773
|
*
|
|
3948
3774
|
*
|
|
3949
|
-
*
|
|
3775
|
+
* Unknown
|
|
3950
3776
|
*
|
|
3951
|
-
*
|
|
3777
|
+
* String
|
|
3952
3778
|
*
|
|
3953
|
-
*
|
|
3779
|
+
* Int32
|
|
3780
|
+
*
|
|
3781
|
+
* Int64
|
|
3782
|
+
*
|
|
3783
|
+
* Double
|
|
3784
|
+
*
|
|
3785
|
+
* DateTime
|
|
3954
3786
|
*
|
|
3955
|
-
*
|
|
3787
|
+
* Boolean
|
|
3788
|
+
*
|
|
3789
|
+
* Point
|
|
3790
|
+
*
|
|
3791
|
+
* LineString
|
|
3956
3792
|
*
|
|
3957
3793
|
* Polygon
|
|
3958
3794
|
*
|
|
3959
|
-
*
|
|
3795
|
+
* Multipoint
|
|
3960
3796
|
*
|
|
3961
|
-
*
|
|
3797
|
+
* Polyline
|
|
3962
3798
|
*
|
|
3963
|
-
*
|
|
3799
|
+
* H3Index
|
|
3964
3800
|
*
|
|
3965
|
-
*
|
|
3801
|
+
* Json
|
|
3802
|
+
*
|
|
3803
|
+
* MultiPolygon
|
|
3804
|
+
*
|
|
3805
|
+
* GeometryCollection
|
|
3966
3806
|
*/
|
|
3967
|
-
geometryType?:
|
|
3807
|
+
geometryType?: AttributeType;
|
|
3968
3808
|
/** Configuration of the attribute set in a feature layer. */
|
|
3969
3809
|
attributesConfiguration?: EqlAttributesConfigurationDc;
|
|
3970
3810
|
/** Client style data storage. Storage isn't used by server. */
|
|
@@ -4777,41 +4617,27 @@ export type ServiceInfoDc = ResourceInfoDc & {
|
|
|
4777
4617
|
/**
|
|
4778
4618
|
*
|
|
4779
4619
|
*
|
|
4780
|
-
*
|
|
4620
|
+
* unknown
|
|
4781
4621
|
*
|
|
4782
|
-
*
|
|
4622
|
+
* point
|
|
4783
4623
|
*
|
|
4784
|
-
*
|
|
4624
|
+
* polyline
|
|
4785
4625
|
*
|
|
4786
|
-
*
|
|
4626
|
+
* polygon
|
|
4787
4627
|
*
|
|
4788
|
-
*
|
|
4628
|
+
* envelope
|
|
4789
4629
|
*
|
|
4790
|
-
*
|
|
4630
|
+
* multipoint
|
|
4791
4631
|
*
|
|
4792
|
-
*
|
|
4632
|
+
* line
|
|
4793
4633
|
*
|
|
4794
|
-
*
|
|
4634
|
+
* ring
|
|
4795
4635
|
*
|
|
4796
|
-
*
|
|
4636
|
+
* multipolygon
|
|
4797
4637
|
*
|
|
4798
|
-
*
|
|
4799
|
-
*
|
|
4800
|
-
* CurvePolygon
|
|
4801
|
-
*
|
|
4802
|
-
* MultiCurve
|
|
4803
|
-
*
|
|
4804
|
-
* MultiSurface
|
|
4805
|
-
*
|
|
4806
|
-
* Curve
|
|
4807
|
-
*
|
|
4808
|
-
* Surface
|
|
4809
|
-
*
|
|
4810
|
-
* PolyhedralSurface
|
|
4811
|
-
*
|
|
4812
|
-
* TIN
|
|
4638
|
+
* collection
|
|
4813
4639
|
*/
|
|
4814
|
-
geometryType:
|
|
4640
|
+
geometryType: GeometryType;
|
|
4815
4641
|
/**
|
|
4816
4642
|
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
4817
4643
|
* 0 is returned.
|
|
@@ -4887,41 +4713,27 @@ export interface ServiceListItemDc {
|
|
|
4887
4713
|
/**
|
|
4888
4714
|
*
|
|
4889
4715
|
*
|
|
4890
|
-
*
|
|
4891
|
-
*
|
|
4892
|
-
* Point
|
|
4893
|
-
*
|
|
4894
|
-
* LineString
|
|
4895
|
-
*
|
|
4896
|
-
* Polygon
|
|
4897
|
-
*
|
|
4898
|
-
* MultiPoint
|
|
4899
|
-
*
|
|
4900
|
-
* MultiLineString
|
|
4901
|
-
*
|
|
4902
|
-
* MultiPolygon
|
|
4903
|
-
*
|
|
4904
|
-
* GeometryCollection
|
|
4716
|
+
* unknown
|
|
4905
4717
|
*
|
|
4906
|
-
*
|
|
4718
|
+
* point
|
|
4907
4719
|
*
|
|
4908
|
-
*
|
|
4720
|
+
* polyline
|
|
4909
4721
|
*
|
|
4910
|
-
*
|
|
4722
|
+
* polygon
|
|
4911
4723
|
*
|
|
4912
|
-
*
|
|
4724
|
+
* envelope
|
|
4913
4725
|
*
|
|
4914
|
-
*
|
|
4726
|
+
* multipoint
|
|
4915
4727
|
*
|
|
4916
|
-
*
|
|
4728
|
+
* line
|
|
4917
4729
|
*
|
|
4918
|
-
*
|
|
4730
|
+
* ring
|
|
4919
4731
|
*
|
|
4920
|
-
*
|
|
4732
|
+
* multipolygon
|
|
4921
4733
|
*
|
|
4922
|
-
*
|
|
4734
|
+
* collection
|
|
4923
4735
|
*/
|
|
4924
|
-
geometryType?:
|
|
4736
|
+
geometryType?: GeometryType;
|
|
4925
4737
|
/** Provides data source type info. */
|
|
4926
4738
|
dataSourceType?: string;
|
|
4927
4739
|
/** A set of tags. */
|
|
@@ -5303,7 +5115,7 @@ export interface TableInfoDc {
|
|
|
5303
5115
|
*/
|
|
5304
5116
|
rowCount?: number;
|
|
5305
5117
|
/** The geometry of the table. */
|
|
5306
|
-
geometries?:
|
|
5118
|
+
geometries?: GeometryType[];
|
|
5307
5119
|
/** The type of the table. */
|
|
5308
5120
|
type?: string;
|
|
5309
5121
|
/** Configuration of the table. */
|
|
@@ -5911,7 +5723,7 @@ export interface TokenResponseDc {
|
|
|
5911
5723
|
*/
|
|
5912
5724
|
export interface UpdateFeatureDc {
|
|
5913
5725
|
/** Feature geometry definition. */
|
|
5914
|
-
geometry?: GeometryCollectionDc | LineStringDc |
|
|
5726
|
+
geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
|
|
5915
5727
|
/** Feature attributes collection. */
|
|
5916
5728
|
attributes?: Record<string, any>;
|
|
5917
5729
|
/** Feature unique identifier. */
|