@openeo/js-client 2.8.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 +1 -1
- package/openeo.d.ts +103 -63
- package/openeo.js +8570 -6046
- package/openeo.min.js +1 -1
- package/package.json +3 -2
- package/src/capabilities.js +45 -0
- package/src/connection.js +13 -1
- package/src/openeo.js +1 -1
- package/src/typedefs.js +17 -0
package/src/typedefs.js
CHANGED
|
@@ -195,6 +195,23 @@
|
|
|
195
195
|
* @type {object.<string, *>}
|
|
196
196
|
*/
|
|
197
197
|
|
|
198
|
+
/**
|
|
199
|
+
* A specific processing parameter.
|
|
200
|
+
*
|
|
201
|
+
* @typedef ProcessingParameter
|
|
202
|
+
* @type {object.<string, *>}
|
|
203
|
+
*/
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* All types of processing parameters.
|
|
207
|
+
*
|
|
208
|
+
* @typedef ProcessingParameters
|
|
209
|
+
* @type {object}
|
|
210
|
+
* @property {Array.<ProcessingParameter>} create_job_parameters Processing parameters for batch jobs.
|
|
211
|
+
* @property {Array.<ProcessingParameter>} create_service_parameters Processing parameters for secondary web services.
|
|
212
|
+
* @property {Array.<ProcessingParameter>} create_synchronous_parameters Processing parameters for synchronous processing.
|
|
213
|
+
*/
|
|
214
|
+
|
|
198
215
|
/**
|
|
199
216
|
* A back-end in the federation.
|
|
200
217
|
*
|