@google/earthengine 1.6.11 → 1.6.13
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/browser.js +65 -42
- package/build/ee_api_js.js +235 -235
- package/build/ee_api_js_debug.js +43 -19
- package/build/ee_api_js_npm.js +65 -42
- package/build/main.js +65 -42
- package/package.json +1 -1
- package/src/apiclient.js +44 -7
- package/src/data.js +4 -0
package/build/ee_api_js_debug.js
CHANGED
|
@@ -19208,6 +19208,13 @@ goog.net.XhrIo.prototype.setTrustToken = function(trustToken) {
|
|
|
19208
19208
|
goog.net.XhrIo.prototype.setAttributionReporting = function(attributionReportingOptions) {
|
|
19209
19209
|
this.attributionReportingOptions_ = attributionReportingOptions;
|
|
19210
19210
|
};
|
|
19211
|
+
goog.net.XhrIo.prototype.getResponseUrl = function() {
|
|
19212
|
+
try {
|
|
19213
|
+
return this.xhr_ ? this.xhr_.responseURL : "";
|
|
19214
|
+
} catch (e) {
|
|
19215
|
+
return goog.log.fine(this.logger_, "Can not get responseURL: " + e.message), "";
|
|
19216
|
+
}
|
|
19217
|
+
};
|
|
19211
19218
|
goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_headers) {
|
|
19212
19219
|
if (this.xhr_) {
|
|
19213
19220
|
throw Error("[goog.net.XhrIo] Object is active with another request=" + this.lastUri_ + "; newUri=" + url);
|
|
@@ -19238,8 +19245,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19238
19245
|
headers.set(key, opt_headers[key]);
|
|
19239
19246
|
}
|
|
19240
19247
|
} else if (typeof opt_headers.keys === "function" && typeof opt_headers.get === "function") {
|
|
19241
|
-
for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$
|
|
19242
|
-
var key$jscomp$0 = $jscomp$key$m71669834$
|
|
19248
|
+
for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$55$key = $jscomp$iter$45.next(); !$jscomp$key$m71669834$55$key.done; $jscomp$key$m71669834$55$key = $jscomp$iter$45.next()) {
|
|
19249
|
+
var key$jscomp$0 = $jscomp$key$m71669834$55$key.value;
|
|
19243
19250
|
headers.set(key$jscomp$0, opt_headers.get(key$jscomp$0));
|
|
19244
19251
|
}
|
|
19245
19252
|
} else {
|
|
@@ -19250,8 +19257,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19250
19257
|
return goog.string.caseInsensitiveEquals(goog.net.XhrIo.CONTENT_TYPE_HEADER, header);
|
|
19251
19258
|
}), contentIsFormData = goog.global.FormData && content instanceof goog.global.FormData;
|
|
19252
19259
|
!module$contents$goog$array_contains(goog.net.XhrIo.METHODS_WITH_FORM_DATA, method) || contentTypeKey || contentIsFormData || headers.set(goog.net.XhrIo.CONTENT_TYPE_HEADER, goog.net.XhrIo.FORM_CONTENT_TYPE);
|
|
19253
|
-
for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$
|
|
19254
|
-
var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$
|
|
19260
|
+
for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$56$ = $jscomp$iter$46.next(); !$jscomp$key$m71669834$56$.done; $jscomp$key$m71669834$56$ = $jscomp$iter$46.next()) {
|
|
19261
|
+
var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$56$.value), key$jscomp$1 = $jscomp$destructuring$var40.next().value, value = $jscomp$destructuring$var40.next().value;
|
|
19255
19262
|
this.xhr_.setRequestHeader(key$jscomp$1, value);
|
|
19256
19263
|
}
|
|
19257
19264
|
this.responseType_ && (this.xhr_.responseType = this.responseType_);
|
|
@@ -19484,11 +19491,11 @@ goog.net.XhrIo.prototype.formatMsg_ = function(msg) {
|
|
|
19484
19491
|
goog.debug.entryPointRegistry.register(function(transformer) {
|
|
19485
19492
|
goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_ = transformer(goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_);
|
|
19486
19493
|
});
|
|
19487
|
-
var $jscomp$templatelit$m1153655765$
|
|
19494
|
+
var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
|
|
19488
19495
|
ee.apiclient = {};
|
|
19489
19496
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19490
19497
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19491
|
-
ee.apiclient.API_CLIENT_VERSION = "1.6.
|
|
19498
|
+
ee.apiclient.API_CLIENT_VERSION = "1.6.13";
|
|
19492
19499
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19493
19500
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19494
19501
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19651,14 +19658,15 @@ module$contents$ee$apiclient_BatchRequestService.prototype.send = function(param
|
|
|
19651
19658
|
request.push("Content-Type: application/json; charset=utf-8");
|
|
19652
19659
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19653
19660
|
authToken != null && request.push("Authorization: " + authToken);
|
|
19661
|
+
module$contents$ee$apiclient_apiclient.userAgent_ && request.push("User-Agent: " + module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19654
19662
|
var body = params.body ? JSON.stringify(params.body) : "";
|
|
19655
19663
|
return [request.join("\r\n") + "\r\n\r\n" + body, responseCtor];
|
|
19656
19664
|
};
|
|
19657
19665
|
module$contents$ee$apiclient_BatchRequestService.prototype.makeRequest = function(params) {
|
|
19658
19666
|
};
|
|
19659
19667
|
module$contents$ee$apiclient_apiclient.parseBatchReply = function(contentType, responseText, handle) {
|
|
19660
|
-
for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$
|
|
19661
|
-
var groups = $jscomp$key$m1153655765$
|
|
19668
|
+
for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next(); !$jscomp$key$m1153655765$102$part.done; $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next()) {
|
|
19669
|
+
var groups = $jscomp$key$m1153655765$102$part.value.split("\r\n\r\n");
|
|
19662
19670
|
if (!(groups.length < 3)) {
|
|
19663
19671
|
var id = groups[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1], status = Number(groups[1].match(/^HTTP\S*\s(\d+)\s/)[1]), text = groups.slice(2).join("\r\n\r\n");
|
|
19664
19672
|
handle(id, status, text);
|
|
@@ -19750,6 +19758,12 @@ module$contents$ee$apiclient_apiclient.setAuthClient = function(clientId, scopes
|
|
|
19750
19758
|
module$contents$ee$apiclient_apiclient.setAppIdToken = function(token) {
|
|
19751
19759
|
module$contents$ee$apiclient_apiclient.appIdToken_ = token;
|
|
19752
19760
|
};
|
|
19761
|
+
module$contents$ee$apiclient_apiclient.setUserAgent = function(userAgent) {
|
|
19762
|
+
module$contents$ee$apiclient_apiclient.userAgent_ = userAgent;
|
|
19763
|
+
};
|
|
19764
|
+
module$contents$ee$apiclient_apiclient.getUserAgent = function() {
|
|
19765
|
+
return module$contents$ee$apiclient_apiclient.userAgent_;
|
|
19766
|
+
};
|
|
19753
19767
|
module$contents$ee$apiclient_apiclient.initialize = function(apiBaseUrl, tileBaseUrl, xsrfToken, project) {
|
|
19754
19768
|
apiBaseUrl != null ? module$contents$ee$apiclient_apiclient.apiBaseUrl_ = apiBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.apiBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_API_BASE_URL_);
|
|
19755
19769
|
tileBaseUrl != null ? module$contents$ee$apiclient_apiclient.tileBaseUrl_ = tileBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.tileBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_TILE_BASE_URL_);
|
|
@@ -19786,9 +19800,10 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19786
19800
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19787
19801
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19788
19802
|
method = method || "POST";
|
|
19789
|
-
var headers = {"Content-Type":contentType}, version = "1.6.
|
|
19790
|
-
version === "1.6.
|
|
19803
|
+
var headers = {"Content-Type":contentType}, version = "1.6.13";
|
|
19804
|
+
version === "1.6.13" && (version = "latest");
|
|
19791
19805
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19806
|
+
module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19792
19807
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19793
19808
|
if (authToken != null) {
|
|
19794
19809
|
headers.Authorization = authToken;
|
|
@@ -19897,7 +19912,7 @@ module$contents$ee$apiclient_apiclient.ensureAuthLibLoaded_ = function(callback)
|
|
|
19897
19912
|
callback();
|
|
19898
19913
|
};
|
|
19899
19914
|
(function() {
|
|
19900
|
-
goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$
|
|
19915
|
+
goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$101)).addCallback(done);
|
|
19901
19916
|
})();
|
|
19902
19917
|
};
|
|
19903
19918
|
module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, error, result) {
|
|
@@ -19915,21 +19930,21 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
|
|
|
19915
19930
|
}
|
|
19916
19931
|
};
|
|
19917
19932
|
module$contents$ee$apiclient_apiclient.makeRequest_ = function(params) {
|
|
19918
|
-
for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$
|
|
19919
|
-
var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$
|
|
19933
|
+
for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next(); !$jscomp$key$m1153655765$103$.done; $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next()) {
|
|
19934
|
+
var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$103$.value), name = $jscomp$destructuring$var48.next().value, item = $jscomp$destructuring$var48.next().value;
|
|
19920
19935
|
request.set(name, item);
|
|
19921
19936
|
}
|
|
19922
19937
|
return request;
|
|
19923
19938
|
};
|
|
19924
19939
|
module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
19925
|
-
function getResponse(url, method, data) {
|
|
19940
|
+
function getResponse(url, method, data, headers) {
|
|
19926
19941
|
url = url.replace(apiBaseUrl, "").replace(module$exports$ee$apiVersion.V1 + "/projects/" + module$contents$ee$apiclient_apiclient.DEFAULT_PROJECT_ + "/", "");
|
|
19927
19942
|
if (url in calls) {
|
|
19928
19943
|
var response = calls[url];
|
|
19929
19944
|
} else {
|
|
19930
19945
|
throw Error(url + " mock response not specified");
|
|
19931
19946
|
}
|
|
19932
|
-
typeof response === "function" && (response = response(url, method, data));
|
|
19947
|
+
typeof response === "function" && (response = response(url, method, data, headers));
|
|
19933
19948
|
typeof response === "string" && (response = {text:response, status:200, contentType:"application/json; charset=utf-8"});
|
|
19934
19949
|
if (typeof response.text !== "string") {
|
|
19935
19950
|
throw Error(url + " mock response missing/invalid text");
|
|
@@ -19941,9 +19956,9 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
|
19941
19956
|
}
|
|
19942
19957
|
calls = calls ? module$contents$goog$object_clone(calls) : {};
|
|
19943
19958
|
var apiBaseUrl;
|
|
19944
|
-
goog.net.XhrIo.send = function(url, callback, method, data) {
|
|
19959
|
+
goog.net.XhrIo.send = function(url, callback, method, data, headers) {
|
|
19945
19960
|
apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
|
|
19946
|
-
var responseData = getResponse(url, method, data), e = new function() {
|
|
19961
|
+
var responseData = getResponse(url, method, data, headers), e = new function() {
|
|
19947
19962
|
this.target = {};
|
|
19948
19963
|
}();
|
|
19949
19964
|
e.target.getResponseText = function() {
|
|
@@ -19959,19 +19974,21 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
|
19959
19974
|
return new goog.net.XhrIo();
|
|
19960
19975
|
};
|
|
19961
19976
|
var fakeXmlHttp = function() {
|
|
19977
|
+
this.requestHeaders_ = {};
|
|
19962
19978
|
};
|
|
19963
19979
|
fakeXmlHttp.prototype.open = function(method, urlIn) {
|
|
19964
19980
|
apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
|
|
19965
19981
|
this.url = urlIn;
|
|
19966
19982
|
this.method = method;
|
|
19967
19983
|
};
|
|
19968
|
-
fakeXmlHttp.prototype.setRequestHeader = function() {
|
|
19984
|
+
fakeXmlHttp.prototype.setRequestHeader = function(key, value) {
|
|
19985
|
+
this.requestHeaders_[key] = value;
|
|
19969
19986
|
};
|
|
19970
19987
|
fakeXmlHttp.prototype.getResponseHeader = function(header) {
|
|
19971
19988
|
return header === "Content-Type" ? this.contentType_ || null : null;
|
|
19972
19989
|
};
|
|
19973
19990
|
fakeXmlHttp.prototype.send = function(data) {
|
|
19974
|
-
var responseData = getResponse(this.url, this.method, data);
|
|
19991
|
+
var responseData = getResponse(this.url, this.method, data, this.requestHeaders_);
|
|
19975
19992
|
this.responseText = responseData.text;
|
|
19976
19993
|
this.status = typeof responseData.status === "function" ? responseData.status() : responseData.status;
|
|
19977
19994
|
this.contentType_ = responseData.contentType;
|
|
@@ -20005,6 +20022,7 @@ module$contents$ee$apiclient_apiclient.apiBaseUrl_ = null;
|
|
|
20005
20022
|
module$contents$ee$apiclient_apiclient.tileBaseUrl_ = null;
|
|
20006
20023
|
module$contents$ee$apiclient_apiclient.xsrfToken_ = null;
|
|
20007
20024
|
module$contents$ee$apiclient_apiclient.appIdToken_ = null;
|
|
20025
|
+
module$contents$ee$apiclient_apiclient.userAgent_ = null;
|
|
20008
20026
|
module$contents$ee$apiclient_apiclient.paramAugmenter_ = goog.functions.identity;
|
|
20009
20027
|
module$contents$ee$apiclient_apiclient.authToken_ = null;
|
|
20010
20028
|
module$contents$ee$apiclient_apiclient.authTokenExpiration_ = null;
|
|
@@ -20071,6 +20089,8 @@ ee.apiclient.setAuthToken = module$contents$ee$apiclient_apiclient.setAuthToken;
|
|
|
20071
20089
|
ee.apiclient.clearAuthToken = module$contents$ee$apiclient_apiclient.clearAuthToken;
|
|
20072
20090
|
ee.apiclient.setAuthTokenRefresher = module$contents$ee$apiclient_apiclient.setAuthTokenRefresher;
|
|
20073
20091
|
ee.apiclient.setAppIdToken = module$contents$ee$apiclient_apiclient.setAppIdToken;
|
|
20092
|
+
ee.apiclient.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
|
|
20093
|
+
ee.apiclient.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
|
|
20074
20094
|
ee.apiclient.mergeAuthScopes = module$contents$ee$apiclient_apiclient.mergeAuthScopes_;
|
|
20075
20095
|
ee.apiclient.setupMockSend = module$contents$ee$apiclient_apiclient.setupMockSend;
|
|
20076
20096
|
ee.apiclient.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
|
|
@@ -21496,6 +21516,10 @@ ee.data.getAuthScopes = module$contents$ee$apiclient_apiclient.getAuthScopes;
|
|
|
21496
21516
|
goog.exportSymbol("ee.data.getAuthScopes", ee.data.getAuthScopes);
|
|
21497
21517
|
ee.data.setDeadline = module$contents$ee$apiclient_apiclient.setDeadline;
|
|
21498
21518
|
goog.exportSymbol("ee.data.setDeadline", ee.data.setDeadline);
|
|
21519
|
+
ee.data.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
|
|
21520
|
+
goog.exportSymbol("ee.data.setUserAgent", ee.data.setUserAgent);
|
|
21521
|
+
ee.data.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
|
|
21522
|
+
goog.exportSymbol("ee.data.getUserAgent", ee.data.getUserAgent);
|
|
21499
21523
|
ee.data.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
|
|
21500
21524
|
goog.exportSymbol("ee.data.setParamAugmenter", ee.data.setParamAugmenter);
|
|
21501
21525
|
ee.data.initialize = module$contents$ee$apiclient_apiclient.initialize;
|
package/build/ee_api_js_npm.js
CHANGED
|
@@ -19208,6 +19208,13 @@ goog.net.XhrIo.prototype.setTrustToken = function(trustToken) {
|
|
|
19208
19208
|
goog.net.XhrIo.prototype.setAttributionReporting = function(attributionReportingOptions) {
|
|
19209
19209
|
this.attributionReportingOptions_ = attributionReportingOptions;
|
|
19210
19210
|
};
|
|
19211
|
+
goog.net.XhrIo.prototype.getResponseUrl = function() {
|
|
19212
|
+
try {
|
|
19213
|
+
return this.xhr_ ? this.xhr_.responseURL : "";
|
|
19214
|
+
} catch (e) {
|
|
19215
|
+
return goog.log.fine(this.logger_, "Can not get responseURL: " + e.message), "";
|
|
19216
|
+
}
|
|
19217
|
+
};
|
|
19211
19218
|
goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_headers) {
|
|
19212
19219
|
if (this.xhr_) {
|
|
19213
19220
|
throw Error("[goog.net.XhrIo] Object is active with another request=" + this.lastUri_ + "; newUri=" + url);
|
|
@@ -19238,8 +19245,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19238
19245
|
headers.set(key, opt_headers[key]);
|
|
19239
19246
|
}
|
|
19240
19247
|
} else if (typeof opt_headers.keys === "function" && typeof opt_headers.get === "function") {
|
|
19241
|
-
for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$
|
|
19242
|
-
var key$jscomp$0 = $jscomp$key$m71669834$
|
|
19248
|
+
for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$55$key = $jscomp$iter$45.next(); !$jscomp$key$m71669834$55$key.done; $jscomp$key$m71669834$55$key = $jscomp$iter$45.next()) {
|
|
19249
|
+
var key$jscomp$0 = $jscomp$key$m71669834$55$key.value;
|
|
19243
19250
|
headers.set(key$jscomp$0, opt_headers.get(key$jscomp$0));
|
|
19244
19251
|
}
|
|
19245
19252
|
} else {
|
|
@@ -19250,8 +19257,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19250
19257
|
return goog.string.caseInsensitiveEquals(goog.net.XhrIo.CONTENT_TYPE_HEADER, header);
|
|
19251
19258
|
}), contentIsFormData = goog.global.FormData && content instanceof goog.global.FormData;
|
|
19252
19259
|
!module$contents$goog$array_contains(goog.net.XhrIo.METHODS_WITH_FORM_DATA, method) || contentTypeKey || contentIsFormData || headers.set(goog.net.XhrIo.CONTENT_TYPE_HEADER, goog.net.XhrIo.FORM_CONTENT_TYPE);
|
|
19253
|
-
for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$
|
|
19254
|
-
var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$
|
|
19260
|
+
for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$56$ = $jscomp$iter$46.next(); !$jscomp$key$m71669834$56$.done; $jscomp$key$m71669834$56$ = $jscomp$iter$46.next()) {
|
|
19261
|
+
var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$56$.value), key$jscomp$1 = $jscomp$destructuring$var40.next().value, value = $jscomp$destructuring$var40.next().value;
|
|
19255
19262
|
this.xhr_.setRequestHeader(key$jscomp$1, value);
|
|
19256
19263
|
}
|
|
19257
19264
|
this.responseType_ && (this.xhr_.responseType = this.responseType_);
|
|
@@ -19484,11 +19491,11 @@ goog.net.XhrIo.prototype.formatMsg_ = function(msg) {
|
|
|
19484
19491
|
goog.debug.entryPointRegistry.register(function(transformer) {
|
|
19485
19492
|
goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_ = transformer(goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_);
|
|
19486
19493
|
});
|
|
19487
|
-
var $jscomp$templatelit$m1153655765$
|
|
19494
|
+
var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
|
|
19488
19495
|
ee.apiclient = {};
|
|
19489
19496
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19490
19497
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19491
|
-
ee.apiclient.API_CLIENT_VERSION = "1.6.
|
|
19498
|
+
ee.apiclient.API_CLIENT_VERSION = "1.6.13";
|
|
19492
19499
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19493
19500
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19494
19501
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19651,14 +19658,15 @@ module$contents$ee$apiclient_BatchRequestService.prototype.send = function(param
|
|
|
19651
19658
|
request.push("Content-Type: application/json; charset=utf-8");
|
|
19652
19659
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19653
19660
|
authToken != null && request.push("Authorization: " + authToken);
|
|
19661
|
+
module$contents$ee$apiclient_apiclient.userAgent_ && request.push("User-Agent: " + module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19654
19662
|
var body = params.body ? JSON.stringify(params.body) : "";
|
|
19655
19663
|
return [request.join("\r\n") + "\r\n\r\n" + body, responseCtor];
|
|
19656
19664
|
};
|
|
19657
19665
|
module$contents$ee$apiclient_BatchRequestService.prototype.makeRequest = function(params) {
|
|
19658
19666
|
};
|
|
19659
19667
|
module$contents$ee$apiclient_apiclient.parseBatchReply = function(contentType, responseText, handle) {
|
|
19660
|
-
for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$
|
|
19661
|
-
var groups = $jscomp$key$m1153655765$
|
|
19668
|
+
for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next(); !$jscomp$key$m1153655765$102$part.done; $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next()) {
|
|
19669
|
+
var groups = $jscomp$key$m1153655765$102$part.value.split("\r\n\r\n");
|
|
19662
19670
|
if (!(groups.length < 3)) {
|
|
19663
19671
|
var id = groups[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1], status = Number(groups[1].match(/^HTTP\S*\s(\d+)\s/)[1]), text = groups.slice(2).join("\r\n\r\n");
|
|
19664
19672
|
handle(id, status, text);
|
|
@@ -19750,6 +19758,12 @@ module$contents$ee$apiclient_apiclient.setAuthClient = function(clientId, scopes
|
|
|
19750
19758
|
module$contents$ee$apiclient_apiclient.setAppIdToken = function(token) {
|
|
19751
19759
|
module$contents$ee$apiclient_apiclient.appIdToken_ = token;
|
|
19752
19760
|
};
|
|
19761
|
+
module$contents$ee$apiclient_apiclient.setUserAgent = function(userAgent) {
|
|
19762
|
+
module$contents$ee$apiclient_apiclient.userAgent_ = userAgent;
|
|
19763
|
+
};
|
|
19764
|
+
module$contents$ee$apiclient_apiclient.getUserAgent = function() {
|
|
19765
|
+
return module$contents$ee$apiclient_apiclient.userAgent_;
|
|
19766
|
+
};
|
|
19753
19767
|
module$contents$ee$apiclient_apiclient.initialize = function(apiBaseUrl, tileBaseUrl, xsrfToken, project) {
|
|
19754
19768
|
apiBaseUrl != null ? module$contents$ee$apiclient_apiclient.apiBaseUrl_ = apiBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.apiBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_API_BASE_URL_);
|
|
19755
19769
|
tileBaseUrl != null ? module$contents$ee$apiclient_apiclient.tileBaseUrl_ = tileBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.tileBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_TILE_BASE_URL_);
|
|
@@ -19786,9 +19800,10 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19786
19800
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19787
19801
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19788
19802
|
method = method || "POST";
|
|
19789
|
-
var headers = {"Content-Type":contentType}, version = "1.6.
|
|
19790
|
-
version === "1.6.
|
|
19803
|
+
var headers = {"Content-Type":contentType}, version = "1.6.13";
|
|
19804
|
+
version === "1.6.13" && (version = "latest");
|
|
19791
19805
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19806
|
+
module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19792
19807
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19793
19808
|
if (authToken != null) {
|
|
19794
19809
|
headers.Authorization = authToken;
|
|
@@ -19897,7 +19912,7 @@ module$contents$ee$apiclient_apiclient.ensureAuthLibLoaded_ = function(callback)
|
|
|
19897
19912
|
callback();
|
|
19898
19913
|
};
|
|
19899
19914
|
(function() {
|
|
19900
|
-
goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$
|
|
19915
|
+
goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$101)).addCallback(done);
|
|
19901
19916
|
})();
|
|
19902
19917
|
};
|
|
19903
19918
|
module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, error, result) {
|
|
@@ -19915,21 +19930,21 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
|
|
|
19915
19930
|
}
|
|
19916
19931
|
};
|
|
19917
19932
|
module$contents$ee$apiclient_apiclient.makeRequest_ = function(params) {
|
|
19918
|
-
for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$
|
|
19919
|
-
var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$
|
|
19933
|
+
for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next(); !$jscomp$key$m1153655765$103$.done; $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next()) {
|
|
19934
|
+
var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$103$.value), name = $jscomp$destructuring$var48.next().value, item = $jscomp$destructuring$var48.next().value;
|
|
19920
19935
|
request.set(name, item);
|
|
19921
19936
|
}
|
|
19922
19937
|
return request;
|
|
19923
19938
|
};
|
|
19924
19939
|
module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
19925
|
-
function getResponse(url, method, data) {
|
|
19940
|
+
function getResponse(url, method, data, headers) {
|
|
19926
19941
|
url = url.replace(apiBaseUrl, "").replace(module$exports$ee$apiVersion.V1 + "/projects/" + module$contents$ee$apiclient_apiclient.DEFAULT_PROJECT_ + "/", "");
|
|
19927
19942
|
if (url in calls) {
|
|
19928
19943
|
var response = calls[url];
|
|
19929
19944
|
} else {
|
|
19930
19945
|
throw Error(url + " mock response not specified");
|
|
19931
19946
|
}
|
|
19932
|
-
typeof response === "function" && (response = response(url, method, data));
|
|
19947
|
+
typeof response === "function" && (response = response(url, method, data, headers));
|
|
19933
19948
|
typeof response === "string" && (response = {text:response, status:200, contentType:"application/json; charset=utf-8"});
|
|
19934
19949
|
if (typeof response.text !== "string") {
|
|
19935
19950
|
throw Error(url + " mock response missing/invalid text");
|
|
@@ -19941,9 +19956,9 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
|
19941
19956
|
}
|
|
19942
19957
|
calls = calls ? module$contents$goog$object_clone(calls) : {};
|
|
19943
19958
|
var apiBaseUrl;
|
|
19944
|
-
goog.net.XhrIo.send = function(url, callback, method, data) {
|
|
19959
|
+
goog.net.XhrIo.send = function(url, callback, method, data, headers) {
|
|
19945
19960
|
apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
|
|
19946
|
-
var responseData = getResponse(url, method, data), e = new function() {
|
|
19961
|
+
var responseData = getResponse(url, method, data, headers), e = new function() {
|
|
19947
19962
|
this.target = {};
|
|
19948
19963
|
}();
|
|
19949
19964
|
e.target.getResponseText = function() {
|
|
@@ -19959,19 +19974,21 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
|
|
|
19959
19974
|
return new goog.net.XhrIo();
|
|
19960
19975
|
};
|
|
19961
19976
|
var fakeXmlHttp = function() {
|
|
19977
|
+
this.requestHeaders_ = {};
|
|
19962
19978
|
};
|
|
19963
19979
|
fakeXmlHttp.prototype.open = function(method, urlIn) {
|
|
19964
19980
|
apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
|
|
19965
19981
|
this.url = urlIn;
|
|
19966
19982
|
this.method = method;
|
|
19967
19983
|
};
|
|
19968
|
-
fakeXmlHttp.prototype.setRequestHeader = function() {
|
|
19984
|
+
fakeXmlHttp.prototype.setRequestHeader = function(key, value) {
|
|
19985
|
+
this.requestHeaders_[key] = value;
|
|
19969
19986
|
};
|
|
19970
19987
|
fakeXmlHttp.prototype.getResponseHeader = function(header) {
|
|
19971
19988
|
return header === "Content-Type" ? this.contentType_ || null : null;
|
|
19972
19989
|
};
|
|
19973
19990
|
fakeXmlHttp.prototype.send = function(data) {
|
|
19974
|
-
var responseData = getResponse(this.url, this.method, data);
|
|
19991
|
+
var responseData = getResponse(this.url, this.method, data, this.requestHeaders_);
|
|
19975
19992
|
this.responseText = responseData.text;
|
|
19976
19993
|
this.status = typeof responseData.status === "function" ? responseData.status() : responseData.status;
|
|
19977
19994
|
this.contentType_ = responseData.contentType;
|
|
@@ -20005,6 +20022,7 @@ module$contents$ee$apiclient_apiclient.apiBaseUrl_ = null;
|
|
|
20005
20022
|
module$contents$ee$apiclient_apiclient.tileBaseUrl_ = null;
|
|
20006
20023
|
module$contents$ee$apiclient_apiclient.xsrfToken_ = null;
|
|
20007
20024
|
module$contents$ee$apiclient_apiclient.appIdToken_ = null;
|
|
20025
|
+
module$contents$ee$apiclient_apiclient.userAgent_ = null;
|
|
20008
20026
|
module$contents$ee$apiclient_apiclient.paramAugmenter_ = goog.functions.identity;
|
|
20009
20027
|
module$contents$ee$apiclient_apiclient.authToken_ = null;
|
|
20010
20028
|
module$contents$ee$apiclient_apiclient.authTokenExpiration_ = null;
|
|
@@ -20071,6 +20089,8 @@ ee.apiclient.setAuthToken = module$contents$ee$apiclient_apiclient.setAuthToken;
|
|
|
20071
20089
|
ee.apiclient.clearAuthToken = module$contents$ee$apiclient_apiclient.clearAuthToken;
|
|
20072
20090
|
ee.apiclient.setAuthTokenRefresher = module$contents$ee$apiclient_apiclient.setAuthTokenRefresher;
|
|
20073
20091
|
ee.apiclient.setAppIdToken = module$contents$ee$apiclient_apiclient.setAppIdToken;
|
|
20092
|
+
ee.apiclient.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
|
|
20093
|
+
ee.apiclient.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
|
|
20074
20094
|
ee.apiclient.mergeAuthScopes = module$contents$ee$apiclient_apiclient.mergeAuthScopes_;
|
|
20075
20095
|
ee.apiclient.setupMockSend = module$contents$ee$apiclient_apiclient.setupMockSend;
|
|
20076
20096
|
ee.apiclient.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
|
|
@@ -21496,6 +21516,10 @@ ee.data.getAuthScopes = module$contents$ee$apiclient_apiclient.getAuthScopes;
|
|
|
21496
21516
|
goog.exportSymbol("ee.data.getAuthScopes", ee.data.getAuthScopes);
|
|
21497
21517
|
ee.data.setDeadline = module$contents$ee$apiclient_apiclient.setDeadline;
|
|
21498
21518
|
goog.exportSymbol("ee.data.setDeadline", ee.data.setDeadline);
|
|
21519
|
+
ee.data.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
|
|
21520
|
+
goog.exportSymbol("ee.data.setUserAgent", ee.data.setUserAgent);
|
|
21521
|
+
ee.data.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
|
|
21522
|
+
goog.exportSymbol("ee.data.getUserAgent", ee.data.getUserAgent);
|
|
21499
21523
|
ee.data.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
|
|
21500
21524
|
goog.exportSymbol("ee.data.setParamAugmenter", ee.data.setParamAugmenter);
|
|
21501
21525
|
ee.data.initialize = module$contents$ee$apiclient_apiclient.initialize;
|
|
@@ -27310,29 +27334,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27310
27334
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27311
27335
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27312
27336
|
(function() {
|
|
27313
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27314
|
-
orderedParamLists = [["name", "
|
|
27315
|
-
"
|
|
27316
|
-
"
|
|
27317
|
-
"
|
|
27318
|
-
"
|
|
27319
|
-
["
|
|
27320
|
-
"
|
|
27321
|
-
"opt_callback"], ["
|
|
27322
|
-
"
|
|
27323
|
-
|
|
27324
|
-
"
|
|
27325
|
-
["
|
|
27326
|
-
[
|
|
27327
|
-
|
|
27328
|
-
|
|
27329
|
-
ee.
|
|
27330
|
-
ee.data.
|
|
27331
|
-
ee.
|
|
27332
|
-
ee.
|
|
27333
|
-
ee.
|
|
27334
|
-
ee.
|
|
27335
|
-
ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.List, ee.Number, ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27337
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.Collection.prototype.limit 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.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.listOperations ee.data.listFeatures ee.data.copyAsset ee.data.cancelOperation ee.data.authenticateViaOauth ee.data.deleteAsset ee.data.getAsset ee.data.getOperation ee.data.computeValue ee.data.getThumbId ee.data.getInfo ee.data.getAssetAcl ee.data.cancelTask ee.data.updateTask ee.data.getVideoThumbId ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.getList ee.data.listAssets ee.data.makeThumbUrl ee.data.authenticate ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.updateAsset ee.data.setAssetAcl ee.data.makeDownloadUrl ee.data.setWorkloadTag ee.data.getTableDownloadId ee.data.getWorkloadTag ee.data.listImages ee.data.authenticateViaPrivateKey ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.listBuckets ee.data.newTaskId ee.data.getAssetRootQuota ee.data.getAssetRoots ee.data.createAssetHome ee.data.getTaskStatus ee.data.startIngestion ee.data.getMapId ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.resetWorkloadTag ee.data.getTileUrl ee.data.startTableIngestion ee.data.getTaskList ee.data.createFolder ee.data.getFeatureViewTilesKey ee.Date ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.call ee.initialize ee.apply ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.Filter.lt ee.Filter.bounds ee.Filter.prototype.not ee.Filter.or ee.Filter.gte ee.Filter ee.Filter.date ee.Filter.eq ee.Filter.metadata ee.Filter.gt ee.Filter.inList ee.Filter.neq ee.Filter.lte ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSON ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.MultiLineString ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.LinearRing ee.Geometry ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getMap ee.Image.prototype.expression ee.Image.rgb ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.select ee.Image.prototype.getMapId ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
|
|
27338
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices 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_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27339
|
+
"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(" "), ["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(" "),
|
|
27340
|
+
"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_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
|
|
27341
|
+
["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), ["max", "opt_property", "opt_ascending"], ["filter"], ["property", "opt_ascending"], ["name",
|
|
27342
|
+
"operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["start", "opt_end"], ["algorithm", "opt_first"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["opt_limit", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["asset", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["operationName", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
27343
|
+
["assetId", "opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["obj", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"],
|
|
27344
|
+
["params", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "asset", "updateFields", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["tag"], ["params", "opt_callback"], [], ["parent", "opt_params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["assetId", "properties", "opt_callback"], ["project", "opt_callback"], ["opt_count", "opt_callback"], ["rootId", "opt_callback"], ["opt_callback"], ["requestedId",
|
|
27345
|
+
"opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["opt_resetDefault"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["opt_callback"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
|
|
27346
|
+
["func", "namedArgs"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["name", "value"], ["geometry", "opt_errorMargin"], [], ["var_args"], ["name", "value"], ["opt_filter"],
|
|
27347
|
+
["start", "opt_end"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], [], ["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",
|
|
27348
|
+
"opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["params", "opt_callback"], ["opt_args"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["r", "g", "b"], ["var_args"], ["opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["geometry"],
|
|
27349
|
+
["params", "opt_callback"], ["var_args"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args"], ["params", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["opt_callback"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27350
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
|
|
27351
|
+
module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage, ee.Collection.prototype.limit, 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.ComputedObject.prototype.aside,
|
|
27352
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.getTaskListWithLimit, ee.data.renameAsset, ee.data.listOperations, ee.data.listFeatures, ee.data.copyAsset, ee.data.cancelOperation, ee.data.authenticateViaOauth, ee.data.deleteAsset, ee.data.getAsset, ee.data.getOperation, ee.data.computeValue, ee.data.getThumbId, ee.data.getInfo, ee.data.getAssetAcl, ee.data.cancelTask, ee.data.updateTask, ee.data.getVideoThumbId, ee.data.startProcessing,
|
|
27353
|
+
ee.data.getFilmstripThumbId, ee.data.getList, ee.data.listAssets, ee.data.makeThumbUrl, ee.data.authenticate, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.updateAsset, ee.data.setAssetAcl, ee.data.makeDownloadUrl, ee.data.setWorkloadTag, ee.data.getTableDownloadId, ee.data.getWorkloadTag, ee.data.listImages, ee.data.authenticateViaPrivateKey, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.listBuckets, ee.data.newTaskId, ee.data.getAssetRootQuota, ee.data.getAssetRoots,
|
|
27354
|
+
ee.data.createAssetHome, ee.data.getTaskStatus, ee.data.startIngestion, ee.data.getMapId, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.resetWorkloadTag, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.getTaskList, ee.data.createFolder, ee.data.getFeatureViewTilesKey, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState, ee.call, ee.initialize,
|
|
27355
|
+
ee.apply, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection, ee.Filter.lt, ee.Filter.bounds, ee.Filter.prototype.not, ee.Filter.or, ee.Filter.gte, ee.Filter, ee.Filter.date,
|
|
27356
|
+
ee.Filter.eq, ee.Filter.metadata, ee.Filter.gt, ee.Filter.inList, ee.Filter.neq, ee.Filter.lte, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.MultiLineString, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Image.prototype.getThumbURL,
|
|
27357
|
+
ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.expression, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.select, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL,
|
|
27358
|
+
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27336
27359
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27337
27360
|
});
|
|
27338
27361
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|