Skip to content

Commit

Permalink
v0.1.310
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 448117199
  • Loading branch information
Google Earth Engine Authors authored and naschmitz committed May 18, 2022
1 parent a100be6 commit b01d01f
Show file tree
Hide file tree
Showing 6 changed files with 236 additions and 238 deletions.
406 changes: 203 additions & 203 deletions javascript/build/ee_api_js.js

Large diffs are not rendered by default.

9 changes: 4 additions & 5 deletions javascript/build/ee_api_js_debug.js
Expand Up @@ -1328,8 +1328,6 @@ goog.requireType = function(namespace) {
return {};
};
goog.basePath = "";
goog.nullFunction = function() {
};
goog.abstractMethod = function() {
throw Error("unimplemented abstract method");
};
Expand Down Expand Up @@ -16973,7 +16971,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.309";
ee.apiclient.API_CLIENT_VERSION = "0.1.310";
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 @@ -17254,8 +17252,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.309";
"0.1.309" === version && (version = "latest");
var headers = {"Content-Type":contentType,}, version = "0.1.310";
"0.1.310" === 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 @@ -17573,6 +17571,7 @@ goog.exportSymbol("ee.api.ListImagesResponse", module$exports$eeapiclient$ee_api
goog.exportSymbol("ee.api.Image", module$exports$eeapiclient$ee_api_client.Image);
goog.exportSymbol("ee.api.Operation", module$exports$eeapiclient$ee_api_client.Operation);
goog.exportSymbol("ee.api.ListFeaturesResponse", module$exports$eeapiclient$ee_api_client.ListFeaturesResponse);
goog.exportSymbol("ee.api.FeatureViewLocation", module$exports$eeapiclient$ee_api_client.FeatureViewLocation);
ee.Encodable = function() {
};
ee.rpc_node = {};
Expand Down
52 changes: 25 additions & 27 deletions javascript/build/ee_api_js_npm.js

Large diffs are not rendered by default.

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

const API_CLIENT_VERSION = '0.1.309';
const API_CLIENT_VERSION = '0.1.310';

exports.VERSION = apiVersion.VERSION;
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
Expand Down Expand Up @@ -1738,3 +1738,4 @@ goog.exportSymbol('ee.api.ListImagesResponse', api.ListImagesResponse);
goog.exportSymbol('ee.api.Image', api.Image);
goog.exportSymbol('ee.api.Operation', api.Operation);
goog.exportSymbol('ee.api.ListFeaturesResponse', api.ListFeaturesResponse);
goog.exportSymbol('ee.api.FeatureViewLocation', api.FeatureViewLocation);
2 changes: 1 addition & 1 deletion python/ee/__init__.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""The EE Python library."""

__version__ = '0.1.309'
__version__ = '0.1.310'

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

0 comments on commit b01d01f

Please sign in to comment.