@evergis/api 3.0.208 → 3.0.210
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__/CatalogService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +13 -2
- package/dist/__generated__/ProjectsService.d.ts +13 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +92 -3
- package/dist/api.cjs.development.js +62 -8
- 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 +62 -8
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetTagsParams, ListResourcesDto, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, SetPermissionsPayload } from './data-contracts';
|
|
1
|
+
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetTagsParams, ListResourcesDto, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceParentDc, SetPermissionsPayload } 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 CatalogService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Catalog
|
|
13
|
+
* @name GetParents
|
|
14
|
+
* @operationId CatalogController_GetParents
|
|
15
|
+
* @summary Get parents.
|
|
16
|
+
* @request GET:/resources/{resourceId}/parents
|
|
17
|
+
* @response `200` OK
|
|
18
|
+
*/
|
|
19
|
+
getParents(resourceId: string): Promise<ResourceParentDc[]>;
|
|
9
20
|
/**
|
|
10
21
|
* No description
|
|
11
22
|
*
|
|
@@ -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, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams,
|
|
1
|
+
import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetBulkExtentsParams, GetBulkExtentsPayload, 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,6 +17,17 @@ 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 GetBulkExtents
|
|
25
|
+
* @operationId LayersController_GetBulkExtents
|
|
26
|
+
* @summary Returns list of the layer extents with overall extent.
|
|
27
|
+
* @request POST:/bulk/layers/extent
|
|
28
|
+
* @response `200` OK
|
|
29
|
+
*/
|
|
30
|
+
getBulkExtents(query: GetBulkExtentsParams, data: GetBulkExtentsPayload): Promise<BulkExtentsDc>;
|
|
20
31
|
/**
|
|
21
32
|
* No description
|
|
22
33
|
*
|
|
@@ -589,7 +600,7 @@ export declare class LayersService extends Service {
|
|
|
589
600
|
* @request GET:/layers/{name}/{id}/metadata
|
|
590
601
|
* @response `200` OK
|
|
591
602
|
*/
|
|
592
|
-
getRasterMeta({ name, id, ...query }:
|
|
603
|
+
getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
|
|
593
604
|
/**
|
|
594
605
|
* No description
|
|
595
606
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams7, EnvelopeDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectEnvelopeParams, 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: DeleteResourcesParams7): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -94,6 +94,17 @@ export declare class ProjectsService extends Service {
|
|
|
94
94
|
* @response `200` OK
|
|
95
95
|
*/
|
|
96
96
|
getProjectsInfo(query: GetProjectsInfoParams): Promise<ExtendedProjectInfoDc[]>;
|
|
97
|
+
/**
|
|
98
|
+
* No description
|
|
99
|
+
*
|
|
100
|
+
* @tags Projects
|
|
101
|
+
* @name GetProjectEnvelope
|
|
102
|
+
* @operationId ProjectsController_GetProjectEnvelope
|
|
103
|
+
* @summary Get project extent.
|
|
104
|
+
* @request GET:/projects/{name}/extent
|
|
105
|
+
* @response `200` OK
|
|
106
|
+
*/
|
|
107
|
+
getProjectEnvelope({ name, ...query }: GetProjectEnvelopeParams): Promise<EnvelopeDc>;
|
|
97
108
|
/**
|
|
98
109
|
* No description
|
|
99
110
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams6, 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,7 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` OK
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams6, 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: GetCapabilitiesParams6): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -814,6 +814,15 @@ export declare type BufferTaskParametersDc = FeatureTaskParametersDc & {
|
|
|
814
814
|
idAttributeName?: string | null;
|
|
815
815
|
geometryAttributeName?: string | null;
|
|
816
816
|
};
|
|
817
|
+
/**
|
|
818
|
+
* Get bulk extents data conteract.
|
|
819
|
+
*/
|
|
820
|
+
export interface BulkExtentsDc {
|
|
821
|
+
/** Envelope geometry. */
|
|
822
|
+
overall?: EnvelopeDc;
|
|
823
|
+
/** Extent per layer. */
|
|
824
|
+
extents?: Record<string, EnvelopeDc>;
|
|
825
|
+
}
|
|
817
826
|
/**
|
|
818
827
|
* Provides set resources bulk operation status.
|
|
819
828
|
*/
|
|
@@ -937,6 +946,11 @@ export interface CatalogResourceDc {
|
|
|
937
946
|
permissions?: Permissions;
|
|
938
947
|
/** Table schema. */
|
|
939
948
|
schema?: string;
|
|
949
|
+
/**
|
|
950
|
+
* Spatial reference id. Nothing if geometry type is mixed.
|
|
951
|
+
* @format int32
|
|
952
|
+
*/
|
|
953
|
+
srid?: number;
|
|
940
954
|
}
|
|
941
955
|
/**
|
|
942
956
|
*
|
|
@@ -1296,6 +1310,10 @@ export interface CompositeServiceInfoDc {
|
|
|
1296
1310
|
invisibleInCatalog?: boolean;
|
|
1297
1311
|
/** Parent id in resources catalog. */
|
|
1298
1312
|
parentId?: string;
|
|
1313
|
+
/** Resource id in resources catalog. */
|
|
1314
|
+
resourceId?: string;
|
|
1315
|
+
/** Resource tags. */
|
|
1316
|
+
tags?: string[];
|
|
1299
1317
|
}
|
|
1300
1318
|
/**
|
|
1301
1319
|
* Composite symbol.
|
|
@@ -2168,6 +2186,10 @@ export interface FailedServiceInfoDc {
|
|
|
2168
2186
|
invisibleInCatalog?: boolean;
|
|
2169
2187
|
/** Parent id in resources catalog. */
|
|
2170
2188
|
parentId?: string;
|
|
2189
|
+
/** Resource id in resources catalog. */
|
|
2190
|
+
resourceId?: string;
|
|
2191
|
+
/** Resource tags. */
|
|
2192
|
+
tags?: string[];
|
|
2171
2193
|
}
|
|
2172
2194
|
/**
|
|
2173
2195
|
* Feature object definition.
|
|
@@ -2287,6 +2309,10 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
2287
2309
|
invisibleInCatalog?: boolean;
|
|
2288
2310
|
/** Parent id in resources catalog. */
|
|
2289
2311
|
parentId?: string;
|
|
2312
|
+
/** Resource id in resources catalog. */
|
|
2313
|
+
resourceId?: string;
|
|
2314
|
+
/** Resource tags. */
|
|
2315
|
+
tags?: string[];
|
|
2290
2316
|
}
|
|
2291
2317
|
export interface FeatureSelectionDc {
|
|
2292
2318
|
layerName: string;
|
|
@@ -2605,6 +2631,15 @@ export declare enum GeometryType {
|
|
|
2605
2631
|
Envelope = "envelope",
|
|
2606
2632
|
Multipoint = "multipoint"
|
|
2607
2633
|
}
|
|
2634
|
+
/**
|
|
2635
|
+
* Get extent from layer paramaters.
|
|
2636
|
+
*/
|
|
2637
|
+
export interface GetBulkExtentsDc {
|
|
2638
|
+
/** Full name of the layer. */
|
|
2639
|
+
layerName?: string;
|
|
2640
|
+
/** If set, only the features that satisfy the condition will be considered when calculating the extent. */
|
|
2641
|
+
query?: string;
|
|
2642
|
+
}
|
|
2608
2643
|
/**
|
|
2609
2644
|
* Get features from layer paramaters.
|
|
2610
2645
|
*/
|
|
@@ -4413,6 +4448,10 @@ export interface ProxyServiceInfoDc {
|
|
|
4413
4448
|
invisibleInCatalog?: boolean;
|
|
4414
4449
|
/** Parent id in resources catalog. */
|
|
4415
4450
|
parentId?: string;
|
|
4451
|
+
/** Resource id in resources catalog. */
|
|
4452
|
+
resourceId?: string;
|
|
4453
|
+
/** Resource tags. */
|
|
4454
|
+
tags?: string[];
|
|
4416
4455
|
}
|
|
4417
4456
|
/**
|
|
4418
4457
|
* Stream quality.
|
|
@@ -4486,6 +4525,8 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
|
|
|
4486
4525
|
valueColumn?: string;
|
|
4487
4526
|
/** Name of the column containing the description. */
|
|
4488
4527
|
descriptionColumn?: string;
|
|
4528
|
+
/** Data source name. */
|
|
4529
|
+
ds?: string;
|
|
4489
4530
|
/** Query text. */
|
|
4490
4531
|
query?: string;
|
|
4491
4532
|
/** Available values. */
|
|
@@ -4598,6 +4639,10 @@ export interface QueryLayerServiceInfoDc {
|
|
|
4598
4639
|
invisibleInCatalog?: boolean;
|
|
4599
4640
|
/** Parent id in resources catalog. */
|
|
4600
4641
|
parentId?: string;
|
|
4642
|
+
/** Resource id in resources catalog. */
|
|
4643
|
+
resourceId?: string;
|
|
4644
|
+
/** Resource tags. */
|
|
4645
|
+
tags?: string[];
|
|
4601
4646
|
}
|
|
4602
4647
|
/**
|
|
4603
4648
|
* Raster band cfg.
|
|
@@ -4925,6 +4970,21 @@ export interface ResourceInfoDc {
|
|
|
4925
4970
|
invisibleInCatalog?: boolean;
|
|
4926
4971
|
/** Parent id in resources catalog. */
|
|
4927
4972
|
parentId?: string;
|
|
4973
|
+
/** Resource id in resources catalog. */
|
|
4974
|
+
resourceId?: string;
|
|
4975
|
+
/** Resource tags. */
|
|
4976
|
+
tags?: string[];
|
|
4977
|
+
}
|
|
4978
|
+
/**
|
|
4979
|
+
* Resource parent.
|
|
4980
|
+
*/
|
|
4981
|
+
export interface ResourceParentDc {
|
|
4982
|
+
/** Resource id. */
|
|
4983
|
+
resourceId?: string;
|
|
4984
|
+
/** Resource name. */
|
|
4985
|
+
name?: string;
|
|
4986
|
+
/** Resource path. */
|
|
4987
|
+
path?: string;
|
|
4928
4988
|
}
|
|
4929
4989
|
/**
|
|
4930
4990
|
* Resources types filter.
|
|
@@ -6357,6 +6417,10 @@ export interface TileCatalogServiceInfoDc {
|
|
|
6357
6417
|
invisibleInCatalog?: boolean;
|
|
6358
6418
|
/** Parent id in resources catalog. */
|
|
6359
6419
|
parentId?: string;
|
|
6420
|
+
/** Resource id in resources catalog. */
|
|
6421
|
+
resourceId?: string;
|
|
6422
|
+
/** Resource tags. */
|
|
6423
|
+
tags?: string[];
|
|
6360
6424
|
}
|
|
6361
6425
|
/**
|
|
6362
6426
|
* Configuration of a table for tile catalog layer.
|
|
@@ -6536,6 +6600,10 @@ export interface TileServiceInfoDc {
|
|
|
6536
6600
|
invisibleInCatalog?: boolean;
|
|
6537
6601
|
/** Parent id in resources catalog. */
|
|
6538
6602
|
parentId?: string;
|
|
6603
|
+
/** Resource id in resources catalog. */
|
|
6604
|
+
resourceId?: string;
|
|
6605
|
+
/** Resource tags. */
|
|
6606
|
+
tags?: string[];
|
|
6539
6607
|
}
|
|
6540
6608
|
/**
|
|
6541
6609
|
* The description of the tile feature layer service as a server task data storage.
|
|
@@ -7374,6 +7442,14 @@ export interface GetRasterMetaParams {
|
|
|
7374
7442
|
fileName?: string;
|
|
7375
7443
|
}
|
|
7376
7444
|
export declare type GetBulkFeaturesPayload = GetBulkFeaturesParametersDc[];
|
|
7445
|
+
export declare type GetBulkExtentsPayload = GetBulkExtentsDc[];
|
|
7446
|
+
export interface GetBulkExtentsParams {
|
|
7447
|
+
/**
|
|
7448
|
+
* Spatial reference to return the extent in.
|
|
7449
|
+
* @format int32
|
|
7450
|
+
*/
|
|
7451
|
+
sr?: number;
|
|
7452
|
+
}
|
|
7377
7453
|
export interface GetLayersListParams {
|
|
7378
7454
|
/**
|
|
7379
7455
|
* Full text query filter that allow to query in alias and name fields.
|
|
@@ -7838,7 +7914,7 @@ export interface ValidateExpressionParams {
|
|
|
7838
7914
|
/** Layer name. */
|
|
7839
7915
|
layerName: string;
|
|
7840
7916
|
}
|
|
7841
|
-
export interface
|
|
7917
|
+
export interface GetRasterMetaParams3 {
|
|
7842
7918
|
/**
|
|
7843
7919
|
* Min value for build histogram.
|
|
7844
7920
|
* @format double
|
|
@@ -7957,7 +8033,7 @@ export interface GetProjectsListParams {
|
|
|
7957
8033
|
tags?: string[];
|
|
7958
8034
|
}
|
|
7959
8035
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
7960
|
-
export interface
|
|
8036
|
+
export interface DeleteResourcesParams7 {
|
|
7961
8037
|
/** Resource names. */
|
|
7962
8038
|
names?: string[];
|
|
7963
8039
|
}
|
|
@@ -7965,6 +8041,15 @@ export interface GetProjectsInfoParams {
|
|
|
7965
8041
|
/** Project names. */
|
|
7966
8042
|
projectNames?: string[];
|
|
7967
8043
|
}
|
|
8044
|
+
export interface GetProjectEnvelopeParams {
|
|
8045
|
+
/**
|
|
8046
|
+
* Spatial reference to return the extent in.
|
|
8047
|
+
* @format int32
|
|
8048
|
+
*/
|
|
8049
|
+
sr?: number;
|
|
8050
|
+
/** The name of the project. */
|
|
8051
|
+
name: string;
|
|
8052
|
+
}
|
|
7968
8053
|
export interface SetPreviewBody {
|
|
7969
8054
|
/** @format binary */
|
|
7970
8055
|
file?: File;
|
|
@@ -8373,6 +8458,10 @@ export interface GetTableListParams {
|
|
|
8373
8458
|
acl?: string;
|
|
8374
8459
|
}
|
|
8375
8460
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
8461
|
+
export interface DeleteResourcesParams6 {
|
|
8462
|
+
/** Resource names. */
|
|
8463
|
+
names?: string[];
|
|
8464
|
+
}
|
|
8376
8465
|
export interface GetTablesInfoParams {
|
|
8377
8466
|
/** Table names. */
|
|
8378
8467
|
tableNames?: string[];
|
|
@@ -8526,7 +8615,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8526
8615
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8527
8616
|
AcceptFormats?: string[];
|
|
8528
8617
|
}
|
|
8529
|
-
export interface
|
|
8618
|
+
export interface GetCapabilitiesParams6 {
|
|
8530
8619
|
/** Output format of service metadata. */
|
|
8531
8620
|
Format?: string;
|
|
8532
8621
|
/** Must be WMS. */
|
|
@@ -668,8 +668,21 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
_createClass(CatalogService, [{
|
|
671
|
-
key: "
|
|
671
|
+
key: "getParents",
|
|
672
672
|
value:
|
|
673
|
+
/**
|
|
674
|
+
* No description
|
|
675
|
+
*
|
|
676
|
+
* @tags Catalog
|
|
677
|
+
* @name GetParents
|
|
678
|
+
* @operationId CatalogController_GetParents
|
|
679
|
+
* @summary Get parents.
|
|
680
|
+
* @request GET:/resources/{resourceId}/parents
|
|
681
|
+
* @response `200` OK
|
|
682
|
+
*/
|
|
683
|
+
function getParents(resourceId) {
|
|
684
|
+
return this.http.get("/resources/" + resourceId + "/parents").json();
|
|
685
|
+
}
|
|
673
686
|
/**
|
|
674
687
|
* No description
|
|
675
688
|
*
|
|
@@ -680,7 +693,10 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
680
693
|
* @request GET:/resources/tags
|
|
681
694
|
* @response `200` OK
|
|
682
695
|
*/
|
|
683
|
-
|
|
696
|
+
|
|
697
|
+
}, {
|
|
698
|
+
key: "getTags",
|
|
699
|
+
value: function getTags(query) {
|
|
684
700
|
return this.http.get("/resources/tags", query).json();
|
|
685
701
|
}
|
|
686
702
|
/**
|
|
@@ -3375,6 +3391,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3375
3391
|
function getBulkFeatures(data) {
|
|
3376
3392
|
return this.http.post("/bulk/layers/features/query", data).json();
|
|
3377
3393
|
}
|
|
3394
|
+
/**
|
|
3395
|
+
* No description
|
|
3396
|
+
*
|
|
3397
|
+
* @tags Layers
|
|
3398
|
+
* @name GetBulkExtents
|
|
3399
|
+
* @operationId LayersController_GetBulkExtents
|
|
3400
|
+
* @summary Returns list of the layer extents with overall extent.
|
|
3401
|
+
* @request POST:/bulk/layers/extent
|
|
3402
|
+
* @response `200` OK
|
|
3403
|
+
*/
|
|
3404
|
+
|
|
3405
|
+
}, {
|
|
3406
|
+
key: "getBulkExtents",
|
|
3407
|
+
value: function getBulkExtents(query, data) {
|
|
3408
|
+
return this.http.post("/bulk/layers/extent", data, query).json();
|
|
3409
|
+
}
|
|
3378
3410
|
/**
|
|
3379
3411
|
* No description
|
|
3380
3412
|
*
|
|
@@ -5470,6 +5502,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
5470
5502
|
return _createClass(Print);
|
|
5471
5503
|
}(PrintService);
|
|
5472
5504
|
|
|
5505
|
+
const _excluded$6 = ["name"];
|
|
5473
5506
|
/**
|
|
5474
5507
|
* @title Spatial Processing Core API
|
|
5475
5508
|
* @version 1.5.1.0
|
|
@@ -5615,6 +5648,27 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5615
5648
|
value: function getProjectsInfo(query) {
|
|
5616
5649
|
return this.http.get("/projects/batchInfo", query).json();
|
|
5617
5650
|
}
|
|
5651
|
+
/**
|
|
5652
|
+
* No description
|
|
5653
|
+
*
|
|
5654
|
+
* @tags Projects
|
|
5655
|
+
* @name GetProjectEnvelope
|
|
5656
|
+
* @operationId ProjectsController_GetProjectEnvelope
|
|
5657
|
+
* @summary Get project extent.
|
|
5658
|
+
* @request GET:/projects/{name}/extent
|
|
5659
|
+
* @response `200` OK
|
|
5660
|
+
*/
|
|
5661
|
+
|
|
5662
|
+
}, {
|
|
5663
|
+
key: "getProjectEnvelope",
|
|
5664
|
+
value: function getProjectEnvelope(_ref) {
|
|
5665
|
+
let {
|
|
5666
|
+
name
|
|
5667
|
+
} = _ref,
|
|
5668
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
5669
|
+
|
|
5670
|
+
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
5671
|
+
}
|
|
5618
5672
|
/**
|
|
5619
5673
|
* No description
|
|
5620
5674
|
*
|
|
@@ -6963,7 +7017,7 @@ let Styles = /*#__PURE__*/function (_StyleService) {
|
|
|
6963
7017
|
return _createClass(Styles);
|
|
6964
7018
|
}(StyleService);
|
|
6965
7019
|
|
|
6966
|
-
const _excluded$
|
|
7020
|
+
const _excluded$7 = ["name"],
|
|
6967
7021
|
_excluded2$4 = ["name"],
|
|
6968
7022
|
_excluded3$3 = ["name"],
|
|
6969
7023
|
_excluded4$2 = ["name"];
|
|
@@ -7145,7 +7199,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7145
7199
|
let {
|
|
7146
7200
|
name
|
|
7147
7201
|
} = _ref,
|
|
7148
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7202
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
7149
7203
|
|
|
7150
7204
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
7151
7205
|
}
|
|
@@ -7545,7 +7599,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
7545
7599
|
return _createClass(Tools);
|
|
7546
7600
|
}(ToolsService);
|
|
7547
7601
|
|
|
7548
|
-
const _excluded$
|
|
7602
|
+
const _excluded$8 = ["name", "z", "x", "y"];
|
|
7549
7603
|
/**
|
|
7550
7604
|
* @title Spatial Processing Core API
|
|
7551
7605
|
* @version 1.5.1.0
|
|
@@ -7583,7 +7637,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
7583
7637
|
x,
|
|
7584
7638
|
y
|
|
7585
7639
|
} = _ref,
|
|
7586
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7640
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
7587
7641
|
|
|
7588
7642
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
7589
7643
|
}
|
|
@@ -7902,7 +7956,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
|
|
|
7902
7956
|
return EvergisTileLayer;
|
|
7903
7957
|
}(TileLayer.TileLayer);
|
|
7904
7958
|
|
|
7905
|
-
const _excluded$
|
|
7959
|
+
const _excluded$9 = ["name", "style", "condition", "dataFilterId", "crs"];
|
|
7906
7960
|
let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
7907
7961
|
_inherits(EvergisDynamicLayer, _DynamicLayer);
|
|
7908
7962
|
|
|
@@ -7918,7 +7972,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
|
|
|
7918
7972
|
dataFilterId,
|
|
7919
7973
|
crs = Crs.webMercator
|
|
7920
7974
|
} = _ref,
|
|
7921
|
-
layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7975
|
+
layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
|
7922
7976
|
|
|
7923
7977
|
_classCallCheck(this, EvergisDynamicLayer);
|
|
7924
7978
|
|