@google/earthengine 0.1.330 → 0.1.332

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/.tmp/BUILD CHANGED
@@ -396,6 +396,14 @@ Fileset(
396
396
  srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.330:public",
397
397
  destdir = "0.1.330",
398
398
  ),
399
+ FilesetEntry(
400
+ srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.331:public",
401
+ destdir = "0.1.331",
402
+ ),
403
+ FilesetEntry(
404
+ srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.332:public",
405
+ destdir = "0.1.332",
406
+ ),
399
407
  # NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
400
408
  ],
401
409
  )
package/.tmp/METADATA CHANGED
@@ -1,6 +1,6 @@
1
1
  # Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
2
2
 
3
- name: "0.1.330"
3
+ name: "0.1.332"
4
4
  description:
5
5
  "Google Earth Engine is a cloud-based platform for planetary-scale "
6
6
  "environmental data analysis. The Earth Engine JavaScript API allows "
@@ -12,10 +12,10 @@ third_party {
12
12
  type: GIT
13
13
  value: "https://github.com/google/earthengine-api.git"
14
14
  }
15
- version: "v0.1.330"
15
+ version: "v0.1.332"
16
16
  last_upgrade_date: {
17
17
  year: 2022
18
18
  month: 11
19
- day: 2
19
+ day: 16
20
20
  }
21
21
  }
package/build/browser.js CHANGED
@@ -2590,7 +2590,7 @@ goog.debug.freeze = function(arg) {
2590
2590
  return goog.debug.freezeInternal_(arg);
2591
2591
  }();
2592
2592
  };
