@openeo/js-client 2.7.0 → 2.9.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/README.md +2 -2
- package/openeo.d.ts +293 -128
- package/openeo.js +8575 -6014
- package/openeo.min.js +1 -1
- package/package.json +3 -2
- package/src/capabilities.js +77 -1
- package/src/connection.js +13 -1
- package/src/openeo.js +1 -1
- package/src/pages.js +1 -1
- package/src/typedefs.js +21 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ JavaScript/TypeScript client for the openEO API.
|
|
|
4
4
|
|
|
5
5
|
* [Documentation](https://open-eo.github.io/openeo-js-client/latest/).
|
|
6
6
|
|
|
7
|
-
The version of this client is **2.
|
|
7
|
+
The version of this client is **2.9.0** and supports **openEO API versions 1.x.x**.
|
|
8
8
|
Legacy versions are available as releases.
|
|
9
9
|
See the [CHANGELOG](CHANGELOG.md) for recent changes.
|
|
10
10
|
|
|
@@ -32,7 +32,7 @@ To install it in a NodeJS environment run:
|
|
|
32
32
|
Afterwards, you can import the package:
|
|
33
33
|
`const { OpenEO } = require('@openeo/js-client');`
|
|
34
34
|
|
|
35
|
-
### TypeScript
|
|
35
|
+
### TypeScript
|
|
36
36
|
|
|
37
37
|
Warning: The TypeScript integration is still **experimental**! Please help us improve it by opening issues or pull requests.
|
|
38
38
|
|