@google/earthengine 0.1.385 → 0.1.386
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/.tmp/BUILD +2 -2
- package/.tmp/METADATA +4 -4
- package/.tmp/VERSION_BUILD +2 -2
- package/build/browser.js +144 -201
- package/build/ee_api_js.js +334 -330
- package/build/ee_api_js_debug.js +122 -179
- package/build/ee_api_js_npm.js +144 -201
- package/build/main.js +144 -201
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/build/ee_api_js_debug.js
CHANGED
|
@@ -6447,16 +6447,10 @@ var module$contents$goog$asserts$dom_assertIsHtmlElement = function(value) {
|
|
|
6447
6447
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.VIDEO);
|
|
6448
6448
|
}, module$contents$goog$asserts$dom_assertIsHtmlInputElement = function(value) {
|
|
6449
6449
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.INPUT);
|
|
6450
|
-
}, module$contents$goog$asserts$dom_assertIsHtmlEmbedElement = function(value) {
|
|
6451
|
-
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.EMBED);
|
|
6452
6450
|
}, module$contents$goog$asserts$dom_assertIsHtmlFormElement = function(value) {
|
|
6453
6451
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FORM);
|
|
6454
|
-
}, module$contents$goog$asserts$dom_assertIsHtmlFrameElement = function(value) {
|
|
6455
|
-
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FRAME);
|
|
6456
6452
|
}, module$contents$goog$asserts$dom_assertIsHtmlIFrameElement = function(value) {
|
|
6457
6453
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IFRAME);
|
|
6458
|
-
}, module$contents$goog$asserts$dom_assertIsHtmlObjectElement = function(value) {
|
|
6459
|
-
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.OBJECT);
|
|
6460
6454
|
}, module$contents$goog$asserts$dom_assertIsHtmlScriptElement = function(value) {
|
|
6461
6455
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.SCRIPT);
|
|
6462
6456
|
}, module$contents$goog$asserts$dom_debugStringForType = function(value) {
|
|
@@ -6491,11 +6485,17 @@ goog.asserts.dom.assertIsHtmlTextAreaElement = function(value) {
|
|
|
6491
6485
|
goog.asserts.dom.assertIsHtmlCanvasElement = function(value) {
|
|
6492
6486
|
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.CANVAS);
|
|
6493
6487
|
};
|
|
6494
|
-
goog.asserts.dom.assertIsHtmlEmbedElement =
|
|
6488
|
+
goog.asserts.dom.assertIsHtmlEmbedElement = function(value) {
|
|
6489
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.EMBED);
|
|
6490
|
+
};
|
|
6495
6491
|
goog.asserts.dom.assertIsHtmlFormElement = module$contents$goog$asserts$dom_assertIsHtmlFormElement;
|
|
6496
|
-
goog.asserts.dom.assertIsHtmlFrameElement =
|
|
6492
|
+
goog.asserts.dom.assertIsHtmlFrameElement = function(value) {
|
|
6493
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FRAME);
|
|
6494
|
+
};
|
|
6497
6495
|
goog.asserts.dom.assertIsHtmlIFrameElement = module$contents$goog$asserts$dom_assertIsHtmlIFrameElement;
|
|
6498
|
-
goog.asserts.dom.assertIsHtmlObjectElement =
|
|
6496
|
+
goog.asserts.dom.assertIsHtmlObjectElement = function(value) {
|
|
6497
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.OBJECT);
|
|
6498
|
+
};
|
|
6499
6499
|
goog.asserts.dom.assertIsHtmlScriptElement = module$contents$goog$asserts$dom_assertIsHtmlScriptElement;
|
|
6500
6500
|
goog.dom.asserts = {};
|
|
6501
6501
|
goog.dom.asserts.assertIsLocation = function(o) {
|
|
@@ -6532,79 +6532,6 @@ goog.dom.tags.VOID_TAGS_ = {area:!0, base:!0, br:!0, col:!0, command:!0, embed:!
|
|
|
6532
6532
|
goog.dom.tags.isVoidTag = function(tagName) {
|
|
6533
6533
|
return !0 === goog.dom.tags.VOID_TAGS_[tagName];
|
|
6534
6534
|
};
|
|
6535
|
-
goog.html = {};
|
|
6536
|
-
goog.html.trustedtypes = {};
|
|
6537
|
-
goog.html.trustedtypes.POLICY_NAME = goog.TRUSTED_TYPES_POLICY_NAME ? goog.TRUSTED_TYPES_POLICY_NAME + "#html" : "";
|
|
6538
|
-
goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse = function() {
|
|
6539
|
-
if (!goog.html.trustedtypes.POLICY_NAME) {
|
|
6540
|
-
return null;
|
|
6541
|
-
}
|
|
6542
|
-
void 0 === goog.html.trustedtypes.cachedPolicy_ && (goog.html.trustedtypes.cachedPolicy_ = goog.createTrustedTypesPolicy(goog.html.trustedtypes.POLICY_NAME));
|
|
6543
|
-
return goog.html.trustedtypes.cachedPolicy_;
|
|
6544
|
-
};
|
|
6545
|
-
goog.string.TypedString = function() {
|
|
6546
|
-
};
|
|
6547
|
-
goog.string.Const = function(opt_token, opt_content) {
|
|
6548
|
-
this.stringConstValueWithSecurityContract__googStringSecurityPrivate_ = opt_token === goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ && opt_content || "";
|
|
6549
|
-
this.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ = goog.string.Const.TYPE_MARKER_;
|
|
6550
|
-
};
|
|
6551
|
-
goog.string.Const.prototype.implementsGoogStringTypedString = !0;
|
|
6552
|
-
goog.string.Const.prototype.getTypedStringValue = function() {
|
|
6553
|
-
return this.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
|
|
6554
|
-
};
|
|
6555
|
-
goog.string.Const.prototype.toString = function() {
|
|
6556
|
-
return this.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
|
|
6557
|
-
};
|
|
6558
|
-
goog.string.Const.unwrap = function(stringConst) {
|
|
6559
|
-
if (stringConst instanceof goog.string.Const && stringConst.constructor === goog.string.Const && stringConst.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ === goog.string.Const.TYPE_MARKER_) {
|
|
6560
|
-
return stringConst.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
|
|
6561
|
-
}
|
|
6562
|
-
goog.asserts.fail("expected object of type Const, got '" + stringConst + "'");
|
|
6563
|
-
return "type_error:Const";
|
|
6564
|
-
};
|
|
6565
|
-
goog.string.Const.from = function(s) {
|
|
6566
|
-
return new goog.string.Const(goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_, s);
|
|
6567
|
-
};
|
|
6568
|
-
goog.string.Const.TYPE_MARKER_ = {};
|
|
6569
|
-
goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ = {};
|
|
6570
|
-
goog.string.Const.EMPTY = goog.string.Const.from("");
|
|
6571
|
-
var module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$contents$goog$html$SafeScript_SafeScript = function(value, token) {
|
|
6572
|
-
if (goog.DEBUG && token !== module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE) {
|
|
6573
|
-
throw Error("SafeScript is not meant to be built directly");
|
|
6574
|
-
}
|
|
6575
|
-
this.privateDoNotAccessOrElseSafeScriptWrappedValue_ = value;
|
|
6576
|
-
};
|
|
6577
|
-
module$contents$goog$html$SafeScript_SafeScript.prototype.toString = function() {
|
|
6578
|
-
return this.privateDoNotAccessOrElseSafeScriptWrappedValue_.toString();
|
|
6579
|
-
};
|
|
6580
|
-
module$contents$goog$html$SafeScript_SafeScript.fromConstant = function(script) {
|
|
6581
|
-
var scriptString = goog.string.Const.unwrap(script);
|
|
6582
|
-
return 0 === scriptString.length ? module$contents$goog$html$SafeScript_SafeScript.EMPTY : module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(scriptString);
|
|
6583
|
-
};
|
|
6584
|
-
module$contents$goog$html$SafeScript_SafeScript.fromJson = function(val) {
|
|
6585
|
-
return module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(module$contents$goog$html$SafeScript_SafeScript.stringify_(val));
|
|
6586
|
-
};
|
|
6587
|
-
module$contents$goog$html$SafeScript_SafeScript.unwrap = function(safeScript) {
|
|
6588
|
-
return module$contents$goog$html$SafeScript_SafeScript.unwrapTrustedScript(safeScript).toString();
|
|
6589
|
-
};
|
|
6590
|
-
module$contents$goog$html$SafeScript_SafeScript.unwrapTrustedScript = function(safeScript) {
|
|
6591
|
-
if (safeScript instanceof module$contents$goog$html$SafeScript_SafeScript && safeScript.constructor === module$contents$goog$html$SafeScript_SafeScript) {
|
|
6592
|
-
return safeScript.privateDoNotAccessOrElseSafeScriptWrappedValue_;
|
|
6593
|
-
}
|
|
6594
|
-
(0,goog.asserts.fail)("expected object of type SafeScript, got '" + safeScript + "' of type " + goog.typeOf(safeScript));
|
|
6595
|
-
return "type_error:SafeScript";
|
|
6596
|
-
};
|
|
6597
|
-
module$contents$goog$html$SafeScript_SafeScript.stringify_ = function(val) {
|
|
6598
|
-
return JSON.stringify(val).replace(/</g, "\\x3c");
|
|
6599
|
-
};
|
|
6600
|
-
module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse = function(script) {
|
|
6601
|
-
var noinlineScript = script, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(noinlineScript) : noinlineScript;
|
|
6602
|
-
return new module$contents$goog$html$SafeScript_SafeScript(trustedScript, module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
6603
|
-
};
|
|
6604
|
-
module$contents$goog$html$SafeScript_SafeScript.EMPTY = function() {
|
|
6605
|
-
return module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse("");
|
|
6606
|
-
}();
|
|
6607
|
-
goog.html.SafeScript = module$contents$goog$html$SafeScript_SafeScript;
|
|
6608
6535
|
goog.fs = {};
|
|
6609
6536
|
goog.fs.url = {};
|
|
6610
6537
|
goog.fs.url.createObjectUrl = function(obj) {
|
|
@@ -6632,33 +6559,36 @@ goog.fs.url.findUrlObject_ = function() {
|
|
|
6632
6559
|
goog.fs.url.browserSupportsObjectUrls = function() {
|
|
6633
6560
|
return null != goog.fs.url.findUrlObject_();
|
|
6634
6561
|
};
|
|
6635
|
-
goog.
|
|
6636
|
-
goog.
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
}
|
|
6642
|
-
return bb.getBlob();
|
|
6562
|
+
goog.html = {};
|
|
6563
|
+
goog.html.trustedtypes = {};
|
|
6564
|
+
goog.html.trustedtypes.POLICY_NAME = goog.TRUSTED_TYPES_POLICY_NAME ? goog.TRUSTED_TYPES_POLICY_NAME + "#html" : "";
|
|
6565
|
+
goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse = function() {
|
|
6566
|
+
if (!goog.html.trustedtypes.POLICY_NAME) {
|
|
6567
|
+
return null;
|
|
6643
6568
|
}
|
|
6644
|
-
|
|
6569
|
+
void 0 === goog.html.trustedtypes.cachedPolicy_ && (goog.html.trustedtypes.cachedPolicy_ = goog.createTrustedTypesPolicy(goog.html.trustedtypes.POLICY_NAME));
|
|
6570
|
+
return goog.html.trustedtypes.cachedPolicy_;
|
|
6645
6571
|
};
|
|
6646
|
-
goog.
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
if (
|
|
6655
|
-
|
|
6656
|
-
opt_type && (properties.type = opt_type);
|
|
6657
|
-
opt_endings && (properties.endings = opt_endings);
|
|
6658
|
-
return new Blob(parts, properties);
|
|
6572
|
+
goog.string.Const = function(opt_token, opt_content) {
|
|
6573
|
+
this.stringConstValueWithSecurityContract__googStringSecurityPrivate_ = opt_token === goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ && opt_content || "";
|
|
6574
|
+
this.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ = goog.string.Const.TYPE_MARKER_;
|
|
6575
|
+
};
|
|
6576
|
+
goog.string.Const.prototype.toString = function() {
|
|
6577
|
+
return this.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
|
|
6578
|
+
};
|
|
6579
|
+
goog.string.Const.unwrap = function(stringConst) {
|
|
6580
|
+
if (stringConst instanceof goog.string.Const && stringConst.constructor === goog.string.Const && stringConst.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ === goog.string.Const.TYPE_MARKER_) {
|
|
6581
|
+
return stringConst.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
|
|
6659
6582
|
}
|
|
6660
|
-
|
|
6583
|
+
goog.asserts.fail("expected object of type Const, got '" + stringConst + "'");
|
|
6584
|
+
return "type_error:Const";
|
|
6585
|
+
};
|
|
6586
|
+
goog.string.Const.from = function(s) {
|
|
6587
|
+
return new goog.string.Const(goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_, s);
|
|
6661
6588
|
};
|
|
6589
|
+
goog.string.Const.TYPE_MARKER_ = {};
|
|
6590
|
+
goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ = {};
|
|
6591
|
+
goog.string.Const.EMPTY = goog.string.Const.from("");
|
|
6662
6592
|
goog.html.TrustedResourceUrl = function(value, token) {
|
|
6663
6593
|
if (goog.DEBUG && token !== goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_) {
|
|
6664
6594
|
throw Error("TrustedResourceUrl is not meant to be built directly");
|
|
@@ -6668,10 +6598,6 @@ goog.html.TrustedResourceUrl = function(value, token) {
|
|
|
6668
6598
|
goog.html.TrustedResourceUrl.prototype.toString = function() {
|
|
6669
6599
|
return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ + "";
|
|
6670
6600
|
};
|
|
6671
|
-
goog.html.TrustedResourceUrl.prototype.implementsGoogStringTypedString = !0;
|
|
6672
|
-
goog.html.TrustedResourceUrl.prototype.getTypedStringValue = function() {
|
|
6673
|
-
return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_.toString();
|
|
6674
|
-
};
|
|
6675
6601
|
goog.html.TrustedResourceUrl.prototype.cloneWithParams = function(searchParams, opt_hashParams) {
|
|
6676
6602
|
var url = goog.html.TrustedResourceUrl.unwrap(this), parts = goog.html.TrustedResourceUrl.URL_PARAM_PARSER_.exec(url), urlHash = parts[3] || "";
|
|
6677
6603
|
return goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(parts[1] + goog.html.TrustedResourceUrl.stringifyParams_("?", parts[2] || "", searchParams) + goog.html.TrustedResourceUrl.stringifyParams_("#", urlHash, opt_hashParams));
|
|
@@ -6715,10 +6641,6 @@ goog.html.TrustedResourceUrl.fromConstants = function(parts) {
|
|
|
6715
6641
|
}
|
|
6716
6642
|
return goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(unwrapped);
|
|
6717
6643
|
};
|
|
6718
|
-
goog.html.TrustedResourceUrl.fromSafeScript = function(safeScript) {
|
|
6719
|
-
var blob = goog.fs.blob.getBlobWithProperties([module$contents$goog$html$SafeScript_SafeScript.unwrap(safeScript)], "text/javascript"), url = goog.fs.url.createObjectUrl(blob);
|
|
6720
|
-
return goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(url);
|
|
6721
|
-
};
|
|
6722
6644
|
goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_ = {};
|
|
6723
6645
|
goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse = function(url) {
|
|
6724
6646
|
var noinlineUrl = url, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(noinlineUrl) : noinlineUrl;
|
|
@@ -6741,6 +6663,8 @@ goog.html.TrustedResourceUrl.stringifyParams_ = function(prefix, currentString,
|
|
|
6741
6663
|
}
|
|
6742
6664
|
return currentString;
|
|
6743
6665
|
};
|
|
6666
|
+
goog.string.TypedString = function() {
|
|
6667
|
+
};
|
|
6744
6668
|
goog.html.SafeUrl = function(value, token) {
|
|
6745
6669
|
if (goog.DEBUG && token !== goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_) {
|
|
6746
6670
|
throw Error("SafeUrl is not meant to be built directly");
|
|
@@ -6778,7 +6702,7 @@ goog.html.SafeUrl.fromBlob = function(blob) {
|
|
|
6778
6702
|
return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
|
|
6779
6703
|
};
|
|
6780
6704
|
goog.html.SafeUrl.revokeObjectUrl = function(safeUrl) {
|
|
6781
|
-
var url = safeUrl.
|
|
6705
|
+
var url = safeUrl.toString();
|
|
6782
6706
|
url !== goog.html.SafeUrl.INNOCUOUS_STRING && goog.fs.url.revokeObjectUrl(url);
|
|
6783
6707
|
};
|
|
6784
6708
|
goog.html.SafeUrl.fromMediaSource = function(mediaSource) {
|
|
@@ -6870,7 +6794,7 @@ goog.html.SafeUrl.trySanitize = function(url) {
|
|
|
6870
6794
|
if (url instanceof goog.html.SafeUrl) {
|
|
6871
6795
|
return url;
|
|
6872
6796
|
}
|
|
6873
|
-
url =
|
|
6797
|
+
url = String(url);
|
|
6874
6798
|
return goog.html.SAFE_URL_PATTERN_.test(url) ? goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url) : goog.html.SafeUrl.tryFromDataUrl(url);
|
|
6875
6799
|
};
|
|
6876
6800
|
goog.html.SafeUrl.sanitize = function(url) {
|
|
@@ -6880,10 +6804,10 @@ goog.html.SafeUrl.sanitizeAssertUnchanged = function(url, opt_allowDataUrl) {
|
|
|
6880
6804
|
if (url instanceof goog.html.SafeUrl) {
|
|
6881
6805
|
return url;
|
|
6882
6806
|
}
|
|
6883
|
-
url =
|
|
6807
|
+
url = String(url);
|
|
6884
6808
|
if (opt_allowDataUrl && /^data:/i.test(url)) {
|
|
6885
6809
|
var safeUrl = goog.html.SafeUrl.fromDataUrl(url);
|
|
6886
|
-
if (safeUrl.
|
|
6810
|
+
if (safeUrl.toString() == url) {
|
|
6887
6811
|
return safeUrl;
|
|
6888
6812
|
}
|
|
6889
6813
|
}
|
|
@@ -6926,7 +6850,7 @@ goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged = function(url) {
|
|
|
6926
6850
|
if (url instanceof goog.html.SafeUrl) {
|
|
6927
6851
|
return url;
|
|
6928
6852
|
}
|
|
6929
|
-
url =
|
|
6853
|
+
url = String(url);
|
|
6930
6854
|
var parsedScheme = goog.html.SafeUrl.extractScheme(url);
|
|
6931
6855
|
goog.asserts.assert("javascript:" !== parsedScheme, "%s is a javascript: URL", url) || (url = goog.html.SafeUrl.INNOCUOUS_STRING);
|
|
6932
6856
|
return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
|
|
@@ -6942,7 +6866,6 @@ var module$contents$goog$html$SafeStyle_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$c
|
|
|
6942
6866
|
throw Error("SafeStyle is not meant to be built directly");
|
|
6943
6867
|
}
|
|
6944
6868
|
this.privateDoNotAccessOrElseSafeStyleWrappedValue_ = value;
|
|
6945
|
-
this.implementsGoogStringTypedString = !0;
|
|
6946
6869
|
};
|
|
6947
6870
|
module$contents$goog$html$SafeStyle_SafeStyle.fromConstant = function(style) {
|
|
6948
6871
|
var styleString = goog.string.Const.unwrap(style);
|
|
@@ -6953,9 +6876,6 @@ module$contents$goog$html$SafeStyle_SafeStyle.fromConstant = function(style) {
|
|
|
6953
6876
|
(0,goog.asserts.assert)((0,goog.string.internal.contains)(styleString, ":"), "Style string must contain at least one ':', to specify a \"name: value\" pair: " + styleString);
|
|
6954
6877
|
return module$contents$goog$html$SafeStyle_SafeStyle.createSafeStyleSecurityPrivateDoNotAccessOrElse(styleString);
|
|
6955
6878
|
};
|
|
6956
|
-
module$contents$goog$html$SafeStyle_SafeStyle.prototype.getTypedStringValue = function() {
|
|
6957
|
-
return this.privateDoNotAccessOrElseSafeStyleWrappedValue_;
|
|
6958
|
-
};
|
|
6959
6879
|
module$contents$goog$html$SafeStyle_SafeStyle.prototype.toString = function() {
|
|
6960
6880
|
return this.privateDoNotAccessOrElseSafeStyleWrappedValue_.toString();
|
|
6961
6881
|
};
|
|
@@ -7053,7 +6973,7 @@ function module$contents$goog$html$SafeStyle_sanitizeUrl(value) {
|
|
|
7053
6973
|
quote = start;
|
|
7054
6974
|
return inside;
|
|
7055
6975
|
});
|
|
7056
|
-
var sanitized = goog.html.SafeUrl.sanitize(url).
|
|
6976
|
+
var sanitized = goog.html.SafeUrl.sanitize(url).toString();
|
|
7057
6977
|
return before + quote + sanitized + quote + after;
|
|
7058
6978
|
});
|
|
7059
6979
|
}
|
|
@@ -7125,10 +7045,6 @@ var module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$co
|
|
|
7125
7045
|
throw Error("SafeHtml is not meant to be built directly");
|
|
7126
7046
|
}
|
|
7127
7047
|
this.privateDoNotAccessOrElseSafeHtmlWrappedValue_ = value;
|
|
7128
|
-
this.implementsGoogStringTypedString = !0;
|
|
7129
|
-
};
|
|
7130
|
-
module$contents$goog$html$SafeHtml_SafeHtml.prototype.getTypedStringValue = function() {
|
|
7131
|
-
return this.privateDoNotAccessOrElseSafeHtmlWrappedValue_.toString();
|
|
7132
7048
|
};
|
|
7133
7049
|
module$contents$goog$html$SafeHtml_SafeHtml.prototype.toString = function() {
|
|
7134
7050
|
return this.privateDoNotAccessOrElseSafeHtmlWrappedValue_.toString();
|
|
@@ -7199,23 +7115,6 @@ module$contents$goog$html$SafeHtml_SafeHtml.createScriptSrc = function(src, attr
|
|
|
7199
7115
|
var combinedAttrs = module$contents$goog$html$SafeHtml_SafeHtml.combineAttributes({src:src}, {}, attributes);
|
|
7200
7116
|
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("script", combinedAttrs);
|
|
7201
7117
|
};
|
|
7202
|
-
module$contents$goog$html$SafeHtml_SafeHtml.createScript = function(script, attributes) {
|
|
7203
|
-
for (var attr in attributes) {
|
|
7204
|
-
if (Object.prototype.hasOwnProperty.call(attributes, attr)) {
|
|
7205
|
-
var attrLower = attr.toLowerCase();
|
|
7206
|
-
if ("language" == attrLower || "src" == attrLower || "text" == attrLower) {
|
|
7207
|
-
throw Error(module$contents$goog$html$SafeHtml_SafeHtml.ENABLE_ERROR_MESSAGES ? 'Cannot set "' + attrLower + '" attribute' : "");
|
|
7208
|
-
}
|
|
7209
|
-
}
|
|
7210
|
-
}
|
|
7211
|
-
var content = "";
|
|
7212
|
-
script = module$contents$goog$array_concat(script);
|
|
7213
|
-
for (var i = 0; i < script.length; i++) {
|
|
7214
|
-
content += module$contents$goog$html$SafeScript_SafeScript.unwrap(script[i]);
|
|
7215
|
-
}
|
|
7216
|
-
var htmlContent = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content);
|
|
7217
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("script", attributes, htmlContent);
|
|
7218
|
-
};
|
|
7219
7118
|
module$contents$goog$html$SafeHtml_SafeHtml.createStyle = function(styleSheet, attributes) {
|
|
7220
7119
|
var combinedAttrs = module$contents$goog$html$SafeHtml_SafeHtml.combineAttributes({type:"text/css"}, {}, attributes), content = "";
|
|
7221
7120
|
styleSheet = module$contents$goog$array_concat(styleSheet);
|
|
@@ -7350,6 +7249,43 @@ goog.html.SafeHtml = module$contents$goog$html$SafeHtml_SafeHtml;
|
|
|
7350
7249
|
SPDX-License-Identifier: Apache-2.0
|
|
7351
7250
|
*/
|
|
7352
7251
|
var module$contents$safevalues$environment$dev_module = module$contents$safevalues$environment$dev_module || {id:"third_party/javascript/safevalues/environment/dev.closure.js"};
|
|
7252
|
+
var module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$contents$goog$html$SafeScript_SafeScript = function(value, token) {
|
|
7253
|
+
if (goog.DEBUG && token !== module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE) {
|
|
7254
|
+
throw Error("SafeScript is not meant to be built directly");
|
|
7255
|
+
}
|
|
7256
|
+
this.privateDoNotAccessOrElseSafeScriptWrappedValue_ = value;
|
|
7257
|
+
};
|
|
7258
|
+
module$contents$goog$html$SafeScript_SafeScript.prototype.toString = function() {
|
|
7259
|
+
return this.privateDoNotAccessOrElseSafeScriptWrappedValue_.toString();
|
|
7260
|
+
};
|
|
7261
|
+
module$contents$goog$html$SafeScript_SafeScript.fromConstant = function(script) {
|
|
7262
|
+
var scriptString = goog.string.Const.unwrap(script);
|
|
7263
|
+
return 0 === scriptString.length ? module$contents$goog$html$SafeScript_SafeScript.EMPTY : module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(scriptString);
|
|
7264
|
+
};
|
|
7265
|
+
module$contents$goog$html$SafeScript_SafeScript.fromJson = function(val) {
|
|
7266
|
+
return module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(module$contents$goog$html$SafeScript_SafeScript.stringify_(val));
|
|
7267
|
+
};
|
|
7268
|
+
module$contents$goog$html$SafeScript_SafeScript.unwrap = function(safeScript) {
|
|
7269
|
+
return module$contents$goog$html$SafeScript_SafeScript.unwrapTrustedScript(safeScript).toString();
|
|
7270
|
+
};
|
|
7271
|
+
module$contents$goog$html$SafeScript_SafeScript.unwrapTrustedScript = function(safeScript) {
|
|
7272
|
+
if (safeScript instanceof module$contents$goog$html$SafeScript_SafeScript && safeScript.constructor === module$contents$goog$html$SafeScript_SafeScript) {
|
|
7273
|
+
return safeScript.privateDoNotAccessOrElseSafeScriptWrappedValue_;
|
|
7274
|
+
}
|
|
7275
|
+
(0,goog.asserts.fail)("expected object of type SafeScript, got '" + safeScript + "' of type " + goog.typeOf(safeScript));
|
|
7276
|
+
return "type_error:SafeScript";
|
|
7277
|
+
};
|
|
7278
|
+
module$contents$goog$html$SafeScript_SafeScript.stringify_ = function(val) {
|
|
7279
|
+
return JSON.stringify(val).replace(/</g, "\\x3c");
|
|
7280
|
+
};
|
|
7281
|
+
module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse = function(script) {
|
|
7282
|
+
var noinlineScript = script, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(noinlineScript) : noinlineScript;
|
|
7283
|
+
return new module$contents$goog$html$SafeScript_SafeScript(trustedScript, module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7284
|
+
};
|
|
7285
|
+
module$contents$goog$html$SafeScript_SafeScript.EMPTY = function() {
|
|
7286
|
+
return module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse("");
|
|
7287
|
+
}();
|
|
7288
|
+
goog.html.SafeScript = module$contents$goog$html$SafeScript_SafeScript;
|
|
7353
7289
|
var module$exports$goog$html$internals = {};
|
|
7354
7290
|
module$exports$goog$html$internals.createSafeHtml = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse;
|
|
7355
7291
|
module$exports$goog$html$internals.createSafeScript = module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse;
|
|
@@ -7542,9 +7478,6 @@ goog.dom.safe.setInputFormAction = function(input, url) {
|
|
|
7542
7478
|
var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
|
|
7543
7479
|
module$contents$goog$asserts$dom_assertIsHtmlInputElement(input).formAction = goog.html.SafeUrl.unwrap(safeUrl);
|
|
7544
7480
|
};
|
|
7545
|
-
goog.dom.safe.setStyle = function(elem, style) {
|
|
7546
|
-
elem.style.cssText = module$contents$goog$html$SafeStyle_SafeStyle.unwrap(style);
|
|
7547
|
-
};
|
|
7548
7481
|
goog.dom.safe.documentWrite = function(doc, html) {
|
|
7549
7482
|
doc.write(module$contents$goog$html$SafeHtml_SafeHtml.unwrapTrustedHTML(html));
|
|
7550
7483
|
};
|
|
@@ -7563,14 +7496,6 @@ goog.dom.safe.setVideoSrc = function(videoElement, url) {
|
|
|
7563
7496
|
var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
|
|
7564
7497
|
videoElement.src = goog.html.SafeUrl.unwrap(safeUrl);
|
|
7565
7498
|
};
|
|
7566
|
-
goog.dom.safe.setEmbedSrc = function(embed, url) {
|
|
7567
|
-
module$contents$goog$asserts$dom_assertIsHtmlEmbedElement(embed);
|
|
7568
|
-
embed.src = goog.html.TrustedResourceUrl.unwrapTrustedScriptURL(url);
|
|
7569
|
-
};
|
|
7570
|
-
goog.dom.safe.setFrameSrc = function(frame, url) {
|
|
7571
|
-
module$contents$goog$asserts$dom_assertIsHtmlFrameElement(frame);
|
|
7572
|
-
frame.src = goog.html.TrustedResourceUrl.unwrap(url);
|
|
7573
|
-
};
|
|
7574
7499
|
goog.dom.safe.setIframeSrc = function(iframe, url) {
|
|
7575
7500
|
module$contents$goog$asserts$dom_assertIsHtmlIFrameElement(iframe);
|
|
7576
7501
|
iframe.src = goog.html.TrustedResourceUrl.unwrap(url);
|
|
@@ -7591,20 +7516,11 @@ goog.dom.safe.setLinkHrefAndRel = function(link, url, rel) {
|
|
|
7591
7516
|
link.href = url instanceof goog.html.TrustedResourceUrl ? goog.html.TrustedResourceUrl.unwrap(url) : url instanceof goog.html.SafeUrl ? goog.html.SafeUrl.unwrap(url) : goog.html.SafeUrl.unwrap(goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url));
|
|
7592
7517
|
}
|
|
7593
7518
|
};
|
|
7594
|
-
goog.dom.safe.setObjectData = function(object, url) {
|
|
7595
|
-
module$contents$goog$asserts$dom_assertIsHtmlObjectElement(object);
|
|
7596
|
-
object.data = goog.html.TrustedResourceUrl.unwrapTrustedScriptURL(url);
|
|
7597
|
-
};
|
|
7598
7519
|
goog.dom.safe.setScriptSrc = function(script, url) {
|
|
7599
7520
|
module$contents$goog$asserts$dom_assertIsHtmlScriptElement(script);
|
|
7600
7521
|
goog.dom.safe.setNonceForScriptElement_(script);
|
|
7601
7522
|
script.src = goog.html.TrustedResourceUrl.unwrapTrustedScriptURL(url);
|
|
7602
7523
|
};
|
|
7603
|
-
goog.dom.safe.setScriptContent = function(script, content) {
|
|
7604
|
-
module$contents$goog$asserts$dom_assertIsHtmlScriptElement(script);
|
|
7605
|
-
goog.dom.safe.setNonceForScriptElement_(script);
|
|
7606
|
-
script.textContent = module$contents$goog$html$SafeScript_SafeScript.unwrapTrustedScript(content);
|
|
7607
|
-
};
|
|
7608
7524
|
goog.dom.safe.setNonceForScriptElement_ = function(script) {
|
|
7609
7525
|
var nonce = goog.dom.safe.getScriptNonce(script.ownerDocument && script.ownerDocument.defaultView);
|
|
7610
7526
|
nonce && script.setAttribute("nonce", nonce);
|
|
@@ -7645,9 +7561,6 @@ goog.dom.safe.createImageFromBlob = function(blob) {
|
|
|
7645
7561
|
image.src = objectUrl;
|
|
7646
7562
|
return image;
|
|
7647
7563
|
};
|
|
7648
|
-
goog.dom.safe.createContextualFragment = function(range, html) {
|
|
7649
|
-
return range.createContextualFragment(module$contents$goog$html$SafeHtml_SafeHtml.unwrapTrustedHTML(html));
|
|
7650
|
-
};
|
|
7651
7564
|
goog.dom.safe.getScriptNonce = function(opt_window) {
|
|
7652
7565
|
return goog.dom.safe.getNonce_("script[nonce]", opt_window);
|
|
7653
7566
|
};
|
|
@@ -10398,13 +10311,14 @@ module$exports$eeapiclient$ee_api_client.ExportClassifierRequest = function(para
|
|
|
10398
10311
|
this.Serializable$set("assetExportOptions", null == parameters.assetExportOptions ? null : parameters.assetExportOptions);
|
|
10399
10312
|
this.Serializable$set("maxWorkers", null == parameters.maxWorkers ? null : parameters.maxWorkers);
|
|
10400
10313
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10314
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10401
10315
|
};
|
|
10402
10316
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportClassifierRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10403
10317
|
module$exports$eeapiclient$ee_api_client.ExportClassifierRequest.prototype.getConstructor = function() {
|
|
10404
10318
|
return module$exports$eeapiclient$ee_api_client.ExportClassifierRequest;
|
|
10405
10319
|
};
|
|
10406
10320
|
module$exports$eeapiclient$ee_api_client.ExportClassifierRequest.prototype.getPartialClassMetadata = function() {
|
|
10407
|
-
return {keys:"assetExportOptions description expression maxWorkers requestId workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.ClassifierAssetExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression}};
|
|
10321
|
+
return {keys:"assetExportOptions description expression maxWorkers priority requestId workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.ClassifierAssetExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression}};
|
|
10408
10322
|
};
|
|
10409
10323
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportClassifierRequest.prototype, {assetExportOptions:{configurable:!0, enumerable:!0, get:function() {
|
|
10410
10324
|
return this.Serializable$has("assetExportOptions") ? this.Serializable$get("assetExportOptions") : null;
|
|
@@ -10422,6 +10336,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10422
10336
|
return this.Serializable$has("maxWorkers") ? this.Serializable$get("maxWorkers") : null;
|
|
10423
10337
|
}, set:function(value) {
|
|
10424
10338
|
this.Serializable$set("maxWorkers", value);
|
|
10339
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10340
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10341
|
+
}, set:function(value) {
|
|
10342
|
+
this.Serializable$set("priority", value);
|
|
10425
10343
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10426
10344
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10427
10345
|
}, set:function(value) {
|
|
@@ -10445,13 +10363,14 @@ module$exports$eeapiclient$ee_api_client.ExportImageRequest = function(parameter
|
|
|
10445
10363
|
this.Serializable$set("requestId", null == parameters.requestId ? null : parameters.requestId);
|
|
10446
10364
|
this.Serializable$set("maxWorkers", null == parameters.maxWorkers ? null : parameters.maxWorkers);
|
|
10447
10365
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10366
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10448
10367
|
};
|
|
10449
10368
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportImageRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10450
10369
|
module$exports$eeapiclient$ee_api_client.ExportImageRequest.prototype.getConstructor = function() {
|
|
10451
10370
|
return module$exports$eeapiclient$ee_api_client.ExportImageRequest;
|
|
10452
10371
|
};
|
|
10453
10372
|
module$exports$eeapiclient$ee_api_client.ExportImageRequest.prototype.getPartialClassMetadata = function() {
|
|
10454
|
-
return {keys:"assetExportOptions description expression fileExportOptions grid maxPixels maxWorkers requestId workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.ImageAssetExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression, fileExportOptions:module$exports$eeapiclient$ee_api_client.ImageFileExportOptions, grid:module$exports$eeapiclient$ee_api_client.PixelGrid}};
|
|
10373
|
+
return {keys:"assetExportOptions description expression fileExportOptions grid maxPixels maxWorkers priority requestId workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.ImageAssetExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression, fileExportOptions:module$exports$eeapiclient$ee_api_client.ImageFileExportOptions, grid:module$exports$eeapiclient$ee_api_client.PixelGrid}};
|
|
10455
10374
|
};
|
|
10456
10375
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportImageRequest.prototype, {assetExportOptions:{configurable:!0, enumerable:!0, get:function() {
|
|
10457
10376
|
return this.Serializable$has("assetExportOptions") ? this.Serializable$get("assetExportOptions") : null;
|
|
@@ -10481,6 +10400,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10481
10400
|
return this.Serializable$has("maxWorkers") ? this.Serializable$get("maxWorkers") : null;
|
|
10482
10401
|
}, set:function(value) {
|
|
10483
10402
|
this.Serializable$set("maxWorkers", value);
|
|
10403
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10404
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10405
|
+
}, set:function(value) {
|
|
10406
|
+
this.Serializable$set("priority", value);
|
|
10484
10407
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10485
10408
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10486
10409
|
}, set:function(value) {
|
|
@@ -10502,13 +10425,14 @@ module$exports$eeapiclient$ee_api_client.ExportMapRequest = function(parameters)
|
|
|
10502
10425
|
this.Serializable$set("requestId", null == parameters.requestId ? null : parameters.requestId);
|
|
10503
10426
|
this.Serializable$set("maxWorkers", null == parameters.maxWorkers ? null : parameters.maxWorkers);
|
|
10504
10427
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10428
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10505
10429
|
};
|
|
10506
10430
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportMapRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10507
10431
|
module$exports$eeapiclient$ee_api_client.ExportMapRequest.prototype.getConstructor = function() {
|
|
10508
10432
|
return module$exports$eeapiclient$ee_api_client.ExportMapRequest;
|
|
10509
10433
|
};
|
|
10510
10434
|
module$exports$eeapiclient$ee_api_client.ExportMapRequest.prototype.getPartialClassMetadata = function() {
|
|
10511
|
-
return {keys:"description expression maxWorkers requestId tileExportOptions tileOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, tileExportOptions:module$exports$eeapiclient$ee_api_client.ImageFileExportOptions, tileOptions:module$exports$eeapiclient$ee_api_client.TileOptions}};
|
|
10435
|
+
return {keys:"description expression maxWorkers priority requestId tileExportOptions tileOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, tileExportOptions:module$exports$eeapiclient$ee_api_client.ImageFileExportOptions, tileOptions:module$exports$eeapiclient$ee_api_client.TileOptions}};
|
|
10512
10436
|
};
|
|
10513
10437
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportMapRequest.prototype, {description:{configurable:!0, enumerable:!0, get:function() {
|
|
10514
10438
|
return this.Serializable$has("description") ? this.Serializable$get("description") : null;
|
|
@@ -10522,6 +10446,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10522
10446
|
return this.Serializable$has("maxWorkers") ? this.Serializable$get("maxWorkers") : null;
|
|
10523
10447
|
}, set:function(value) {
|
|
10524
10448
|
this.Serializable$set("maxWorkers", value);
|
|
10449
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10450
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10451
|
+
}, set:function(value) {
|
|
10452
|
+
this.Serializable$set("priority", value);
|
|
10525
10453
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10526
10454
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10527
10455
|
}, set:function(value) {
|
|
@@ -10557,13 +10485,14 @@ module$exports$eeapiclient$ee_api_client.ExportTableRequest = function(parameter
|
|
|
10557
10485
|
this.Serializable$set("maxVertices", null == parameters.maxVertices ? null : parameters.maxVertices);
|
|
10558
10486
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10559
10487
|
this.Serializable$set("policy", null == parameters.policy ? null : parameters.policy);
|
|
10488
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10560
10489
|
};
|
|
10561
10490
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportTableRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10562
10491
|
module$exports$eeapiclient$ee_api_client.ExportTableRequest.prototype.getConstructor = function() {
|
|
10563
10492
|
return module$exports$eeapiclient$ee_api_client.ExportTableRequest;
|
|
10564
10493
|
};
|
|
10565
10494
|
module$exports$eeapiclient$ee_api_client.ExportTableRequest.prototype.getPartialClassMetadata = function() {
|
|
10566
|
-
return {keys:"assetExportOptions bigqueryExportOptions description expression featureViewExportOptions fileExportOptions maxErrorMeters maxVertices maxWorkers policy requestId selectors workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.TableAssetExportOptions, bigqueryExportOptions:module$exports$eeapiclient$ee_api_client.BigQueryExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression,
|
|
10495
|
+
return {keys:"assetExportOptions bigqueryExportOptions description expression featureViewExportOptions fileExportOptions maxErrorMeters maxVertices maxWorkers policy priority requestId selectors workloadTag".split(" "), objects:{assetExportOptions:module$exports$eeapiclient$ee_api_client.TableAssetExportOptions, bigqueryExportOptions:module$exports$eeapiclient$ee_api_client.BigQueryExportOptions, expression:module$exports$eeapiclient$ee_api_client.Expression,
|
|
10567
10496
|
featureViewExportOptions:module$exports$eeapiclient$ee_api_client.FeatureViewAssetExportOptions, fileExportOptions:module$exports$eeapiclient$ee_api_client.TableFileExportOptions, policy:module$exports$eeapiclient$ee_api_client.Policy}};
|
|
10568
10497
|
};
|
|
10569
10498
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportTableRequest.prototype, {assetExportOptions:{configurable:!0, enumerable:!0, get:function() {
|
|
@@ -10606,6 +10535,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10606
10535
|
return this.Serializable$has("policy") ? this.Serializable$get("policy") : null;
|
|
10607
10536
|
}, set:function(value) {
|
|
10608
10537
|
this.Serializable$set("policy", value);
|
|
10538
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10539
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10540
|
+
}, set:function(value) {
|
|
10541
|
+
this.Serializable$set("priority", value);
|
|
10609
10542
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10610
10543
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10611
10544
|
}, set:function(value) {
|
|
@@ -10633,13 +10566,14 @@ module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest = function(parame
|
|
|
10633
10566
|
this.Serializable$set("version", null == parameters.version ? null : parameters.version);
|
|
10634
10567
|
this.Serializable$set("maxWorkers", null == parameters.maxWorkers ? null : parameters.maxWorkers);
|
|
10635
10568
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10569
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10636
10570
|
};
|
|
10637
10571
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10638
10572
|
module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest.prototype.getConstructor = function() {
|
|
10639
10573
|
return module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest;
|
|
10640
10574
|
};
|
|
10641
10575
|
module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest.prototype.getPartialClassMetadata = function() {
|
|
10642
|
-
return {enums:{version:module$exports$eeapiclient$ee_api_client.ExportVideoMapRequestVersionEnum}, keys:"description expression maxWorkers requestId tileExportOptions tileOptions version videoOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, tileExportOptions:module$exports$eeapiclient$ee_api_client.VideoFileExportOptions, tileOptions:module$exports$eeapiclient$ee_api_client.TileOptions,
|
|
10576
|
+
return {enums:{version:module$exports$eeapiclient$ee_api_client.ExportVideoMapRequestVersionEnum}, keys:"description expression maxWorkers priority requestId tileExportOptions tileOptions version videoOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, tileExportOptions:module$exports$eeapiclient$ee_api_client.VideoFileExportOptions, tileOptions:module$exports$eeapiclient$ee_api_client.TileOptions,
|
|
10643
10577
|
videoOptions:module$exports$eeapiclient$ee_api_client.VideoOptions}};
|
|
10644
10578
|
};
|
|
10645
10579
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportVideoMapRequest.prototype, {description:{configurable:!0, enumerable:!0, get:function() {
|
|
@@ -10654,6 +10588,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10654
10588
|
return this.Serializable$has("maxWorkers") ? this.Serializable$get("maxWorkers") : null;
|
|
10655
10589
|
}, set:function(value) {
|
|
10656
10590
|
this.Serializable$set("maxWorkers", value);
|
|
10591
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10592
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10593
|
+
}, set:function(value) {
|
|
10594
|
+
this.Serializable$set("priority", value);
|
|
10657
10595
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10658
10596
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10659
10597
|
}, set:function(value) {
|
|
@@ -10694,13 +10632,14 @@ module$exports$eeapiclient$ee_api_client.ExportVideoRequest = function(parameter
|
|
|
10694
10632
|
this.Serializable$set("requestId", null == parameters.requestId ? null : parameters.requestId);
|
|
10695
10633
|
this.Serializable$set("maxWorkers", null == parameters.maxWorkers ? null : parameters.maxWorkers);
|
|
10696
10634
|
this.Serializable$set("workloadTag", null == parameters.workloadTag ? null : parameters.workloadTag);
|
|
10635
|
+
this.Serializable$set("priority", null == parameters.priority ? null : parameters.priority);
|
|
10697
10636
|
};
|
|
10698
10637
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.ExportVideoRequest, module$exports$eeapiclient$domain_object.Serializable);
|
|
10699
10638
|
module$exports$eeapiclient$ee_api_client.ExportVideoRequest.prototype.getConstructor = function() {
|
|
10700
10639
|
return module$exports$eeapiclient$ee_api_client.ExportVideoRequest;
|
|
10701
10640
|
};
|
|
10702
10641
|
module$exports$eeapiclient$ee_api_client.ExportVideoRequest.prototype.getPartialClassMetadata = function() {
|
|
10703
|
-
return {keys:"description expression fileExportOptions maxWorkers requestId videoOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, fileExportOptions:module$exports$eeapiclient$ee_api_client.VideoFileExportOptions, videoOptions:module$exports$eeapiclient$ee_api_client.VideoOptions}};
|
|
10642
|
+
return {keys:"description expression fileExportOptions maxWorkers priority requestId videoOptions workloadTag".split(" "), objects:{expression:module$exports$eeapiclient$ee_api_client.Expression, fileExportOptions:module$exports$eeapiclient$ee_api_client.VideoFileExportOptions, videoOptions:module$exports$eeapiclient$ee_api_client.VideoOptions}};
|
|
10704
10643
|
};
|
|
10705
10644
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ExportVideoRequest.prototype, {description:{configurable:!0, enumerable:!0, get:function() {
|
|
10706
10645
|
return this.Serializable$has("description") ? this.Serializable$get("description") : null;
|
|
@@ -10718,6 +10657,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
10718
10657
|
return this.Serializable$has("maxWorkers") ? this.Serializable$get("maxWorkers") : null;
|
|
10719
10658
|
}, set:function(value) {
|
|
10720
10659
|
this.Serializable$set("maxWorkers", value);
|
|
10660
|
+
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
10661
|
+
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
10662
|
+
}, set:function(value) {
|
|
10663
|
+
this.Serializable$set("priority", value);
|
|
10721
10664
|
}}, requestId:{configurable:!0, enumerable:!0, get:function() {
|
|
10722
10665
|
return this.Serializable$has("requestId") ? this.Serializable$get("requestId") : null;
|
|
10723
10666
|
}, set:function(value) {
|
|
@@ -14907,7 +14850,6 @@ goog.dom.getElementByTagNameAndClass_ = function(doc, opt_tag, opt_class, opt_el
|
|
|
14907
14850
|
goog.dom.$$ = goog.dom.getElementsByTagNameAndClass;
|
|
14908
14851
|
goog.dom.setProperties = function(element, properties) {
|
|
14909
14852
|
module$contents$goog$object_forEach(properties, function(val, key) {
|
|
14910
|
-
val && "object" == typeof val && val.implementsGoogStringTypedString && (val = val.getTypedStringValue());
|
|
14911
14853
|
"style" == key ? element.style.cssText = val : "class" == key ? element.className = val : "for" == key ? element.htmlFor = val : goog.dom.DIRECT_ATTRIBUTE_MAP_.hasOwnProperty(key) ? element.setAttribute(goog.dom.DIRECT_ATTRIBUTE_MAP_[key], val) : goog.string.startsWith(key, "aria-") || goog.string.startsWith(key, "data-") ? element.setAttribute(key, val) : element[key] = val;
|
|
14912
14854
|
});
|
|
14913
14855
|
};
|
|
@@ -18734,7 +18676,7 @@ var $jscomp$templatelit$294235699$94 = $jscomp.createTemplateTagFirstArg(["https
|
|
|
18734
18676
|
ee.apiclient = {};
|
|
18735
18677
|
var module$contents$ee$apiclient_apiclient = {};
|
|
18736
18678
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
18737
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
18679
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.386";
|
|
18738
18680
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
18739
18681
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
18740
18682
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19025,8 +18967,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19025
18967
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19026
18968
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19027
18969
|
method = method || "POST";
|
|
19028
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
19029
|
-
"0.1.
|
|
18970
|
+
var headers = {"Content-Type":contentType}, version = "0.1.386";
|
|
18971
|
+
"0.1.386" === version && (version = "latest");
|
|
19030
18972
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19031
18973
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19032
18974
|
if (null != authToken) {
|
|
@@ -20673,13 +20615,14 @@ var module$contents$goog$singleton_instantiatedSingletons = [], module$contents$
|
|
|
20673
20615
|
};
|
|
20674
20616
|
goog.singleton.getInstance = function(ctor) {
|
|
20675
20617
|
(0,goog.asserts.assert)(!Object.isSealed(ctor), "Cannot use getInstance() with a sealed constructor.");
|
|
20676
|
-
|
|
20618
|
+
var prop = "instance_";
|
|
20619
|
+
if (ctor.instance_ && ctor.hasOwnProperty(prop)) {
|
|
20677
20620
|
return ctor.instance_;
|
|
20678
20621
|
}
|
|
20679
20622
|
goog.DEBUG && module$contents$goog$singleton_instantiatedSingletons.push(ctor);
|
|
20680
20623
|
var instance = new ctor();
|
|
20681
20624
|
ctor.instance_ = instance;
|
|
20682
|
-
(0,goog.asserts.assert)(ctor.hasOwnProperty(
|
|
20625
|
+
(0,goog.asserts.assert)(ctor.hasOwnProperty(prop), "Could not instantiate singleton.");
|
|
20683
20626
|
return instance;
|
|
20684
20627
|
};
|
|
20685
20628
|
goog.singleton.instantiatedSingletons = module$contents$goog$singleton_instantiatedSingletons;
|