@google/earthengine 1.5.18 → 1.5.19

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
@@ -1207,6 +1207,62 @@ $jscomp.polyfill("Array.prototype.find", function(orig) {
1207
1207
  return $jscomp.findInternal(this, callback, opt_thisArg).v;
1208
1208
  };
1209
1209
  }, "es6", "es3");
1210
+ $jscomp.polyfill("Set.prototype.difference", function(orig) {
1211
+ return orig ? orig : function(other) {
1212
+ $jscomp.checkIsSetInstance(this);
1213
+ $jscomp.checkIsSetLike(other);
1214
+ for (var sets = $jscomp.getSmallerAndLargerSets(this, other), resultSet = new Set(this), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
1215
+ largerSet.has(next.value) && resultSet.delete(next.value), next = smallerSetIterator.next();
1216
+ }
1217
+ return resultSet;
1218
+ };
1219
+ }, "es_next", "es6");
1220
+ $jscomp.polyfill("Set.prototype.intersection", function(orig) {
1221
+ return orig ? orig : function(other) {
1222
+ $jscomp.checkIsSetInstance(this);
1223
+ $jscomp.checkIsSetLike(other);
1224
+ for (var resultSet = new Set(), sets = $jscomp.getSmallerAndLargerSets(this, other), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
1225
+ largerSet.has(next.value) && resultSet.add(next.value), next = smallerSetIterator.next();
1226
+ }
1227
+ return resultSet;
1228
+ };
1229
+ }, "es_next", "es6");
1230
+ $jscomp.polyfill("Set.prototype.isSubsetOf", function(orig) {
1231
+ return orig ? orig : function(other) {
1232
+ $jscomp.checkIsSetInstance(this);
1233
+ $jscomp.checkIsSetLike(other);
1234
+ if (this.size > other.size) {
1235
+ return !1;
1236
+ }
1237
+ for (var iterator = this.keys(), next = iterator.next(); !next.done;) {
1238
+ if (!other.has(next.value)) {
1239
+ return !1;
1240
+ }
1241
+ next = iterator.next();
1242
+ }
1243
+ return !0;
1244
+ };
1245
+ }, "es_next", "es6");
1246
+ $jscomp.checkIsSetLike = function(other) {
1247
+ if (typeof other !== "object" || other === null || typeof other.size !== "number" || other.size < 0 || typeof other.keys !== "function" || typeof other.has !== "function") {
1248
+ throw new TypeError("Argument must be set-like");
1249
+ }
1250
+ };
1251
+ $jscomp.checkIsValidIterator = function(iterator) {
1252
+ if (typeof iterator !== "object" || iterator === null || typeof iterator.next !== "function") {
1253
+ throw new TypeError("Invalid iterator.");
1254
+ }
1255
+ return iterator;
1256
+ };
1257
+ $jscomp.getSmallerAndLargerSets = function(thisSet, otherSet) {
1258
+ var smallerSetIterator, largerSet;
1259
+ return thisSet.size <= otherSet.size ? {smallerSetIterator:thisSet.keys(), largerSet:otherSet} : {smallerSetIterator:$jscomp.checkIsValidIterator(otherSet.keys()), largerSet:thisSet};
1260
+ };
1261
+ $jscomp.checkIsSetInstance = function(obj) {
1262
+ if (!(obj instanceof Set)) {
1263
+ throw new TypeError("Method must be called on an instance of Set.");
1264
+ }
1265
+ };
1210
1266
  $jscomp.polyfill("String.prototype.codePointAt", function(orig) {
1211
1267
  return orig ? orig : function(position) {
1212
1268
  var string = $jscomp.checkStringArgs(this, null, "codePointAt"), size = string.length;
@@ -1260,7 +1316,7 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
1260
1316
  };
1261
1317
  }, "es8", "es3");
1262
1318
  var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__disable_wiz_service_logging_map__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1,
