@google/earthengine 0.1.408 → 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.
@@ -16,6 +16,7 @@ $jscomp.SIMPLE_FROUND_POLYFILL = !1;
16
16
  $jscomp.ISOLATE_POLYFILLS = !1;
17
17
  $jscomp.FORCE_POLYFILL_PROMISE = !1;
18
18
  $jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
19
+ $jscomp.INSTRUMENT_ASYNC_CONTEXT = !1;
19
20
  $jscomp.defineProperty = $jscomp.ASSUME_ES5 || typeof Object.defineProperties == "function" ? Object.defineProperty : function(target, property, descriptor) {
20
21
  if (target == Array.prototype || target == Object.prototype) {
21
22
  return target;
@@ -720,6 +721,27 @@ $jscomp.polyfill("Promise", function(NativePromise) {
720
721
  $jscomp.polyfill("Object.setPrototypeOf", function(orig) {
721
722
  return orig || $jscomp.setPrototypeOf;
722
723
  }, "es6", "es5");
724
+ $jscomp.polyfill("Symbol.dispose", function(orig) {
725
+ return orig ? orig : Symbol("Symbol.dispose");
726
+ }, "es_next", "es3");
727
+ $jscomp.polyfill("SuppressedError", function(orig) {
728
+ function SuppressedError(error, suppressed, message) {
729
+ if (!(this instanceof SuppressedError)) {
730
+ return new SuppressedError(error, suppressed, message);
731
+ }
732
+ var tmpError = Error(message);
733
+ "stack" in tmpError && (this.stack = tmpError.stack);
734
+ this.message = tmpError.message;
735
+ this.error = error;
736
+ this.suppressed = suppressed;
737
+ }
738
+ if (orig) {
739
+ return orig;
740
+ }
741
+ $jscomp.inherits(SuppressedError, Error);
742
+ SuppressedError.prototype.name = "SuppressedError";
743
+ return SuppressedError;
744
+ }, "es_next", "es3");
723
745
  $jscomp.iteratorFromArray = function(array, transform) {
724
746
  array instanceof String && (array += "");
725
747
  var i = 0, done = !1, iter = {next:function() {
@@ -1200,7 +1222,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
1200
1222
  return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
1201
1223
  };
1202
1224
  }, "es8", "es3");
1203
- var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_component_stacks__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1};
1225
+ var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_component_stacks__disable:!1, GoogFlags__client_only_wiz_direct_reactions__enable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1,
1226
+ GoogFlags__use_user_agent_client_hints__enable:!1};
1204
1227
  /*
1205
1228
 
1206
1229
  Copyright The Closure Library Authors.
@@ -1956,6 +1979,67 @@ module$exports$tslib.__classPrivateFieldIn = function(state, receiver) {
1956
1979
  }
1957
1980
  return typeof state === "function" ? receiver === state : state.has(receiver);
1958
1981
  };
1982
+ module$exports$tslib.__addDisposableResource = function(env, value, async) {
1983
+ if (value !== null && value !== void 0) {
1984
+ if (typeof value !== "object" && typeof value !== "function") {
1985
+ throw new TypeError("Object expected.");
1986
+ }
1987
+ var inner;
1988
+ if (async) {
1989
+ if (!Symbol.asyncDispose) {
1990
+ throw new TypeError("Symbol.asyncDispose is not defined.");
1991
+ }
1992
+ var dispose = value[Symbol.asyncDispose];
1993
+ }
1994
+ if (dispose === void 0) {
1995
+ if (!Symbol.dispose) {
1996
+ throw new TypeError("Symbol.dispose is not defined.");
1997
+ }
1998
+ dispose = value[Symbol.dispose];
1999
+ async && (inner = dispose);
2000
+ }
2001
+ if (typeof dispose !== "function") {
2002
+ throw new TypeError("Object not disposable.");
2003
+ }
2004
+ inner && (dispose = function() {
2005
+ try {
2006
+ inner.call(this);
2007
+ } catch (e) {
2008
+ return Promise.reject(e);
2009
+ }
2010
+ });
2011
+ env.stack.push({value:value, dispose:dispose, async:async});
2012
+ } else {
2013
+ async && env.stack.push({async:!0});
2014
+ }
2015
+ return value;
2016
+ };
2017
+ module$exports$tslib.__disposeResources = function(env) {
2018
+ function fail(e) {
2019
+ env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
2020
+ env.hasError = !0;
2021
+ }
2022
+ function next() {
2023
+ for (; env.stack.length;) {
2024
+ var rec = env.stack.pop();
2025
+ try {
2026
+ var result = rec.dispose && rec.dispose.call(rec.value);
2027
+ if (rec.async) {
2028
+ return Promise.resolve(result).then(next, function(e) {
2029
+ fail(e);
2030
+ return next();
2031
+ });
2032
+ }
2033
+ } catch (e) {
2034
+ fail(e);
2035
+ }
2036
+ }
2037
+ if (env.hasError) {
2038
+ throw env.error;
2039
+ }
2040
+ }
2041
+ return next();
2042
+ };
1959
2043
  var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
1960
2044
  module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
1961
2045
  };
@@ -6786,8 +6870,9 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles = !1;
6786
6870
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles = !1;
6787
6871
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
6788
6872
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
6789
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable = !1;
6873
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
6790
6874
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_component_stacks__disable = !1;
6875
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_direct_reactions__enable = !1;
6791
6876
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
6792
6877
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
6793
6878
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable = !1;
@@ -6796,8 +6881,10 @@ goog.flags = {};
6796
6881
  var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1, goog.FLAGS_STAGING_DEFAULT);
6797
6882
  goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable : goog.readFlagInternalDoNotUseOrElse(610401301, !1);
6798
6883
  goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
6799
- goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable : goog.readFlagInternalDoNotUseOrElse(188588736, goog.DEBUG);
6884
+ goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable) : goog.readFlagInternalDoNotUseOrElse(188588736,
6885
+ module$contents$goog$flags_STAGING);
6800
6886
  goog.flags.CLIENT_ONLY_WIZ_COMPONENT_STACKS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_component_stacks__disable : goog.readFlagInternalDoNotUseOrElse(628162879, !0);
6887
+ goog.flags.CLIENT_ONLY_WIZ_DIRECT_REACTIONS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_direct_reactions__enable : goog.readFlagInternalDoNotUseOrElse(641353869, !1);
6801
6888
  goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
6802
6889
  goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
6803
6890
  goog.flags.TESTONLY_STAGING_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable) : goog.readFlagInternalDoNotUseOrElse(2147483646, module$contents$goog$flags_STAGING);
@@ -18974,7 +19061,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
18974
19061
  ee.apiclient = {};
18975
19062
  var module$contents$ee$apiclient_apiclient = {};
18976
19063
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
18977
- ee.apiclient.API_CLIENT_VERSION = "0.1.408";
19064
+ ee.apiclient.API_CLIENT_VERSION = "0.1.409";
18978
19065
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
18979
19066
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
18980
19067
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19272,8 +19359,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19272
19359
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19273
19360
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19274
19361
  method = method || "POST";
19275
- var headers = {"Content-Type":contentType}, version = "0.1.408";
19276
- version === "0.1.408" && (version = "latest");
19362
+ var headers = {"Content-Type":contentType}, version = "0.1.409";
19363
+ version === "0.1.409" && (version = "latest");
19277
19364
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19278
19365
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19279
19366
  if (authToken != null) {
@@ -16,6 +16,7 @@ $jscomp.SIMPLE_FROUND_POLYFILL = !1;
16
16
  $jscomp.ISOLATE_POLYFILLS = !1;
17
17
  $jscomp.FORCE_POLYFILL_PROMISE = !1;
18
18
  $jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
19
+ $jscomp.INSTRUMENT_ASYNC_CONTEXT = !1;
19
20
  $jscomp.defineProperty = $jscomp.ASSUME_ES5 || typeof Object.defineProperties == "function" ? Object.defineProperty : function(target, property, descriptor) {
20
21
  if (target == Array.prototype || target == Object.prototype) {
21
22
  return target;
@@ -720,6 +721,27 @@ $jscomp.polyfill("Promise", function(NativePromise) {
720
721
  $jscomp.polyfill("Object.setPrototypeOf", function(orig) {
721
722
  return orig || $jscomp.setPrototypeOf;
722
723
  }, "es6", "es5");
724
+ $jscomp.polyfill("Symbol.dispose", function(orig) {
725
+ return orig ? orig : Symbol("Symbol.dispose");
726
+ }, "es_next", "es3");
727
+ $jscomp.polyfill("SuppressedError", function(orig) {
728
+ function SuppressedError(error, suppressed, message) {
729
+ if (!(this instanceof SuppressedError)) {
730
+ return new SuppressedError(error, suppressed, message);
731
+ }
732
+ var tmpError = Error(message);
733
+ "stack" in tmpError && (this.stack = tmpError.stack);
734
+ this.message = tmpError.message;
735
+ this.error = error;
736
+ this.suppressed = suppressed;
737
+ }
738
+ if (orig) {
739
+ return orig;
740
+ }
741
+ $jscomp.inherits(SuppressedError, Error);
742
+ SuppressedError.prototype.name = "SuppressedError";
743
+ return SuppressedError;
744
+ }, "es_next", "es3");
723
745
  $jscomp.iteratorFromArray = function(array, transform) {
724
746
  array instanceof String && (array += "");
725
747
  var i = 0, done = !1, iter = {next:function() {
@@ -1200,7 +1222,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
1200
1222
  return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
1201
1223
  };
1202
1224
  }, "es8", "es3");
1203
- var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_component_stacks__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1};
1225
+ var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_component_stacks__disable:!1, GoogFlags__client_only_wiz_direct_reactions__enable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1,
1226
+ GoogFlags__use_user_agent_client_hints__enable:!1};
1204
1227
  /*
1205
1228
 
1206
1229
  Copyright The Closure Library Authors.
@@ -1956,6 +1979,67 @@ module$exports$tslib.__classPrivateFieldIn = function(state, receiver) {
1956
1979
  }
1957
1980
  return typeof state === "function" ? receiver === state : state.has(receiver);
1958
1981
  };
1982
+ module$exports$tslib.__addDisposableResource = function(env, value, async) {
1983
+ if (value !== null && value !== void 0) {
1984
+ if (typeof value !== "object" && typeof value !== "function") {
1985
+ throw new TypeError("Object expected.");
1986
+ }
1987
+ var inner;
1988
+ if (async) {
1989
+ if (!Symbol.asyncDispose) {
1990
+ throw new TypeError("Symbol.asyncDispose is not defined.");
1991
+ }
1992
+ var dispose = value[Symbol.asyncDispose];
1993
+ }
1994
+ if (dispose === void 0) {
1995
+ if (!Symbol.dispose) {
1996
+ throw new TypeError("Symbol.dispose is not defined.");
1997
+ }
1998
+ dispose = value[Symbol.dispose];
1999
+ async && (inner = dispose);
2000
+ }
2001
+ if (typeof dispose !== "function") {
2002
+ throw new TypeError("Object not disposable.");
2003
+ }
2004
+ inner && (dispose = function() {
2005
+ try {
2006
+ inner.call(this);
2007
+ } catch (e) {
2008
+ return Promise.reject(e);
2009
+ }
2010
+ });
2011
+ env.stack.push({value:value, dispose:dispose, async:async});
2012
+ } else {
2013
+ async && env.stack.push({async:!0});
2014
+ }
2015
+ return value;
2016
+ };
2017
+ module$exports$tslib.__disposeResources = function(env) {
2018
+ function fail(e) {
2019
+ env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
2020
+ env.hasError = !0;
2021
+ }
2022
+ function next() {
2023
+ for (; env.stack.length;) {
2024
+ var rec = env.stack.pop();
2025
+ try {
2026
+ var result = rec.dispose && rec.dispose.call(rec.value);
2027
+ if (rec.async) {
2028
+ return Promise.resolve(result).then(next, function(e) {
2029
+ fail(e);
2030
+ return next();
2031
+ });
2032
+ }
2033
+ } catch (e) {
2034
+ fail(e);
2035
+ }
2036
+ }
2037
+ if (env.hasError) {
2038
+ throw env.error;
2039
+ }
2040
+ }
2041
+ return next();
2042
+ };
1959
2043
  var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
1960
2044
  module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
1961
2045
  };
@@ -6786,8 +6870,9 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles = !1;
6786
6870
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles = !1;
6787
6871
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
6788
6872
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
6789
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable = !1;
6873
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
6790
6874
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_component_stacks__disable = !1;
6875
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_direct_reactions__enable = !1;
6791
6876
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
6792
6877
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
6793
6878
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable = !1;
@@ -6796,8 +6881,10 @@ goog.flags = {};
6796
6881
  var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1, goog.FLAGS_STAGING_DEFAULT);
6797
6882
  goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable : goog.readFlagInternalDoNotUseOrElse(610401301, !1);
6798
6883
  goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
6799
- goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__enable : goog.readFlagInternalDoNotUseOrElse(188588736, goog.DEBUG);
6884
+ goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable) : goog.readFlagInternalDoNotUseOrElse(188588736,
6885
+ module$contents$goog$flags_STAGING);
6800
6886
  goog.flags.CLIENT_ONLY_WIZ_COMPONENT_STACKS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_component_stacks__disable : goog.readFlagInternalDoNotUseOrElse(628162879, !0);
6887
+ goog.flags.CLIENT_ONLY_WIZ_DIRECT_REACTIONS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_direct_reactions__enable : goog.readFlagInternalDoNotUseOrElse(641353869, !1);
6801
6888
  goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
6802
6889
  goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
6803
6890
  goog.flags.TESTONLY_STAGING_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable) : goog.readFlagInternalDoNotUseOrElse(2147483646, module$contents$goog$flags_STAGING);
@@ -18974,7 +19061,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
18974
19061
  ee.apiclient = {};
18975
19062
  var module$contents$ee$apiclient_apiclient = {};
18976
19063
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
18977
- ee.apiclient.API_CLIENT_VERSION = "0.1.408";
19064
+ ee.apiclient.API_CLIENT_VERSION = "0.1.409";
18978
19065
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
18979
19066
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
18980
19067
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19272,8 +19359,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19272
19359
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19273
19360
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19274
19361
  method = method || "POST";
19275
- var headers = {"Content-Type":contentType}, version = "0.1.408";
19276
- version === "0.1.408" && (version = "latest");
19362
+ var headers = {"Content-Type":contentType}, version = "0.1.409";
19363
+ version === "0.1.409" && (version = "latest");
19277
19364
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19278
19365
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19279
19366
  if (authToken != null) {
@@ -26800,29 +26887,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
26800
26887
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
26801
26888
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
26802
26889
  (function() {
26803
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.sort ee.Collection.prototype.limit ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.listBuckets ee.data.getTileUrl ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.listOperations ee.data.startTableIngestion ee.data.getWorkloadTag ee.data.getDownloadId ee.data.listImages ee.data.cancelOperation ee.data.getAssetAcl ee.data.makeDownloadUrl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.authenticateViaPrivateKey ee.data.createAssetHome ee.data.getOperation ee.data.setWorkloadTag ee.data.createAsset ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getThumbId ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.data.getTaskStatus ee.data.updateTask ee.data.getList ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.startProcessing ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.listAssets ee.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.copyAsset ee.data.authenticate ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.gte ee.Filter.and ee.Filter.prototype.not ee.Filter.neq ee.Filter.inList ee.Filter.gt ee.Filter.lt ee.Filter.or ee.Filter.lte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSON ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Point ee.Geometry ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.Polygon ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.cat ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image ee.ImageCollection ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.List ee.Number ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
26804
- orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
26805
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description",
26806
- "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
26807
- "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
26808
- ["name", "operator", "value"], ["geometry"], ["start", "opt_end"], ["filter"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["property", "opt_ascending"], ["max", "opt_property", "opt_ascending"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["project", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request",
26809
- "opt_callback"], [], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "opt_callback"], ["id"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["requestedId", "opt_callback"], ["operationName", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force",
26810
- "opt_properties", "opt_callback"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params",
26811
- "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["sourceId", "destinationId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["date",
26812
- "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams",
26813
- "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_filter"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator", "value"], ["name", "value"], ["var_args"], [], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["namedArgs"], ["var_args"], [], ["west", "south", "east", "north"], ["coords",
26814
- "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["params", "opt_callback"],
26815
- ["geometry"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["var_args"], ["expression", "opt_map"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["args"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"],
26816
- [], ["params", "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
26817
- [ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toDrive,
26818
- module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.sort, ee.Collection.prototype.limit, ee.ComputedObject.prototype.aside,
26819
- ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.listBuckets, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.listOperations, ee.data.startTableIngestion, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.listImages, ee.data.cancelOperation, ee.data.getAssetAcl, ee.data.makeDownloadUrl, ee.data.authenticateViaPopup,
26820
- ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAssetRoots, ee.data.getAsset, ee.data.authenticateViaPrivateKey, ee.data.createAssetHome, ee.data.getOperation, ee.data.setWorkloadTag, ee.data.createAsset, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getThumbId, ee.data.resetWorkloadTag, ee.data.getVideoThumbId, ee.data.updateAsset, ee.data.getTaskStatus, ee.data.updateTask, ee.data.getList, ee.data.getFilmstripThumbId,
26821
- ee.data.startIngestion, ee.data.createFolder, ee.data.startProcessing, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.renameAsset, ee.data.listAssets, ee.data.getMapId, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.copyAsset, ee.data.authenticate, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE, ee.call, ee.initialize,
26822
- ee.reset, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter, ee.Filter.eq, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.gte, ee.Filter.and,
26823
- ee.Filter.prototype.not, ee.Filter.neq, ee.Filter.inList, ee.Filter.gt, ee.Filter.lt, ee.Filter.or, ee.Filter.lte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSON, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Point, ee.Geometry, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.Polygon, ee.Image.prototype.getThumbId,
26824
- ee.Image.prototype.clip, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image, ee.ImageCollection, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getVideoThumbURL,
26825
- ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.List, ee.Number, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
26890
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction._apply ee.ApiFunction.lookup ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.authenticate ee.data.getTableDownloadId ee.data.listBuckets ee.data.getTileUrl ee.data.getTaskList ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.cancelOperation ee.data.listOperations ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.listImages ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.getAssetRoots ee.data.listFeatures ee.data.getAsset ee.data.setWorkloadTag ee.data.createAssetHome ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.newTaskId ee.data.createAsset ee.data.getInfo ee.data.computeValue ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.resetWorkloadTag ee.data.copyAsset ee.data.cancelTask ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.updateAsset ee.data.getList ee.data.getTaskStatus ee.data.updateTask ee.data.createFolder ee.data.startProcessing ee.data.startIngestion ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.listAssets ee.data.renameAsset ee.data.authenticateViaOauth ee.data.getMapId ee.data.setAssetProperties ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.reset ee.TILE_SIZE ee.initialize ee.call ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.gt ee.Filter.lte ee.Filter.gte ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.prototype.not ee.Filter.neq ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry ee.Geometry.Point ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSONString ee.Geometry.LinearRing ee.Geometry.MultiPolygon ee.Geometry.MultiPoint ee.Geometry.Rectangle ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Image.prototype.select ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image ee.Image.rgb ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getDownloadURL ee.Image.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
26891
+ orderedParamLists = [["name", "var_args"], ["name", "namedArgs"], ["name"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
26892
+ ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
26893
+ "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
26894
+ "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
26895
+ ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["start", "opt_end"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["project", "opt_callback"], ["id", "x", "y", "z"], ["opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"],
26896
+ ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["operationName", "opt_callback"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], [], ["params", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"],
26897
+ ["operationName", "opt_callback"], ["opt_count", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"],
26898
+ ["taskId", "action", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params", "opt_callback"], ["taskId", "request", "opt_callback"], ["id"], ["assetId", "aclUpdate", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["date", "opt_tz"], ["json"],
26899
+ ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_visParams",
26900
+ "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_filter"], ["name", "value"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], [], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"],
26901
+ ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["var_args"], ["var_args"], ["geometry"], ["params",
26902
+ "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["r", "g", "b"], ["expression", "opt_map"], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"],
26903
+ ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
26904
+ [ee.ApiFunction._call, ee.ApiFunction._apply, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage,
26905
+ module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.aside,
26906
+ ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.authenticate, ee.data.getTableDownloadId, ee.data.listBuckets, ee.data.getTileUrl, ee.data.getTaskList, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.cancelOperation, ee.data.listOperations, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.makeDownloadUrl,
26907
+ ee.data.listImages, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.getAssetRoots, ee.data.listFeatures, ee.data.getAsset, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.newTaskId, ee.data.createAsset, ee.data.getInfo, ee.data.computeValue, ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.resetWorkloadTag, ee.data.copyAsset, ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId,
26908
+ ee.data.updateAsset, ee.data.getList, ee.data.getTaskStatus, ee.data.updateTask, ee.data.createFolder, ee.data.startProcessing, ee.data.startIngestion, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.listAssets, ee.data.renameAsset, ee.data.authenticateViaOauth, ee.data.getMapId, ee.data.setAssetProperties, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.reset,
26909
+ ee.TILE_SIZE, ee.initialize, ee.call, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.gt, ee.Filter.lte, ee.Filter.gte,
26910
+ ee.Filter, ee.Filter.eq, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.prototype.not, ee.Filter.neq, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon, ee.Geometry, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LinearRing, ee.Geometry.MultiPolygon, ee.Geometry.MultiPoint, ee.Geometry.Rectangle, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.prototype.serialize,
26911
+ ee.Image.prototype.select, ee.Image.cat, ee.Image.prototype.clip, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image, ee.Image.rgb, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select,
26912
+ ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
26826
26913
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
26827
26914
  });
26828
26915
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;