@evergis/api 3.0.191 → 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 +47 -3
- package/dist/__generated__/{EqlTestService.d.ts → EqlService.d.ts} +15 -15
- package/dist/__generated__/LayersService.d.ts +13 -2
- 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__/UniversalSearchService.d.ts +7 -7
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +187 -77
- package/dist/api.cjs.development.js +138 -51
- 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 +138 -69
- 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, ListResourcesDto, MoveResourceDc, 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,29 @@ 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
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags Catalog
|
|
35
|
+
* @name GetTags
|
|
36
|
+
* @operationId CatalogController_GetTags
|
|
37
|
+
* @summary Get all tags of given user.
|
|
38
|
+
* @request GET:/resources/tags
|
|
39
|
+
* @response `200` OK
|
|
40
|
+
*/
|
|
41
|
+
getTags(query: GetTagsParams): Promise<CatalogResourceDc[]>;
|
|
42
|
+
/**
|
|
43
|
+
* No description
|
|
44
|
+
*
|
|
45
|
+
* @tags Catalog
|
|
46
|
+
* @name PutTags
|
|
47
|
+
* @operationId CatalogController_PutTags
|
|
48
|
+
* @summary Put tags to resource.
|
|
49
|
+
* @request PUT:/resources/{resourceId}/tags
|
|
50
|
+
* @response `200` OK
|
|
51
|
+
*/
|
|
52
|
+
putTags(resourceId: string, data: PutTagsPayload): Promise<CatalogResourceDc>;
|
|
31
53
|
/**
|
|
32
54
|
* No description
|
|
33
55
|
*
|
|
@@ -38,7 +60,7 @@ export declare class CatalogService extends Service {
|
|
|
38
60
|
* @request POST:/resources/search
|
|
39
61
|
* @response `200` OK
|
|
40
62
|
*/
|
|
41
|
-
searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<
|
|
63
|
+
searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<PagedResourcesListDc>;
|
|
42
64
|
/**
|
|
43
65
|
* No description
|
|
44
66
|
*
|
|
@@ -50,6 +72,17 @@ export declare class CatalogService extends Service {
|
|
|
50
72
|
* @response `200` OK
|
|
51
73
|
*/
|
|
52
74
|
getResource(resourceId: string): Promise<CatalogResourceDc>;
|
|
75
|
+
/**
|
|
76
|
+
* No description
|
|
77
|
+
*
|
|
78
|
+
* @tags Catalog
|
|
79
|
+
* @name PatchResource
|
|
80
|
+
* @operationId CatalogController_PatchResource
|
|
81
|
+
* @summary Update directory.
|
|
82
|
+
* @request PATCH:/resources/{resourceId}
|
|
83
|
+
* @response `200` OK
|
|
84
|
+
*/
|
|
85
|
+
patchResource(resourceId: string, data: PatchResourceDc): Promise<CatalogResourceDc>;
|
|
53
86
|
/**
|
|
54
87
|
* No description
|
|
55
88
|
*
|
|
@@ -138,4 +171,15 @@ export declare class CatalogService extends Service {
|
|
|
138
171
|
* @response `200` OK
|
|
139
172
|
*/
|
|
140
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>;
|
|
141
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, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams,
|
|
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
|
|
@@ -6,6 +6,17 @@ import { Service } from './Service';
|
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class LayersService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Layers
|
|
13
|
+
* @name GetBulkFeatures
|
|
14
|
+
* @operationId LayersController_GetBulkFeatures
|
|
15
|
+
* @summary Returns list of the layer features.
|
|
16
|
+
* @request POST:/bulk/layers/features/query
|
|
17
|
+
* @response `200` OK
|
|
18
|
+
*/
|
|
19
|
+
getBulkFeatures(data: GetBulkFeaturesPayload): Promise<PagedBulkFeaturesListDc[]>;
|
|
9
20
|
/**
|
|
10
21
|
* No description
|
|
11
22
|
*
|
|
@@ -578,7 +589,7 @@ export declare class LayersService extends Service {
|
|
|
578
589
|
* @request GET:/layers/{name}/{id}/metadata
|
|
579
590
|
* @response `200` OK
|
|
580
591
|
*/
|
|
581
|
-
getRasterMeta({ name, id, ...query }:
|
|
592
|
+
getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
|
|
582
593
|
/**
|
|
583
594
|
* No description
|
|
584
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 { 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
|
*
|