@evergis/api 4.1.1 → 4.1.2
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/Api.d.ts +11 -11
- package/dist/EventEmitter.d.ts +11 -0
- package/dist/__generated__/AccountService.d.ts +12 -0
- package/dist/__generated__/DataSourceService.d.ts +30 -6
- package/dist/__generated__/EqlService.d.ts +1 -13
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +50 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +124 -257
- package/dist/api.cjs.development.js +1157 -469
- 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 +1178 -480
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Notification.d.ts +3 -3
- package/dist/services/Projects.d.ts +1 -1
- package/package.json +2 -3
- package/dist/__generated__/WmsServerService.d.ts +0 -69
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { NotificationService } from "../__generated__/NotificationService";
|
|
2
|
+
import { Api } from "../Api";
|
|
3
|
+
import { IHttpClient } from "../__generated__/HttpClient";
|
|
4
4
|
declare type NotificationHandler<Data, Result> = (event: NotificationEvent<Data>) => Result;
|
|
5
5
|
export declare enum ConnectionStatus {
|
|
6
6
|
Initialized = "Initialized",
|
|
@@ -5,7 +5,7 @@ export declare class Projects extends ProjectsService implements ResourceService
|
|
|
5
5
|
getProjectInfos(projects: string[]): Promise<ExtendedProjectInfoDc[]>;
|
|
6
6
|
getProjectsDeps(proejcts: string[]): Promise<ResourceDependenciesDc[]>;
|
|
7
7
|
findOne(name: string): Promise<ExtendedProjectInfoDc>;
|
|
8
|
-
findAll(params: GetProjectsListParams): Promise<import("../__generated__/data-contracts").PagedListProjectInfoDc
|
|
8
|
+
findAll(params: GetProjectsListParams): Promise<import("../__generated__/data-contracts").PagedListProjectInfoDc>;
|
|
9
9
|
create(resource: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
|
|
10
10
|
update(resource: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
|
|
11
11
|
remove(name: string): Promise<string>;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.1.
|
|
2
|
+
"version": "4.1.2",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -33,11 +33,10 @@
|
|
|
33
33
|
"author": "Everpoint",
|
|
34
34
|
"module": "dist/api.esm.js",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@evergis/event-emitter": "^1.2.1",
|
|
37
36
|
"@microsoft/signalr": "^6.0.6",
|
|
38
37
|
"ky": "^1.7.4",
|
|
39
38
|
"nanoid": "^3.1.23",
|
|
40
39
|
"query-string": "^6.7.0"
|
|
41
40
|
},
|
|
42
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "43e91a1806ad5db263cccf74daac5fa2065c3815"
|
|
43
42
|
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { GetCapabilities1Params, GetCapabilitiesParams7, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class WmsServerService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags WmsServer
|
|
13
|
-
* @name GetCapabilities
|
|
14
|
-
* @operationId WmsServerController_GetCapabilities
|
|
15
|
-
* @summary WMS GetCapabilities endpoint.
|
|
16
|
-
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
|
-
* @secure
|
|
18
|
-
* @response `200` OK
|
|
19
|
-
*/
|
|
20
|
-
getCapabilities(query: GetCapabilitiesParams7): Promise<void>;
|
|
21
|
-
/**
|
|
22
|
-
* No description
|
|
23
|
-
*
|
|
24
|
-
* @tags WmsServer
|
|
25
|
-
* @name GetMap
|
|
26
|
-
* @operationId WmsServerController_GetMap
|
|
27
|
-
* @summary WMS GetMap endpoint.
|
|
28
|
-
* @request GET:/wms#REQUEST=GetMap
|
|
29
|
-
* @secure
|
|
30
|
-
* @response `200` OK
|
|
31
|
-
*/
|
|
32
|
-
getMap(query: GetMapParams): Promise<void>;
|
|
33
|
-
/**
|
|
34
|
-
* No description
|
|
35
|
-
*
|
|
36
|
-
* @tags WmsServer
|
|
37
|
-
* @name GetFeatureInfo
|
|
38
|
-
* @operationId WmsServerController_GetFeatureInfo
|
|
39
|
-
* @summary WMS GetFeatureInfo entrypoint.
|
|
40
|
-
* @request GET:/wms#REQUEST=GetFeatureInfo
|
|
41
|
-
* @secure
|
|
42
|
-
* @response `200` OK
|
|
43
|
-
*/
|
|
44
|
-
getFeatureInfo(query: GetFeatureInfoParams): Promise<void>;
|
|
45
|
-
/**
|
|
46
|
-
* No description
|
|
47
|
-
*
|
|
48
|
-
* @tags WmsServer
|
|
49
|
-
* @name GetLegendGraphic
|
|
50
|
-
* @operationId WmsServerController_GetLegendGraphic
|
|
51
|
-
* @summary WMS GetLegend entrypoint.
|
|
52
|
-
* @request GET:/wms#REQUEST=GetLegendGraphic
|
|
53
|
-
* @secure
|
|
54
|
-
* @response `200` OK
|
|
55
|
-
*/
|
|
56
|
-
getLegendGraphic(query: GetLegendGraphicParams): Promise<void>;
|
|
57
|
-
/**
|
|
58
|
-
* No description
|
|
59
|
-
*
|
|
60
|
-
* @tags WmsServer
|
|
61
|
-
* @name GetCapabilities1
|
|
62
|
-
* @operationId WmsServerController_GetCapabilities_1
|
|
63
|
-
* @summary WMS GetCapabilities endpoint.
|
|
64
|
-
* @request GET:/wms/{name}
|
|
65
|
-
* @secure
|
|
66
|
-
* @response `200` OK
|
|
67
|
-
*/
|
|
68
|
-
getCapabilities1({ name, ...query }: GetCapabilities1Params): Promise<void>;
|
|
69
|
-
}
|