@evergis/api 3.0.46 → 3.0.50
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__/AccountService.d.ts +3 -3
- package/dist/__generated__/BulkOperationsService.d.ts +35 -2
- package/dist/__generated__/IceRouterService.d.ts +31 -0
- package/dist/__generated__/data-contracts.d.ts +132 -126
- package/dist/api.cjs.development.js +72 -6
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +75 -10
- package/dist/api.esm.js.map +1 -1
- package/dist/services/BulkOperations.d.ts +5 -2
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, ListResponseExtendedUserInfoDc, ListResponseRoleInfoDc, ListResponseUserInfoDc, LoginDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload,
|
|
1
|
+
import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, ListResponseExtendedUserInfoDc, ListResponseRoleInfoDc, ListResponseUserInfoDc, LoginDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -178,10 +178,10 @@ export declare class AccountService extends Service {
|
|
|
178
178
|
* @name SetUserPassword
|
|
179
179
|
* @operationId AccountController_SetUserPassword
|
|
180
180
|
* @summary Set user password.
|
|
181
|
-
* @request PATCH:/account/
|
|
181
|
+
* @request PATCH:/account/password/set
|
|
182
182
|
* @response `200` Success
|
|
183
183
|
*/
|
|
184
|
-
setUserPassword(
|
|
184
|
+
setUserPassword(data: LoginDc): Promise<void>;
|
|
185
185
|
/**
|
|
186
186
|
* No description
|
|
187
187
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BatchResourcesAclDc } from './data-contracts';
|
|
1
|
+
import { BatchResourcesAclDc, BatchResourcesCatalogDc, BulkOperationResultDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -6,6 +6,39 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class BulkOperationsService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags BulkOperations
|
|
13
|
+
* @name BatchUpdateCatalogResources
|
|
14
|
+
* @operationId BulkOperationsController_BatchUpdateCatalogResources
|
|
15
|
+
* @summary Overrides resources in catalog.
|
|
16
|
+
* @request PUT:/bulk/catalog/updateResources
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
batchUpdateCatalogResources(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags BulkOperations
|
|
24
|
+
* @name BatchAddResourcesToCatalog
|
|
25
|
+
* @operationId BulkOperationsController_BatchAddResourcesToCatalog
|
|
26
|
+
* @summary Add resources to catalog.
|
|
27
|
+
* @request POST:/bulk/catalog/addResources
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
batchAddResourcesToCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
31
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags BulkOperations
|
|
35
|
+
* @name BatchDeleteResourcesFromCatalog
|
|
36
|
+
* @operationId BulkOperationsController_BatchDeleteResourcesFromCatalog
|
|
37
|
+
* @summary Delete resources to catalog.
|
|
38
|
+
* @request POST:/bulk/catalog/removeResources
|
|
39
|
+
* @response `200` Success
|
|
40
|
+
*/
|
|
41
|
+
batchDeleteResourcesFromCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
9
42
|
/**
|
|
10
43
|
* No description
|
|
11
44
|
*
|
|
@@ -16,5 +49,5 @@ export declare class BulkOperationsService extends Service {
|
|
|
16
49
|
* @request PUT:/bulk/resources/permissions
|
|
17
50
|
* @response `200` Success
|
|
18
51
|
*/
|
|
19
|
-
batchResourcesPermissionsSet(data: BatchResourcesAclDc): Promise<
|
|
52
|
+
batchResourcesPermissionsSet(data: BatchResourcesAclDc): Promise<BulkOperationResultDc[]>;
|
|
20
53
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IceRouterResultDc, IceRouteTaskDc } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version v0.6.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class IceRouterService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags IceRouter
|
|
13
|
+
* @name StartTask
|
|
14
|
+
* @operationId IceRouterController_StartTask
|
|
15
|
+
* @summary Start route build between start and end points.
|
|
16
|
+
* @request POST:/ice-router/tasks
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
startTask(data: IceRouteTaskDc): Promise<string>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags IceRouter
|
|
24
|
+
* @name GetResult
|
|
25
|
+
* @operationId IceRouterController_GetResult
|
|
26
|
+
* @summary Get task result.
|
|
27
|
+
* @request GET:/ice-router/tasks/{id}
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
getResult(id: string): Promise<IceRouterResultDc>;
|
|
31
|
+
}
|
|
@@ -32,8 +32,7 @@ export interface AggregationDataResultDc {
|
|
|
32
32
|
/** Aggregation attribute name. */
|
|
33
33
|
aggregationAttributeName: string;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
*
|
|
@@ -604,6 +600,17 @@ export interface BatchResourcesAclDc {
|
|
|
604
600
|
/** A set of projects acl. */
|
|
605
601
|
projects?: ResourceAclDc[];
|
|
606
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* Provides bulk request to manage catalog resources.
|
|
605
|
+
*/
|
|
606
|
+
export interface BatchResourcesCatalogDc {
|
|
607
|
+
/** List of layers. */
|
|
608
|
+
layers?: CatalogResourceDc[];
|
|
609
|
+
/** List of tables. */
|
|
610
|
+
tables?: CatalogResourceDc[];
|
|
611
|
+
/** List of projects. */
|
|
612
|
+
projects?: CatalogResourceDc[];
|
|
613
|
+
}
|
|
607
614
|
/**
|
|
608
615
|
* The class describes data contract of bookmark at the map.
|
|
609
616
|
*/
|
|
@@ -641,6 +648,17 @@ export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
|
|
|
641
648
|
idAttributeName?: string;
|
|
642
649
|
geometryAttributeName?: string;
|
|
643
650
|
};
|
|
651
|
+
/**
|
|
652
|
+
* Provides set resources bulk operation status.
|
|
653
|
+
*/
|
|
654
|
+
export interface BulkOperationResultDc {
|
|
655
|
+
/** Name of the resource. */
|
|
656
|
+
resourceName?: string;
|
|
657
|
+
/** Error while perform operation. */
|
|
658
|
+
error?: string;
|
|
659
|
+
/** Sets true. */
|
|
660
|
+
isSuccess?: boolean;
|
|
661
|
+
}
|
|
644
662
|
export declare type CalculatedParameterDc = ParameterDcDouble & {
|
|
645
663
|
type?: string;
|
|
646
664
|
expression?: string;
|
|
@@ -655,6 +673,15 @@ export interface CatalogDataDc {
|
|
|
655
673
|
/** The user name. */
|
|
656
674
|
users: string[];
|
|
657
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* Provides catalog resources with users.
|
|
678
|
+
*/
|
|
679
|
+
export interface CatalogResourceDc {
|
|
680
|
+
/** Name of the resource to add. */
|
|
681
|
+
objectName: string;
|
|
682
|
+
/** Users list. */
|
|
683
|
+
users: string[];
|
|
684
|
+
}
|
|
658
685
|
/**
|
|
659
686
|
* The symbol that draws a feature as a circle.
|
|
660
687
|
*/
|
|
@@ -1707,7 +1734,6 @@ export interface GeocodeResultDc {
|
|
|
1707
1734
|
* @format double
|
|
1708
1735
|
*/
|
|
1709
1736
|
score?: number;
|
|
1710
|
-
/** Geometry without specified spatial reference. */
|
|
1711
1737
|
geometry?: IGeometry;
|
|
1712
1738
|
}
|
|
1713
1739
|
/**
|
|
@@ -1724,7 +1750,7 @@ export interface GeocodeSuggestResultDc {
|
|
|
1724
1750
|
*/
|
|
1725
1751
|
export interface GeometryDc {
|
|
1726
1752
|
/**
|
|
1727
|
-
*
|
|
1753
|
+
*
|
|
1728
1754
|
*
|
|
1729
1755
|
* unknown
|
|
1730
1756
|
*
|
|
@@ -1746,7 +1772,7 @@ export interface GeometryDc {
|
|
|
1746
1772
|
sr?: number;
|
|
1747
1773
|
}
|
|
1748
1774
|
/**
|
|
1749
|
-
*
|
|
1775
|
+
*
|
|
1750
1776
|
|
|
1751
1777
|
unknown
|
|
1752
1778
|
|
|
@@ -1866,72 +1892,97 @@ export declare enum HttpStatusCode {
|
|
|
1866
1892
|
NetworkAuthenticationRequired = "NetworkAuthenticationRequired"
|
|
1867
1893
|
}
|
|
1868
1894
|
/**
|
|
1869
|
-
*
|
|
1895
|
+
* Attributes provides by router to describe route.
|
|
1870
1896
|
*/
|
|
1871
|
-
export interface
|
|
1897
|
+
export interface IceRouteAttributesDc {
|
|
1898
|
+
/** Gets route builder mode. */
|
|
1899
|
+
type?: string;
|
|
1900
|
+
/** Gets route title. */
|
|
1901
|
+
title?: string;
|
|
1872
1902
|
/**
|
|
1873
|
-
*
|
|
1903
|
+
* Gets route build time.
|
|
1874
1904
|
* @format double
|
|
1875
1905
|
*/
|
|
1876
|
-
|
|
1906
|
+
time?: number;
|
|
1877
1907
|
/**
|
|
1878
|
-
*
|
|
1908
|
+
* Gets route distance.
|
|
1879
1909
|
* @format double
|
|
1880
1910
|
*/
|
|
1881
|
-
|
|
1911
|
+
distance?: number;
|
|
1912
|
+
}
|
|
1913
|
+
/**
|
|
1914
|
+
* Provides description of result of ice router.
|
|
1915
|
+
*/
|
|
1916
|
+
export interface IceRouteDc {
|
|
1917
|
+
/** Attributes provides by router to describe route. */
|
|
1918
|
+
attributes?: IceRouteAttributesDc;
|
|
1919
|
+
/** Route geometry. */
|
|
1920
|
+
geometry?: IceRouteGeometryDc;
|
|
1921
|
+
}
|
|
1922
|
+
/**
|
|
1923
|
+
* Route geometry.
|
|
1924
|
+
*/
|
|
1925
|
+
export interface IceRouteGeometryDc {
|
|
1926
|
+
/** Gets type of geometry. */
|
|
1927
|
+
type?: string;
|
|
1928
|
+
/** Gets polyline coordinates. */
|
|
1929
|
+
coordinates?: number[][];
|
|
1930
|
+
}
|
|
1931
|
+
/**
|
|
1932
|
+
* Provides result of ice route builder.
|
|
1933
|
+
*/
|
|
1934
|
+
export interface IceRouterResultDc {
|
|
1935
|
+
/** Gets status the task is done. */
|
|
1936
|
+
isDone?: boolean;
|
|
1882
1937
|
/**
|
|
1883
|
-
*
|
|
1884
|
-
*
|
|
1938
|
+
* Gets list of the result tasks. Provides with status "completed".
|
|
1939
|
+
* <br>
|
|
1940
|
+
* Routes array contains three routes of types.
|
|
1941
|
+
* 1. Economic.
|
|
1942
|
+
* 2. Optimum.
|
|
1943
|
+
* 3. Fast.
|
|
1944
|
+
*
|
|
1885
1945
|
*/
|
|
1946
|
+
routes?: IceRouteDc[];
|
|
1947
|
+
}
|
|
1948
|
+
/**
|
|
1949
|
+
* Data contract to start ice routing task.
|
|
1950
|
+
*/
|
|
1951
|
+
export interface IceRouteTaskDc {
|
|
1952
|
+
/** Gets or sets start point. */
|
|
1953
|
+
start: number[];
|
|
1954
|
+
/** Gets or sets end point. */
|
|
1955
|
+
end: number[];
|
|
1956
|
+
}
|
|
1957
|
+
export interface IDatum {
|
|
1958
|
+
/** @format double */
|
|
1959
|
+
semimajor?: number;
|
|
1960
|
+
/** @format double */
|
|
1961
|
+
inverseFlattening?: number;
|
|
1962
|
+
/** @format double */
|
|
1886
1963
|
semiminor?: number;
|
|
1887
|
-
/**
|
|
1888
|
-
* Flattening value.
|
|
1889
|
-
* @format double
|
|
1890
|
-
*/
|
|
1964
|
+
/** @format double */
|
|
1891
1965
|
flattening?: number;
|
|
1892
|
-
/** If true longitude is the first coordinate, if false latitude is the first coordinate. */
|
|
1893
1966
|
reversedOrder?: boolean;
|
|
1894
|
-
/**
|
|
1895
|
-
* Numerical ID of the spatial reference as given by the publishing authority. E.g. for EPSG:3857 id is '3857'.
|
|
1896
|
-
* @format int32
|
|
1897
|
-
*/
|
|
1967
|
+
/** @format int32 */
|
|
1898
1968
|
id?: number;
|
|
1899
|
-
/** Publishing authority of the spatial reference. E.g. EPSG or OSG. */
|
|
1900
1969
|
authority?: string;
|
|
1901
|
-
/** Human readable description of the spatial reference. */
|
|
1902
1970
|
description?: string;
|
|
1903
|
-
/** Well known text as specified by http://docs.opengeospatial.org/is/12-063r5/12-063r5.html. */
|
|
1904
1971
|
wkt?: string;
|
|
1905
|
-
/**
|
|
1906
|
-
* Number of coordinate dimensions in this spatial reference.
|
|
1907
|
-
* @format int32
|
|
1908
|
-
*/
|
|
1972
|
+
/** @format int32 */
|
|
1909
1973
|
dimensions?: number;
|
|
1910
|
-
/** Geographic spatial reference (e.g. with lat/long coordinates). */
|
|
1911
1974
|
datum?: IDatum;
|
|
1912
1975
|
}
|
|
1913
|
-
/**
|
|
1914
|
-
* A pair of points that represent a rectangular area in the space.
|
|
1915
|
-
*/
|
|
1916
1976
|
export interface IEnvelopeGeometry {
|
|
1917
|
-
/** Double values vector. */
|
|
1918
1977
|
start?: IVector;
|
|
1919
|
-
/** Double values vector. */
|
|
1920
1978
|
end?: IVector;
|
|
1921
|
-
/**
|
|
1922
|
-
* Width of the envelope.
|
|
1923
|
-
* @format double
|
|
1924
|
-
*/
|
|
1979
|
+
/** @format double */
|
|
1925
1980
|
width?: number;
|
|
1926
|
-
/**
|
|
1927
|
-
* Height of the envelope.
|
|
1928
|
-
* @format double
|
|
1929
|
-
*/
|
|
1981
|
+
/** @format double */
|
|
1930
1982
|
height?: number;
|
|
1931
|
-
/** Double values vector. */
|
|
1932
1983
|
centroid?: IVector;
|
|
1933
1984
|
/**
|
|
1934
|
-
*
|
|
1985
|
+
*
|
|
1935
1986
|
*
|
|
1936
1987
|
* unknown
|
|
1937
1988
|
*
|
|
@@ -1946,19 +1997,13 @@ export interface IEnvelopeGeometry {
|
|
|
1946
1997
|
* multipoint
|
|
1947
1998
|
*/
|
|
1948
1999
|
geometryType?: GeometryType;
|
|
1949
|
-
/** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
|
|
1950
2000
|
sr?: ISpatialReference;
|
|
1951
|
-
/** A pair of points that represent a rectangular area in the space. */
|
|
1952
2001
|
envelope?: IEnvelopeGeometry;
|
|
1953
2002
|
}
|
|
1954
|
-
/**
|
|
1955
|
-
* Geometry without specified spatial reference.
|
|
1956
|
-
*/
|
|
1957
2003
|
export interface IGeometry {
|
|
1958
|
-
/** Double values vector. */
|
|
1959
2004
|
centroid?: IVector;
|
|
1960
2005
|
/**
|
|
1961
|
-
*
|
|
2006
|
+
*
|
|
1962
2007
|
*
|
|
1963
2008
|
* unknown
|
|
1964
2009
|
*
|
|
@@ -1973,9 +2018,7 @@ export interface IGeometry {
|
|
|
1973
2018
|
* multipoint
|
|
1974
2019
|
*/
|
|
1975
2020
|
geometryType?: GeometryType;
|
|
1976
|
-
/** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
|
|
1977
2021
|
sr?: ISpatialReference;
|
|
1978
|
-
/** A pair of points that represent a rectangular area in the space. */
|
|
1979
2022
|
envelope?: IEnvelopeGeometry;
|
|
1980
2023
|
}
|
|
1981
2024
|
export interface ILineEndingDc {
|
|
@@ -2058,27 +2101,14 @@ export interface IServiceConfiguration {
|
|
|
2058
2101
|
/** Type of the layer. */
|
|
2059
2102
|
type?: string;
|
|
2060
2103
|
}
|
|
2061
|
-
/**
|
|
2062
|
-
* Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use.
|
|
2063
|
-
*/
|
|
2064
2104
|
export interface ISpatialReference {
|
|
2065
|
-
/**
|
|
2066
|
-
* Numerical ID of the spatial reference as given by the publishing authority. E.g. for EPSG:3857 id is '3857'.
|
|
2067
|
-
* @format int32
|
|
2068
|
-
*/
|
|
2105
|
+
/** @format int32 */
|
|
2069
2106
|
id?: number;
|
|
2070
|
-
/** Publishing authority of the spatial reference. E.g. EPSG or OSG. */
|
|
2071
2107
|
authority?: string;
|
|
2072
|
-
/** Human readable description of the spatial reference. */
|
|
2073
2108
|
description?: string;
|
|
2074
|
-
/** Well known text as specified by http://docs.opengeospatial.org/is/12-063r5/12-063r5.html. */
|
|
2075
2109
|
wkt?: string;
|
|
2076
|
-
/**
|
|
2077
|
-
* Number of coordinate dimensions in this spatial reference.
|
|
2078
|
-
* @format int32
|
|
2079
|
-
*/
|
|
2110
|
+
/** @format int32 */
|
|
2080
2111
|
dimensions?: number;
|
|
2081
|
-
/** Geographic spatial reference (e.g. with lat/long coordinates). */
|
|
2082
2112
|
datum?: IDatum;
|
|
2083
2113
|
}
|
|
2084
2114
|
/**
|
|
@@ -2090,14 +2120,8 @@ export interface IValidationError {
|
|
|
2090
2120
|
/** Validation errors. */
|
|
2091
2121
|
message?: string;
|
|
2092
2122
|
}
|
|
2093
|
-
/**
|
|
2094
|
-
* Double values vector.
|
|
2095
|
-
*/
|
|
2096
2123
|
export interface IVector {
|
|
2097
|
-
/**
|
|
2098
|
-
* Number of coordinates dimensions.
|
|
2099
|
-
* @format int32
|
|
2100
|
-
*/
|
|
2124
|
+
/** @format int32 */
|
|
2101
2125
|
dimensions?: number;
|
|
2102
2126
|
}
|
|
2103
2127
|
/**
|
|
@@ -2169,7 +2193,7 @@ export interface LayerDefinitionDc {
|
|
|
2169
2193
|
/** The name of the attribute that is used for assigning geometry value for the feature. */
|
|
2170
2194
|
geometryAttribute: string;
|
|
2171
2195
|
/**
|
|
2172
|
-
*
|
|
2196
|
+
*
|
|
2173
2197
|
*
|
|
2174
2198
|
* unknown
|
|
2175
2199
|
*
|
|
@@ -2247,7 +2271,6 @@ Includes ids of modified features and their bbox.
|
|
|
2247
2271
|
export interface LayerUpdateInfoDc {
|
|
2248
2272
|
/** Updated layer service name. */
|
|
2249
2273
|
layerServiceName: string;
|
|
2250
|
-
/** A pair of points that represent a rectangular area in the space. */
|
|
2251
2274
|
boundingBox?: IEnvelopeGeometry;
|
|
2252
2275
|
/** Array of created ids. */
|
|
2253
2276
|
createdIds?: ObjectId[];
|
|
@@ -2613,7 +2636,7 @@ export interface NewResourcesTypesDc {
|
|
|
2613
2636
|
*/
|
|
2614
2637
|
export declare type ObjectId = object;
|
|
2615
2638
|
/**
|
|
2616
|
-
*
|
|
2639
|
+
*
|
|
2617
2640
|
|
|
2618
2641
|
Unknown
|
|
2619
2642
|
|
|
@@ -3119,9 +3142,6 @@ export declare type RasterSymbolDc = SymbolDc & {
|
|
|
3119
3142
|
type?: string;
|
|
3120
3143
|
opacity?: CalculatedParameterDc;
|
|
3121
3144
|
};
|
|
3122
|
-
/**
|
|
3123
|
-
* Geometrical rectangle.
|
|
3124
|
-
*/
|
|
3125
3145
|
export interface Rectangle2 {
|
|
3126
3146
|
/** @format double */
|
|
3127
3147
|
x1?: number;
|
|
@@ -3131,19 +3151,11 @@ export interface Rectangle2 {
|
|
|
3131
3151
|
x2?: number;
|
|
3132
3152
|
/** @format double */
|
|
3133
3153
|
y2?: number;
|
|
3134
|
-
/**
|
|
3135
|
-
* Width of the rectangle.
|
|
3136
|
-
* @format double
|
|
3137
|
-
*/
|
|
3154
|
+
/** @format double */
|
|
3138
3155
|
width?: number;
|
|
3139
|
-
/**
|
|
3140
|
-
* Height of the rectangle.
|
|
3141
|
-
* @format double
|
|
3142
|
-
*/
|
|
3156
|
+
/** @format double */
|
|
3143
3157
|
height?: number;
|
|
3144
|
-
/** Double values vector. */
|
|
3145
3158
|
center?: IVector;
|
|
3146
|
-
/** Double values vector. */
|
|
3147
3159
|
halfSize?: IVector;
|
|
3148
3160
|
}
|
|
3149
3161
|
/**
|
|
@@ -3199,8 +3211,8 @@ export interface RemoteTileServiceInfo {
|
|
|
3199
3211
|
* Service info for a tile service.
|
|
3200
3212
|
*/
|
|
3201
3213
|
export declare type RemoteTileServiceInfoDc = TileServiceInfoDc & {
|
|
3202
|
-
sourceUrl
|
|
3203
|
-
sourceUrlMask
|
|
3214
|
+
sourceUrl?: string;
|
|
3215
|
+
sourceUrlMask?: string;
|
|
3204
3216
|
sourceServers?: string[];
|
|
3205
3217
|
copyrightText?: string;
|
|
3206
3218
|
};
|
|
@@ -3333,11 +3345,8 @@ export declare enum ResourceTypeLink {
|
|
|
3333
3345
|
export interface RoleInfoDc {
|
|
3334
3346
|
/** Username. */
|
|
3335
3347
|
name?: string;
|
|
3336
|
-
/**
|
|
3337
|
-
|
|
3338
|
-
* @format int32
|
|
3339
|
-
*/
|
|
3340
|
-
usersInRole?: number;
|
|
3348
|
+
/** The number of users in the role. */
|
|
3349
|
+
users?: string[];
|
|
3341
3350
|
/**
|
|
3342
3351
|
* Gets or sets date and time of creation.
|
|
3343
3352
|
* @format date-time
|
|
@@ -3409,6 +3418,8 @@ export declare type ScaleBarElementDc = ModelElementDc & {
|
|
|
3409
3418
|
export interface SearchedUserDc {
|
|
3410
3419
|
/** Username. */
|
|
3411
3420
|
username?: string;
|
|
3421
|
+
/** Own user role. */
|
|
3422
|
+
ownRole?: string;
|
|
3412
3423
|
/** Photo. */
|
|
3413
3424
|
photo?: string;
|
|
3414
3425
|
}
|
|
@@ -3579,7 +3590,7 @@ export interface ServiceInfoPubDc {
|
|
|
3579
3590
|
*/
|
|
3580
3591
|
condition?: string;
|
|
3581
3592
|
/**
|
|
3582
|
-
*
|
|
3593
|
+
*
|
|
3583
3594
|
*
|
|
3584
3595
|
* unknown
|
|
3585
3596
|
*
|
|
@@ -3702,7 +3713,7 @@ export interface ServiceListItemDc {
|
|
|
3702
3713
|
*/
|
|
3703
3714
|
condition?: string;
|
|
3704
3715
|
/**
|
|
3705
|
-
*
|
|
3716
|
+
*
|
|
3706
3717
|
*
|
|
3707
3718
|
* unknown
|
|
3708
3719
|
*
|
|
@@ -4374,9 +4385,7 @@ export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc &
|
|
|
4374
4385
|
* Tile info structure.
|
|
4375
4386
|
*/
|
|
4376
4387
|
export interface TileInfo {
|
|
4377
|
-
/** Double values vector. */
|
|
4378
4388
|
origin?: IVector;
|
|
4379
|
-
/** Geometrical rectangle. */
|
|
4380
4389
|
boundingRectangle?: Rectangle2;
|
|
4381
4390
|
/**
|
|
4382
4391
|
* If set to true, the origin point will be considered to be the bottom left corner and increasing tile indexes increase
|
|
@@ -4401,7 +4410,6 @@ export interface TileInfo {
|
|
|
4401
4410
|
width?: number;
|
|
4402
4411
|
/** Image format. */
|
|
4403
4412
|
format?: string;
|
|
4404
|
-
/** Spatial reference is an object that specifies the geodetic datum and projection parameters of the coordinate system in use. */
|
|
4405
4413
|
spatialReference?: ISpatialReference;
|
|
4406
4414
|
/** List of levels of detail that define the tiling schema. */
|
|
4407
4415
|
lods?: LodInfo[];
|
|
@@ -5026,21 +5034,12 @@ export interface VariableValueInfo {
|
|
|
5026
5034
|
/** Gets or sets roles. */
|
|
5027
5035
|
roles?: string[];
|
|
5028
5036
|
}
|
|
5029
|
-
/**
|
|
5030
|
-
* 2-dimensional vector.
|
|
5031
|
-
*/
|
|
5032
5037
|
export interface Vector2 {
|
|
5033
5038
|
/** @format int32 */
|
|
5034
5039
|
dimensions?: number;
|
|
5035
|
-
/**
|
|
5036
|
-
* First coordinate.
|
|
5037
|
-
* @format double
|
|
5038
|
-
*/
|
|
5040
|
+
/** @format double */
|
|
5039
5041
|
x?: number;
|
|
5040
|
-
/**
|
|
5041
|
-
* Second coordinate.
|
|
5042
|
-
* @format double
|
|
5043
|
-
*/
|
|
5042
|
+
/** @format double */
|
|
5044
5043
|
y?: number;
|
|
5045
5044
|
}
|
|
5046
5045
|
/**
|
|
@@ -5092,7 +5091,7 @@ export interface WorkspaceLimitsDc {
|
|
|
5092
5091
|
currentProjectCount?: number;
|
|
5093
5092
|
}
|
|
5094
5093
|
export interface GetUsersParams {
|
|
5095
|
-
/** String filter for the user
|
|
5094
|
+
/** String filter for the user (uses % and _ wild cards like SQL). */
|
|
5096
5095
|
filter?: string;
|
|
5097
5096
|
/** Ordering property name. */
|
|
5098
5097
|
orderBy?: string;
|
|
@@ -5114,7 +5113,7 @@ export interface GetUsersParams {
|
|
|
5114
5113
|
roles?: string[];
|
|
5115
5114
|
}
|
|
5116
5115
|
export interface GetExtendedUsersParams {
|
|
5117
|
-
/** String filter for the user
|
|
5116
|
+
/** String filter for the user (uses % and _ wild cards like SQL). */
|
|
5118
5117
|
filter?: string;
|
|
5119
5118
|
/** Ordering property name. */
|
|
5120
5119
|
orderBy?: string;
|
|
@@ -5171,7 +5170,6 @@ export interface ConfirmChangeEmailParams {
|
|
|
5171
5170
|
/** Confirmation code. */
|
|
5172
5171
|
code: string;
|
|
5173
5172
|
}
|
|
5174
|
-
export declare type SetUserPasswordPayload = string;
|
|
5175
5173
|
export interface ChangePasswordPayload {
|
|
5176
5174
|
oldPassword: string;
|
|
5177
5175
|
password: string;
|
|
@@ -5186,8 +5184,10 @@ export interface ResetPasswordCallbackPayload {
|
|
|
5186
5184
|
newPassword: string;
|
|
5187
5185
|
}
|
|
5188
5186
|
export interface GetRolesParams {
|
|
5189
|
-
/** String filter for the role
|
|
5187
|
+
/** String filter for the role (uses % and _ wild cards like SQL). */
|
|
5190
5188
|
filter?: string;
|
|
5189
|
+
/** String filter for the user (uses % and _ wild cards like SQL). */
|
|
5190
|
+
userFilter?: string;
|
|
5191
5191
|
/** Ordering property name. */
|
|
5192
5192
|
orderBy?: string;
|
|
5193
5193
|
/** Include system roles (starts from '__'). */
|
|
@@ -5403,6 +5403,8 @@ export interface GetLayersListParams {
|
|
|
5403
5403
|
geometryFilter?: string[];
|
|
5404
5404
|
/** Filters layers list by users favorite. */
|
|
5405
5405
|
isFavorite?: boolean;
|
|
5406
|
+
/** If set, returns for superuser layers for all users. */
|
|
5407
|
+
forAllUsers?: boolean;
|
|
5406
5408
|
}
|
|
5407
5409
|
export declare type SetPermissionsBatchPayload = ResourceAclDc[];
|
|
5408
5410
|
export interface GetFeaturesParams {
|
|
@@ -5793,6 +5795,8 @@ export interface GetProjectsListParams {
|
|
|
5793
5795
|
orderByFields?: string[];
|
|
5794
5796
|
/** Filters projects list by users favorite. */
|
|
5795
5797
|
isFavorite?: boolean;
|
|
5798
|
+
/** If set, returns for superuser projects for all users. */
|
|
5799
|
+
forAllUsers?: boolean;
|
|
5796
5800
|
}
|
|
5797
5801
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5798
5802
|
export interface SetPreviewBody {
|
|
@@ -5992,6 +5996,8 @@ export interface GetTableListParams {
|
|
|
5992
5996
|
orderByFields?: string[];
|
|
5993
5997
|
/** Filters tables list by users favorite. */
|
|
5994
5998
|
isFavorite?: boolean;
|
|
5999
|
+
/** If set, returns for superuser tables for all users. */
|
|
6000
|
+
forAllUsers?: boolean;
|
|
5995
6001
|
/** Filters layers by geometry types. */
|
|
5996
6002
|
geometryFilter?: string[];
|
|
5997
6003
|
}
|