@evergis/api 3.0.192 → 3.0.193
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/Api.d.ts +2 -2
- package/dist/__generated__/CatalogService.d.ts +14 -3
- package/dist/__generated__/{EqlTestService.d.ts → EqlService.d.ts} +15 -15
- package/dist/__generated__/LayersService.d.ts +2 -13
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +13 -2
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/UniversalSearchService.d.ts +7 -7
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +91 -50
- package/dist/api.cjs.development.js +72 -56
- 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 +72 -56
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Eql.d.ts +3 -0
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/index.d.ts +1 -1
- package/package.json +2 -2
- package/dist/services/EqlTest.d.ts +0 -3
package/dist/Api.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { QueryTokenAccessService } from './__generated__/QueryTokenAccessService
|
|
|
6
6
|
import { SpatialReferencesService } from './__generated__/SpatialReferencesService';
|
|
7
7
|
import { UniversalSearchService } from './__generated__/UniversalSearchService';
|
|
8
8
|
import { CatalogService } from './__generated__/CatalogService';
|
|
9
|
-
import { Account, AccountPreview, BulkOperations, Cameras, ClientSettings, External,
|
|
9
|
+
import { Account, AccountPreview, BulkOperations, Cameras, ClientSettings, External, Eql, Feedback, FileUpload, Filters, General, Geocode, IceRouter, Import, Layers, Names, Namespace, Notification, PortalSettings, Print, Projects, ResourceCatalog, Resources, Scheduler, Security, Statistic, Styles, Tables, Tools, VectorTiles } from './services';
|
|
10
10
|
import { LoginDc } from './__generated__/data-contracts';
|
|
11
11
|
export declare type ApiParams = {
|
|
12
12
|
url: string;
|
|
@@ -61,7 +61,7 @@ export declare class Api extends EventEmitter {
|
|
|
61
61
|
readonly vectorTiles: VectorTiles;
|
|
62
62
|
readonly universalSearch: UniversalSearchService;
|
|
63
63
|
readonly spatialReference: SpatialReferencesService;
|
|
64
|
-
readonly
|
|
64
|
+
readonly eql: Eql;
|
|
65
65
|
readonly catalog: CatalogService;
|
|
66
66
|
readonly queryToken: QueryTokenAccessService;
|
|
67
67
|
constructor({ url, wsUrl, wsKeepAlive, snappingHubUrl, http, urlPath, httpOptions, }: ApiParams);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PatchResourceDc, PutTagsPayload, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
|
|
1
|
+
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PagedResourcesListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class CatalogService extends Service {
|
|
|
27
27
|
* @request POST:/resources
|
|
28
28
|
* @response `200` OK
|
|
29
29
|
*/
|
|
30
|
-
postGetAll(data: ListResourcesDto): Promise<CatalogResourceDc[]>;
|
|
30
|
+
postGetAll(query: PostGetAllParams, data: ListResourcesDto): Promise<CatalogResourceDc[]>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -60,7 +60,7 @@ export declare class CatalogService extends Service {
|
|
|
60
60
|
* @request POST:/resources/search
|
|
61
61
|
* @response `200` OK
|
|
62
62
|
*/
|
|
63
|
-
searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<
|
|
63
|
+
searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<PagedResourcesListDc>;
|
|
64
64
|
/**
|
|
65
65
|
* No description
|
|
66
66
|
*
|
|
@@ -171,4 +171,15 @@ export declare class CatalogService extends Service {
|
|
|
171
171
|
* @response `200` OK
|
|
172
172
|
*/
|
|
173
173
|
downloadFile(resourceId: string): Promise<Blob>;
|
|
174
|
+
/**
|
|
175
|
+
* No description
|
|
176
|
+
*
|
|
177
|
+
* @tags Catalog
|
|
178
|
+
* @name CleanResources
|
|
179
|
+
* @operationId CatalogController_CleanResources
|
|
180
|
+
* @summary Clean user resources.
|
|
181
|
+
* @request POST:/resources/clean
|
|
182
|
+
* @response `200` OK
|
|
183
|
+
*/
|
|
184
|
+
cleanResources(): Promise<void>;
|
|
174
185
|
}
|
|
@@ -5,13 +5,13 @@ import { Service } from './Service';
|
|
|
5
5
|
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class EqlService extends Service {
|
|
9
9
|
/**
|
|
10
10
|
* No description
|
|
11
11
|
*
|
|
12
|
-
* @tags
|
|
12
|
+
* @tags Eql
|
|
13
13
|
* @name GetQueryResult
|
|
14
|
-
* @operationId
|
|
14
|
+
* @operationId EqlController_GetQueryResult
|
|
15
15
|
* @summary Perform resources set acl access batch operation.
|
|
16
16
|
* @request POST:/eql/query
|
|
17
17
|
* @response `200` OK
|
|
@@ -20,9 +20,9 @@ export declare class EqlTestService extends Service {
|
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
23
|
-
* @tags
|
|
23
|
+
* @tags Eql
|
|
24
24
|
* @name GetQueryDescription
|
|
25
|
-
* @operationId
|
|
25
|
+
* @operationId EqlController_GetQueryDescription
|
|
26
26
|
* @summary Get EQL result columns definitions.
|
|
27
27
|
* @request POST:/eql/description
|
|
28
28
|
* @response `200` OK
|
|
@@ -31,9 +31,9 @@ export declare class EqlTestService extends Service {
|
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
34
|
-
* @tags
|
|
34
|
+
* @tags Eql
|
|
35
35
|
* @name SetLayerParameterValue
|
|
36
|
-
* @operationId
|
|
36
|
+
* @operationId EqlController_SetLayerParameterValue
|
|
37
37
|
* @summary Set EQL layer parameter.
|
|
38
38
|
* @request POST:/eql/setParam
|
|
39
39
|
* @response `200` OK
|
|
@@ -42,9 +42,9 @@ export declare class EqlTestService extends Service {
|
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
45
|
-
* @tags
|
|
45
|
+
* @tags Eql
|
|
46
46
|
* @name SetLayerParameters
|
|
47
|
-
* @operationId
|
|
47
|
+
* @operationId EqlController_SetLayerParameters
|
|
48
48
|
* @summary Set EQL layer parameters.
|
|
49
49
|
* @request POST:/eql/setParams
|
|
50
50
|
* @response `200` OK
|
|
@@ -53,9 +53,9 @@ export declare class EqlTestService extends Service {
|
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
56
|
-
* @tags
|
|
56
|
+
* @tags Eql
|
|
57
57
|
* @name GetLayerParameters
|
|
58
|
-
* @operationId
|
|
58
|
+
* @operationId EqlController_GetLayerParameters
|
|
59
59
|
* @summary Get EQL parameter.
|
|
60
60
|
* @request GET:/eql/getParam
|
|
61
61
|
* @response `200` OK
|
|
@@ -64,9 +64,9 @@ export declare class EqlTestService extends Service {
|
|
|
64
64
|
/**
|
|
65
65
|
* No description
|
|
66
66
|
*
|
|
67
|
-
* @tags
|
|
67
|
+
* @tags Eql
|
|
68
68
|
* @name GetLayerParameters1
|
|
69
|
-
* @operationId
|
|
69
|
+
* @operationId EqlController_GetLayerParameters_1
|
|
70
70
|
* @summary Get all EQL parameters.
|
|
71
71
|
* @request GET:/eql/getParams
|
|
72
72
|
* @response `200` OK
|
|
@@ -75,9 +75,9 @@ export declare class EqlTestService extends Service {
|
|
|
75
75
|
/**
|
|
76
76
|
* No description
|
|
77
77
|
*
|
|
78
|
-
* @tags
|
|
78
|
+
* @tags Eql
|
|
79
79
|
* @name RemoveLayerParameterValue
|
|
80
|
-
* @operationId
|
|
80
|
+
* @operationId EqlController_RemoveLayerParameterValue
|
|
81
81
|
* @summary Remove EQL layer parameter.
|
|
82
82
|
* @request DELETE:/eql/removeParam
|
|
83
83
|
* @response `200` OK
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetBulkFeaturesPayload, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc,
|
|
1
|
+
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetBulkFeaturesPayload, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams3, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPreviewPayload, SimpleSymbolDc, StyleDc, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -17,17 +17,6 @@ export declare class LayersService extends Service {
|
|
|
17
17
|
* @response `200` OK
|
|
18
18
|
*/
|
|
19
19
|
getBulkFeatures(data: GetBulkFeaturesPayload): Promise<PagedBulkFeaturesListDc[]>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags Layers
|
|
24
|
-
* @name GetFeaturesFromLayers
|
|
25
|
-
* @operationId LayersController_GetFeaturesFromLayers
|
|
26
|
-
* @summary Returns list of the layer features.
|
|
27
|
-
* @request POST:/layers/features/query
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
getFeaturesFromLayers(data: GetFeaturesParametersFromLayersDc): Promise<PagedBulkFeaturesListDc[]>;
|
|
31
20
|
/**
|
|
32
21
|
* No description
|
|
33
22
|
*
|
|
@@ -600,7 +589,7 @@ export declare class LayersService extends Service {
|
|
|
600
589
|
* @request GET:/layers/{name}/{id}/metadata
|
|
601
590
|
* @response `200` OK
|
|
602
591
|
*/
|
|
603
|
-
getRasterMeta({ name, id, ...query }:
|
|
592
|
+
getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
|
|
604
593
|
/**
|
|
605
594
|
* No description
|
|
606
595
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams3, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
49
49
|
* @request DELETE:/projects
|
|
50
50
|
* @response `200` OK
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams8, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -38,7 +38,7 @@ export declare class StatisticService extends Service {
|
|
|
38
38
|
* @request GET:/statistics/classify
|
|
39
39
|
* @response `200` OK
|
|
40
40
|
*/
|
|
41
|
-
classify(query:
|
|
41
|
+
classify(query: ClassifyParams8): Promise<ClassifyDc>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, CreateViewFromQueryLayerDc, DeleteResourcesParams3, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,18 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` OK
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
|
|
53
|
+
/**
|
|
54
|
+
* No description
|
|
55
|
+
*
|
|
56
|
+
* @tags Tables
|
|
57
|
+
* @name CreateViewFromQueryLayer
|
|
58
|
+
* @operationId TablesController_CreateViewFromQueryLayer
|
|
59
|
+
* @summary Creates a new view from query layer.
|
|
60
|
+
* @request POST:/tables/fromLayer
|
|
61
|
+
* @response `200` OK
|
|
62
|
+
*/
|
|
63
|
+
createViewFromQueryLayer(data: CreateViewFromQueryLayerDc): Promise<DetailedTableInfoDc>;
|
|
53
64
|
/**
|
|
54
65
|
* No description
|
|
55
66
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GetAllParams6, PagedListTagInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class TagsService extends Service {
|
|
|
16
16
|
* @request GET:/tags
|
|
17
17
|
* @response `200` OK
|
|
18
18
|
*/
|
|
19
|
-
getAll(query:
|
|
19
|
+
getAll(query: GetAllParams6): Promise<PagedListTagInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PagedListSearchResultDc, SearchResultDc, SearchResultDcGetSearchResultParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -10,22 +10,22 @@ export declare class UniversalSearchService extends Service {
|
|
|
10
10
|
* No description
|
|
11
11
|
*
|
|
12
12
|
* @tags UniversalSearch
|
|
13
|
-
* @name
|
|
14
|
-
* @operationId
|
|
13
|
+
* @name SearchResultDcGetSearchResult
|
|
14
|
+
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
15
15
|
* @summary Returns search result.
|
|
16
16
|
* @request GET:/search/{taskId}/{layerName}
|
|
17
17
|
* @response `200` OK
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
searchResultDcGetSearchResult({ taskId, layerName, ...query }: SearchResultDcGetSearchResultParams): Promise<PagedListSearchResultDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
23
23
|
* @tags UniversalSearch
|
|
24
|
-
* @name
|
|
25
|
-
* @operationId
|
|
24
|
+
* @name GetSearchResult
|
|
25
|
+
* @operationId UniversalSearchController_GetSearchResult
|
|
26
26
|
* @summary Returns search result.
|
|
27
27
|
* @request GET:/search/{taskId}
|
|
28
28
|
* @response `200` OK
|
|
29
29
|
*/
|
|
30
|
-
|
|
30
|
+
getSearchResult(taskId: string): Promise<SearchResultDc[]>;
|
|
31
31
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams4, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class WmsServerService extends Service {
|
|
|
16
16
|
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
17
|
* @response `200` OK
|
|
18
18
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams4): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -857,6 +857,24 @@ export interface CatalogResourceDc {
|
|
|
857
857
|
createdAt?: string;
|
|
858
858
|
/** Resource tags. */
|
|
859
859
|
tags?: string[];
|
|
860
|
+
/**
|
|
861
|
+
*
|
|
862
|
+
*
|
|
863
|
+
* none
|
|
864
|
+
*
|
|
865
|
+
* configure
|
|
866
|
+
*
|
|
867
|
+
* write
|
|
868
|
+
*
|
|
869
|
+
* read
|
|
870
|
+
*
|
|
871
|
+
* read,configure
|
|
872
|
+
*
|
|
873
|
+
* read,write
|
|
874
|
+
*
|
|
875
|
+
* read,write,configure
|
|
876
|
+
*/
|
|
877
|
+
permissions?: Permissions;
|
|
860
878
|
}
|
|
861
879
|
/**
|
|
862
880
|
*
|
|
@@ -1482,6 +1500,19 @@ export interface CreateUserDc {
|
|
|
1482
1500
|
/** Phone number. */
|
|
1483
1501
|
phone?: string;
|
|
1484
1502
|
}
|
|
1503
|
+
/**
|
|
1504
|
+
* Create view from query layer data contract.
|
|
1505
|
+
*/
|
|
1506
|
+
export interface CreateViewFromQueryLayerDc {
|
|
1507
|
+
/** Is view materialized. */
|
|
1508
|
+
isMaterialized?: boolean;
|
|
1509
|
+
/** Layer name. */
|
|
1510
|
+
layerName?: string;
|
|
1511
|
+
/** View name. */
|
|
1512
|
+
viewName?: string;
|
|
1513
|
+
/** Layer condition. */
|
|
1514
|
+
layerCondition?: string;
|
|
1515
|
+
}
|
|
1485
1516
|
/**
|
|
1486
1517
|
* Description of the temp file as a task data storage.
|
|
1487
1518
|
*/
|
|
@@ -1522,7 +1553,7 @@ export interface DependentResourceDc {
|
|
|
1522
1553
|
* Table description with columns and access control list.
|
|
1523
1554
|
*/
|
|
1524
1555
|
export declare type DetailedTableInfoDc = TableInfoDc & {
|
|
1525
|
-
columns
|
|
1556
|
+
columns?: ColumnDescriptionDc[] | null;
|
|
1526
1557
|
};
|
|
1527
1558
|
/**
|
|
1528
1559
|
* Empty square ending.
|
|
@@ -2519,44 +2550,6 @@ export interface GetFeaturesParametersDc {
|
|
|
2519
2550
|
/** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
|
|
2520
2551
|
attributes?: string[];
|
|
2521
2552
|
}
|
|
2522
|
-
/**
|
|
2523
|
-
* Get features parameters from one or many layers.
|
|
2524
|
-
*/
|
|
2525
|
-
export interface GetFeaturesParametersFromLayersDc {
|
|
2526
|
-
/** Enumerable of layer names. */
|
|
2527
|
-
layerNames?: string[];
|
|
2528
|
-
/** Sets features filtering query. */
|
|
2529
|
-
query?: string;
|
|
2530
|
-
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2531
|
-
dataFilterId?: string;
|
|
2532
|
-
/**
|
|
2533
|
-
* Features count have to skip.
|
|
2534
|
-
* @format int32
|
|
2535
|
-
*/
|
|
2536
|
-
offset?: number;
|
|
2537
|
-
/**
|
|
2538
|
-
* Features limit per response.
|
|
2539
|
-
* @format int32
|
|
2540
|
-
*/
|
|
2541
|
-
limit?: number;
|
|
2542
|
-
/**
|
|
2543
|
-
* Spatial reference of returned features.
|
|
2544
|
-
* @format int32
|
|
2545
|
-
*/
|
|
2546
|
-
wkid?: number;
|
|
2547
|
-
/** If set to true, the geometry will not be returned for features. */
|
|
2548
|
-
withGeom?: boolean;
|
|
2549
|
-
/**
|
|
2550
|
-
* Comma separated list of attributes by which to sort the resulting feature list.
|
|
2551
|
-
* If the attribute name is preceded with the "-" sign, sorting by this attribute will be
|
|
2552
|
-
* in descending order.
|
|
2553
|
-
*/
|
|
2554
|
-
sort?: string[];
|
|
2555
|
-
/** Comma separated list of features ids. */
|
|
2556
|
-
ids?: string[];
|
|
2557
|
-
/** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
|
|
2558
|
-
attributes?: string[];
|
|
2559
|
-
}
|
|
2560
2553
|
/**
|
|
2561
2554
|
* Get features count with layer filter condition data contract.
|
|
2562
2555
|
*/
|
|
@@ -3286,6 +3279,8 @@ export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
|
|
|
3286
3279
|
*/
|
|
3287
3280
|
export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
|
|
3288
3281
|
type?: string | null;
|
|
3282
|
+
eql?: string | null;
|
|
3283
|
+
eqlParameters?: Record<string, any>;
|
|
3289
3284
|
};
|
|
3290
3285
|
/**
|
|
3291
3286
|
* Base template model data contract.
|
|
@@ -3395,6 +3390,8 @@ export declare enum OwnerFilter {
|
|
|
3395
3390
|
*/
|
|
3396
3391
|
export declare type PagedBulkFeaturesListDc = PagedListFeatureDc & {
|
|
3397
3392
|
layerName?: string | null;
|
|
3393
|
+
hasError?: boolean;
|
|
3394
|
+
error?: string | null;
|
|
3398
3395
|
};
|
|
3399
3396
|
/**
|
|
3400
3397
|
* Features list definition.
|
|
@@ -3544,6 +3541,28 @@ export interface PagedListUserInfoDc {
|
|
|
3544
3541
|
limit?: number;
|
|
3545
3542
|
items?: UserInfoDc[];
|
|
3546
3543
|
}
|
|
3544
|
+
/**
|
|
3545
|
+
* Paged resources list.
|
|
3546
|
+
*/
|
|
3547
|
+
export interface PagedResourcesListDc {
|
|
3548
|
+
/** A set of resources. */
|
|
3549
|
+
items?: CatalogResourceDc[];
|
|
3550
|
+
/**
|
|
3551
|
+
* Limit.
|
|
3552
|
+
* @format int32
|
|
3553
|
+
*/
|
|
3554
|
+
limit?: number;
|
|
3555
|
+
/**
|
|
3556
|
+
* Offset.
|
|
3557
|
+
* @format int32
|
|
3558
|
+
*/
|
|
3559
|
+
offset?: number;
|
|
3560
|
+
/**
|
|
3561
|
+
* Total count.
|
|
3562
|
+
* @format int32
|
|
3563
|
+
*/
|
|
3564
|
+
totalCount?: number;
|
|
3565
|
+
}
|
|
3547
3566
|
/**
|
|
3548
3567
|
* Number parameter of a symbol. The parameter can be represented as a simple number, or
|
|
3549
3568
|
as an object with a "type" parameter specified.
|
|
@@ -3868,6 +3887,8 @@ export interface ProjectConfigurationDc {
|
|
|
3868
3887
|
clientData?: any;
|
|
3869
3888
|
/** Card configuration. Storage isn't used by server. */
|
|
3870
3889
|
dashboardConfiguration?: any;
|
|
3890
|
+
/** Project information. Storage isn't used by server. */
|
|
3891
|
+
projectInfo?: any;
|
|
3871
3892
|
/** Project content items configurations. */
|
|
3872
3893
|
items?: ProjectContentItemDc[];
|
|
3873
3894
|
/** A collection of bookmarks of the map. */
|
|
@@ -6322,6 +6343,8 @@ export interface Vector2 {
|
|
|
6322
6343
|
*/
|
|
6323
6344
|
export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
6324
6345
|
type?: string | null;
|
|
6346
|
+
eql?: string | null;
|
|
6347
|
+
eqlParameters?: Record<string, any>;
|
|
6325
6348
|
};
|
|
6326
6349
|
/**
|
|
6327
6350
|
* Workspace limits data contract.
|
|
@@ -6612,6 +6635,28 @@ export interface GetAllParams {
|
|
|
6612
6635
|
* Public
|
|
6613
6636
|
*/
|
|
6614
6637
|
ownerFilter?: OwnerFilter;
|
|
6638
|
+
/**
|
|
6639
|
+
* Limit response page.
|
|
6640
|
+
* @format int32
|
|
6641
|
+
*/
|
|
6642
|
+
limit?: number;
|
|
6643
|
+
/**
|
|
6644
|
+
* Offset objects from start.
|
|
6645
|
+
* @format int32
|
|
6646
|
+
*/
|
|
6647
|
+
offset?: number;
|
|
6648
|
+
}
|
|
6649
|
+
export interface PostGetAllParams {
|
|
6650
|
+
/**
|
|
6651
|
+
* Limit response page.
|
|
6652
|
+
* @format int32
|
|
6653
|
+
*/
|
|
6654
|
+
limit?: number;
|
|
6655
|
+
/**
|
|
6656
|
+
* Offset objects from start.
|
|
6657
|
+
* @format int32
|
|
6658
|
+
*/
|
|
6659
|
+
offset?: number;
|
|
6615
6660
|
}
|
|
6616
6661
|
export interface GetTagsParams {
|
|
6617
6662
|
/** Text filter. */
|
|
@@ -7339,7 +7384,7 @@ export interface ValidateExpressionParams {
|
|
|
7339
7384
|
/** Layer name. */
|
|
7340
7385
|
layerName: string;
|
|
7341
7386
|
}
|
|
7342
|
-
export interface
|
|
7387
|
+
export interface GetRasterMetaParams3 {
|
|
7343
7388
|
/**
|
|
7344
7389
|
* Min value for build histogram.
|
|
7345
7390
|
* @format double
|
|
@@ -7466,7 +7511,7 @@ export interface GetProjectsListParams {
|
|
|
7466
7511
|
tags?: string[];
|
|
7467
7512
|
}
|
|
7468
7513
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
7469
|
-
export interface
|
|
7514
|
+
export interface DeleteResourcesParams3 {
|
|
7470
7515
|
/** Resource names. */
|
|
7471
7516
|
names?: string[];
|
|
7472
7517
|
}
|
|
@@ -7749,7 +7794,7 @@ export interface StatisticsDbParams {
|
|
|
7749
7794
|
*/
|
|
7750
7795
|
types?: AggregationFunction[];
|
|
7751
7796
|
}
|
|
7752
|
-
export interface
|
|
7797
|
+
export interface ClassifyParams8 {
|
|
7753
7798
|
/** Layer name. */
|
|
7754
7799
|
name: string;
|
|
7755
7800
|
/** Attribute name. */
|
|
@@ -7882,10 +7927,6 @@ export interface GetTableListParams {
|
|
|
7882
7927
|
acl?: string;
|
|
7883
7928
|
}
|
|
7884
7929
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
7885
|
-
export interface DeleteResourcesParams2 {
|
|
7886
|
-
/** Resource names. */
|
|
7887
|
-
names?: string[];
|
|
7888
|
-
}
|
|
7889
7930
|
export interface GetTablesInfoParams {
|
|
7890
7931
|
/** Table names. */
|
|
7891
7932
|
tableNames?: string[];
|
|
@@ -7950,7 +7991,7 @@ export interface SetPreviewInput {
|
|
|
7950
7991
|
/** @format binary */
|
|
7951
7992
|
file?: File;
|
|
7952
7993
|
}
|
|
7953
|
-
export interface
|
|
7994
|
+
export interface GetAllParams6 {
|
|
7954
7995
|
/** Text filter. */
|
|
7955
7996
|
filter?: string;
|
|
7956
7997
|
/**
|
|
@@ -7964,7 +8005,7 @@ export interface GetAllParams9 {
|
|
|
7964
8005
|
*/
|
|
7965
8006
|
limit?: number;
|
|
7966
8007
|
}
|
|
7967
|
-
export interface
|
|
8008
|
+
export interface SearchResultDcGetSearchResultParams {
|
|
7968
8009
|
/** Results filter. */
|
|
7969
8010
|
filter?: string;
|
|
7970
8011
|
/**
|
|
@@ -7977,7 +8018,7 @@ export interface GetSearchResultParams {
|
|
|
7977
8018
|
* @format int32
|
|
7978
8019
|
*/
|
|
7979
8020
|
limit?: number;
|
|
7980
|
-
/**
|
|
8021
|
+
/** Task id. */
|
|
7981
8022
|
taskId: string;
|
|
7982
8023
|
/** Name of the layer. */
|
|
7983
8024
|
layerName: string;
|
|
@@ -8039,7 +8080,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8039
8080
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8040
8081
|
AcceptFormats?: string[];
|
|
8041
8082
|
}
|
|
8042
|
-
export interface
|
|
8083
|
+
export interface GetCapabilitiesParams4 {
|
|
8043
8084
|
/** Output format of service metadata. */
|
|
8044
8085
|
Format?: string;
|
|
8045
8086
|
/** Must be WMS. */
|