@google/earthengine 0.1.398 → 0.1.400
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/build/browser.js +245 -354
- package/build/ee_api_js.js +597 -596
- package/build/ee_api_js_debug.js +223 -332
- package/build/ee_api_js_npm.js +245 -354
- package/build/main.js +245 -354
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/eeapiclient/promise_request_service.ts +1 -1
- package/src/geometry.js +2 -2
- package/src/profiler.js +2 -1
- package/.tmp/BUILD +0 -699
- package/.tmp/METADATA +0 -23
- package/.tmp/VERSION_BUILD +0 -47
package/package.json
CHANGED
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.
|
|
27
|
+
const API_CLIENT_VERSION = '0.1.400';
|
|
28
28
|
|
|
29
29
|
exports.VERSION = apiVersion.VERSION;
|
|
30
30
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
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
|
|
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
|
|
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
|
|
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;
|