2593
- goog.events.BrowserFeature = {TOUCH_ENABLED:"ontouchstart" in goog.global || !!(goog.global.document && document.documentElement && "ontouchstart" in document.documentElement) || !(!goog.global.navigator || !goog.global.navigator.maxTouchPoints && !goog.global.navigator.msMaxTouchPoints), POINTER_EVENTS:"PointerEvent" in goog.global, MSPOINTER_EVENTS:"MSPointerEvent" in goog.global && !(!goog.global.navigator || !goog.global.navigator.msPointerEnabled), PASSIVE_EVENTS:function(fn) {
2593
+ goog.events.BrowserFeature = {TOUCH_ENABLED:"ontouchstart" in goog.global || !!(goog.global.document && document.documentElement && "ontouchstart" in document.documentElement) || !(!goog.global.navigator || !goog.global.navigator.maxTouchPoints && !goog.global.navigator.msMaxTouchPoints), POINTER_EVENTS:"PointerEvent" in goog.global, MSPOINTER_EVENTS:!1, PASSIVE_EVENTS:function(fn) {
2594
2594
  return {valueOf:fn}.valueOf();
2595
2595
  }(function() {
2596
2596
  if (!goog.global.addEventListener || !Object.defineProperty) {
@@ -9903,18 +9903,23 @@ module$exports$eeapiclient$ee_api_client.EarthEngineDestination = function(param
9903
9903
  parameters = void 0 === parameters ? {} : parameters;
9904
9904
  module$exports$eeapiclient$domain_object.Serializable.call(this);
9905
9905
  this.Serializable$set("name", null == parameters.name ? null : parameters.name);
9906
+ this.Serializable$set("overwrite", null == parameters.overwrite ? null : parameters.overwrite);
9906
9907
  };
9907
9908
  $jscomp.inherits(module$exports$eeapiclient$ee_api_client.EarthEngineDestination, module$exports$eeapiclient$domain_object.Serializable);
9908
9909
  module$exports$eeapiclient$ee_api_client.EarthEngineDestination.prototype.getConstructor = function() {
9909
9910
  return module$exports$eeapiclient$ee_api_client.EarthEngineDestination;
9910
9911
  };
9911
9912
  module$exports$eeapiclient$ee_api_client.EarthEngineDestination.prototype.getPartialClassMetadata = function() {
9912
- return {keys:["name"]};
9913
+ return {keys:["name", "overwrite"]};
9913
9914
  };
9914
9915
  $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.EarthEngineDestination.prototype, {name:{configurable:!0, enumerable:!0, get:function() {
9915
9916
  return this.Serializable$has("name") ? this.Serializable$get("name") : null;
9916
9917
  }, set:function(value) {
9917
9918
  this.Serializable$set("name", value);
9919
+ }}, overwrite:{configurable:!0, enumerable:!0, get:function() {
9920
+ return this.Serializable$has("overwrite") ? this.Serializable$get("overwrite") : null;
9921
+ }, set:function(value) {
9922
+ this.Serializable$set("overwrite", value);
9918
9923
  }}});
9919
9924
  module$exports$eeapiclient$ee_api_client.EarthEngineMapParameters = function module$contents$eeapiclient$ee_api_client_EarthEngineMapParameters() {
9920
9925
  };
@@ -14574,7 +14579,7 @@ goog.dom.getDocumentScroll = function() {
14574
14579
  };
14575
14580
  goog.dom.getDocumentScroll_ = function(doc) {
14576
14581
  var el = goog.dom.getDocumentScrollElement_(doc), win = goog.dom.getWindow_(doc);
14577
- return goog.userAgent.IE && goog.userAgent.isVersionOrHigher("10") && win.pageYOffset != el.scrollTop ? new goog.math.Coordinate(el.scrollLeft, el.scrollTop) : new goog.math.Coordinate(win.pageXOffset || el.scrollLeft, win.pageYOffset || el.scrollTop);
14582
+ return goog.userAgent.IE && win.pageYOffset != el.scrollTop ? new goog.math.Coordinate(el.scrollLeft, el.scrollTop) : new goog.math.Coordinate(win.pageXOffset || el.scrollLeft, win.pageYOffset || el.scrollTop);
14578
14583
  };
14579
14584
  goog.dom.getDocumentScrollElement = function() {
14580
14585
  return goog.dom.getDocumentScrollElement_(document);
@@ -14802,7 +14807,7 @@ goog.dom.isWindow = function(obj) {
14802
14807
  };
14803
14808
  goog.dom.getParentElement = function(element) {
14804
14809
  var parent;
14805
- if (goog.dom.BrowserFeature.CAN_USE_PARENT_ELEMENT_PROPERTY && !(goog.userAgent.IE && goog.userAgent.isVersionOrHigher("9") && !goog.userAgent.isVersionOrHigher("10") && goog.global.SVGElement && element instanceof goog.global.SVGElement) && (parent = element.parentElement)) {
14810
+ if (goog.dom.BrowserFeature.CAN_USE_PARENT_ELEMENT_PROPERTY && (parent = element.parentElement)) {
14806
14811
  return parent;
14807
14812
  }
14808
14813
  parent = element.parentNode;
@@ -15350,6 +15355,7 @@ goog.ASSUME_NATIVE_PROMISE = !1;
15350
15355
  var module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
15351
15356
  module$contents$goog$async$run_schedule || module$contents$goog$async$run_initializeRunner();
15352
15357
  module$contents$goog$async$run_workQueueScheduled || (module$contents$goog$async$run_schedule(), module$contents$goog$async$run_workQueueScheduled = !0);
15358
+ goog.DEBUG && "createTask" in console && !callback.consoleTask && (callback.consoleTask = console.createTask(callback.name || "anonymous"));
15353
15359
  module$contents$goog$async$run_workQueue.add(callback, context);
15354
15360
  }, module$contents$goog$async$run_initializeRunner = function() {
15355
15361
  if (goog.ASSUME_NATIVE_PROMISE || goog.global.Promise && goog.global.Promise.resolve) {
@@ -15378,7 +15384,9 @@ goog.DEBUG && (module$contents$goog$async$run_run.resetQueue = function() {
15378
15384
  module$contents$goog$async$run_run.processWorkQueue = function() {
15379
15385
  for (var item = null; item = module$contents$goog$async$run_workQueue.remove();) {
15380
15386
  try {
15381
- item.fn.call(item.scope);
15387
+ goog.DEBUG && item.fn.consoleTask ? item.fn.consoleTask.run(function() {
15388
+ return (0,goog.asserts.assertExists)(item).fn.call(item.scope);
15389
+ }) : item.fn.call(item.scope);
15382
15390
  } catch (e) {
15383
15391
  module$contents$goog$async$throwException_throwException(e);
15384
15392
  }
@@ -16878,7 +16886,7 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
16878
16886
  }
16879
16887
  };
16880
16888
  goog.net.XhrIo.shouldUseXhr2Timeout_ = function(xhr) {
16881
- return goog.userAgent.IE && goog.userAgent.isVersionOrHigher(9) && "number" === typeof xhr[goog.net.XhrIo.XHR2_TIMEOUT_] && void 0 !== xhr[goog.net.XhrIo.XHR2_ON_TIMEOUT_];
16889
+ return goog.userAgent.IE && "number" === typeof xhr[goog.net.XhrIo.XHR2_TIMEOUT_] && void 0 !== xhr[goog.net.XhrIo.XHR2_ON_TIMEOUT_];
16882
16890
  };
16883
16891
  goog.net.XhrIo.prototype.createXhr = function() {
16884
16892
  return this.xmlHttpFactory_ ? this.xmlHttpFactory_.createInstance() : goog.net.XmlHttp();
@@ -17097,7 +17105,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
17097
17105
  ee.apiclient = {};
17098
17106
  var module$contents$ee$apiclient_apiclient = {};
17099
17107
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
17100
- ee.apiclient.API_CLIENT_VERSION = "0.1.330";
17108
+ ee.apiclient.API_CLIENT_VERSION = "0.1.332";
17101
17109
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
17102
17110
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
17103
17111
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -17378,8 +17386,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
17378
17386
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
17379
17387
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
17380
17388
  method = method || "POST";
17381
- var headers = {"Content-Type":contentType,}, version = "0.1.330";
17382
- "0.1.330" === version && (version = "latest");
17389
+ var headers = {"Content-Type":contentType,}, version = "0.1.332";
17390
+ "0.1.332" === version && (version = "latest");
17383
17391
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
17384
17392
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
17385
17393
  if (null != authToken) {
@@ -23372,19 +23380,7 @@ goog.style.getBorderBoxSize = function(element) {
23372
23380
  return new goog.math.Size(element.offsetWidth, element.offsetHeight);
23373
23381
  };
23374
23382
  goog.style.setBorderBoxSize = function(element, size) {
23375
- var doc = goog.dom.getOwnerDocument(element), isCss1CompatMode = goog.dom.getDomHelper(doc).isCss1CompatMode();
23376
- if (!goog.userAgent.IE || goog.userAgent.isVersionOrHigher("10") || isCss1CompatMode) {
23377
- goog.style.setBoxSizingSize_(element, size, "border-box");
23378
- } else {
23379
- var style = element.style;
23380
- if (isCss1CompatMode) {
23381
- var paddingBox = goog.style.getPaddingBox(element), borderBox = goog.style.getBorderBox(element);
23382
- style.pixelWidth = size.width - borderBox.left - paddingBox.left - paddingBox.right - borderBox.right;
23383
- style.pixelHeight = size.height - borderBox.top - paddingBox.top - paddingBox.bottom - borderBox.bottom;
23384
- } else {
23385
- style.pixelWidth = size.width, style.pixelHeight = size.height;
23386
- }
23387
- }
23383
+ goog.style.setBoxSizingSize_(element, size, "border-box");
23388
23384
  };
23389
23385
  goog.style.getContentBoxSize = function(element) {
23390
23386
  var doc = goog.dom.getOwnerDocument(element), ieCurrentStyle = goog.userAgent.IE && element.currentStyle;
@@ -23396,19 +23392,7 @@ goog.style.getContentBoxSize = function(element) {
23396
23392
  return new goog.math.Size(borderBoxSize.width - borderBox.left - paddingBox.left - paddingBox.right - borderBox.right, borderBoxSize.height - borderBox.top - paddingBox.top - paddingBox.bottom - borderBox.bottom);
23397
23393
  };
23398
23394
  goog.style.setContentBoxSize = function(element, size) {
23399
- var doc = goog.dom.getOwnerDocument(element), isCss1CompatMode = goog.dom.getDomHelper(doc).isCss1CompatMode();
23400
- if (!goog.userAgent.IE || goog.userAgent.isVersionOrHigher("10") || isCss1CompatMode) {
23401
- goog.style.setBoxSizingSize_(element, size, "content-box");
23402
- } else {
23403
- var style = element.style;
23404
- if (isCss1CompatMode) {
23405
- style.pixelWidth = size.width, style.pixelHeight = size.height;
23406
- } else {
23407
- var paddingBox = goog.style.getPaddingBox(element), borderBox = goog.style.getBorderBox(element);
23408
- style.pixelWidth = size.width + borderBox.left + paddingBox.left + paddingBox.right + borderBox.right;
23409
- style.pixelHeight = size.height + borderBox.top + paddingBox.top + paddingBox.bottom + borderBox.bottom;
23410
- }
23411
- }
23395
+ goog.style.setBoxSizingSize_(element, size, "content-box");
23412
23396
  };
23413
23397
  goog.style.setBoxSizingSize_ = function(element, size, boxSizing) {
23414
23398
  var style = element.style;
@@ -23839,7 +23823,7 @@ goog.net.ImageLoader = function(opt_parent) {
23839
23823
  };
23840
23824
  goog.inherits(goog.net.ImageLoader, goog.events.EventTarget);
23841
23825
  goog.net.ImageLoader.CorsRequestType = {ANONYMOUS:"anonymous", USE_CREDENTIALS:"use-credentials",};
23842
- goog.net.ImageLoader.IMAGE_LOAD_EVENTS_ = [goog.userAgent.IE && !goog.userAgent.isVersionOrHigher("11") ? goog.net.EventType.READY_STATE_CHANGE : goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR,];
23826
+ goog.net.ImageLoader.IMAGE_LOAD_EVENTS_ = [goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR,];
23843
23827
  goog.net.ImageLoader.prototype.addImage = function(id, image, opt_corsRequestType) {
23844
23828
  var src = "string" === typeof image ? image : image.src;
23845
23829
  src && (this.completionFired_ = !1, this.imageIdToRequestMap_[id] = {src:src, corsRequestType:void 0 !== opt_corsRequestType ? opt_corsRequestType : null,});
@@ -24844,28 +24828,27 @@ ee.data.Profiler.Format.prototype.toString = function() {
24844
24828
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
24845
24829
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
24846
24830
  (function() {
24847
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction._apply ee.ApiFunction.lookup ee.batch.Export.table.toFeatureView ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.data.setWorkloadTag ee.data.createAssetHome ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.authenticateViaOauth ee.data.createAsset ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.resetWorkloadTag ee.data.makeThumbUrl ee.data.updateAsset ee.data.authenticate ee.data.createFolder ee.data.setAssetAcl ee.data.renameAsset ee.data.authenticateViaPopup ee.data.getDownloadId ee.data.setAssetProperties ee.data.copyAsset ee.data.authenticateViaPrivateKey ee.data.makeDownloadUrl ee.data.getAssetRootQuota ee.data.getTableDownloadId ee.data.deleteAsset ee.data.getAssetAcl ee.data.makeTableDownloadUrl ee.data.getWorkloadTag ee.data.getInfo ee.data.newTaskId ee.data.getOperation ee.data.getTaskStatus ee.data.cancelTask ee.data.getMapId ee.data.startIngestion ee.data.getTileUrl ee.data.updateTask ee.data.getList ee.data.startProcessing ee.data.listAssets ee.data.getTaskList ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.listImages ee.data.startTableIngestion ee.data.listFeatures ee.data.listOperations ee.data.cancelOperation ee.data.listBuckets ee.data.getAsset ee.data.computeValue ee.data.getAssetRoots ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Dictionary ee.initialize ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.call ee.Element.prototype.set ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.inList ee.Filter.prototype.not ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Image.prototype.getInfo ee.Image.prototype.rename ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
24848
- orderedParamLists = [["name", "var_args"], ["name", "namedArgs"], ["name"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), "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".split(" "), ["classifier", "opt_description", "opt_assetId"], "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".split(" "),
24849
- "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), ["collection", "opt_description", "opt_assetId",
24850
- "opt_maxVertices"], "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".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".split(" "),
24851
- "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["filter"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry"],
24852
- ["legacy"], ["callback"], ["opt_callback"], ["func", "var_args"], ["tag"], ["requestedId", "opt_callback"], ["params", "opt_callback"], ["tag"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes",
24853
- "opt_onImmediateFailed"], ["path", "opt_force", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"],
24854
- ["assetId", "opt_callback"], ["id"], [], ["id", "opt_callback"], ["opt_count", "opt_callback"], ["operationName", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"],
24855
- ["parent", "opt_params", "opt_callback"], ["taskId", "request", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["project", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "namedArgs"], [], [], [], [], ["func",
24856
- "var_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["name", "operator", "value"], ["name",
24857
- "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
24858
- ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["opt_callback"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["selectors", "opt_names"], ["args"], ["params", "opt_callback"],
24859
- ["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
24860
- [ee.ApiFunction._call, ee.ApiFunction._apply, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage,
24861
- module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo,
24862
- ee.ComputedObject.prototype.aside, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.authenticateViaOauth, ee.data.createAsset, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.resetWorkloadTag, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.authenticate, ee.data.createFolder, ee.data.setAssetAcl, ee.data.renameAsset, ee.data.authenticateViaPopup, ee.data.getDownloadId, ee.data.setAssetProperties, ee.data.copyAsset, ee.data.authenticateViaPrivateKey,
24863
- ee.data.makeDownloadUrl, ee.data.getAssetRootQuota, ee.data.getTableDownloadId, ee.data.deleteAsset, ee.data.getAssetAcl, ee.data.makeTableDownloadUrl, ee.data.getWorkloadTag, ee.data.getInfo, ee.data.newTaskId, ee.data.getOperation, ee.data.getTaskStatus, ee.data.cancelTask, ee.data.getMapId, ee.data.startIngestion, ee.data.getTileUrl, ee.data.updateTask, ee.data.getList, ee.data.startProcessing, ee.data.listAssets, ee.data.getTaskList, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit,
24864
- ee.data.listImages, ee.data.startTableIngestion, ee.data.listFeatures, ee.data.listOperations, ee.data.cancelOperation, ee.data.listBuckets, ee.data.getAsset, ee.data.computeValue, ee.data.getAssetRoots, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Dictionary, ee.initialize, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.call, ee.Element.prototype.set, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo,
24865
- ee.Feature, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString,
24866
- ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Image.prototype.getInfo, ee.Image.prototype.rename, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat,
24867
- ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty,
24868
- ee.Serializer.toCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
24831
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.image.toDrive ee.batch.Export.table.toDrive ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.video.toDrive ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.data.createAssetHome ee.data.setDefaultWorkloadTag ee.data.createAsset ee.data.resetWorkloadTag ee.data.authenticateViaOauth ee.data.getList ee.data.createFolder ee.data.listAssets ee.data.renameAsset ee.data.copyAsset ee.data.authenticateViaPopup ee.data.listImages ee.data.deleteAsset ee.data.listBuckets ee.data.authenticate ee.data.getAssetAcl ee.data.getAssetRoots ee.data.newTaskId ee.data.getOperation ee.data.getThumbId ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.cancelTask ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.updateAsset ee.data.startIngestion ee.data.updateTask ee.data.authenticateViaPrivateKey ee.data.startProcessing ee.data.setAssetAcl ee.data.getTaskList ee.data.getFeatureViewTilesKey ee.data.getDownloadId ee.data.setAssetProperties ee.data.getTileUrl ee.data.getTaskListWithLimit ee.data.computeValue ee.data.makeDownloadUrl ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.getMapId ee.data.getTableDownloadId ee.data.listOperations ee.data.cancelOperation ee.data.listFeatures ee.data.getAsset ee.data.makeTableDownloadUrl ee.data.getWorkloadTag ee.data.setWorkloadTag ee.data.getInfo ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.initialize ee.call ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.prototype.not ee.Filter.inList ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.String ee.Terrain".split(" "),
24832
+ orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "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".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".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".split(" "),
24833
+ ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "),
24834
+ ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
24835
+ ["geometry"], ["algorithm", "opt_first"], ["algorithm", "opt_dropNulls"], ["filter"], ["start", "opt_end"], ["property", "opt_ascending"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["callback"], ["requestedId", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["opt_resetDefault"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
24836
+ ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["opt_success", "opt_error"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "opt_callback"], ["opt_callback"], ["opt_count", "opt_callback"],
24837
+ ["operationName", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "action", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["taskId", "params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"],
24838
+ ["params", "opt_callback"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["id", "x", "y", "z"], ["opt_limit", "opt_callback"], ["obj", "opt_callback"], ["id"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["id"], [], ["tag"], ["id", "opt_callback"], ["date", "opt_tz"],
24839
+ ["json"], ["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"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"],
24840
+ ["opt_callback"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], [], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "operator", "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic",
24841
+ "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["coords", "opt_proj"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"],
24842
+ ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
24843
+ [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toFeatureView,
24844
+ module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize,
24845
+ ee.ComputedObject.prototype.evaluate, ee.data.createAssetHome, ee.data.setDefaultWorkloadTag, ee.data.createAsset, ee.data.resetWorkloadTag, ee.data.authenticateViaOauth, ee.data.getList, ee.data.createFolder, ee.data.listAssets, ee.data.renameAsset, ee.data.copyAsset, ee.data.authenticateViaPopup, ee.data.listImages, ee.data.deleteAsset, ee.data.listBuckets, ee.data.authenticate, ee.data.getAssetAcl, ee.data.getAssetRoots, ee.data.newTaskId, ee.data.getOperation, ee.data.getThumbId, ee.data.getVideoThumbId,
24846
+ ee.data.getTaskStatus, ee.data.cancelTask, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.startIngestion, ee.data.updateTask, ee.data.authenticateViaPrivateKey, ee.data.startProcessing, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.getFeatureViewTilesKey, ee.data.getDownloadId, ee.data.setAssetProperties, ee.data.getTileUrl, ee.data.getTaskListWithLimit, ee.data.computeValue, ee.data.makeDownloadUrl, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.getMapId,
24847
+ ee.data.getTableDownloadId, ee.data.listOperations, ee.data.cancelOperation, ee.data.listFeatures, ee.data.getAsset, ee.data.makeTableDownloadUrl, ee.data.getWorkloadTag, ee.data.setWorkloadTag, ee.data.getInfo, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.initialize, ee.call, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap,
24848
+ ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.prototype.not, ee.Filter.inList, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.BBox,
24849
+ ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo,
24850
+ ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.Serializer.encode,
24851
+ ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.String, ee.Terrain].forEach(function(fn, i) {
24869
24852
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
24870
24853
  });
24871
24854
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;