@google/earthengine 0.1.398 → 0.1.399

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "0.1.398",
3
+ "version": "0.1.399",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
package/src/apiclient.js CHANGED
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '0.1.398';
27
+ const API_CLIENT_VERSION = '0.1.399';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
@@ -19,5 +19,5 @@ export abstract class PromiseRequestService {
19
19
  );
20
20
  }
21
21
 
22
- abstract makeRequest(params: MakeRequestParams): Promise<{}>;
22
+ abstract makeRequest(params: MakeRequestParams): Promise<unknown>;
23
23
  }
package/src/geometry.js CHANGED
@@ -112,7 +112,7 @@ ee.Geometry = function(geoJson, opt_proj, opt_geodesic, opt_evenOdd) {
112
112
 
113
113
  /**
114
114
  * The coordinates of the geometry, up to 4 nested levels with numbers at
115
- * the last level. Null iff type is GeometryCollection.
115
+ * the last level. Null if and only if type is GeometryCollection.
116
116
  * @type {Array?}
117
117
  * @private
118
118
  */
@@ -121,7 +121,7 @@ ee.Geometry = function(geoJson, opt_proj, opt_geodesic, opt_evenOdd) {
121
121
  null;
122
122
 
123
123
  /**
124
- * The subgeometries, non-null iff type is GeometryCollection.
124
+ * The subgeometries, non-null if and only if type is GeometryCollection.
125
125
  * @type {Array?}
126
126
  * @private
127
127
  */
package/src/profiler.js CHANGED
@@ -46,7 +46,8 @@ ee.data.Profiler = class extends goog.events.EventTarget {
46
46
  this.isEnabled_ = false;
47
47
 
48
48
  /**
49
- * Non-null unique object iff we have a refresh request outstanding.
49
+ * Non-null unique object if and only if we have a refresh request
50
+ * outstanding.
50
51
  * @private {?Object}
51
52
  */
52
53
  this.lastRefreshToken_ = null;