@evergis/api 5.0.15 → 5.0.17

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.
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { GeocodeByPointParams, GeocodeParams, GeocodeResultDc, GeocodeSuggestResultDc, SuggestParams } from './data-contracts';
2
+ import { GeocodeByPointParams, GeocodeParams, GeocodeSuggestResultDc, PagedFeaturesListDc, SuggestParams } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -17,7 +17,7 @@ export declare class GeocodeService extends Service {
17
17
  * @secure
18
18
  * @response `200` OK
19
19
  */
20
- geocode({ providerName, ...query }: GeocodeParams): Promise<GeocodeResultDc[]>;
20
+ geocode({ providerName, ...query }: GeocodeParams): Promise<PagedFeaturesListDc>;
21
21
  /**
22
22
  * No description
23
23
  *
@@ -29,7 +29,7 @@ export declare class GeocodeService extends Service {
29
29
  * @secure
30
30
  * @response `200` OK
31
31
  */
32
- geocodeByPoint({ providerName, ...query }: GeocodeByPointParams): Promise<GeocodeResultDc[]>;
32
+ geocodeByPoint({ providerName, ...query }: GeocodeByPointParams): Promise<PagedFeaturesListDc>;
33
33
  /**
34
34
  * No description
35
35
  *
@@ -1873,8 +1873,6 @@ export interface FeatureDc {
1873
1873
  properties: Record<string, any>;
1874
1874
  /** Feature unique identifier. */
1875
1875
  id?: string;
1876
- /** Values for all bands of feature by pixel point. */
1877
- bandsValues?: Record<string, number>;
1878
1876
  }
1879
1877
  export interface FileDto {
1880
1878
  path?: string;
@@ -1913,27 +1911,6 @@ export interface FilterResponseDc {
1913
1911
  /** Id of the filter. */
1914
1912
  id?: string;
1915
1913
  }
1916
- /**
1917
- * Geocode result.
1918
- */
1919
- export interface GeocodeResultDc {
1920
- /**
1921
- * Input geocode address.
1922
- * @minLength 1
1923
- */
1924
- address: string;
1925
- /** Source. */
1926
- source?: string;
1927
- /**
1928
- * Result score point.
1929
- * @format double
1930
- */
1931
- score?: number;
1932
- /** The position at the map. */
1933
- center?: PositionDc;
1934
- /** Result geometry. */
1935
- geometry?: GeometryCollectionDc | LineStringDc | MultiLineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc;
1936
- }
1937
1914
  /**
1938
1915
  * Geocode suggest result.
1939
1916
  */