@openeo/js-client 2.1.0 → 2.4.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 +4 -3
- package/openeo.d.ts +194 -136
- package/openeo.js +4973 -7632
- package/openeo.min.js +1 -1
- package/package.json +7 -6
- package/src/authprovider.js +1 -0
- package/src/builder/builder.js +3 -3
- package/src/builder/formula.js +1 -1
- package/src/connection.js +110 -31
- package/src/job.js +6 -6
- package/src/oidcprovider.js +24 -7
- package/src/openeo.js +8 -3
- package/src/service.js +8 -8
- package/src/userfile.js +3 -2
- package/src/userprocess.js +7 -7
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
JavaScript/TypeScript client for the openEO API.
|
|
4
4
|
|
|
5
|
-
* [Documentation](https://open-eo.github.io/openeo-js-client/
|
|
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.4.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
|
|
|
@@ -20,6 +20,7 @@ To use it in a browser environment simply add the following code to your HTML fi
|
|
|
20
20
|
```html
|
|
21
21
|
<script src="https://cdn.jsdelivr.net/npm/axios@0.21/dist/axios.min.js"></script>
|
|
22
22
|
<script src="https://cdn.jsdelivr.net/npm/oidc-client@1/dist/oidc-client.min.js"></script> <!-- Only required if you'd like to enable authentication via OpenID Connect -->
|
|
23
|
+
<script src="https://cdn.jsdelivr.net/npm/multihashes@3/src/index.min.js"></script> <!-- Only required if you have checksums in the STAC metadata -->
|
|
23
24
|
<script src="https://cdn.jsdelivr.net/npm/@openeo/js-client@2/openeo.min.js"></script>
|
|
24
25
|
```
|
|
25
26
|
|
|
@@ -53,7 +54,7 @@ In Node.js:
|
|
|
53
54
|
In Typescript:
|
|
54
55
|
* [Basic Discovery (promises)](examples/typescript/discovery.ts)
|
|
55
56
|
|
|
56
|
-
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/
|
|
57
|
+
More information can be found in the [documentation](https://open-eo.github.io/openeo-js-client/latest/).
|
|
57
58
|
|
|
58
59
|
## Development
|
|
59
60
|
|