@evergis/api 5.0.8 → 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/LICENSE +21 -21
- package/README.md +12 -12
- 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
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Everpoint
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Everpoint
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# @evergis/api
|
|
2
|
-
|
|
3
|
-
Библиотека API.
|
|
4
|
-
|
|
5
|
-
### Генерирование API
|
|
6
|
-
|
|
7
|
-
```shell
|
|
8
|
-
$ yarn generate
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы,
|
|
12
|
-
размещенные в директории `src/__generated__`!
|
|
1
|
+
# @evergis/api
|
|
2
|
+
|
|
3
|
+
Библиотека API.
|
|
4
|
+
|
|
5
|
+
### Генерирование API
|
|
6
|
+
|
|
7
|
+
```shell
|
|
8
|
+
$ yarn generate
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы,
|
|
12
|
+
размещенные в директории `src/__generated__`!
|
|
@@ -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
|
*
|