@evergis/api 3.0.49 → 3.0.53

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.
@@ -32,8 +32,7 @@ export interface AggregationDataResultDc {
32
32
  /** Aggregation attribute name. */
33
33
  aggregationAttributeName: string;
34
34
  /**
35
- * The type of aggregation function for storage query.
36
- * The aggregation is applied to the source attribute and the result will write in the target attribute.
35
+ *
37
36
  *
38
37
  * None
39
38
  *
@@ -58,8 +57,7 @@ export interface AggregationDataResultDc {
58
57
  value: any;
59
58
  }
60
59
  /**
61
- * The type of aggregation function for storage query.
62
- The aggregation is applied to the source attribute and the result will write in the target attribute.
60
+ *
63
61
 
64
62
  None
65
63
 
@@ -99,8 +97,7 @@ export interface AggregationSettingDc {
99
97
  /** Source attribute name. */
100
98
  sourceAttributeName: string;
101
99
  /**
102
- * The type of aggregation function for storage query.
103
- * The aggregation is applied to the source attribute and the result will write in the target attribute.
100
+ *
104
101
  *
105
102
  * None
106
103
  *
@@ -176,7 +173,7 @@ export interface ArgumentDefinitionDc {
176
173
  defaultValue?: any;
177
174
  isOptional?: boolean;
178
175
  /**
179
- * Type of the geometry.
176
+ *
180
177
  *
181
178
  * unknown
182
179
  *
@@ -315,8 +312,7 @@ export interface AttributeConfigurationDc {
315
312
  /** If false, attribute will not be returned in feature query. */
316
313
  isDisplayed?: boolean;
317
314
  /**
318
- * The type of aggregation function for storage query.
319
- * The aggregation is applied to the source attribute and the result will write in the target attribute.
315
+ *
320
316
  *
321
317
  * None
322
318
  *
@@ -915,6 +911,8 @@ InvalidLayerType
915
911
  ColumnLoadingError
916
912
 
917
913
  InvalidAttributeFormat
914
+
915
+ DataSourceNotFound
918
916
  */
919
917
  export declare enum ConfigurationErrorEnum {
920
918
  Unknown = "Unknown",
@@ -935,7 +933,8 @@ export declare enum ConfigurationErrorEnum {
935
933
  InvalidStyle = "InvalidStyle",
936
934
  InvalidLayerType = "InvalidLayerType",
937
935
  ColumnLoadingError = "ColumnLoadingError",
938
- InvalidAttributeFormat = "InvalidAttributeFormat"
936
+ InvalidAttributeFormat = "InvalidAttributeFormat",
937
+ DataSourceNotFound = "DataSourceNotFound"
939
938
  }
940
939
  /**
941
940
  * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
@@ -1738,7 +1737,6 @@ export interface GeocodeResultDc {
1738
1737
  * @format double
1739
1738
  */
1740
1739
  score?: number;
1741
- /** Geometry without specified spatial reference. */
1742
1740
  geometry?: IGeometry;
1743
1741
  }
1744
1742
  /**
@@ -1755,7 +1753,7 @@ export interface GeocodeSuggestResultDc {
1755
1753
  */
1756
1754
  export interface GeometryDc {
1757
1755
  /**
1758
- * Type of the geometry.
1756
+ *
1759
1757
  *
1760
1758
  * unknown
1761
1759
  *
@@ -1777,7 +1775,7 @@ export interface GeometryDc {
1777
1775
  sr?: number;
1778
1776
  }
1779
1777
  /**
1780
- * Type of the geometry.
1778
+ *
1781
1779
 
1782
1780
  unknown
1783
1781
 
@@ -1897,72 +1895,101 @@ export declare enum HttpStatusCode {
1897
1895
  NetworkAuthenticationRequired = "NetworkAuthenticationRequired"
1898
1896
  }
1899
1897
  /**
1900
- * Geographic spatial reference (e.g. with lat/long coordinates).
1898
+ * Attributes provides by router to describe route.
1901
1899
  */
1902
- export interface IDatum {
1900
+ export interface IceRouteAttributesDc {
1901
+ /** Gets route builder mode. */
1902
+ type?: string;
1903
+ /** Gets route title. */
1904
+ title?: string;
1903
1905
  /**
1904
- * Semimajor axis length.
1906
+ * Gets route build time.
1905
1907
  * @format double
1906
1908
  */
1907
- semimajor?: number;
1909
+ time?: number;
1908
1910
  /**
1909
- * Inverse flattening.
1911
+ * Gets route distance.
1910
1912
  * @format double
1911
1913
  */
1912
- inverseFlattening?: number;
1914
+ distance?: number;
1915
+ }
1916
+ /**
1917
+ * Provides description of result of ice router.
1918
+ */
1919
+ export interface IceRouteDc {
1920
+ /** Attributes provides by router to describe route. */
1921
+ attributes?: IceRouteAttributesDc;
1922
+ /** Route geometry. */
1923
+ geometry?: IceRouteGeometryDc;
1924
+ /** Gets false if route build process failed. */
1925
+ isSuccess?: boolean;
1926
+ /** Gets error message if route build process failed. */
1927
+ error?: string;
1928
+ }
1929
+ /**
1930
+ * Route geometry.
1931
+ */
1932
+ export interface IceRouteGeometryDc {
1933
+ /** Gets type of geometry. */
1934
+ type?: string;
1935
+ /** Gets polyline coordinates. */
1936
+ coordinates?: number[][];
1937
+ }
1938
+ /**
1939
+ * Provides result of ice route builder.
1940
+ */
1941
+ export interface IceRouterResultDc {
1942
+ /** Gets status the task is done. */
1943
+ isDone?: boolean;
1913
1944
  /**
1914
- * Semiminor axis length.
1915
- * @format double
1945
+ * Gets list of the result tasks. Provides with status "completed".
1946
+ * <br>
1947
+ * Routes array contains three routes of types.
1948
+ * 1. Economic.
1949
+ * 2. Optimum.
1950
+ * 3. Fast.
1951
+ *
1916
1952
  */
1953
+ routes?: IceRouteDc[];
1954
+ }
1955
+ /**
1956
+ * Data contract to start ice routing task.
1957
+ */
1958
+ export interface IceRouteTaskDc {
1959
+ /** Gets or sets start point. */
1960
+ start: number[];
1961
+ /** Gets or sets end point. */
1962
+ end: number[];
1963
+ }
1964
+ export interface IDatum {
1965
+ /** @format double */
1966
+ semimajor?: number;
1967
+ /** @format double */
1968
+ inverseFlattening?: number;
1969
+ /** @format double */
1917
1970
  semiminor?: number;
1918
- /**
1919
- * Flattening value.
1920
- * @format double
1921
- */
1971
+ /** @format double */
1922
1972
  flattening?: number;
1923
- /** If true longitude is the first coordinate, if false latitude is the first coordinate. */
1924
1973
  reversedOrder?: boolean;
1925
- /**
1926
- * Numerical ID of the spatial reference as given by the publishing authority. E.g. for EPSG:3857 id is '3857'.
1927
- * @format int32
1928
- */
1974
+ /** @format int32 */
1929
1975
  id?: number;
1930
- /** Publishing authority of the spatial reference. E.g. EPSG or OSG. */
1931
1976
  authority?: string;
1932
- /** Human readable description of the spatial reference. */
1933
1977
  description?: string;
1934
- /** Well known text as specified by http://docs.opengeospatial.org/is/12-063r5/12-063r5.html. */
1935
1978
  wkt?: string;
1936
- /**
1937
- * Number of coordinate dimensions in this spatial reference.
1938
- * @format int32
1939
- */
1979
+ /** @format int32 */
1940
1980
  dimensions?: number;
1941
- /** Geographic spatial reference (e.g. with lat/long coordinates). */
1942
1981
  datum?: IDatum;
1943
1982
  }
1944
- /**
1945
- * A pair of points that represent a rectangular area in the space.
1946
- */
1947
1983
  export interface IEnvelopeGeometry {
1948
- /** Double values vector. */
1949
1984
  start?: IVector;
1950
- /** Double values vector. */
1951
1985
  end?: IVector;
1952
- /**
1953
- * Width of the envelope.
1954
- * @format double
1955
- */
1986
+ /** @format double */
1956
1987
  width?: number;
1957
- /**
1958
- * Height of the envelope.
1959
- * @format double
1960
- */
1988
+ /** @format double */
1961
1989
  height?: number;
1962
- /** Double values vector. */
1963
1990
  centroid?: IVector;
1964
1991
  /**
1965
- * Type of the geometry.
1992
+ *
1966
1993
  *
1967
1994
  * unknown
1968
1995
  *
@@ -1977,19 +2004,13 @@ export interface IEnvelopeGeometry {
1977
2004
  * multipoint
1978
2005
  */
1979
2006
  geometryType?: GeometryType;
1980
- /** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
1981
2007
  sr?: ISpatialReference;
1982
- /** A pair of points that represent a rectangular area in the space. */
1983
2008
  envelope?: IEnvelopeGeometry;
1984
2009
  }
1985
- /**
1986
- * Geometry without specified spatial reference.
1987
- */
1988
2010
  export interface IGeometry {
1989
- /** Double values vector. */
1990
2011
  centroid?: IVector;
1991
2012
  /**
1992
- * Type of the geometry.
2013
+ *
1993
2014
  *
1994
2015
  * unknown
1995
2016
  *
@@ -2004,9 +2025,7 @@ export interface IGeometry {
2004
2025
  * multipoint
2005
2026
  */
2006
2027
  geometryType?: GeometryType;
2007
- /** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
2008
2028
  sr?: ISpatialReference;
2009
- /** A pair of points that represent a rectangular area in the space. */
2010
2029
  envelope?: IEnvelopeGeometry;
2011
2030
  }
2012
2031
  export interface ILineEndingDc {
@@ -2089,27 +2108,14 @@ export interface IServiceConfiguration {
2089
2108
  /** Type of the layer. */
2090
2109
  type?: string;
2091
2110
  }
2092
- /**
2093
- * Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use.
2094
- */
2095
2111
  export interface ISpatialReference {
2096
- /**
2097
- * Numerical ID of the spatial reference as given by the publishing authority. E.g. for EPSG:3857 id is '3857'.
2098
- * @format int32
2099
- */
2112
+ /** @format int32 */
2100
2113
  id?: number;
2101
- /** Publishing authority of the spatial reference. E.g. EPSG or OSG. */
2102
2114
  authority?: string;
2103
- /** Human readable description of the spatial reference. */
2104
2115
  description?: string;
2105
- /** Well known text as specified by http://docs.opengeospatial.org/is/12-063r5/12-063r5.html. */
2106
2116
  wkt?: string;
2107
- /**
2108
- * Number of coordinate dimensions in this spatial reference.
2109
- * @format int32
2110
- */
2117
+ /** @format int32 */
2111
2118
  dimensions?: number;
2112
- /** Geographic spatial reference (e.g. with lat/long coordinates). */
2113
2119
  datum?: IDatum;
2114
2120
  }
2115
2121
  /**
@@ -2121,14 +2127,8 @@ export interface IValidationError {
2121
2127
  /** Validation errors. */
2122
2128
  message?: string;
2123
2129
  }
2124
- /**
2125
- * Double values vector.
2126
- */
2127
2130
  export interface IVector {
2128
- /**
2129
- * Number of coordinates dimensions.
2130
- * @format int32
2131
- */
2131
+ /** @format int32 */
2132
2132
  dimensions?: number;
2133
2133
  }
2134
2134
  /**
@@ -2200,7 +2200,7 @@ export interface LayerDefinitionDc {
2200
2200
  /** The name of the attribute that is used for assigning geometry value for the feature. */
2201
2201
  geometryAttribute: string;
2202
2202
  /**
2203
- * Type of the geometry.
2203
+ *
2204
2204
  *
2205
2205
  * unknown
2206
2206
  *
@@ -2278,7 +2278,6 @@ Includes ids of modified features and their bbox.
2278
2278
  export interface LayerUpdateInfoDc {
2279
2279
  /** Updated layer service name. */
2280
2280
  layerServiceName: string;
2281
- /** A pair of points that represent a rectangular area in the space. */
2282
2281
  boundingBox?: IEnvelopeGeometry;
2283
2282
  /** Array of created ids. */
2284
2283
  createdIds?: ObjectId[];
@@ -2644,7 +2643,7 @@ export interface NewResourcesTypesDc {
2644
2643
  */
2645
2644
  export declare type ObjectId = object;
2646
2645
  /**
2647
- * Boolean operation between polygons.
2646
+ *
2648
2647
 
2649
2648
  Unknown
2650
2649
 
@@ -3150,9 +3149,6 @@ export declare type RasterSymbolDc = SymbolDc & {
3150
3149
  type?: string;
3151
3150
  opacity?: CalculatedParameterDc;
3152
3151
  };
3153
- /**
3154
- * Geometrical rectangle.
3155
- */
3156
3152
  export interface Rectangle2 {
3157
3153
  /** @format double */
3158
3154
  x1?: number;
@@ -3162,19 +3158,11 @@ export interface Rectangle2 {
3162
3158
  x2?: number;
3163
3159
  /** @format double */
3164
3160
  y2?: number;
3165
- /**
3166
- * Width of the rectangle.
3167
- * @format double
3168
- */
3161
+ /** @format double */
3169
3162
  width?: number;
3170
- /**
3171
- * Height of the rectangle.
3172
- * @format double
3173
- */
3163
+ /** @format double */
3174
3164
  height?: number;
3175
- /** Double values vector. */
3176
3165
  center?: IVector;
3177
- /** Double values vector. */
3178
3166
  halfSize?: IVector;
3179
3167
  }
3180
3168
  /**
@@ -3230,8 +3218,8 @@ export interface RemoteTileServiceInfo {
3230
3218
  * Service info for a tile service.
3231
3219
  */
3232
3220
  export declare type RemoteTileServiceInfoDc = TileServiceInfoDc & {
3233
- sourceUrl: string;
3234
- sourceUrlMask: string;
3221
+ sourceUrl?: string;
3222
+ sourceUrlMask?: string;
3235
3223
  sourceServers?: string[];
3236
3224
  copyrightText?: string;
3237
3225
  };
@@ -3609,7 +3597,7 @@ export interface ServiceInfoPubDc {
3609
3597
  */
3610
3598
  condition?: string;
3611
3599
  /**
3612
- * Type of the geometry.
3600
+ *
3613
3601
  *
3614
3602
  * unknown
3615
3603
  *
@@ -3732,7 +3720,7 @@ export interface ServiceListItemDc {
3732
3720
  */
3733
3721
  condition?: string;
3734
3722
  /**
3735
- * Type of the geometry.
3723
+ *
3736
3724
  *
3737
3725
  * unknown
3738
3726
  *
@@ -4404,9 +4392,7 @@ export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc &
4404
4392
  * Tile info structure.
4405
4393
  */
4406
4394
  export interface TileInfo {
4407
- /** Double values vector. */
4408
4395
  origin?: IVector;
4409
- /** Geometrical rectangle. */
4410
4396
  boundingRectangle?: Rectangle2;
4411
4397
  /**
4412
4398
  * If set to true, the origin point will be considered to be the bottom left corner and increasing tile indexes increase
@@ -4431,7 +4417,6 @@ export interface TileInfo {
4431
4417
  width?: number;
4432
4418
  /** Image format. */
4433
4419
  format?: string;
4434
- /** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
4435
4420
  spatialReference?: ISpatialReference;
4436
4421
  /** List of levels of detail that define the tiling schema. */
4437
4422
  lods?: LodInfo[];
@@ -5056,21 +5041,12 @@ export interface VariableValueInfo {
5056
5041
  /** Gets or sets roles. */
5057
5042
  roles?: string[];
5058
5043
  }
5059
- /**
5060
- * 2-dimensional vector.
5061
- */
5062
5044
  export interface Vector2 {
5063
5045
  /** @format int32 */
5064
5046
  dimensions?: number;
5065
- /**
5066
- * First coordinate.
5067
- * @format double
5068
- */
5047
+ /** @format double */
5069
5048
  x?: number;
5070
- /**
5071
- * Second coordinate.
5072
- * @format double
5073
- */
5049
+ /** @format double */
5074
5050
  y?: number;
5075
5051
  }
5076
5052
  /**
@@ -5122,7 +5098,7 @@ export interface WorkspaceLimitsDc {
5122
5098
  currentProjectCount?: number;
5123
5099
  }
5124
5100
  export interface GetUsersParams {
5125
- /** String filter for the user name (uses % and _ wild cards like SQL). */
5101
+ /** String filter for the user (uses % and _ wild cards like SQL). */
5126
5102
  filter?: string;
5127
5103
  /** Ordering property name. */
5128
5104
  orderBy?: string;
@@ -5144,7 +5120,7 @@ export interface GetUsersParams {
5144
5120
  roles?: string[];
5145
5121
  }
5146
5122
  export interface GetExtendedUsersParams {
5147
- /** String filter for the user name (uses % and _ wild cards like SQL). */
5123
+ /** String filter for the user (uses % and _ wild cards like SQL). */
5148
5124
  filter?: string;
5149
5125
  /** Ordering property name. */
5150
5126
  orderBy?: string;
@@ -5215,8 +5191,10 @@ export interface ResetPasswordCallbackPayload {
5215
5191
  newPassword: string;
5216
5192
  }
5217
5193
  export interface GetRolesParams {
5218
- /** String filter for the role name (uses % and _ wild cards like SQL). */
5194
+ /** String filter for the role (uses % and _ wild cards like SQL). */
5219
5195
  filter?: string;
5196
+ /** String filter for the user (uses % and _ wild cards like SQL). */
5197
+ userFilter?: string;
5220
5198
  /** Ordering property name. */
5221
5199
  orderBy?: string;
5222
5200
  /** Include system roles (starts from '__'). */
@@ -5436,6 +5414,10 @@ export interface GetLayersListParams {
5436
5414
  forAllUsers?: boolean;
5437
5415
  }
5438
5416
  export declare type SetPermissionsBatchPayload = ResourceAclDc[];
5417
+ export interface DeleteResourcesParams {
5418
+ /** Resource names. */
5419
+ names?: string[];
5420
+ }
5439
5421
  export interface GetFeaturesParams {
5440
5422
  /** Sets features filtering query. */
5441
5423
  query?: string;
@@ -5475,6 +5457,39 @@ export interface DeleteFeatureParams {
5475
5457
  }
5476
5458
  export declare type CreateFeaturesPayload = FeatureDc[];
5477
5459
  export declare type UpdateFeaturePayload = FeatureDc[];
5460
+ export interface FeaturesContainsParams {
5461
+ /** Contains filter within a given filterAttributes. */
5462
+ filter?: string;
5463
+ /** Filter attributes. */
5464
+ filterAttributes?: string[];
5465
+ /**
5466
+ * Comma separated list of attributes by which to sort the resulting feature list.
5467
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
5468
+ * in descending order.
5469
+ */
5470
+ sort?: string[];
5471
+ /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
5472
+ attributes?: string[];
5473
+ /**
5474
+ * Features count have to skip.
5475
+ * @format int32
5476
+ */
5477
+ offset?: number;
5478
+ /**
5479
+ * Features limit per response.
5480
+ * @format int32
5481
+ */
5482
+ limit?: number;
5483
+ /**
5484
+ * Spatial reference of returned features.
5485
+ * @format int32
5486
+ */
5487
+ wkid?: number;
5488
+ /** If set to true, the geometry will not be returned for features. */
5489
+ withGeom?: boolean;
5490
+ /** Full name of the layer. */
5491
+ name: string;
5492
+ }
5478
5493
  export interface GetByIdParams {
5479
5494
  /**
5480
5495
  * Spatial reference of returned features.
@@ -5828,6 +5843,10 @@ export interface GetProjectsListParams {
5828
5843
  forAllUsers?: boolean;
5829
5844
  }
5830
5845
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5846
+ export interface DeleteResourcesParams8 {
5847
+ /** Resource names. */
5848
+ names?: string[];
5849
+ }
5831
5850
  export interface SetPreviewBody {
5832
5851
  /** @format binary */
5833
5852
  file?: File;
@@ -5954,6 +5973,10 @@ export interface UploadScriptFilePayload {
5954
5973
  /** @format binary */
5955
5974
  settings?: File;
5956
5975
  }
5976
+ export interface FindUserByNameByRolesParams {
5977
+ /** Roles. */
5978
+ roles?: string[];
5979
+ }
5957
5980
  export interface FindUserByNameParams {
5958
5981
  /** String filter for the username or email (uses % and _ wild cards like SQL). */
5959
5982
  filter?: string;
@@ -6031,6 +6054,10 @@ export interface GetTableListParams {
6031
6054
  geometryFilter?: string[];
6032
6055
  }
6033
6056
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6057
+ export interface DeleteResourcesParams2 {
6058
+ /** Resource names. */
6059
+ names?: string[];
6060
+ }
6034
6061
  export declare type UpdateTableDataPayload = Record<string, any>[];
6035
6062
  export interface UpdateTableDataParams {
6036
6063
  /** Id column name. */