@openeo/js-client 2.3.1 → 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/src/service.js CHANGED
@@ -39,55 +39,55 @@ class Service extends BaseEntity {
39
39
  * The process chain to be executed.
40
40
  * @public
41
41
  * @readonly
42
- * @type {Process}
42
+ * @type {?Process}
43
43
  */
44
44
  this.process = undefined;
45
45
  /**
46
46
  * URL at which the secondary web service is accessible
47
47
  * @public
48
48
  * @readonly
49
- * @type {string}
49
+ * @type {?string}
50
50
  */
51
51
  this.url = undefined;
52
52
  /**
53
53
  * Web service type (protocol / standard) that is exposed.
54
54
  * @public
55
55
  * @readonly
56
- * @type {string}
56
+ * @type {?string}
57
57
  */
58
58
  this.type = undefined;
59
59
  /**
60
60
  * @public
61
61
  * @readonly
62
- * @type {boolean}
62
+ * @type {?boolean}
63
63
  */
64
64
  this.enabled = undefined;
65
65
  /**
66
66
  * Map of configuration settings, i.e. the setting names supported by the secondary web service combined with actual values.
67
67
  * @public
68
68
  * @readonly
69
- * @type {object.<string, *>}
69
+ * @type {?object.<string, *>}
70
70
  */
71
71
  this.configuration = undefined;
72
72
  /**
73
73
  * Additional attributes of the secondary web service, e.g. available layers for a WMS based on the bands in the underlying GeoTiff.
74
74
  * @public
75
75
  * @readonly
76
- * @type {object.<string, *>}
76
+ * @type {?object.<string, *>}
77
77
  */
78
78
  this.attributes = undefined;
79
79
  /**
80
80
  * Date and time of creation, formatted as a RFC 3339 date-time.
81
81
  * @public
82
82
  * @readonly
83
- * @type {string}
83
+ * @type {?string}
84
84
  */
85
85
  this.created = undefined;
86
86
  /**
87
87
  * The billing plan to process and charge the service with.
88
88
  * @public
89
89
  * @readonly
90
- * @type {string}
90
+ * @type {?string}
91
91
  */
92
92
  this.plan = undefined;
93
93
  /**
@@ -52,7 +52,7 @@ class UserProcess extends BaseEntity {
52
52
  * A list of categories.
53
53
  * @public
54
54
  * @readonly
55
- * @type {Array.<string>}
55
+ * @type {?Array.<string>}
56
56
  */
57
57
  this.categories = undefined;
58
58
  /**
@@ -74,40 +74,40 @@ class UserProcess extends BaseEntity {
74
74
  * Specifies that the process or parameter is deprecated with the potential to be removed in any of the next versions.
75
75
  * @public
76
76
  * @readonly
77
- * @type {boolean}
77
+ * @type {?boolean}
78
78
  */
79
79
  this.deprecated = undefined;
80
80
  /**
81
81
  * Declares the process or parameter to be experimental, which means that it is likely to change or may produce unpredictable behaviour.
82
82
  * @public
83
83
  * @readonly
84
- * @type {boolean}
84
+ * @type {?boolean}
85
85
  */
86
86
  this.experimental = undefined;
87
87
  /**
88
88
  * Declares any exceptions (errors) that might occur during execution of this process.
89
89
  * @public
90
90
  * @readonly
91
- * @type {object.<string, *>}
91
+ * @type {?object.<string, *>}
92
92
  */
93
93
  this.exceptions = undefined;
94
94
  /**
95
95
  * @public
96
96
  * @readonly
97
- * @type {Array.<object.<string, *>>}
97
+ * @type {?Array.<object.<string, *>>}
98
98
  */
99
99
  this.examples = undefined;
100
100
  /**
101
101
  * Links related to this process.
102
102
  * @public
103
103
  * @readonly
104
- * @type {Array.<Link>}
104
+ * @type {?Array.<Link>}
105
105
  */
106
106
  this.links = undefined;
107
107
  /**
108
108
  * @public
109
109
  * @readonly
110
- * @type {object.<string, *>}
110
+ * @type {?object.<string, *>}
111
111
  */
112
112
  this.processGraph = undefined;
113
113
  }