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