@evergis/api 5.0.7 → 5.0.9-alpha.0
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__/CatalogService.d.ts +12 -0
- package/dist/__generated__/EqlService.d.ts +2 -2
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/SecurityService.d.ts +0 -24
- package/dist/__generated__/data-contracts.d.ts +181 -332
- package/dist/api.esm.js +2308 -2320
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +2307 -2319
- package/dist/index.js.map +1 -1
- package/dist/services/Layers.d.ts +1 -1
- package/package.json +2 -2
|
@@ -270,6 +270,18 @@ export declare class CatalogService extends Service {
|
|
|
270
270
|
* @response `200` OK
|
|
271
271
|
*/
|
|
272
272
|
getFile(resourceId: string): Promise<Blob>;
|
|
273
|
+
/**
|
|
274
|
+
* No description
|
|
275
|
+
*
|
|
276
|
+
* @tags Catalog
|
|
277
|
+
* @name DownloadFile
|
|
278
|
+
* @operationId CatalogController_DownloadFile
|
|
279
|
+
* @summary Download file.
|
|
280
|
+
* @request GET:/resources/download/{resourceId}
|
|
281
|
+
* @secure
|
|
282
|
+
* @response `200` OK
|
|
283
|
+
*/
|
|
284
|
+
downloadFile(resourceId: string): Promise<Blob>;
|
|
273
285
|
/**
|
|
274
286
|
* No description
|
|
275
287
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Service } from './Service';
|
|
2
|
-
import {
|
|
2
|
+
import { AttributeConfigurationDc, AvailiableValuesDc, CalculatedAttributeConfigurationDc, EqlDependenciesDc, EqlRequestDc, EqlResourceReferencesDc, GeometryAttributeConfigurationDc, GetAvailiableLayerParametersParams, GetLayerParameters1Params, GetLayerParametersParams, GetPagedQueryResultParams, GetQueryHistoryParams, GetVectorTileParams, PagedFeaturesListDc, PagedListQueryHistoryDc, RemoveLayerParameterValueParams, SetLayerParameterValueParams, SetLayerParametersParams, SetLayerParametersPayload, StringAttributeConfigurationDc } from './data-contracts';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
5
|
* @version 1.5.1.0
|
|
@@ -29,7 +29,7 @@ export declare class EqlService extends Service {
|
|
|
29
29
|
* @secure
|
|
30
30
|
* @response `200` OK
|
|
31
31
|
*/
|
|
32
|
-
getQueryDescription(data: EqlRequestDc): Promise<Record<string,
|
|
32
|
+
getQueryDescription(data: EqlRequestDc): Promise<Record<string, AttributeConfigurationDc | CalculatedAttributeConfigurationDc | GeometryAttributeConfigurationDc | StringAttributeConfigurationDc>>;
|
|
33
33
|
/**
|
|
34
34
|
* No description
|
|
35
35
|
*
|
|
@@ -123,9 +123,9 @@ export declare class LayersService extends Service {
|
|
|
123
123
|
* @summary Initialize a new instance of service by given name.
|
|
124
124
|
* @request GET:/layers/{name}/reload
|
|
125
125
|
* @secure
|
|
126
|
-
* @response `
|
|
126
|
+
* @response `200` OK
|
|
127
127
|
*/
|
|
128
|
-
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc>;
|
|
128
|
+
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc>;
|
|
129
129
|
/**
|
|
130
130
|
* No description
|
|
131
131
|
*
|
|
@@ -90,30 +90,6 @@ export declare class SecurityService extends Service {
|
|
|
90
90
|
* @response `200` OK
|
|
91
91
|
*/
|
|
92
92
|
setPolicy(data: PolicyDc): Promise<void>;
|
|
93
|
-
/**
|
|
94
|
-
* No description
|
|
95
|
-
*
|
|
96
|
-
* @tags SecurityService
|
|
97
|
-
* @name OldCheckLimits
|
|
98
|
-
* @operationId SecurityServiceController_OldCheckLimits
|
|
99
|
-
* @summary Get limits of workspace.
|
|
100
|
-
* @request GET:/resources/checkLimits
|
|
101
|
-
* @secure
|
|
102
|
-
* @response `200` OK
|
|
103
|
-
*/
|
|
104
|
-
oldCheckLimits(): Promise<WorkspaceLimitsDc>;
|
|
105
|
-
/**
|
|
106
|
-
* No description
|
|
107
|
-
*
|
|
108
|
-
* @tags SecurityService
|
|
109
|
-
* @name OldCheckLimits1
|
|
110
|
-
* @operationId SecurityServiceController_OldCheckLimits_1
|
|
111
|
-
* @summary Get limits of workspace.
|
|
112
|
-
* @request GET:/resources/checkLimits/{userName}
|
|
113
|
-
* @secure
|
|
114
|
-
* @response `200` OK
|
|
115
|
-
*/
|
|
116
|
-
oldCheckLimits1(userName: string): Promise<WorkspaceLimitsDc>;
|
|
117
93
|
/**
|
|
118
94
|
* No description
|
|
119
95
|
*
|