@evergis/api
Advanced tools
Comparing version 3.0.145 to 3.0.146
@@ -1,2 +0,2 @@ | ||
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, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams7, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceConfigurationDc, ProxyServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, ValidateExpressionParams } from './data-contracts'; | ||
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, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams3, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceConfigurationDc, ProxyServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, SetPermissionsBatchPayload, SetPreviewPayload, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, ValidateExpressionParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -145,2 +145,13 @@ /** | ||
* @tags Layers | ||
* @name PublishQueryLayerService | ||
* @operationId LayersController_PublishQueryLayerService | ||
* @summary Creates new Postgres Layer Service. | ||
* @request POST:/layers#type=QueryLayerService | ||
* @response `default` Error | ||
*/ | ||
publishQueryLayerService(data: QueryLayerServiceConfigurationDc): Promise<QueryLayerServiceInfoDc>; | ||
/** | ||
* No description | ||
* | ||
* @tags Layers | ||
* @name PublishPostgresTileCatalogService | ||
@@ -516,3 +527,3 @@ * @operationId LayersController_PublishPostgresTileCatalogService | ||
*/ | ||
getRasterMeta({ name, id, ...query }: GetRasterMetaParams7): Promise<(RasterMetaDc | NetCdfMetaDc)[]>; | ||
getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>; | ||
/** | ||
@@ -519,0 +530,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams7, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts'; | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -52,3 +52,3 @@ /** | ||
*/ | ||
deleteResources(query: DeleteResourcesParams7): Promise<BulkOperationResultDc[]>; | ||
deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>; | ||
/** | ||
@@ -55,0 +55,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { CreateResourcePayload, CreateStorageParams, GetResourceParams, GetUrlParams, RemoveObjectFromStorageParams } from './data-contracts'; | ||
import { CreateResourcePayload, CreateStorageParams, GetResourceParams, GetStorageObjectsParams, GetUrlParams, RemoveObjectFromStorageParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -57,9 +57,9 @@ /** | ||
* @tags S3 | ||
* @name CreateStorage | ||
* @operationId S3Controller_CreateStorage | ||
* @summary Create a new storage. | ||
* @request POST:/storages | ||
* @name GetStorageObjects | ||
* @operationId S3Controller_GetStorageObjects | ||
* @summary Get storage objects. | ||
* @request GET:/storages/{storageName} | ||
* @response `200` Success | ||
*/ | ||
createStorage(query: CreateStorageParams): Promise<void>; | ||
getStorageObjects({ storageName, ...query }: GetStorageObjectsParams): Promise<void>; | ||
/** | ||
@@ -76,2 +76,13 @@ * No description | ||
deleteStorage(storageName: string): Promise<void>; | ||
/** | ||
* No description | ||
* | ||
* @tags S3 | ||
* @name CreateStorage | ||
* @operationId S3Controller_CreateStorage | ||
* @summary Create a new storage. | ||
* @request POST:/storages | ||
* @response `200` Success | ||
*/ | ||
createStorage(query: CreateStorageParams): Promise<void>; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { ClassifyDc, ClassifyParams9, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts'; | ||
import { ClassifyDc, ClassifyParams3, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -30,3 +30,3 @@ /** | ||
*/ | ||
classify(query: ClassifyParams9): Promise<ClassifyDc>; | ||
classify(query: ClassifyParams3): Promise<ClassifyDc>; | ||
/** | ||
@@ -33,0 +33,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { GetCapabilities1Params, GetCapabilitiesParams3, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts'; | ||
import { GetCapabilities1Params, GetCapabilitiesParams6, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -19,3 +19,3 @@ /** | ||
*/ | ||
getCapabilities(query: GetCapabilitiesParams3): Promise<void>; | ||
getCapabilities(query: GetCapabilitiesParams6): Promise<void>; | ||
/** | ||
@@ -22,0 +22,0 @@ * No description |
{ | ||
"version": "3.0.145", | ||
"version": "3.0.146", | ||
"license": "MIT", | ||
@@ -46,3 +46,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "1aefc5ac3e77204883be0e4a6ce0b656090e685f" | ||
"gitHead": "6fd2fb31877956cbf6268328f39a20914ee11078" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2224763
24513