@google/earthengine 1.6.0 → 1.6.1
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 +139 -142
- package/build/ee_api_js.js +16 -16
- package/build/ee_api_js_debug.js +116 -120
- package/build/ee_api_js_npm.js +139 -142
- package/build/main.js +139 -142
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/eeapiclient/domain_object.ts +1 -3
package/package.json
CHANGED
package/src/apiclient.js
CHANGED
|
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues.index');
|
|
|
24
24
|
/** @namespace */
|
|
25
25
|
const apiclient = {};
|
|
26
26
|
|
|
27
|
-
const API_CLIENT_VERSION = '1.6.
|
|
27
|
+
const API_CLIENT_VERSION = '1.6.1';
|
|
28
28
|
|
|
29
29
|
exports.VERSION = apiVersion.VERSION;
|
|
30
30
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
|
@@ -426,9 +426,7 @@ function deepCopyValue<T extends {}>(
|
|
|
426
426
|
} else if (value instanceof NullClass) {
|
|
427
427
|
deserialized = null as unknown as {};
|
|
428
428
|
} else if (typeof value === 'object') {
|
|
429
|
-
|
|
430
|
-
// tslint:disable-next-line:ban-types no-unnecessary-type-assertion
|
|
431
|
-
deserialized = JSON.parse(JSON.stringify(value)) as AnyDuringMigration;
|
|
429
|
+
deserialized = JSON.parse(JSON.stringify(value)) as object;
|
|
432
430
|
} else {
|
|
433
431
|
deserialized = value;
|
|
434
432
|
}
|