@google/earthengine 0.1.407 → 0.1.409

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.407",
3
+ "version": "0.1.409",
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.407';
27
+ const API_CLIENT_VERSION = '0.1.409';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
@@ -4,7 +4,6 @@ goog.module.declareLegacyNamespace();
4
4
  const AbstractTile = goog.require('ee.layers.AbstractTile');
5
5
  const AbstractTileSource = goog.require('ee.layers.AbstractTileSource');
6
6
  const PriorityPool = goog.require('goog.structs.PriorityPool');
7
- const Profiler = goog.requireType('ee.data.Profiler');
8
7
  const data = goog.require('ee.data');
9
8
  const events = goog.require('goog.events');
10
9
 
@@ -18,7 +17,7 @@ const EarthEngineTileSource = class extends AbstractTileSource {
18
17
  /**
19
18
  * @param {!data.RawMapId} mapId The EE map ID for fetching this layer's
20
19
  * tiles.
21
- * @param {data.Profiler=} opt_profiler The profiler to send map tile
20
+ * @param {?data.Profiler=} opt_profiler The profiler to send map tile
22
21
  * calculation cost to, if any.
23
22
  * @param {number=} opt_parallelism The number of map tiles to fetch
24
23
  * concurrently.