@evergis/api 3.0.67 → 3.0.68
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__/LayersService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +12 -1
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +41 -2
- package/dist/api.cjs.development.js +1 -1
- 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 +1 -1
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsPayload, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyParams, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesPayload, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GeometryDc, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersListParams, GetTilesLayerImageParams, IListResponse, LayerUpdateInfoDc, PagedFeaturesListDc, ProxyServiceInfoDc, PublishCompositeServicePayload, PublishLocalTileServicePayload, PublishPostgresLayerServicePayload, PublishPostgresTileCatalogServicePayload, PublishProxyServicePayload, PublishRemoteTileServicePayload, PublishStyledLayerServicePayload, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPermissionsPayload, SetPreviewPayload, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateCompositeServicePayload, UpdateFeaturePayload, UpdateLocalTileServicePayload, UpdatePostgresLayerServicePayload, UpdateProxyServicePayload, UpdateRemoteTileServicePayload, UpdateTileCatalogServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
1
|
+
import { AccessControlListDc, AddPermissionsPayload, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesPayload, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GeometryDc, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeaturesParams, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersListParams, GetTilesLayerImageParams, IListResponse, LayerUpdateInfoDc, PagedFeaturesListDc, ProxyServiceInfoDc, PublishCompositeServicePayload, PublishLocalTileServicePayload, PublishPostgresLayerServicePayload, PublishPostgresTileCatalogServicePayload, PublishProxyServicePayload, PublishRemoteTileServicePayload, PublishStyledLayerServicePayload, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPermissionsPayload, SetPreviewPayload, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateCompositeServicePayload, UpdateFeaturePayload, UpdateLocalTileServicePayload, UpdatePostgresLayerServicePayload, UpdateProxyServicePayload, UpdateRemoteTileServicePayload, UpdateTileCatalogServicePayload, ValidateExpressionParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -402,7 +402,7 @@ export declare class LayersService extends Service {
|
|
|
402
402
|
* @request GET:/layers/{name}/classify
|
|
403
403
|
* @response `200` Success
|
|
404
404
|
*/
|
|
405
|
-
classify({ name, ...query }: ClassifyParams): Promise<
|
|
405
|
+
classify({ name, ...query }: ClassifyParams): Promise<ClassifyDc>;
|
|
406
406
|
/**
|
|
407
407
|
* No description
|
|
408
408
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PositionDc, StatisticParams } from './data-contracts';
|
|
1
|
+
import { ClassifyDc, ClassifyParams4, PositionDc, StatisticParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -17,4 +17,15 @@ export declare class StatisticService extends Service {
|
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
19
|
statistic(query: StatisticParams): Promise<PositionDc>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags Statistic
|
|
24
|
+
* @name Classify
|
|
25
|
+
* @operationId StatisticController_Classify
|
|
26
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
27
|
+
* @request GET:/classify
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
classify(query: ClassifyParams4): Promise<ClassifyDc>;
|
|
20
31
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams6, DeleteTableDataParams, FileUploadResponse, GetTableDataParams, GetTableListParams, GetUniqueDataRowsParams, IListResponse, ListResponseIEnumerable1, MapRemoteTableParams, MapRemoteTablePayload, MapTableParams, MapTablePayload, MapViewParams, MapViewPayload, ResourceDependenciesDc, SetPermissionsBatchInput, SetPermissionsInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTablePayload, 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` Success
|
|
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, GetCapabilitiesParams2, 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` Success
|
|
18
18
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams2): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -572,6 +572,15 @@ export declare enum ClassificationType {
|
|
|
572
572
|
EqualInterval = "equalInterval",
|
|
573
573
|
Quantile = "quantile"
|
|
574
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* Classification result.
|
|
577
|
+
*/
|
|
578
|
+
export interface ClassifyDc {
|
|
579
|
+
/** Classification result. */
|
|
580
|
+
classifyResult: any;
|
|
581
|
+
/** Type. */
|
|
582
|
+
type: string;
|
|
583
|
+
}
|
|
575
584
|
/**
|
|
576
585
|
* Description of a table column.
|
|
577
586
|
*/
|
|
@@ -5967,6 +5976,12 @@ export interface DeleteFileParams {
|
|
|
5967
5976
|
fileid?: string;
|
|
5968
5977
|
}
|
|
5969
5978
|
export interface StatisticParams {
|
|
5979
|
+
/** Layer name. */
|
|
5980
|
+
layerName?: string;
|
|
5981
|
+
/** Attribute name. */
|
|
5982
|
+
attribute?: string;
|
|
5983
|
+
/** Condition. */
|
|
5984
|
+
condition?: string;
|
|
5970
5985
|
/**
|
|
5971
5986
|
* Type of required statistic function.
|
|
5972
5987
|
*
|
|
@@ -5991,10 +6006,34 @@ export interface StatisticParams {
|
|
|
5991
6006
|
* standardDeviation
|
|
5992
6007
|
*/
|
|
5993
6008
|
type?: StatisticsType;
|
|
6009
|
+
}
|
|
6010
|
+
export interface ClassifyParams4 {
|
|
5994
6011
|
/** Layer name. */
|
|
5995
6012
|
layerName?: string;
|
|
5996
6013
|
/** Attribute name. */
|
|
5997
6014
|
attribute?: string;
|
|
6015
|
+
/** Layer condition. */
|
|
6016
|
+
condition?: string;
|
|
6017
|
+
/**
|
|
6018
|
+
* The number of classes.
|
|
6019
|
+
* @format int32
|
|
6020
|
+
*/
|
|
6021
|
+
classes?: number;
|
|
6022
|
+
/**
|
|
6023
|
+
* Sets required values precision.
|
|
6024
|
+
* @format int32
|
|
6025
|
+
*/
|
|
6026
|
+
precision?: number;
|
|
6027
|
+
/**
|
|
6028
|
+
* Classification method.
|
|
6029
|
+
*
|
|
6030
|
+
* naturalBreaks
|
|
6031
|
+
*
|
|
6032
|
+
* equalInterval
|
|
6033
|
+
*
|
|
6034
|
+
* quantile
|
|
6035
|
+
*/
|
|
6036
|
+
type?: ClassificationType;
|
|
5998
6037
|
}
|
|
5999
6038
|
/**
|
|
6000
6039
|
* Feature layer rendering style.
|
|
@@ -6043,7 +6082,7 @@ export interface GetTableListParams {
|
|
|
6043
6082
|
*/
|
|
6044
6083
|
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
6045
6084
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6046
|
-
export interface
|
|
6085
|
+
export interface DeleteResourcesParams6 {
|
|
6047
6086
|
/** Resource names. */
|
|
6048
6087
|
names?: string[];
|
|
6049
6088
|
}
|
|
@@ -6148,7 +6187,7 @@ export interface GetCapabilitiesParams {
|
|
|
6148
6187
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6149
6188
|
AcceptFormats?: string[];
|
|
6150
6189
|
}
|
|
6151
|
-
export interface
|
|
6190
|
+
export interface GetCapabilitiesParams2 {
|
|
6152
6191
|
/** Output format of service metadata. */
|
|
6153
6192
|
Format?: string;
|
|
6154
6193
|
/** Must be WMS. */
|
|
@@ -2125,7 +2125,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2125
2125
|
} = _ref15,
|
|
2126
2126
|
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
2127
2127
|
|
|
2128
|
-
return this.http.get("/layers/" + name + "/classify", query).
|
|
2128
|
+
return this.http.get("/layers/" + name + "/classify", query).json();
|
|
2129
2129
|
}
|
|
2130
2130
|
/**
|
|
2131
2131
|
* No description
|