@evergis/api 3.0.75 → 3.0.76
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__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +14 -3
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +12 -4
- package/dist/api.cjs.development.js +18 -2
- 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 +18 -2
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams3, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -82,7 +82,7 @@ export declare class ProjectsService extends Service {
|
|
|
82
82
|
* @request DELETE:/projects
|
|
83
83
|
* @response `200` Success
|
|
84
84
|
*/
|
|
85
|
-
deleteResources(query:
|
|
85
|
+
deleteResources(query: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
|
|
86
86
|
/**
|
|
87
87
|
* No description
|
|
88
88
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -24,8 +24,19 @@ export declare class StatisticService extends Service {
|
|
|
24
24
|
* @name Classify
|
|
25
25
|
* @operationId StatisticController_Classify
|
|
26
26
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
27
|
-
* @request GET:/classify
|
|
27
|
+
* @request GET:/statistics/classify
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
classify(query:
|
|
30
|
+
classify(query: ClassifyParams6): Promise<ClassifyDc>;
|
|
31
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags Statistic
|
|
35
|
+
* @name SumOfProduct
|
|
36
|
+
* @operationId StatisticController_SumOfProduct
|
|
37
|
+
* @summary Sum of product.
|
|
38
|
+
* @request GET:/statistics/sumOfProduct
|
|
39
|
+
* @response `200` Success
|
|
40
|
+
*/
|
|
41
|
+
sumOfProduct(query: SumOfProductParams): Promise<StatisticsDc>;
|
|
31
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams1, 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: DeleteResourcesParams1): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams5, 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: GetCapabilitiesParams5): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -6348,7 +6348,7 @@ export interface GetProjectsListParams {
|
|
|
6348
6348
|
*/
|
|
6349
6349
|
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
6350
6350
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6351
|
-
export interface
|
|
6351
|
+
export interface DeleteResourcesParams3 {
|
|
6352
6352
|
/** Resource names. */
|
|
6353
6353
|
names?: string[];
|
|
6354
6354
|
}
|
|
@@ -6540,7 +6540,7 @@ export interface StatisticsDbParams {
|
|
|
6540
6540
|
/** Type of required statistic function. */
|
|
6541
6541
|
types?: AggregationFunction[];
|
|
6542
6542
|
}
|
|
6543
|
-
export interface
|
|
6543
|
+
export interface ClassifyParams6 {
|
|
6544
6544
|
/** Layer name. */
|
|
6545
6545
|
name?: string;
|
|
6546
6546
|
/** Attribute name. */
|
|
@@ -6578,6 +6578,14 @@ export interface ClassifyParams3 {
|
|
|
6578
6578
|
*/
|
|
6579
6579
|
attributeType?: ClassifyAttributeType;
|
|
6580
6580
|
}
|
|
6581
|
+
export interface SumOfProductParams {
|
|
6582
|
+
/** Layer name. */
|
|
6583
|
+
name?: string;
|
|
6584
|
+
/** Attributes to aggregate. */
|
|
6585
|
+
attributes?: string[];
|
|
6586
|
+
/** Layer condition. */
|
|
6587
|
+
condition?: string;
|
|
6588
|
+
}
|
|
6581
6589
|
/**
|
|
6582
6590
|
* Feature layer rendering style.
|
|
6583
6591
|
*/
|
|
@@ -6633,7 +6641,7 @@ export interface GetTableListParams {
|
|
|
6633
6641
|
*/
|
|
6634
6642
|
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
6635
6643
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6636
|
-
export interface
|
|
6644
|
+
export interface DeleteResourcesParams1 {
|
|
6637
6645
|
/** Resource names. */
|
|
6638
6646
|
names?: string[];
|
|
6639
6647
|
}
|
|
@@ -6738,7 +6746,7 @@ export interface GetCapabilitiesParams {
|
|
|
6738
6746
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6739
6747
|
AcceptFormats?: string[];
|
|
6740
6748
|
}
|
|
6741
|
-
export interface
|
|
6749
|
+
export interface GetCapabilitiesParams5 {
|
|
6742
6750
|
/** Output format of service metadata. */
|
|
6743
6751
|
Format?: string;
|
|
6744
6752
|
/** Must be WMS. */
|
|
@@ -5548,14 +5548,30 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
5548
5548
|
* @name Classify
|
|
5549
5549
|
* @operationId StatisticController_Classify
|
|
5550
5550
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
5551
|
-
* @request GET:/classify
|
|
5551
|
+
* @request GET:/statistics/classify
|
|
5552
5552
|
* @response `200` Success
|
|
5553
5553
|
*/
|
|
5554
5554
|
|
|
5555
5555
|
}, {
|
|
5556
5556
|
key: "classify",
|
|
5557
5557
|
value: function classify(query) {
|
|
5558
|
-
return this.http.get("/classify", query).json();
|
|
5558
|
+
return this.http.get("/statistics/classify", query).json();
|
|
5559
|
+
}
|
|
5560
|
+
/**
|
|
5561
|
+
* No description
|
|
5562
|
+
*
|
|
5563
|
+
* @tags Statistic
|
|
5564
|
+
* @name SumOfProduct
|
|
5565
|
+
* @operationId StatisticController_SumOfProduct
|
|
5566
|
+
* @summary Sum of product.
|
|
5567
|
+
* @request GET:/statistics/sumOfProduct
|
|
5568
|
+
* @response `200` Success
|
|
5569
|
+
*/
|
|
5570
|
+
|
|
5571
|
+
}, {
|
|
5572
|
+
key: "sumOfProduct",
|
|
5573
|
+
value: function sumOfProduct(query) {
|
|
5574
|
+
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
5559
5575
|
}
|
|
5560
5576
|
}]);
|
|
5561
5577
|
|