@evergis/api
Advanced tools
Comparing version 3.0.191 to 3.0.192
@@ -1,2 +0,2 @@ | ||
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, ListResourcesDto, MoveResourceDc, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts'; | ||
import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PatchResourceDc, PutTagsPayload, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -35,2 +35,24 @@ /** | ||
* @tags Catalog | ||
* @name GetTags | ||
* @operationId CatalogController_GetTags | ||
* @summary Get all tags of given user. | ||
* @request GET:/resources/tags | ||
* @response `200` OK | ||
*/ | ||
getTags(query: GetTagsParams): Promise<CatalogResourceDc[]>; | ||
/** | ||
* No description | ||
* | ||
* @tags Catalog | ||
* @name PutTags | ||
* @operationId CatalogController_PutTags | ||
* @summary Put tags to resource. | ||
* @request PUT:/resources/{resourceId}/tags | ||
* @response `200` OK | ||
*/ | ||
putTags(resourceId: string, data: PutTagsPayload): Promise<CatalogResourceDc>; | ||
/** | ||
* No description | ||
* | ||
* @tags Catalog | ||
* @name SearchResources | ||
@@ -58,2 +80,13 @@ * @operationId CatalogController_SearchResources | ||
* @tags Catalog | ||
* @name PatchResource | ||
* @operationId CatalogController_PatchResource | ||
* @summary Update directory. | ||
* @request PATCH:/resources/{resourceId} | ||
* @response `200` OK | ||
*/ | ||
patchResource(resourceId: string, data: PatchResourceDc): Promise<CatalogResourceDc>; | ||
/** | ||
* No description | ||
* | ||
* @tags Catalog | ||
* @name DeleteResource | ||
@@ -60,0 +93,0 @@ * @operationId CatalogController_DeleteResource |
@@ -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, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams7, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, 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'; | ||
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, GetFeaturesParametersFromLayersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams9, 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'; | ||
import { Service } from './Service'; | ||
@@ -13,2 +13,24 @@ /** | ||
* @tags Layers | ||
* @name GetBulkFeatures | ||
* @operationId LayersController_GetBulkFeatures | ||
* @summary Returns list of the layer features. | ||
* @request POST:/bulk/layers/features/query | ||
* @response `200` OK | ||
*/ | ||
getBulkFeatures(data: GetBulkFeaturesPayload): Promise<PagedBulkFeaturesListDc[]>; | ||
/** | ||
* No description | ||
* | ||
* @tags Layers | ||
* @name GetFeaturesFromLayers | ||
* @operationId LayersController_GetFeaturesFromLayers | ||
* @summary Returns list of the layer features. | ||
* @request POST:/layers/features/query | ||
* @response `200` OK | ||
*/ | ||
getFeaturesFromLayers(data: GetFeaturesParametersFromLayersDc): Promise<PagedBulkFeaturesListDc[]>; | ||
/** | ||
* No description | ||
* | ||
* @tags Layers | ||
* @name GetLayersList | ||
@@ -582,3 +604,3 @@ * @operationId LayersController_GetLayersList | ||
*/ | ||
getRasterMeta({ name, id, ...query }: GetRasterMetaParams7): Promise<(RasterMetaDc | NetCdfMetaDc)[]>; | ||
getRasterMeta({ name, id, ...query }: GetRasterMetaParams9): Promise<(RasterMetaDc | NetCdfMetaDc)[]>; | ||
/** | ||
@@ -585,0 +607,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams4, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts'; | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -52,3 +52,3 @@ /** | ||
*/ | ||
deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>; | ||
deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>; | ||
/** | ||
@@ -55,0 +55,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { ClassifyDc, ClassifyParams2, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts'; | ||
import { ClassifyDc, ClassifyParams5, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -41,3 +41,3 @@ /** | ||
*/ | ||
classify(query: ClassifyParams2): Promise<ClassifyDc>; | ||
classify(query: ClassifyParams5): Promise<ClassifyDc>; | ||
/** | ||
@@ -44,0 +44,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts'; | ||
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams2, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -52,3 +52,3 @@ /** | ||
*/ | ||
deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>; | ||
deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>; | ||
/** | ||
@@ -55,0 +55,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { GetAllParams6, PagedListTagInfoDc } from './data-contracts'; | ||
import { GetAllParams9, PagedListTagInfoDc } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -19,3 +19,3 @@ /** | ||
*/ | ||
getAll(query: GetAllParams6): Promise<PagedListTagInfoDc>; | ||
getAll(query: GetAllParams9): Promise<PagedListTagInfoDc>; | ||
/** | ||
@@ -22,0 +22,0 @@ * No description |
@@ -1,2 +0,2 @@ | ||
import { GetCapabilities1Params, GetCapabilitiesParams6, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts'; | ||
import { GetCapabilities1Params, GetCapabilitiesParams3, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts'; | ||
import { Service } from './Service'; | ||
@@ -19,3 +19,3 @@ /** | ||
*/ | ||
getCapabilities(query: GetCapabilitiesParams6): Promise<void>; | ||
getCapabilities(query: GetCapabilitiesParams3): Promise<void>; | ||
/** | ||
@@ -22,0 +22,0 @@ * No description |
import { StatisticService } from '../__generated__/StatisticService'; | ||
import { ClassifyDc, ClassifyParams2, GetClassifyDc, GetStatisticsDc, StatisticsDbParams, StatisticsDc } from "../__generated__/data-contracts"; | ||
import { ClassifyDc, ClassifyParams5, GetClassifyDc, GetStatisticsDc, StatisticsDbParams, StatisticsDc } from "../__generated__/data-contracts"; | ||
export declare class Statistic extends StatisticService { | ||
getStatistic(params: StatisticsDbParams): Promise<StatisticsDc>; | ||
postStatistic(params: GetStatisticsDc): Promise<StatisticsDc>; | ||
getClassify(params: ClassifyParams2): Promise<ClassifyDc>; | ||
getClassify(params: ClassifyParams5): Promise<ClassifyDc>; | ||
postClassify(params: GetClassifyDc): Promise<ClassifyDc>; | ||
} |
{ | ||
"version": "3.0.191", | ||
"version": "3.0.192", | ||
"license": "MIT", | ||
@@ -48,3 +48,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "6bda15cc22c4c269ee6410772132278c378d792e" | ||
"gitHead": "23e0d90b435c8f21b1cb0f3eada37fc617e70120" | ||
} |
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
2444400
28257