@evergis/api 4.1.1 → 4.1.3

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.
@@ -1,6 +1,6 @@
1
- import { IHttpClient } from '../__generated__/HttpClient';
2
- import { NotificationService } from '../__generated__/NotificationService';
3
- import { Api } from '../Api';
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 | import("../__generated__/data-contracts").ProjectsListDc>;
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.1",
2
+ "version": "4.1.3",
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": "a09121c280e395b08d0c1f9f98d8db13ae0a2017"
41
+ "gitHead": "bc8514e5d1b88719a3f4b0d85d3dc4e55f4737cc"
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
- }