@evergis/api 5.0.9-alpha.2 → 5.0.9-alpha.4
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.
|
@@ -29,7 +29,7 @@ export declare class EqlService extends Service {
|
|
|
29
29
|
* @secure
|
|
30
30
|
* @response `200` OK
|
|
31
31
|
*/
|
|
32
|
-
getQueryDescription(data: EqlRequestDc): Promise<
|
|
32
|
+
getQueryDescription(data: EqlRequestDc): Promise<(AttributeConfigurationDc | CalculatedAttributeConfigurationDc | GeometryAttributeConfigurationDc | StringAttributeConfigurationDc)[]>;
|
|
33
33
|
/**
|
|
34
34
|
* No description
|
|
35
35
|
*
|
|
@@ -568,6 +568,49 @@ export interface AttributesConfigurationDc {
|
|
|
568
568
|
idAttribute: string;
|
|
569
569
|
/** The name of the attribute that contains the feature geometry. */
|
|
570
570
|
geometryAttribute?: string;
|
|
571
|
+
/**
|
|
572
|
+
*
|
|
573
|
+
*
|
|
574
|
+
* Unknown
|
|
575
|
+
*
|
|
576
|
+
* Point
|
|
577
|
+
*
|
|
578
|
+
* LineString
|
|
579
|
+
*
|
|
580
|
+
* Polygon
|
|
581
|
+
*
|
|
582
|
+
* MultiPoint
|
|
583
|
+
*
|
|
584
|
+
* MultiLineString
|
|
585
|
+
*
|
|
586
|
+
* MultiPolygon
|
|
587
|
+
*
|
|
588
|
+
* GeometryCollection
|
|
589
|
+
*
|
|
590
|
+
* CircularString
|
|
591
|
+
*
|
|
592
|
+
* CompoundCurve
|
|
593
|
+
*
|
|
594
|
+
* CurvePolygon
|
|
595
|
+
*
|
|
596
|
+
* MultiCurve
|
|
597
|
+
*
|
|
598
|
+
* MultiSurface
|
|
599
|
+
*
|
|
600
|
+
* Curve
|
|
601
|
+
*
|
|
602
|
+
* Surface
|
|
603
|
+
*
|
|
604
|
+
* PolyhedralSurface
|
|
605
|
+
*
|
|
606
|
+
* TIN
|
|
607
|
+
*/
|
|
608
|
+
geometryType?: OgcGeometryType;
|
|
609
|
+
/**
|
|
610
|
+
* Geometry spatial reference.
|
|
611
|
+
* @format int32
|
|
612
|
+
*/
|
|
613
|
+
srId?: number;
|
|
571
614
|
/** The name of the attribute that is used for setting feature name (optional). */
|
|
572
615
|
titleAttribute?: string;
|
|
573
616
|
/** Name of the attribute that contains the ordering of the feature. */
|
|
@@ -2098,6 +2141,44 @@ export type GeometryAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
|
2098
2141
|
* Calculated
|
|
2099
2142
|
*/
|
|
2100
2143
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
2144
|
+
/**
|
|
2145
|
+
*
|
|
2146
|
+
*
|
|
2147
|
+
* Unknown
|
|
2148
|
+
*
|
|
2149
|
+
* Point
|
|
2150
|
+
*
|
|
2151
|
+
* LineString
|
|
2152
|
+
*
|
|
2153
|
+
* Polygon
|
|
2154
|
+
*
|
|
2155
|
+
* MultiPoint
|
|
2156
|
+
*
|
|
2157
|
+
* MultiLineString
|
|
2158
|
+
*
|
|
2159
|
+
* MultiPolygon
|
|
2160
|
+
*
|
|
2161
|
+
* GeometryCollection
|
|
2162
|
+
*
|
|
2163
|
+
* CircularString
|
|
2164
|
+
*
|
|
2165
|
+
* CompoundCurve
|
|
2166
|
+
*
|
|
2167
|
+
* CurvePolygon
|
|
2168
|
+
*
|
|
2169
|
+
* MultiCurve
|
|
2170
|
+
*
|
|
2171
|
+
* MultiSurface
|
|
2172
|
+
*
|
|
2173
|
+
* Curve
|
|
2174
|
+
*
|
|
2175
|
+
* Surface
|
|
2176
|
+
*
|
|
2177
|
+
* PolyhedralSurface
|
|
2178
|
+
*
|
|
2179
|
+
* TIN
|
|
2180
|
+
*/
|
|
2181
|
+
geometryType?: OgcGeometryType;
|
|
2101
2182
|
/**
|
|
2102
2183
|
* Spatial reference identifier type in geometry type column.
|
|
2103
2184
|
* @format int32
|