@evergis/api 3.0.58 → 3.0.59
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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { GetCapabilitiesParams } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version v0.6.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class WfsServerService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags WfsServer
|
|
13
|
+
* @name GetCapabilities
|
|
14
|
+
* @operationId WfsServerController_GetCapabilities
|
|
15
|
+
* @summary Returns get capabilities of wfs service.
|
|
16
|
+
* @request GET:/wfs
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams): Promise<void>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ProcessRequestParams } from './data-contracts';
|
|
2
|
+
import { Service } from './Service';
|
|
3
|
+
/**
|
|
4
|
+
* @title Spatial Processing Core API
|
|
5
|
+
* @version v0.6.0
|
|
6
|
+
* @baseUrl /sp
|
|
7
|
+
*/
|
|
8
|
+
export declare class WmtsService extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* No description
|
|
11
|
+
*
|
|
12
|
+
* @tags Wmts
|
|
13
|
+
* @name ProcessRequest
|
|
14
|
+
* @operationId WmtsController_ProcessRequestAsync
|
|
15
|
+
* @summary WMTS Protocol endpoint.
|
|
16
|
+
* @request GET:/wmts
|
|
17
|
+
* @response `200` Success
|
|
18
|
+
*/
|
|
19
|
+
processRequest(query: ProcessRequestParams): Promise<void>;
|
|
20
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Generates unique identifier */
|
|
2
|
-
export declare const generateId: () => string;
|
|
2
|
+
export declare const generateId: (size?: number | undefined) => string;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.0.
|
|
2
|
+
"version": "3.0.59",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"nanoid": "^3.1.23",
|
|
43
43
|
"query-string": "^6.7.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "4c6ed9d90497a60af0e72505ac9a883b33de3451"
|
|
46
46
|
}
|