@evergis/api 3.0.181 → 3.0.183
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/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/Api.d.ts +4 -0
- package/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +1 -1
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/CamerasService.d.ts +13 -2
- package/dist/__generated__/CatalogService.d.ts +119 -0
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/EqlTestService.d.ts +3 -3
- package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/GeneralService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/IceRouterService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +47 -3
- package/dist/__generated__/NamespaceService.d.ts +1 -1
- package/dist/__generated__/NavigationService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/QueryTokenAccessService.d.ts +52 -0
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/S3Service.d.ts +1 -1
- package/dist/__generated__/SchedulerService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +1 -1
- package/dist/__generated__/SpatialReferencesService.d.ts +1 -1
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +35 -2
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/__generated__/SymbolStorageService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +3 -3
- package/dist/__generated__/TagsService.d.ts +3 -3
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/UniversalSearchService.d.ts +1 -1
- package/dist/__generated__/VectorTileService.d.ts +1 -1
- package/dist/__generated__/WfsServerService.d.ts +1 -1
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +613 -546
- package/dist/api.cjs.development.js +474 -50
- 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 +698 -238
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +5 -3
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
1
|
+
import { ClassifyDc, ClassifyParams6, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class StatisticService extends Service {
|
|
@@ -17,6 +17,17 @@ export declare class StatisticService extends Service {
|
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
19
|
statisticsDb(query: StatisticsDbParams): Promise<StatisticsDc>;
|
|
20
|
+
/**
|
|
21
|
+
* No description
|
|
22
|
+
*
|
|
23
|
+
* @tags Statistic
|
|
24
|
+
* @name StatisticsDb1
|
|
25
|
+
* @operationId StatisticController_StatisticsDb_1
|
|
26
|
+
* @summary Calculates statistics for layer attribute.
|
|
27
|
+
* @request POST:/statistics
|
|
28
|
+
* @response `200` Success
|
|
29
|
+
*/
|
|
30
|
+
statisticsDb1(data: GetStatisticsDc): Promise<StatisticsDc>;
|
|
20
31
|
/**
|
|
21
32
|
* No description
|
|
22
33
|
*
|
|
@@ -28,6 +39,17 @@ export declare class StatisticService extends Service {
|
|
|
28
39
|
* @response `200` Success
|
|
29
40
|
*/
|
|
30
41
|
classify(query: ClassifyParams6): Promise<ClassifyDc>;
|
|
42
|
+
/**
|
|
43
|
+
* No description
|
|
44
|
+
*
|
|
45
|
+
* @tags Statistic
|
|
46
|
+
* @name Classify1
|
|
47
|
+
* @operationId StatisticController_Classify_1
|
|
48
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
49
|
+
* @request POST:/statistics/classify
|
|
50
|
+
* @response `200` Success
|
|
51
|
+
*/
|
|
52
|
+
classify1(data: GetClassifyDc): Promise<ClassifyDc>;
|
|
31
53
|
/**
|
|
32
54
|
* No description
|
|
33
55
|
*
|
|
@@ -39,4 +61,15 @@ export declare class StatisticService extends Service {
|
|
|
39
61
|
* @response `200` Success
|
|
40
62
|
*/
|
|
41
63
|
sumOfProduct(query: SumOfProductParams): Promise<StatisticsDc>;
|
|
64
|
+
/**
|
|
65
|
+
* No description
|
|
66
|
+
*
|
|
67
|
+
* @tags Statistic
|
|
68
|
+
* @name SumOfProduct1
|
|
69
|
+
* @operationId StatisticController_SumOfProduct_1
|
|
70
|
+
* @summary Sum of product.
|
|
71
|
+
* @request POST:/statistics/sumOfProduct
|
|
72
|
+
* @response `200` Success
|
|
73
|
+
*/
|
|
74
|
+
sumOfProduct1(data: GetSumOfProductDc): Promise<StatisticsDc>;
|
|
42
75
|
}
|
|
@@ -2,7 +2,7 @@ import { AddFontPayload, RemoveFontParams, StyleCreationResponseDc, StyleDc } fr
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class StyleService extends Service {
|
|
@@ -2,7 +2,7 @@ import { AccessControlListDc, CreateSymbolCategoryDc, CreateSymbolDc, GetSymbolC
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class SymbolStorageService extends Service {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams8, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class TablesService extends Service {
|
|
@@ -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: DeleteResourcesParams8): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GetAllParams2, PagedListTagInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class TagsService extends Service {
|
|
@@ -16,7 +16,7 @@ export declare class TagsService extends Service {
|
|
|
16
16
|
* @request GET:/tags
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getAll(query:
|
|
19
|
+
getAll(query: GetAllParams2): Promise<PagedListTagInfoDc>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -2,7 +2,7 @@ import { GetSearchResultParams, PagedListSearchResultDc, SearchResultDc } from '
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class UniversalSearchService extends Service {
|
|
@@ -2,7 +2,7 @@ import { GetCapabilitiesParams, GetPublicCapabilitiesParams, GetSharedCapabiliti
|
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class WfsServerService extends Service {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams9, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1
|
|
5
|
+
* @version 1.5.1.0
|
|
6
6
|
* @baseUrl /sp
|
|
7
7
|
*/
|
|
8
8
|
export declare class WmsServerService extends Service {
|
|
@@ -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: GetCapabilitiesParams9): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|