@google/earthengine 0.1.383 → 0.1.384

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/main.js CHANGED
@@ -2849,8 +2849,8 @@ module$exports$tslib.__spreadArrays = function() {
2849
2849
  return r;
2850
2850
  };
2851
2851
  module$exports$tslib.__spreadArray = function(to, from, pack) {
2852
- if (!(Array.isArray(from) || from instanceof NodeList)) {
2853
- throw new TypeError("Expected an Array or NodeList: " + String(from));
2852
+ if (!(Array.isArray(from) || from instanceof NodeList) && "[object Arguments]" !== Object.prototype.toString.call(from)) {
2853
+ throw new TypeError("Expected an Array, NodeList, or or Arguments: " + String(from));
2854
2854
  }
2855
2855
  if (pack || 2 === arguments.length) {
2856
2856
  for (var i = 0, l = from.length, ar; i < l; i++) {
@@ -7468,44 +7468,47 @@ function module$contents$safevalues$restricted$reviewed_assertValidJustification
7468
7468
  throw Error("Calls to uncheckedconversion functions must go through security review. A justification must be provided to capture what security assumptions are being made. See go/unchecked-conversions");
7469
7469
  }
7470
7470
  }
7471
- function module$contents$safevalues$restricted$reviewed_htmlSafeByReview(html, justification) {
7472
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7471
+ function module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options) {
7472
+ return "string" === typeof options ? options : options.justification;
7473
+ }
7474
+ function module$contents$safevalues$restricted$reviewed_htmlSafeByReview(html, options) {
7475
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7473
7476
  return module$contents$safevalues$internals$html_impl_createHtmlInternal(html);
7474
7477
  }
7475
7478
  module$exports$safevalues$restricted$reviewed.htmlSafeByReview = module$contents$safevalues$restricted$reviewed_htmlSafeByReview;
7476
- function module$contents$safevalues$restricted$reviewed_scriptSafeByReview(script, justification) {
7477
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7479
+ function module$contents$safevalues$restricted$reviewed_scriptSafeByReview(script, options) {
7480
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7478
7481
  return module$contents$safevalues$internals$script_impl_createScriptInternal(script);
7479
7482
  }
7480
7483
  module$exports$safevalues$restricted$reviewed.scriptSafeByReview = module$contents$safevalues$restricted$reviewed_scriptSafeByReview;
7481
- function module$contents$safevalues$restricted$reviewed_resourceUrlSafeByReview(url, justification) {
7482
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7484
+ function module$contents$safevalues$restricted$reviewed_resourceUrlSafeByReview(url, options) {
7485
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7483
7486
  return module$contents$safevalues$internals$resource_url_impl_createResourceUrlInternal(url);
7484
7487
  }
7485
7488
  module$exports$safevalues$restricted$reviewed.resourceUrlSafeByReview = module$contents$safevalues$restricted$reviewed_resourceUrlSafeByReview;
7486
- function module$contents$safevalues$restricted$reviewed_urlSafeByReview(url, justification) {
7487
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7489
+ function module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview(stylesheet, options) {
7490
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7491
+ return module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(stylesheet);
7492
+ }
7493
+ module$exports$safevalues$restricted$reviewed.styleSheetSafeByReview = module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview;
7494
+ function module$contents$safevalues$restricted$reviewed_urlSafeByReview(url, options) {
7495
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7488
7496
  return module$contents$safevalues$internals$url_impl_createUrlInternal(url);
7489
7497
  }
7490
7498
  module$exports$safevalues$restricted$reviewed.urlSafeByReview = module$contents$safevalues$restricted$reviewed_urlSafeByReview;
7491
- function module$contents$safevalues$restricted$reviewed_styleSafeByReview(style, justification) {
7492
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7499
+ function module$contents$safevalues$restricted$reviewed_styleSafeByReview(style, options) {
7500
+ goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(module$contents$safevalues$restricted$reviewed_getJustificationDuringMigration(options));
7493
7501
  return module$contents$safevalues$internals$style_impl_createStyleInternal(style);
7494
7502
  }
7495
7503
  module$exports$safevalues$restricted$reviewed.styleSafeByReview = module$contents$safevalues$restricted$reviewed_styleSafeByReview;
7496
- function module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview(stylesheet, justification) {
7497
- goog.DEBUG && module$contents$safevalues$restricted$reviewed_assertValidJustification(justification);
7498
- return module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(stylesheet);
7499
- }
7500
- module$exports$safevalues$restricted$reviewed.styleSheetSafeByReview = module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview;
7501
7504
  var safevalues = {restricted:{}};
7502
7505
  safevalues.restricted.reviewed = {};
7503
7506
  safevalues.restricted.reviewed.htmlSafeByReview = module$contents$safevalues$restricted$reviewed_htmlSafeByReview;
7504
7507
  safevalues.restricted.reviewed.scriptSafeByReview = module$contents$safevalues$restricted$reviewed_scriptSafeByReview;
7505
7508
  safevalues.restricted.reviewed.resourceUrlSafeByReview = module$contents$safevalues$restricted$reviewed_resourceUrlSafeByReview;
7509
+ safevalues.restricted.reviewed.styleSheetSafeByReview = module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview;
7506
7510
  safevalues.restricted.reviewed.urlSafeByReview = module$contents$safevalues$restricted$reviewed_urlSafeByReview;
7507
7511
  safevalues.restricted.reviewed.styleSafeByReview = module$contents$safevalues$restricted$reviewed_styleSafeByReview;
7508
- safevalues.restricted.reviewed.styleSheetSafeByReview = module$contents$safevalues$restricted$reviewed_styleSheetSafeByReview;
7509
7512
  goog.dom.safe = {};
7510
7513
  goog.dom.safe.InsertAdjacentHtmlPosition = {AFTERBEGIN:"afterbegin", AFTEREND:"afterend", BEFOREBEGIN:"beforebegin", BEFOREEND:"beforeend"};
7511
7514
  goog.dom.safe.insertAdjacentHtml = function(node, position, html) {
@@ -9023,6 +9026,11 @@ module$exports$eeapiclient$ee_api_client.ICloudAuditOptionsLogNameEnum = functio
9023
9026
  module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum = {ADMIN_ACTIVITY:"ADMIN_ACTIVITY", DATA_ACCESS:"DATA_ACCESS", UNSPECIFIED_LOG_NAME:"UNSPECIFIED_LOG_NAME", values:function() {
9024
9027
  return [module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum.UNSPECIFIED_LOG_NAME, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum.ADMIN_ACTIVITY, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum.DATA_ACCESS];
9025
9028
  }};
9029
+ module$exports$eeapiclient$ee_api_client.ICloudAuditOptionsPermissionTypeEnum = function() {
9030
+ };
9031
+ module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum = {ADMIN_READ:"ADMIN_READ", ADMIN_WRITE:"ADMIN_WRITE", DATA_READ:"DATA_READ", DATA_WRITE:"DATA_WRITE", PERMISSION_TYPE_UNSPECIFIED:"PERMISSION_TYPE_UNSPECIFIED", values:function() {
9032
+ return [module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum.PERMISSION_TYPE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum.ADMIN_READ, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum.ADMIN_WRITE, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum.DATA_READ, module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum.DATA_WRITE];
9033
+ }};
9026
9034
  module$exports$eeapiclient$ee_api_client.ICloudStorageDestinationPermissionsEnum = function() {
9027
9035
  };
9028
9036
  module$exports$eeapiclient$ee_api_client.CloudStorageDestinationPermissionsEnum = {DEFAULT_OBJECT_ACL:"DEFAULT_OBJECT_ACL", PUBLIC:"PUBLIC", TILE_PERMISSIONS_UNSPECIFIED:"TILE_PERMISSIONS_UNSPECIFIED", values:function() {
@@ -9699,13 +9707,14 @@ module$exports$eeapiclient$ee_api_client.CloudAuditOptions = function(parameters
9699
9707
  module$exports$eeapiclient$domain_object.Serializable.call(this);
9700
9708
  this.Serializable$set("logName", null == parameters.logName ? null : parameters.logName);
9701
9709
  this.Serializable$set("authorizationLoggingOptions", null == parameters.authorizationLoggingOptions ? null : parameters.authorizationLoggingOptions);
9710
+ this.Serializable$set("permissionType", null == parameters.permissionType ? null : parameters.permissionType);
9702
9711
  };
9703
9712
  $jscomp.inherits(module$exports$eeapiclient$ee_api_client.CloudAuditOptions, module$exports$eeapiclient$domain_object.Serializable);
9704
9713
  module$exports$eeapiclient$ee_api_client.CloudAuditOptions.prototype.getConstructor = function() {
9705
9714
  return module$exports$eeapiclient$ee_api_client.CloudAuditOptions;
9706
9715
  };
9707
9716
  module$exports$eeapiclient$ee_api_client.CloudAuditOptions.prototype.getPartialClassMetadata = function() {
9708
- return {enums:{logName:module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum}, keys:["authorizationLoggingOptions", "logName"], objects:{authorizationLoggingOptions:module$exports$eeapiclient$ee_api_client.AuthorizationLoggingOptions}};
9717
+ return {enums:{logName:module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum, permissionType:module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum}, keys:["authorizationLoggingOptions", "logName", "permissionType"], objects:{authorizationLoggingOptions:module$exports$eeapiclient$ee_api_client.AuthorizationLoggingOptions}};
9709
9718
  };
9710
9719
  $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.CloudAuditOptions.prototype, {authorizationLoggingOptions:{configurable:!0, enumerable:!0, get:function() {
9711
9720
  return this.Serializable$has("authorizationLoggingOptions") ? this.Serializable$get("authorizationLoggingOptions") : null;
@@ -9715,9 +9724,15 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
9715
9724
  return this.Serializable$has("logName") ? this.Serializable$get("logName") : null;
9716
9725
  }, set:function(value) {
9717
9726
  this.Serializable$set("logName", value);
9727
+ }}, permissionType:{configurable:!0, enumerable:!0, get:function() {
9728
+ return this.Serializable$has("permissionType") ? this.Serializable$get("permissionType") : null;
9729
+ }, set:function(value) {
9730
+ this.Serializable$set("permissionType", value);
9718
9731
  }}});
9719
9732
  $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.CloudAuditOptions, {LogName:{configurable:!0, enumerable:!0, get:function() {
9720
9733
  return module$exports$eeapiclient$ee_api_client.CloudAuditOptionsLogNameEnum;
9734
+ }}, PermissionType:{configurable:!0, enumerable:!0, get:function() {
9735
+ return module$exports$eeapiclient$ee_api_client.CloudAuditOptionsPermissionTypeEnum;
9721
9736
  }}});
9722
9737
  module$exports$eeapiclient$ee_api_client.CloudStorageDestinationParameters = function() {
9723
9738
  };
@@ -18722,7 +18737,7 @@ var $jscomp$templatelit$294235699$0 = $jscomp.createTemplateTagFirstArg(["https:
18722
18737
  ee.apiclient = {};
18723
18738
  var module$contents$ee$apiclient_apiclient = {};
18724
18739
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
18725
- ee.apiclient.API_CLIENT_VERSION = "0.1.383";
18740
+ ee.apiclient.API_CLIENT_VERSION = "0.1.384";
18726
18741
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
18727
18742
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
18728
18743
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19013,8 +19028,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19013
19028
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19014
19029
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19015
19030
  method = method || "POST";
19016
- var headers = {"Content-Type":contentType}, version = "0.1.383";
19017
- "0.1.383" === version && (version = "latest");
19031
+ var headers = {"Content-Type":contentType}, version = "0.1.384";
19032
+ "0.1.384" === version && (version = "latest");
19018
19033
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19019
19034
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19020
19035
  if (null != authToken) {
@@ -26571,28 +26586,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
26571
26586
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
26572
26587
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
26573
26588
  (function() {
26574
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.image.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.video.toDrive ee.batch.Export.image.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toDrive ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.limit ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.computeValue ee.data.cancelTask ee.data.updateAsset ee.data.getThumbId ee.data.startIngestion ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.getFilmstripThumbId ee.data.updateTask ee.data.setAssetAcl ee.data.startProcessing ee.data.createFolder ee.data.getList ee.data.listAssets ee.data.renameAsset ee.data.setAssetProperties ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getTaskList ee.data.getMapId ee.data.copyAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.listImages ee.data.cancelOperation ee.data.authenticate ee.data.listOperations ee.data.getWorkloadTag ee.data.getTileUrl ee.data.getAssetAcl ee.data.listBuckets ee.data.getTableDownloadId ee.data.getAsset ee.data.makeTableDownloadUrl ee.data.setWorkloadTag ee.data.getFeatureViewTilesKey ee.data.authenticateViaPopup ee.data.getAssetRoots ee.data.getInfo ee.data.getOperation ee.data.createAssetHome ee.data.setDefaultWorkloadTag ee.data.listFeatures ee.data.newTaskId ee.data.createAsset ee.data.authenticateViaPrivateKey ee.data.resetWorkloadTag ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.TILE_SIZE ee.initialize ee.reset ee.call ee.apply ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.eq ee.Filter.metadata ee.Filter ee.Filter.bounds ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Filter.neq ee.Filter.lte ee.Filter.date ee.Filter.prototype.not ee.Filter.gte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry.BBox ee.Geometry ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.select ee.Image.prototype.clip ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.List ee.Number ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.String ee.Terrain".split(" "),
26575
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "), "collection opt_description opt_bucket 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(" "),
26576
- "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(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices".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(" "),
26577
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_folder 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(" "),
26578
- ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["algorithm", "opt_first"], ["name", "operator", "value"], ["geometry"], ["property", "opt_ascending"], ["filter"], ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["obj", "opt_callback"], ["taskId", "opt_callback"], ["assetId",
26579
- "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["assetId", "properties", "opt_callback"],
26580
- ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["id"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["operationName", "opt_callback"], ["clientId", "success", "opt_error",
26581
- "opt_extraScopes", "opt_onImmediateFailed"], ["opt_limit", "opt_callback"], [], ["id", "x", "y", "z"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["id"], ["tag"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["tag"], ["asset", "params", "opt_callback"], ["opt_count", "opt_callback"], ["value", "opt_path", "opt_force",
26582
- "opt_properties", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["opt_resetDefault"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "var_args"], ["func", "namedArgs"], [], [], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams",
26583
- "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["name", "operator", "value"], ["opt_filter"], ["geometry", "opt_errorMargin"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], ["name",
26584
- "value"], ["name", "value"], ["start", "opt_end"], [], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["west", "south", "east", "north"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"],
26585
- ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["opt_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["var_args"], ["opt_visParams", "opt_callback"], ["var_args"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["geometry"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["opt_callback"], ["selectors",
26586
- "opt_names"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
26587
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toAsset,
26588
- module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toDrive, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate,
26589
- ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.computeValue, ee.data.cancelTask, ee.data.updateAsset, ee.data.getThumbId, ee.data.startIngestion, ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.getFilmstripThumbId, ee.data.updateTask, ee.data.setAssetAcl, ee.data.startProcessing, ee.data.createFolder, ee.data.getList, ee.data.listAssets, ee.data.renameAsset, ee.data.setAssetProperties, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.getTaskList,
26590
- ee.data.getMapId, ee.data.copyAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.deleteAsset, ee.data.getTaskListWithLimit, ee.data.listImages, ee.data.cancelOperation, ee.data.authenticate, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getTileUrl, ee.data.getAssetAcl, ee.data.listBuckets, ee.data.getTableDownloadId, ee.data.getAsset, ee.data.makeTableDownloadUrl, ee.data.setWorkloadTag, ee.data.getFeatureViewTilesKey,
26591
- ee.data.authenticateViaPopup, ee.data.getAssetRoots, ee.data.getInfo, ee.data.getOperation, ee.data.createAssetHome, ee.data.setDefaultWorkloadTag, ee.data.listFeatures, ee.data.newTaskId, ee.data.createAsset, ee.data.authenticateViaPrivateKey, ee.data.resetWorkloadTag, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.TILE_SIZE, ee.initialize, ee.reset, ee.call, ee.apply, ee.Algorithms, ee.InitState, ee.Element.prototype.set,
26592
- ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.eq, ee.Filter.metadata, ee.Filter, ee.Filter.bounds, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Filter.neq,
26593
- ee.Filter.lte, ee.Filter.date, ee.Filter.prototype.not, ee.Filter.gte, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.BBox, ee.Geometry, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Image, ee.Image.prototype.getDownloadURL,
26594
- ee.Image.prototype.getThumbId, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.cat, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image.prototype.select, ee.Image.prototype.clip, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getFilmstripThumbURL,
26595
- ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.String, ee.Terrain].forEach(function(fn, i) {
26589
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.image.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toAsset ee.batch.Export.video.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.startIngestion ee.data.resetWorkloadTag ee.data.updateAsset ee.data.updateTask ee.data.getFilmstripThumbId ee.data.startProcessing ee.data.createFolder ee.data.makeThumbUrl ee.data.getList ee.data.setAssetAcl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.listAssets ee.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.getDownloadId ee.data.copyAsset ee.data.makeDownloadUrl ee.data.authenticate ee.data.getTileUrl ee.data.startTableIngestion ee.data.getTaskListWithLimit ee.data.listImages ee.data.deleteAsset ee.data.listOperations ee.data.getAssetRootQuota ee.data.cancelOperation ee.data.getTableDownloadId ee.data.listBuckets ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.makeTableDownloadUrl ee.data.getFeatureViewTilesKey ee.data.getWorkloadTag ee.data.getAsset ee.data.getAssetRoots ee.data.getOperation ee.data.listFeatures ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.newTaskId ee.data.createAssetHome ee.data.createAsset ee.data.setWorkloadTag ee.data.computeValue ee.Date ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.initialize ee.call ee.reset ee.InitState ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry ee.Image.cat ee.Image.prototype.select ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image ee.Image.prototype.clip ee.Image.prototype.getMap ee.Image.prototype.getMapId ee.Image.prototype.expression ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.rename ee.Image.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.encodeCloudApi ee.Serializer.toJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
26590
+ orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".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(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
26591
+ "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(" "), "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(" "),
26592
+ "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices".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(" "), "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",
26593
+ "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(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["classifier", "opt_description", "opt_assetId"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"],
26594
+ ["name", "operator", "value"], ["geometry"], ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], ["opt_resetDefault"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["taskId",
26595
+ "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], ["params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], "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"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite",
26596
+ "opt_callback"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["opt_limit", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["project", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["params",
26597
+ "opt_callback"], [], ["id", "opt_callback"], ["opt_callback"], ["operationName", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["opt_count", "opt_callback"], ["requestedId", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func",
26598
+ "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], [], [], [], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties",
26599
+ "opt_retainGeometry"], ["name", "value"], ["name", "value"], [], ["opt_filter"], ["name", "value"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords",
26600
+ "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_args"], ["geometry"], ["opt_visParams",
26601
+ "opt_callback"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["args"], ["opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"],
26602
+ ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
26603
+ [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
26604
+ module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.classifier.toAsset, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.aside,
26605
+ ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.startIngestion, ee.data.resetWorkloadTag, ee.data.updateAsset, ee.data.updateTask, ee.data.getFilmstripThumbId, ee.data.startProcessing, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.getList, ee.data.setAssetAcl, ee.data.authenticateViaOauth, ee.data.renameAsset,
26606
+ ee.data.listAssets, ee.data.getMapId, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.getDownloadId, ee.data.copyAsset, ee.data.makeDownloadUrl, ee.data.authenticate, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.getTaskListWithLimit, ee.data.listImages, ee.data.deleteAsset, ee.data.listOperations, ee.data.getAssetRootQuota, ee.data.cancelOperation, ee.data.getTableDownloadId, ee.data.listBuckets, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.makeTableDownloadUrl,
26607
+ ee.data.getFeatureViewTilesKey, ee.data.getWorkloadTag, ee.data.getAsset, ee.data.getAssetRoots, ee.data.getOperation, ee.data.listFeatures, ee.data.getInfo, ee.data.authenticateViaPrivateKey, ee.data.newTaskId, ee.data.createAssetHome, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.computeValue, ee.Date, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.initialize, ee.call, ee.reset,
26608
+ ee.InitState, ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter, ee.Filter.eq, ee.Filter.date,
26609
+ ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry,
26610
+ ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image, ee.Image.prototype.clip, ee.Image.prototype.getMap, ee.Image.prototype.getMapId, ee.Image.prototype.expression, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.rename, ee.Image.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap,
26611
+ ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.encodeCloudApi, ee.Serializer.toJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
26596
26612
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
26597
26613
  });
26598
26614
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "0.1.383",
3
+ "version": "0.1.384",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
package/src/apiclient.js CHANGED
@@ -25,7 +25,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
25
25
  /** @namespace */
26
26
  const apiclient = {};
27
27
 
28
- const API_CLIENT_VERSION = '0.1.383';
28
+ const API_CLIENT_VERSION = '0.1.384';
29
29
 
30
30
  exports.VERSION = apiVersion.VERSION;
31
31
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;