@google/earthengine 1.3.1 → 1.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/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 = '1.3.1';
27
+ const API_CLIENT_VERSION = '1.4.0';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
@@ -3,7 +3,7 @@ goog.module.declareLegacyNamespace();
3
3
 
4
4
  const AbstractTile = goog.require('ee.layers.AbstractTile');
5
5
  const AbstractTileSource = goog.require('ee.layers.AbstractTileSource');
6
- const ee = goog.require('ee');
6
+ const FeatureViewTilesKey = goog.requireType('ee.data.FeatureViewTilesKey');
7
7
 
8
8
  /**
9
9
  * A tile source for FeatureView tiles.
@@ -13,7 +13,7 @@ const ee = goog.require('ee');
13
13
  */
14
14
  const FeatureViewTileSource = class extends AbstractTileSource {
15
15
  /**
16
- * @param {!ee.data.FeatureViewTilesKey} tilesKey FeatureView tiles key for
16
+ * @param {!FeatureViewTilesKey} tilesKey FeatureView tiles key for
17
17
  * fetching this layer's tiles.
18
18
  */
19
19
  constructor(tilesKey) {