1263
- GoogFlags__optimize_scs_js_url_clone__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, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
1319
+ GoogFlags__optimize_scs_js_url_clone__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, GoogFlags__wiz_enable_native_promise__enable:!1};
1264
1320
  /*
1265
1321
 
1266
1322
  Copyright The Closure Library Authors.
@@ -6463,7 +6519,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native
6463
6519
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
6464
6520
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
6465
6521
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable = !1;
6466
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
6467
6522
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable = !1;
6468
6523
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable = !1;
6469
6524
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
@@ -6482,7 +6537,6 @@ goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etogg
6482
6537
  goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
6483
6538
  goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
6484
6539
  goog.flags.JSPB_SERIALIZE_WITH_DYNAMIC_PIVOT_SELECTOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable : goog.readFlagInternalDoNotUseOrElse(748402146, goog.DEBUG);
6485
- goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
6486
6540
  goog.flags.OPTIMIZE_SCS_JS_URL_CLONE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable : goog.readFlagInternalDoNotUseOrElse(103340015, !1);
6487
6541
  goog.flags.DISABLE_WIZ_SERVICE_LOGGING_MAP = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable : goog.readFlagInternalDoNotUseOrElse(555019702, !1);
6488
6542
  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);
@@ -19373,7 +19427,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19373
19427
  ee.apiclient = {};
19374
19428
  var module$contents$ee$apiclient_apiclient = {};
19375
19429
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19376
- ee.apiclient.API_CLIENT_VERSION = "1.5.18";
19430
+ ee.apiclient.API_CLIENT_VERSION = "1.5.19";
19377
19431
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19378
19432
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19379
19433
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19671,8 +19725,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19671
19725
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19672
19726
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19673
19727
  method = method || "POST";
19674
- var headers = {"Content-Type":contentType}, version = "1.5.18";
19675
- version === "1.5.18" && (version = "latest");
19728
+ var headers = {"Content-Type":contentType}, version = "1.5.19";
19729
+ version === "1.5.19" && (version = "latest");
19676
19730
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19677
19731
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19678
19732
  if (authToken != null) {
@@ -27195,29 +27249,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27195
27249
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27196
27250
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27197
27251
  (function() {
27198
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.classifier.toAsset ee.batch.Export.table.toBigQuery ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.getAsset ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.getInfo ee.data.getAssetAcl ee.data.cancelTask ee.data.updateTask ee.data.makeThumbUrl ee.data.authenticate ee.data.getList ee.data.getDownloadId ee.data.listAssets ee.data.startProcessing ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.updateAsset ee.data.newTaskId ee.data.listImages ee.data.setAssetAcl ee.data.listBuckets ee.data.setAssetProperties ee.data.getAssetRoots ee.data.getMapId ee.data.getTaskStatus ee.data.getAssetRootQuota ee.data.createAssetHome ee.data.getTileUrl ee.data.startIngestion ee.data.setWorkloadTag ee.data.listOperations ee.data.getWorkloadTag ee.data.getTaskList ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.resetWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.createFolder ee.data.authenticateViaOauth ee.data.listFeatures ee.data.renameAsset ee.data.startTableIngestion ee.data.cancelOperation ee.data.computeValue ee.data.copyAsset ee.data.getThumbId ee.data.deleteAsset ee.data.getOperation ee.Date ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.apply ee.TILE_SIZE ee.reset ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.Filter.prototype.not ee.Filter.lt ee.Filter.bounds ee.Filter.or ee.Filter.date ee.Filter.gte ee.Filter.gt ee.Filter.eq ee.Filter.metadata ee.Filter.inList ee.Filter.neq ee.Filter.lte ee.Filter.and ee.Filter ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.prototype.toGeoJSON ee.Geometry.LineString ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.prototype.toGeoJSONString ee.Geometry.Polygon ee.Image.prototype.getThumbId ee.Image.cat ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.clip ee.Image.prototype.getMapId ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.getInfo ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.String ee.Terrain".split(" "),
27199
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "),
27200
- "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(" "), "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_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
27252
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.image.toAsset ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.sort ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.listImages ee.data.setAssetAcl ee.data.makeTableDownloadUrl ee.data.authenticateViaOauth ee.data.authenticateViaPopup ee.data.listBuckets ee.data.setAssetProperties ee.data.newTaskId ee.data.getAssetRoots ee.data.getAssetRootQuota ee.data.createAssetHome ee.data.getTaskStatus ee.data.startIngestion ee.data.getWorkloadTag ee.data.getTaskList ee.data.getTileUrl ee.data.createAsset ee.data.setWorkloadTag ee.data.getMapId ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.resetWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.cancelOperation ee.data.renameAsset ee.data.listFeatures ee.data.startTableIngestion ee.data.copyAsset ee.data.computeValue ee.data.listOperations ee.data.getOperation ee.data.deleteAsset ee.data.getAsset ee.data.getVideoThumbId ee.data.getInfo ee.data.cancelTask ee.data.getAssetAcl ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.getList ee.data.updateTask ee.data.makeThumbUrl ee.data.listAssets ee.data.authenticate ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.Algorithms ee.reset ee.InitState ee.call ee.apply ee.TILE_SIZE ee.initialize ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.Filter.inList ee.Filter.lte ee.Filter.and ee.Filter.lt ee.Filter.prototype.not ee.Filter.bounds ee.Filter ee.Filter.or ee.Filter.gte ee.Filter.eq ee.Filter.metadata ee.Filter.date ee.Filter.gt ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.clip ee.Image.prototype.getMapId ee.Image.rgb ee.Image ee.Image.prototype.expression ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.rename ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApi ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27253
+ orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "),
27254
+ ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), "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(" "),
27201
27255
  "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking 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_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(" "),
27202
- "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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
27203
- ["filter"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["start", "opt_end"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["callback"], ["opt_callback"], ["func", "var_args"], ["legacy"], ["id", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["clientId", "success",
27204
- "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["taskId", "params", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"], ["opt_count", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId",
27205
- "aclUpdate", "opt_callback"], ["project", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["rootId", "opt_callback"], ["requestedId", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["tag"], ["opt_limit", "opt_callback"], [], ["opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["opt_resetDefault"], ["params", "opt_callback"], ["opt_limit",
27206
- "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["asset", "params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["taskId", "request", "opt_callback"], ["operationName", "opt_callback"], ["obj", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"],
27207
- ["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"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_format", "opt_selectors", "opt_filename",
27208
- "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], [], ["name", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["opt_filter"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27209
- ["west", "south", "east", "north"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "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"], ["params", "opt_callback"], ["var_args"],
27210
- ["params", "opt_callback"], ["r", "g", "b"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["geometry"], ["opt_visParams", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["args"], ["selectors", "opt_names"], ["opt_callback"], [], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"],
27211
- ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27212
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage,
27213
- module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.ComputedObject.prototype.evaluate,
27214
- ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize, ee.data.getAsset, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.getInfo, ee.data.getAssetAcl, ee.data.cancelTask, ee.data.updateTask, ee.data.makeThumbUrl, ee.data.authenticate, ee.data.getList, ee.data.getDownloadId, ee.data.listAssets, ee.data.startProcessing, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId,
27215
- ee.data.makeTableDownloadUrl, ee.data.updateAsset, ee.data.newTaskId, ee.data.listImages, ee.data.setAssetAcl, ee.data.listBuckets, ee.data.setAssetProperties, ee.data.getAssetRoots, ee.data.getMapId, ee.data.getTaskStatus, ee.data.getAssetRootQuota, ee.data.createAssetHome, ee.data.getTileUrl, ee.data.startIngestion, ee.data.setWorkloadTag, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getTaskList, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.resetWorkloadTag, ee.data.getFeatureViewTilesKey,
27216
- ee.data.getTaskListWithLimit, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.listFeatures, ee.data.renameAsset, ee.data.startTableIngestion, ee.data.cancelOperation, ee.data.computeValue, ee.data.copyAsset, ee.data.getThumbId, ee.data.deleteAsset, ee.data.getOperation, ee.Date, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.initialize, ee.call, ee.apply, ee.TILE_SIZE, ee.reset, ee.Algorithms, ee.InitState,
27217
- ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.Filter.prototype.not, ee.Filter.lt, ee.Filter.bounds, ee.Filter.or, ee.Filter.date, ee.Filter.gte, ee.Filter.gt, ee.Filter.eq,
27218
- ee.Filter.metadata, ee.Filter.inList, ee.Filter.neq, ee.Filter.lte, ee.Filter.and, ee.Filter, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LineString, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Polygon, ee.Image.prototype.getThumbId,
27219
- ee.Image.cat, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image, ee.Image.prototype.clip, ee.Image.prototype.getMapId, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.getInfo, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first,
27220
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.toCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.String, ee.Terrain].forEach(function(fn, i) {
27256
+ "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices 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(" "),
27257
+ ["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["start", "opt_end"], ["filter"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["geometry"], ["algorithm", "opt_first"], ["legacy"], ["func", "var_args"], ["callback"], ["opt_callback"], ["params", "opt_callback"], ["id"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "aclUpdate",
27258
+ "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["opt_success", "opt_error"], ["project", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_count", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], [], ["opt_callback"], ["id", "x", "y", "z"], ["value", "opt_path", "opt_force", "opt_properties",
27259
+ "opt_callback"], ["tag"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["asset", "params", "opt_callback"], ["taskId", "request", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["obj", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName",
27260
+ "opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "asset", "updateFields", "opt_callback"], ["date",
27261
+ "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], ["func", "var_args"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["var_args"], [], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"],
27262
+ ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], [], ["geometry", "opt_errorMargin"], ["opt_filter"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["west", "south", "east", "north"], ["coords", "opt_proj",
27263
+ "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["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"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["params", "opt_callback"], ["var_args"],
27264
+ ["var_args"], ["opt_callback"], ["geometry"], ["opt_visParams", "opt_callback"], ["r", "g", "b"], ["opt_args"], ["expression", "opt_map"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], [], ["args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["params",
27265
+ "opt_callback"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27266
+ [ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage,
27267
+ module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.serialize,
27268
+ ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId, ee.data.listImages, ee.data.setAssetAcl, ee.data.makeTableDownloadUrl, ee.data.authenticateViaOauth, ee.data.authenticateViaPopup, ee.data.listBuckets, ee.data.setAssetProperties, ee.data.newTaskId, ee.data.getAssetRoots, ee.data.getAssetRootQuota, ee.data.createAssetHome, ee.data.getTaskStatus,
27269
+ ee.data.startIngestion, ee.data.getWorkloadTag, ee.data.getTaskList, ee.data.getTileUrl, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.getMapId, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.resetWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.cancelOperation, ee.data.renameAsset, ee.data.listFeatures, ee.data.startTableIngestion, ee.data.copyAsset, ee.data.computeValue, ee.data.listOperations, ee.data.getOperation, ee.data.deleteAsset,
27270
+ ee.data.getAsset, ee.data.getVideoThumbId, ee.data.getInfo, ee.data.cancelTask, ee.data.getAssetAcl, ee.data.startProcessing, ee.data.getFilmstripThumbId, ee.data.getList, ee.data.updateTask, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.authenticate, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.Algorithms, ee.reset, ee.InitState, ee.call, ee.apply, ee.TILE_SIZE, ee.initialize,
27271
+ ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.Filter.inList, ee.Filter.lte, ee.Filter.and, ee.Filter.lt, ee.Filter.prototype.not, ee.Filter.bounds, ee.Filter, ee.Filter.or,
27272
+ ee.Filter.gte, ee.Filter.eq, ee.Filter.metadata, ee.Filter.date, ee.Filter.gt, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.getDownloadURL,
27273
+ ee.Image.prototype.select, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.clip, ee.Image.prototype.getMapId, ee.Image.rgb, ee.Image, ee.Image.prototype.expression, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.rename, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection,
27274
+ ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApi, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27221
27275
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27222
27276
  });
27223
27277
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "1.5.18",
3
+ "version": "1.5.19",
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
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues.index');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '1.5.18';
27
+ const API_CLIENT_VERSION = '1.5.19';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;