Skip to content

Commit

Permalink
v0.1.351
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 525522814
  • Loading branch information
Google Earth Engine Authors authored and bengalin committed Apr 26, 2023
1 parent b59b54b commit 61295ff
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 48 deletions.
30 changes: 15 additions & 15 deletions javascript/build/ee_api_js.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions javascript/build/ee_api_js_debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -17587,7 +17587,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
ee.apiclient = {};
var module$contents$ee$apiclient_apiclient = {};
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
ee.apiclient.API_CLIENT_VERSION = "0.1.350";
ee.apiclient.API_CLIENT_VERSION = "0.1.351";
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
Expand Down Expand Up @@ -17868,8 +17868,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
method = method || "POST";
var headers = {"Content-Type":contentType,}, version = "0.1.350";
"0.1.350" === version && (version = "latest");
var headers = {"Content-Type":contentType,}, version = "0.1.351";
"0.1.351" === version && (version = "latest");
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
if (null != authToken) {
Expand Down Expand Up @@ -21986,7 +21986,7 @@ module$contents$ee$batch_Export.table.toFeatureView = function(collection, opt_d
return module$contents$ee$batch_ExportTask.create(serverConfig);
};
goog.exportSymbol("module$contents$ee$batch_Export.table.toFeatureView", module$contents$ee$batch_Export.table.toFeatureView);
module$contents$ee$batch_Export.table.toBigQuery = function(collection, opt_description, opt_table, opt_selectors, opt_maxVertices) {
module$contents$ee$batch_Export.table.toBigQuery = function(collection, opt_description, opt_table, opt_selectors, opt_maxVertices, opt_overwrite) {
var clientConfig = ee.arguments.extractFromFunction(module$contents$ee$batch_Export.table.toBigQuery, arguments), serverConfig = module$contents$ee$batch_Export.convertToServerParams(clientConfig, ee.data.ExportDestination.BIGQUERY, ee.data.ExportType.TABLE);
return module$contents$ee$batch_ExportTask.create(serverConfig);
};
Expand Down
52 changes: 26 additions & 26 deletions javascript/build/ee_api_js_npm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/earthengine",
"version": "0.1.350",
"version": "0.1.351",
"description": "JavaScript client for Google Earth Engine API.",
"author": "Google LLC",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/apiclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const {PromiseRequestService} = goog.require('eeapiclient.promise_request_servic
/** @namespace */
const apiclient = {};

const API_CLIENT_VERSION = '0.1.350';
const API_CLIENT_VERSION = '0.1.351';

exports.VERSION = apiVersion.VERSION;
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
Expand Down
2 changes: 1 addition & 1 deletion python/ee/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""The EE Python library."""

__version__ = '0.1.350'
__version__ = '0.1.351'

# Using lowercase function naming to match the JavaScript names.
# pylint: disable=g-bad-name
Expand Down

0 comments on commit 61295ff

Please sign in to comment.