@google/earthengine 1.5.18 → 1.5.20
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 +196 -144
- package/build/ee_api_js.js +530 -526
- package/build/ee_api_js_debug.js +174 -122
- package/build/ee_api_js_npm.js +196 -144
- package/build/main.js +196 -144
- package/package.json +1 -1
- package/src/abstractoverlay.js +0 -8
- package/src/apiclient.js +1 -1
package/build/browser.js
CHANGED
|
@@ -1205,6 +1205,62 @@ $jscomp.polyfill("Array.prototype.find", function(orig) {
|
|
|
1205
1205
|
return $jscomp.findInternal(this, callback, opt_thisArg).v;
|
|
1206
1206
|
};
|
|
1207
1207
|
}, "es6", "es3");
|
|
1208
|
+
$jscomp.polyfill("Set.prototype.difference", function(orig) {
|
|
1209
|
+
return orig ? orig : function(other) {
|
|
1210
|
+
$jscomp.checkIsSetInstance(this);
|
|
1211
|
+
$jscomp.checkIsSetLike(other);
|
|
1212
|
+
for (var sets = $jscomp.getSmallerAndLargerSets(this, other), resultSet = new Set(this), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
|
|
1213
|
+
largerSet.has(next.value) && resultSet.delete(next.value), next = smallerSetIterator.next();
|
|
1214
|
+
}
|
|
1215
|
+
return resultSet;
|
|
1216
|
+
};
|
|
1217
|
+
}, "es_next", "es6");
|
|
1218
|
+
$jscomp.polyfill("Set.prototype.intersection", function(orig) {
|
|
1219
|
+
return orig ? orig : function(other) {
|
|
1220
|
+
$jscomp.checkIsSetInstance(this);
|
|
1221
|
+
$jscomp.checkIsSetLike(other);
|
|
1222
|
+
for (var resultSet = new Set(), sets = $jscomp.getSmallerAndLargerSets(this, other), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
|
|
1223
|
+
largerSet.has(next.value) && resultSet.add(next.value), next = smallerSetIterator.next();
|
|
1224
|
+
}
|
|
1225
|
+
return resultSet;
|
|
1226
|
+
};
|
|
1227
|
+
}, "es_next", "es6");
|
|
1228
|
+
$jscomp.polyfill("Set.prototype.isSubsetOf", function(orig) {
|
|
1229
|
+
return orig ? orig : function(other) {
|
|
1230
|
+
$jscomp.checkIsSetInstance(this);
|
|
1231
|
+
$jscomp.checkIsSetLike(other);
|
|
1232
|
+
if (this.size > other.size) {
|
|
1233
|
+
return !1;
|
|
1234
|
+
}
|
|
1235
|
+
for (var iterator = this.keys(), next = iterator.next(); !next.done;) {
|
|
1236
|
+
if (!other.has(next.value)) {
|
|
1237
|
+
return !1;
|
|
1238
|
+
}
|
|
1239
|
+
next = iterator.next();
|
|
1240
|
+
}
|
|
1241
|
+
return !0;
|
|
1242
|
+
};
|
|
1243
|
+
}, "es_next", "es6");
|
|
1244
|
+
$jscomp.checkIsSetLike = function(other) {
|
|
1245
|
+
if (typeof other !== "object" || other === null || typeof other.size !== "number" || other.size < 0 || typeof other.keys !== "function" || typeof other.has !== "function") {
|
|
1246
|
+
throw new TypeError("Argument must be set-like");
|
|
1247
|
+
}
|
|
1248
|
+
};
|
|
1249
|
+
$jscomp.checkIsValidIterator = function(iterator) {
|
|
1250
|
+
if (typeof iterator !== "object" || iterator === null || typeof iterator.next !== "function") {
|
|
1251
|
+
throw new TypeError("Invalid iterator.");
|
|
1252
|
+
}
|
|
1253
|
+
return iterator;
|
|
1254
|
+
};
|
|
1255
|
+
$jscomp.getSmallerAndLargerSets = function(thisSet, otherSet) {
|
|
1256
|
+
var smallerSetIterator, largerSet;
|
|
1257
|
+
return thisSet.size <= otherSet.size ? {smallerSetIterator:thisSet.keys(), largerSet:otherSet} : {smallerSetIterator:$jscomp.checkIsValidIterator(otherSet.keys()), largerSet:thisSet};
|
|
1258
|
+
};
|
|
1259
|
+
$jscomp.checkIsSetInstance = function(obj) {
|
|
1260
|
+
if (!(obj instanceof Set)) {
|
|
1261
|
+
throw new TypeError("Method must be called on an instance of Set.");
|
|
1262
|
+
}
|
|
1263
|
+
};
|
|
1208
1264
|
$jscomp.polyfill("String.prototype.codePointAt", function(orig) {
|
|
1209
1265
|
return orig ? orig : function(position) {
|
|
1210
1266
|
var string = $jscomp.checkStringArgs(this, null, "codePointAt"), size = string.length;
|
|
@@ -1258,7 +1314,7 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1258
1314
|
};
|
|
1259
1315
|
}, "es8", "es3");
|
|
1260
1316
|
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__disable_wiz_service_logging_map__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1,
|
|
1261
|
-
GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1,
|
|
1317
|
+
GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
1318
|
/*
|
|
1263
1319
|
|
|
1264
1320
|
Copyright The Closure Library Authors.
|
|
@@ -2151,9 +2207,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2151
2207
|
};
|
|
2152
2208
|
var module$contents$eeapiclient$domain_object_CopyValueGetter, module$contents$eeapiclient$domain_object_CopyValueSetter, module$contents$eeapiclient$domain_object_CopyConstructor, module$contents$eeapiclient$domain_object_CopyInstanciator;
|
|
2153
2209
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2154
|
-
for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$
|
|
2155
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2156
|
-
var key = $jscomp$key$
|
|
2210
|
+
for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$m1892927425$40$key = $jscomp$iter$19.next(), $jscomp$loop$m1892927425$44 = {}; !$jscomp$key$m1892927425$40$key.done; $jscomp$loop$m1892927425$44 =
|
|
2211
|
+
{mapMetadata:void 0}, $jscomp$key$m1892927425$40$key = $jscomp$iter$19.next()) {
|
|
2212
|
+
var key = $jscomp$key$m1892927425$40$key.value, value = valueGetter(key, source);
|
|
2157
2213
|
if (value != null) {
|
|
2158
2214
|
var copy = void 0;
|
|
2159
2215
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2164,11 +2220,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2164
2220
|
} else if (objects.hasOwnProperty(key)) {
|
|
2165
2221
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2166
2222
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2167
|
-
$jscomp$loop$
|
|
2223
|
+
$jscomp$loop$m1892927425$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m1892927425$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m1892927425$44) {
|
|
2168
2224
|
return function(v) {
|
|
2169
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2225
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m1892927425$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2170
2226
|
};
|
|
2171
|
-
}($jscomp$loop$
|
|
2227
|
+
}($jscomp$loop$m1892927425$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m1892927425$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2172
2228
|
} else if (Array.isArray(value)) {
|
|
2173
2229
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2174
2230
|
continue;
|
|
@@ -2183,8 +2239,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2183
2239
|
return target;
|
|
2184
2240
|
}
|
|
2185
2241
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2186
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2187
|
-
var mapKey = $jscomp$key$
|
|
2242
|
+
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$m1892927425$41$mapKey = $jscomp$iter$20.next(); !$jscomp$key$m1892927425$41$mapKey.done; $jscomp$key$m1892927425$41$mapKey = $jscomp$iter$20.next()) {
|
|
2243
|
+
var mapKey = $jscomp$key$m1892927425$41$mapKey.value, mapValue = value[mapKey];
|
|
2188
2244
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2189
2245
|
}
|
|
2190
2246
|
return objMap;
|
|
@@ -2214,39 +2270,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2214
2270
|
if (!(module$contents$eeapiclient$domain_object_sameKeys(keys1, metadata2.keys || []) && module$contents$eeapiclient$domain_object_sameKeys(arrays1, arrays2) && module$contents$eeapiclient$domain_object_sameKeys(objects1, objects2) && module$contents$eeapiclient$domain_object_sameKeys(objectMaps1, objectMaps2))) {
|
|
2215
2271
|
return !1;
|
|
2216
2272
|
}
|
|
2217
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2218
|
-
var key = $jscomp$key$
|
|
2273
|
+
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$m1892927425$42$key = $jscomp$iter$21.next(), $jscomp$loop$m1892927425$45 = {}; !$jscomp$key$m1892927425$42$key.done; $jscomp$loop$m1892927425$45 = {value2$jscomp$7:void 0, mapMetadata$jscomp$2:void 0}, $jscomp$key$m1892927425$42$key = $jscomp$iter$21.next()) {
|
|
2274
|
+
var key = $jscomp$key$m1892927425$42$key.value, has1 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable1, key, metadata1), has2 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable2, key, metadata2);
|
|
2219
2275
|
if (has1 !== has2) {
|
|
2220
2276
|
return !1;
|
|
2221
2277
|
}
|
|
2222
2278
|
if (has1) {
|
|
2223
2279
|
var value1 = serializable1.Serializable$get(key);
|
|
2224
|
-
$jscomp$loop$
|
|
2280
|
+
$jscomp$loop$m1892927425$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2225
2281
|
if (arrays1.hasOwnProperty(key)) {
|
|
2226
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2282
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !0, !0)) {
|
|
2227
2283
|
return !1;
|
|
2228
2284
|
}
|
|
2229
2285
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2230
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2286
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !1, !0)) {
|
|
2231
2287
|
return !1;
|
|
2232
2288
|
}
|
|
2233
2289
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2234
|
-
if ($jscomp$loop$
|
|
2235
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2290
|
+
if ($jscomp$loop$m1892927425$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2291
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m1892927425$45) {
|
|
2236
2292
|
return function(v1, i) {
|
|
2237
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2293
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m1892927425$45.value2$jscomp$7[i], $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2);
|
|
2238
2294
|
};
|
|
2239
|
-
}($jscomp$loop$
|
|
2295
|
+
}($jscomp$loop$m1892927425$45))) {
|
|
2240
2296
|
return !1;
|
|
2241
2297
|
}
|
|
2242
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2298
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2)) {
|
|
2243
2299
|
return !1;
|
|
2244
2300
|
}
|
|
2245
2301
|
} else if (Array.isArray(value1)) {
|
|
2246
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2302
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !0, !1)) {
|
|
2247
2303
|
return !1;
|
|
2248
2304
|
}
|
|
2249
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2305
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !1, !1)) {
|
|
2250
2306
|
return !1;
|
|
2251
2307
|
}
|
|
2252
2308
|
}
|
|
@@ -2268,8 +2324,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2268
2324
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2269
2325
|
return !1;
|
|
2270
2326
|
}
|
|
2271
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2272
|
-
var mapKey = $jscomp$key$
|
|
2327
|
+
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$m1892927425$43$mapKey = $jscomp$iter$22.next(); !$jscomp$key$m1892927425$43$mapKey.done; $jscomp$key$m1892927425$43$mapKey = $jscomp$iter$22.next()) {
|
|
2328
|
+
var mapKey = $jscomp$key$m1892927425$43$mapKey.value;
|
|
2273
2329
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2274
2330
|
return !1;
|
|
2275
2331
|
}
|
|
@@ -2350,15 +2406,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2350
2406
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2351
2407
|
};
|
|
2352
2408
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2353
|
-
var $jscomp$this$
|
|
2409
|
+
var $jscomp$this$m133342051$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2354
2410
|
payload += this._metadataPayload;
|
|
2355
2411
|
return Promise.all(this.files.map(function(f) {
|
|
2356
|
-
return $jscomp$this$
|
|
2412
|
+
return $jscomp$this$m133342051$6.encodeFile(f);
|
|
2357
2413
|
})).then(function(filePayloads) {
|
|
2358
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2359
|
-
payload += $jscomp$key$
|
|
2414
|
+
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$m133342051$9$filePayload = $jscomp$iter$23.next(); !$jscomp$key$m133342051$9$filePayload.done; $jscomp$key$m133342051$9$filePayload = $jscomp$iter$23.next()) {
|
|
2415
|
+
payload += $jscomp$key$m133342051$9$filePayload.value;
|
|
2360
2416
|
}
|
|
2361
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2417
|
+
return payload += "\r\n--" + $jscomp$this$m133342051$6._boundary + "--";
|
|
2362
2418
|
});
|
|
2363
2419
|
};
|
|
2364
2420
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2870,8 +2926,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2870
2926
|
throw Error(message);
|
|
2871
2927
|
}
|
|
2872
2928
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2873
|
-
var $jscomp$templatelit$
|
|
2874
|
-
["\\0"]), $jscomp$templatelit$
|
|
2929
|
+
var $jscomp$templatelit$m425881384$5 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$m425881384$6 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\0"]), $jscomp$templatelit$m425881384$7 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$m425881384$8 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), $jscomp$templatelit$m425881384$9 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$m425881384$10 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"],
|
|
2930
|
+
["\\0"]), $jscomp$templatelit$m425881384$11 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$m425881384$12 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), module$contents$safevalues$internals$string_literal_module = module$contents$safevalues$internals$string_literal_module || {id:"third_party/javascript/safevalues/internals/string_literal.closure.js"};
|
|
2875
2931
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2876
2932
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2877
2933
|
throw new TypeError("\n ############################## ERROR ##############################\n\n It looks like you are trying to call a template tag function (fn`...`)\n using the normal function syntax (fn(...)), which is not supported.\n\n The functions in the safevalues library are not designed to be called\n like normal functions, and doing so invalidates the security guarantees\n that safevalues provides.\n\n If you are stuck and not sure how to proceed, please reach out to us\n instead through:\n - go/ise-hardening-yaqs (preferred) // LINE-INTERNAL\n - g/ise-hardening // LINE-INTERNAL\n - https://github.com/google/safevalues/issues\n\n ############################## ERROR ##############################");
|
|
@@ -2885,14 +2941,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
2885
2941
|
return fn.toString().indexOf("`") === -1;
|
|
2886
2942
|
}
|
|
2887
2943
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2888
|
-
return tag($jscomp$templatelit$
|
|
2944
|
+
return tag($jscomp$templatelit$m425881384$5);
|
|
2889
2945
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2890
|
-
return tag($jscomp$templatelit$
|
|
2946
|
+
return tag($jscomp$templatelit$m425881384$6);
|
|
2891
2947
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2892
|
-
return tag($jscomp$templatelit$
|
|
2948
|
+
return tag($jscomp$templatelit$m425881384$7);
|
|
2893
2949
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2894
|
-
return tag($jscomp$templatelit$
|
|
2895
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
2950
|
+
return tag($jscomp$templatelit$m425881384$8);
|
|
2951
|
+
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$9) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$10) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$11) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$12);
|
|
2896
2952
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
2897
2953
|
return Array.isArray(templateObj) && Array.isArray(templateObj.raw) && templateObj.length === templateObj.raw.length && (module$contents$safevalues$internals$string_literal_isTranspiled || templateObj !== templateObj.raw) && (module$contents$safevalues$internals$string_literal_isTranspiled && !module$contents$safevalues$internals$string_literal_frozenTSA || module$contents$safevalues$internals$string_literal_checkFrozen(templateObj)) ?
|
|
2898
2954
|
!0 : !1;
|
|
@@ -3218,9 +3274,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3218
3274
|
}
|
|
3219
3275
|
}
|
|
3220
3276
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIframeIntentError = function(type, intent) {
|
|
3221
|
-
var $jscomp$tmp$error$
|
|
3222
|
-
this.message = $jscomp$tmp$error$
|
|
3223
|
-
"stack" in $jscomp$tmp$error$
|
|
3277
|
+
var $jscomp$tmp$error$494508883$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.IframeIntent[intent]);
|
|
3278
|
+
this.message = $jscomp$tmp$error$494508883$1.message;
|
|
3279
|
+
"stack" in $jscomp$tmp$error$494508883$1 && (this.stack = $jscomp$tmp$error$494508883$1.stack);
|
|
3224
3280
|
this.type = type;
|
|
3225
3281
|
this.intent = intent;
|
|
3226
3282
|
this.name = "TypeCannotBeUsedWithIframeIntentError";
|
|
@@ -3316,7 +3372,7 @@ function module$contents$safevalues$dom$globals$window_getStyleNonce(doc) {
|
|
|
3316
3372
|
module$exports$safevalues$dom$globals$window.getStyleNonce = module$contents$safevalues$dom$globals$window_getStyleNonce;
|
|
3317
3373
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, doc) {
|
|
3318
3374
|
doc = doc === void 0 ? document : doc;
|
|
3319
|
-
var $jscomp$optchain$
|
|
3375
|
+
var $jscomp$optchain$tmpm1987982378$0, $jscomp$optchain$tmpm1987982378$1, el = ($jscomp$optchain$tmpm1987982378$1 = ($jscomp$optchain$tmpm1987982378$0 = doc).querySelector) == null ? void 0 : $jscomp$optchain$tmpm1987982378$1.call($jscomp$optchain$tmpm1987982378$0, elementName + "[nonce]");
|
|
3320
3376
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3321
3377
|
}
|
|
3322
3378
|
;var module$exports$safevalues$internals$script_impl = {}, module$contents$safevalues$internals$script_impl_module = module$contents$safevalues$internals$script_impl_module || {id:"third_party/javascript/safevalues/internals/script_impl.closure.js"};
|
|
@@ -4748,9 +4804,9 @@ function module$contents$safevalues$dom$globals$dom_parser_domParserParseFromStr
|
|
|
4748
4804
|
module$exports$safevalues$dom$globals$dom_parser.domParserParseFromString = module$contents$safevalues$dom$globals$dom_parser_domParserParseFromString;
|
|
4749
4805
|
var module$exports$safevalues$dom$globals$fetch = {}, module$contents$safevalues$dom$globals$fetch_module = module$contents$safevalues$dom$globals$fetch_module || {id:"third_party/javascript/safevalues/dom/globals/fetch.closure.js"};
|
|
4750
4806
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4751
|
-
var $jscomp$tmp$error$
|
|
4752
|
-
this.message = $jscomp$tmp$error$
|
|
4753
|
-
"stack" in $jscomp$tmp$error$
|
|
4807
|
+
var $jscomp$tmp$error$1153895636$25 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
|
|
4808
|
+
this.message = $jscomp$tmp$error$1153895636$25.message;
|
|
4809
|
+
"stack" in $jscomp$tmp$error$1153895636$25 && (this.stack = $jscomp$tmp$error$1153895636$25.stack);
|
|
4754
4810
|
this.url = url;
|
|
4755
4811
|
this.typeName = typeName;
|
|
4756
4812
|
this.contentType = contentType;
|
|
@@ -4762,48 +4818,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4762
4818
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4763
4819
|
}
|
|
4764
4820
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4765
|
-
var response, $jscomp$optchain$
|
|
4766
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4767
|
-
if ($jscomp$generator$context$
|
|
4768
|
-
return $jscomp$generator$context$
|
|
4769
|
-
}
|
|
4770
|
-
response = $jscomp$generator$context$
|
|
4771
|
-
mimeType = ($jscomp$optchain$
|
|
4772
|
-
return $jscomp$generator$context$
|
|
4821
|
+
var response, $jscomp$optchain$tmp1153895636$0, $jscomp$optchain$tmp1153895636$1, $jscomp$optchain$tmp1153895636$2, mimeType;
|
|
4822
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$29) {
|
|
4823
|
+
if ($jscomp$generator$context$1153895636$29.nextAddress == 1) {
|
|
4824
|
+
return $jscomp$generator$context$1153895636$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4825
|
+
}
|
|
4826
|
+
response = $jscomp$generator$context$1153895636$29.yieldResult;
|
|
4827
|
+
mimeType = ($jscomp$optchain$tmp1153895636$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmp1153895636$1 = $jscomp$optchain$tmp1153895636$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmp1153895636$2 = $jscomp$optchain$tmp1153895636$1[0]) == null ? void 0 : $jscomp$optchain$tmp1153895636$2.toLowerCase();
|
|
4828
|
+
return $jscomp$generator$context$1153895636$29.return({html:function() {
|
|
4773
4829
|
var text;
|
|
4774
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4775
|
-
if ($jscomp$generator$context$
|
|
4830
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$26) {
|
|
4831
|
+
if ($jscomp$generator$context$1153895636$26.nextAddress == 1) {
|
|
4776
4832
|
if (mimeType !== "text/html") {
|
|
4777
4833
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4778
4834
|
}
|
|
4779
|
-
return $jscomp$generator$context$
|
|
4835
|
+
return $jscomp$generator$context$1153895636$26.yield(response.text(), 2);
|
|
4780
4836
|
}
|
|
4781
|
-
text = $jscomp$generator$context$
|
|
4782
|
-
return $jscomp$generator$context$
|
|
4837
|
+
text = $jscomp$generator$context$1153895636$26.yieldResult;
|
|
4838
|
+
return $jscomp$generator$context$1153895636$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4783
4839
|
});
|
|
4784
4840
|
}, script:function() {
|
|
4785
4841
|
var text;
|
|
4786
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4787
|
-
if ($jscomp$generator$context$
|
|
4842
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$27) {
|
|
4843
|
+
if ($jscomp$generator$context$1153895636$27.nextAddress == 1) {
|
|
4788
4844
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4789
4845
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4790
4846
|
}
|
|
4791
|
-
return $jscomp$generator$context$
|
|
4847
|
+
return $jscomp$generator$context$1153895636$27.yield(response.text(), 2);
|
|
4792
4848
|
}
|
|
4793
|
-
text = $jscomp$generator$context$
|
|
4794
|
-
return $jscomp$generator$context$
|
|
4849
|
+
text = $jscomp$generator$context$1153895636$27.yieldResult;
|
|
4850
|
+
return $jscomp$generator$context$1153895636$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4795
4851
|
});
|
|
4796
4852
|
}, styleSheet:function() {
|
|
4797
4853
|
var text;
|
|
4798
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4799
|
-
if ($jscomp$generator$context$
|
|
4854
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$28) {
|
|
4855
|
+
if ($jscomp$generator$context$1153895636$28.nextAddress == 1) {
|
|
4800
4856
|
if (mimeType !== "text/css") {
|
|
4801
4857
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4802
4858
|
}
|
|
4803
|
-
return $jscomp$generator$context$
|
|
4859
|
+
return $jscomp$generator$context$1153895636$28.yield(response.text(), 2);
|
|
4804
4860
|
}
|
|
4805
|
-
text = $jscomp$generator$context$
|
|
4806
|
-
return $jscomp$generator$context$
|
|
4861
|
+
text = $jscomp$generator$context$1153895636$28.yieldResult;
|
|
4862
|
+
return $jscomp$generator$context$1153895636$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4807
4863
|
});
|
|
4808
4864
|
}});
|
|
4809
4865
|
});
|
|
@@ -6225,8 +6281,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6225
6281
|
}
|
|
6226
6282
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6227
6283
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6228
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6229
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6284
|
+
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$m125199259$0$ = $jscomp$iter$29.next(); !$jscomp$key$m125199259$0$.done; $jscomp$key$m125199259$0$ = $jscomp$iter$29.next()) {
|
|
6285
|
+
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$m125199259$0$.value), jsName__tsickle_destructured_1 = $jscomp$destructuring$var3.next().value, urlQueryParamName__tsickle_destructured_2 = $jscomp$destructuring$var3.next().value, jsName = jsName__tsickle_destructured_1, urlQueryParamName = urlQueryParamName__tsickle_destructured_2;
|
|
6230
6286
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6231
6287
|
}
|
|
6232
6288
|
return urlQueryParams;
|
|
@@ -6237,8 +6293,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
|
|
|
6237
6293
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6238
6294
|
if (params.headers) {
|
|
6239
6295
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6240
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6241
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6296
|
+
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$m125199259$1$ = $jscomp$iter$30.next(); !$jscomp$key$m125199259$1$.done; $jscomp$key$m125199259$1$ = $jscomp$iter$30.next()) {
|
|
6297
|
+
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$m125199259$1$.value), key__tsickle_destructured_3 = $jscomp$destructuring$var5.next().value, value__tsickle_destructured_4 = $jscomp$destructuring$var5.next().value, key = key__tsickle_destructured_3, value = value__tsickle_destructured_4;
|
|
6242
6298
|
module$contents$eeapiclient$request_params_simpleCorsAllowedHeaders.includes(key) ? safeHeaders[key] = value : key === "Content-Type" && module$contents$eeapiclient$request_params_simpleCorsAllowedContentTypes.includes(value) ? (safeHeaders[key] = value, hasSafeContentType = !0) : (unsafeHeaders[key] = value, hasUnsafeHeaders = !0);
|
|
6243
6299
|
}
|
|
6244
6300
|
}
|
|
@@ -6278,9 +6334,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6278
6334
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6279
6335
|
};
|
|
6280
6336
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6281
|
-
var $jscomp$this$
|
|
6337
|
+
var $jscomp$this$m296226325$4 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6282
6338
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6283
|
-
return $jscomp$this$
|
|
6339
|
+
return $jscomp$this$m296226325$4.requestService.send(params, responseCtor);
|
|
6284
6340
|
}));
|
|
6285
6341
|
};
|
|
6286
6342
|
var module$exports$eeapiclient$promise_request_service = {}, module$contents$eeapiclient$promise_request_service_module = module$contents$eeapiclient$promise_request_service_module || {id:"javascript/typescript/contrib/apiclient/request_service/promise_request_service.closure.js"};
|
|
@@ -6461,7 +6517,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native
|
|
|
6461
6517
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6462
6518
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6463
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable = !1;
|
|
6464
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6465
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable = !1;
|
|
6466
6521
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable = !1;
|
|
6467
6522
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
@@ -6480,7 +6535,6 @@ goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etogg
|
|
|
6480
6535
|
goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
|
|
6481
6536
|
goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
|
|
6482
6537
|
goog.flags.JSPB_SERIALIZE_WITH_DYNAMIC_PIVOT_SELECTOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable : goog.readFlagInternalDoNotUseOrElse(748402146, goog.DEBUG);
|
|
6483
|
-
goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
|
|
6484
6538
|
goog.flags.OPTIMIZE_SCS_JS_URL_CLONE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable : goog.readFlagInternalDoNotUseOrElse(103340015, !1);
|
|
6485
6539
|
goog.flags.DISABLE_WIZ_SERVICE_LOGGING_MAP = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable : goog.readFlagInternalDoNotUseOrElse(555019702, !1);
|
|
6486
6540
|
goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
|
|
@@ -8980,7 +9034,7 @@ goog.structs.Set.prototype[Symbol.iterator] = function() {
|
|
|
8980
9034
|
goog.structs.Set.prototype.setSizeInternal_ = function(newSize) {
|
|
8981
9035
|
this.size = newSize;
|
|
8982
9036
|
};
|
|
8983
|
-
var
|
|
9037
|
+
var ee_root = {third_party:{}};
|
|
8984
9038
|
ee_root.third_party.earthengine_api = {};
|
|
8985
9039
|
ee_root.third_party.earthengine_api.javascript = {};
|
|
8986
9040
|
ee_root.third_party.earthengine_api.javascript.abstractoverlay = {};
|
|
@@ -9012,8 +9066,6 @@ ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent = funct
|
|
|
9012
9066
|
this.count = count;
|
|
9013
9067
|
};
|
|
9014
9068
|
goog.inherits(ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent, goog.events.Event);
|
|
9015
|
-
ee.AbstractOverlay = ee_root.third_party.earthengine_api.javascript.abstractoverlay.AbstractOverlay;
|
|
9016
|
-
ee.TileEvent = ee_root.third_party.earthengine_api.javascript.abstractoverlay.TileEvent;
|
|
9017
9069
|
var module$exports$eeapiclient$ee_api_client = {}, module$contents$eeapiclient$ee_api_client_module = module$contents$eeapiclient$ee_api_client_module || {id:"third_party/earthengine_api/javascript/v1/ee_api_client.closure.js"};
|
|
9018
9070
|
module$exports$eeapiclient$ee_api_client.IAuditLogConfigLogTypeEnum = function() {
|
|
9019
9071
|
};
|
|
@@ -14737,7 +14789,7 @@ module$exports$eeapiclient$ee_api_client.V1ApiClientImpl.prototype.getCapabiliti
|
|
|
14737
14789
|
};
|
|
14738
14790
|
module$exports$eeapiclient$ee_api_client.V1ApiClient = function() {
|
|
14739
14791
|
};
|
|
14740
|
-
ee
|
|
14792
|
+
var ee = {api:module$exports$eeapiclient$ee_api_client};
|
|
14741
14793
|
var module$exports$ee$apiVersion = {V1ALPHA:"v1alpha", V1:"v1"};
|
|
14742
14794
|
module$exports$ee$apiVersion.VERSION = module$exports$ee$apiVersion.V1;
|
|
14743
14795
|
goog.async = {};
|
|
@@ -16152,8 +16204,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16152
16204
|
this.replacements = new Map();
|
|
16153
16205
|
};
|
|
16154
16206
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16155
|
-
var $jscomp$this$
|
|
16156
|
-
return $jscomp$this$
|
|
16207
|
+
var $jscomp$this$1018007701$5 = this, openedTags = [], marker = (0,module$exports$safevalues$builders$html_builders.htmlEscape)("_safevalues_format_marker_:").toString(), html = (0,module$exports$safevalues$builders$html_builders.htmlEscape)(format).toString().replace(new RegExp("\\{" + marker + "[\\w&#;]+\\}", "g"), function(match) {
|
|
16208
|
+
return $jscomp$this$1018007701$5.replaceFormattingString(openedTags, match);
|
|
16157
16209
|
});
|
|
16158
16210
|
if (openedTags.length !== 0) {
|
|
16159
16211
|
if (goog.DEBUG) {
|
|
@@ -16371,8 +16423,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16371
16423
|
if (Array.isArray(token)) {
|
|
16372
16424
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16373
16425
|
} else {
|
|
16374
|
-
var $jscomp$optchain$
|
|
16375
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16426
|
+
var $jscomp$optchain$tmpm282935782$0 = void 0;
|
|
16427
|
+
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$tmpm282935782$0 = lastToken) == null ? void 0 : $jscomp$optchain$tmpm282935782$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE) {
|
|
16376
16428
|
tokens.push(token);
|
|
16377
16429
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16378
16430
|
return tokens;
|
|
@@ -16618,9 +16670,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16618
16670
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16619
16671
|
};
|
|
16620
16672
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16621
|
-
var $jscomp$this$
|
|
16673
|
+
var $jscomp$this$m282935782$26 = this;
|
|
16622
16674
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16623
|
-
return $jscomp$this$
|
|
16675
|
+
return $jscomp$this$m282935782$26.isWhitespace(c);
|
|
16624
16676
|
});
|
|
16625
16677
|
};
|
|
16626
16678
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16727,8 +16779,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16727
16779
|
return null;
|
|
16728
16780
|
}
|
|
16729
16781
|
if (token.lowercaseName === "url") {
|
|
16730
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16731
|
-
if ((($jscomp$optchain$
|
|
16782
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1577590584$0 = void 0;
|
|
16783
|
+
if ((($jscomp$optchain$tmpm1577590584$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1577590584$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16732
16784
|
return null;
|
|
16733
16785
|
}
|
|
16734
16786
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(nextToken.value);
|
|
@@ -16751,8 +16803,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16751
16803
|
if (!this.allowKeyframes) {
|
|
16752
16804
|
return null;
|
|
16753
16805
|
}
|
|
16754
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16755
|
-
var rule = $jscomp$key$
|
|
16806
|
+
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$m1577590584$1$rule = $jscomp$iter$31.next(); !$jscomp$key$m1577590584$1$rule.done; $jscomp$key$m1577590584$1$rule = $jscomp$iter$31.next()) {
|
|
16807
|
+
var rule = $jscomp$key$m1577590584$1$rule.value;
|
|
16756
16808
|
if (rule instanceof CSSKeyframeRule) {
|
|
16757
16809
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16758
16810
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16764,8 +16816,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16764
16816
|
if (!this.propertyAllowlist.has(name)) {
|
|
16765
16817
|
return !1;
|
|
16766
16818
|
}
|
|
16767
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16768
|
-
var discarder = $jscomp$key$
|
|
16819
|
+
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$m1577590584$2$discarder = $jscomp$iter$32.next(); !$jscomp$key$m1577590584$2$discarder.done; $jscomp$key$m1577590584$2$discarder = $jscomp$iter$32.next()) {
|
|
16820
|
+
var discarder = $jscomp$key$m1577590584$2$discarder.value;
|
|
16769
16821
|
if (discarder(name)) {
|
|
16770
16822
|
return !1;
|
|
16771
16823
|
}
|
|
@@ -16780,8 +16832,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16780
16832
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16781
16833
|
};
|
|
16782
16834
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16783
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16784
|
-
var name = $jscomp$key$
|
|
16835
|
+
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$m1577590584$3$name = $jscomp$iter$33.next(); !$jscomp$key$m1577590584$3$name.done; $jscomp$key$m1577590584$3$name = $jscomp$iter$33.next()) {
|
|
16836
|
+
var name = $jscomp$key$m1577590584$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16785
16837
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16786
16838
|
}
|
|
16787
16839
|
return sanitizedProperties;
|
|
@@ -16795,8 +16847,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16795
16847
|
return selector + " { " + sanitizedProperties + " }";
|
|
16796
16848
|
};
|
|
16797
16849
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16798
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16799
|
-
var rule = $jscomp$key$
|
|
16850
|
+
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$m1577590584$4$rule = $jscomp$iter$34.next(); !$jscomp$key$m1577590584$4$rule.done; $jscomp$key$m1577590584$4$rule = $jscomp$iter$34.next()) {
|
|
16851
|
+
var rule = $jscomp$key$m1577590584$4$rule.value;
|
|
16800
16852
|
if (rule instanceof CSSStyleRule) {
|
|
16801
16853
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
16802
16854
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -16958,8 +17010,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16958
17010
|
return fragment;
|
|
16959
17011
|
};
|
|
16960
17012
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
16961
|
-
for (var $jscomp$this$
|
|
16962
|
-
return $jscomp$this$
|
|
17013
|
+
for (var $jscomp$this$m1085474118$13 = this, dirtyFragment = module$contents$safevalues$builders$html_sanitizer$inert_fragment_createInertFragment(html, inertDocument), treeWalker = document.createTreeWalker(dirtyFragment, 5, function(n) {
|
|
17014
|
+
return $jscomp$this$m1085474118$13.nodeFilter(n);
|
|
16963
17015
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
16964
17016
|
var sanitizedNode = void 0;
|
|
16965
17017
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -16994,8 +17046,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16994
17046
|
return this.createTextNode(textNode.data);
|
|
16995
17047
|
};
|
|
16996
17048
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
16997
|
-
for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$
|
|
16998
|
-
var $jscomp$destructuring$var30 = $jscomp$key$
|
|
17049
|
+
for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$m1085474118$34$ = $jscomp$iter$36.next(); !$jscomp$key$m1085474118$34$.done; $jscomp$key$m1085474118$34$ = $jscomp$iter$36.next()) {
|
|
17050
|
+
var $jscomp$destructuring$var30 = $jscomp$key$m1085474118$34$.value, name = $jscomp$destructuring$var30.name, value = $jscomp$destructuring$var30.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
|
|
16999
17051
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
17000
17052
|
switch(policy.policyAction) {
|
|
17001
17053
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -17027,9 +17079,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17027
17079
|
break;
|
|
17028
17080
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
17029
17081
|
if (this.resourceUrlPolicy) {
|
|
17030
|
-
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$
|
|
17082
|
+
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$m1085474118$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1085474118$33$part.done; $jscomp$key$m1085474118$33$part =
|
|
17031
17083
|
$jscomp$iter$35.next()) {
|
|
17032
|
-
var part = $jscomp$key$
|
|
17084
|
+
var part = $jscomp$key$m1085474118$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
|
|
17033
17085
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
17034
17086
|
}
|
|
17035
17087
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -17073,8 +17125,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17073
17125
|
if (!conditions) {
|
|
17074
17126
|
return !0;
|
|
17075
17127
|
}
|
|
17076
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
17077
|
-
var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17128
|
+
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$m1085474118$35$ = $jscomp$iter$37.next(); !$jscomp$key$m1085474118$35$.done; $jscomp$key$m1085474118$35$ = $jscomp$iter$37.next()) {
|
|
17129
|
+
var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$m1085474118$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var32.next().value, expectedValues = $jscomp$destructuring$var32.next().value, $jscomp$optchain$tmpm1085474118$0 = void 0, value = ($jscomp$optchain$tmpm1085474118$0 = attrs.getNamedItem(attrName__tsickle_destructured_1)) == null ? void 0 : $jscomp$optchain$tmpm1085474118$0.value;
|
|
17078
17130
|
if (value && !expectedValues.has(value)) {
|
|
17079
17131
|
return !1;
|
|
17080
17132
|
}
|
|
@@ -17089,8 +17141,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
17089
17141
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
17090
17142
|
};
|
|
17091
17143
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
17092
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
17093
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17144
|
+
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$m1085474118$36$part = $jscomp$iter$38.next(); !$jscomp$key$m1085474118$36$part.done; $jscomp$key$m1085474118$36$part = $jscomp$iter$38.next()) {
|
|
17145
|
+
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1085474118$36$part.value.trim().split(/\s+/, 2)), url__tsickle_destructured_3 = $jscomp$destructuring$var33.next().value, descriptor__tsickle_destructured_4 = $jscomp$destructuring$var33.next().value;
|
|
17094
17146
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
17095
17147
|
}
|
|
17096
17148
|
return {parts:parts};
|
|
@@ -17147,8 +17199,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17147
17199
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17148
17200
|
};
|
|
17149
17201
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17150
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17151
|
-
var element = $jscomp$key$
|
|
17202
|
+
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$435282654$22$element = $jscomp$iter$39.next(); !$jscomp$key$435282654$22$element.done; $jscomp$key$435282654$22$element = $jscomp$iter$39.next()) {
|
|
17203
|
+
var element = $jscomp$key$435282654$22$element.value;
|
|
17152
17204
|
element = element.toUpperCase();
|
|
17153
17205
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17154
17206
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17166,8 +17218,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17166
17218
|
throw Error("Element: " + element + " is not a custom element");
|
|
17167
17219
|
}
|
|
17168
17220
|
if (allowedAttributes) {
|
|
17169
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17170
|
-
elementPolicy.set($jscomp$key$
|
|
17221
|
+
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$435282654$23$attribute = $jscomp$iter$40.next(); !$jscomp$key$435282654$23$attribute.done; $jscomp$key$435282654$23$attribute = $jscomp$iter$40.next()) {
|
|
17222
|
+
elementPolicy.set($jscomp$key$435282654$23$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17171
17223
|
}
|
|
17172
17224
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17173
17225
|
} else {
|
|
@@ -17177,15 +17229,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17177
17229
|
return this;
|
|
17178
17230
|
};
|
|
17179
17231
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17180
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17181
|
-
var attribute = $jscomp$key$
|
|
17232
|
+
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$435282654$24$attribute = $jscomp$iter$41.next(); !$jscomp$key$435282654$24$attribute.done; $jscomp$key$435282654$24$attribute = $jscomp$iter$41.next()) {
|
|
17233
|
+
var attribute = $jscomp$key$435282654$24$attribute.value;
|
|
17182
17234
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17183
17235
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17184
17236
|
}
|
|
17185
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17186
|
-
for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17237
|
+
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$435282654$26$ = $jscomp$iter$43.next(); !$jscomp$key$435282654$26$.done; $jscomp$key$435282654$26$ = $jscomp$iter$43.next()) {
|
|
17238
|
+
for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$435282654$26$.value), elementName__tsickle_destructured_1 = $jscomp$destructuring$var36.next().value, originalElementPolicy__tsickle_destructured_2 = $jscomp$destructuring$var36.next().value, elementName = elementName__tsickle_destructured_1, newElementPolicy = new Map(), $jscomp$iter$42 = (0,$jscomp.makeIterator)(originalElementPolicy__tsickle_destructured_2.entries()), $jscomp$key$435282654$25$ = $jscomp$iter$42.next(); !$jscomp$key$435282654$25$.done; $jscomp$key$435282654$25$ =
|
|
17187
17239
|
$jscomp$iter$42.next()) {
|
|
17188
|
-
var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17240
|
+
var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$435282654$25$.value), attribute__tsickle_destructured_3 = $jscomp$destructuring$var38.next().value, attributePolicy__tsickle_destructured_4 = $jscomp$destructuring$var38.next().value, attribute$jscomp$0 = attribute__tsickle_destructured_3, attributePolicy = attributePolicy__tsickle_destructured_4;
|
|
17189
17241
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17190
17242
|
}
|
|
17191
17243
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17200,8 +17252,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17200
17252
|
this.sanitizerTable = new module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, this.sanitizerTable.allowedGlobalAttributes, this.sanitizerTable.globalAttributePolicies, globallyAllowedAttributePrefixes);
|
|
17201
17253
|
return this;
|
|
17202
17254
|
}
|
|
17203
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17204
|
-
var attribute = $jscomp$key$
|
|
17255
|
+
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$435282654$27$attribute = $jscomp$iter$44.next(); !$jscomp$key$435282654$27$attribute.done; $jscomp$key$435282654$27$attribute = $jscomp$iter$44.next()) {
|
|
17256
|
+
var attribute = $jscomp$key$435282654$27$attribute.value;
|
|
17205
17257
|
if (attribute.indexOf("data-") !== 0) {
|
|
17206
17258
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17207
17259
|
}
|
|
@@ -17267,7 +17319,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17267
17319
|
return this;
|
|
17268
17320
|
};
|
|
17269
17321
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17270
|
-
var $jscomp$this$
|
|
17322
|
+
var $jscomp$this$435282654$18 = this;
|
|
17271
17323
|
this.extendSanitizerTableForCss();
|
|
17272
17324
|
var propertyDiscarders = [];
|
|
17273
17325
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17277,9 +17329,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17277
17329
|
return /^transition(-|$)/.test(property);
|
|
17278
17330
|
});
|
|
17279
17331
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
17280
|
-
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$
|
|
17332
|
+
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$435282654$18.resourceUrlPolicy, $jscomp$this$435282654$18.animationsAllowed, propertyDiscarders);
|
|
17281
17333
|
}, function(cssText) {
|
|
17282
|
-
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$
|
|
17334
|
+
return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$435282654$18.resourceUrlPolicy, propertyDiscarders);
|
|
17283
17335
|
}, this.resourceUrlPolicy, this.openShadow);
|
|
17284
17336
|
};
|
|
17285
17337
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17499,12 +17551,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17499
17551
|
}
|
|
17500
17552
|
try {
|
|
17501
17553
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17502
|
-
} catch ($jscomp$unused$catch$
|
|
17554
|
+
} catch ($jscomp$unused$catch$696273141$0) {
|
|
17503
17555
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17504
17556
|
}
|
|
17505
17557
|
try {
|
|
17506
17558
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17507
|
-
} catch ($jscomp$unused$catch$
|
|
17559
|
+
} catch ($jscomp$unused$catch$696273141$1) {
|
|
17508
17560
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17509
17561
|
}
|
|
17510
17562
|
return !1;
|
|
@@ -19371,7 +19423,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19371
19423
|
ee.apiclient = {};
|
|
19372
19424
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19373
19425
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19374
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19426
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.20";
|
|
19375
19427
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19376
19428
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19377
19429
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19669,8 +19721,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19669
19721
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19670
19722
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19671
19723
|
method = method || "POST";
|
|
19672
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19673
|
-
version === "1.5.
|
|
19724
|
+
var headers = {"Content-Type":contentType}, version = "1.5.20";
|
|
19725
|
+
version === "1.5.20" && (version = "latest");
|
|
19674
19726
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19675
19727
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19676
19728
|
if (authToken != null) {
|
|
@@ -27193,29 +27245,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27193
27245
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27194
27246
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27195
27247
|
(function() {
|
|
27196
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.
|
|
27197
|
-
orderedParamLists = [["name", "namedArgs"], ["name"
|
|
27198
|
-
"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(" "), "
|
|
27199
|
-
"
|
|
27248
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction._call ee.ApiFunction.lookup ee.batch.Export.table.toBigQuery ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.table.toAsset ee.batch.Export.video.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.image.toDrive ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.Collection.prototype.filter ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.Collection.prototype.map ee.Collection.prototype.sort ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.listImages ee.data.getDownloadId ee.data.getList ee.data.authenticateViaPopup ee.data.listAssets ee.data.makeDownloadUrl ee.data.updateAsset ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.setAssetAcl ee.data.listBuckets ee.data.newTaskId ee.data.setAssetProperties ee.data.getAssetRoots ee.data.getAssetRootQuota ee.data.getTaskStatus ee.data.getMapId ee.data.createAssetHome ee.data.startIngestion ee.data.copyAsset ee.data.getTileUrl ee.data.getTaskList ee.data.getWorkloadTag ee.data.createAsset ee.data.setWorkloadTag ee.data.getFeatureViewTilesKey ee.data.createFolder ee.data.setDefaultWorkloadTag ee.data.getTaskListWithLimit ee.data.listOperations ee.data.resetWorkloadTag ee.data.renameAsset ee.data.startTableIngestion ee.data.listFeatures ee.data.cancelOperation ee.data.getOperation ee.data.getVideoThumbId ee.data.getAsset ee.data.getThumbId ee.data.deleteAsset ee.data.cancelTask ee.data.computeValue ee.data.updateTask ee.data.getInfo ee.data.makeThumbUrl ee.data.startProcessing ee.data.getAssetAcl ee.data.getFilmstripThumbId ee.data.authenticate ee.data.authenticateViaOauth ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.TILE_SIZE ee.apply ee.reset ee.Algorithms ee.InitState ee.initialize ee.call ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMapId ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.Filter.prototype.not ee.Filter.and ee.Filter ee.Filter.bounds ee.Filter.gte ee.Filter.or ee.Filter.eq ee.Filter.gt ee.Filter.date ee.Filter.neq ee.Filter.lt ee.Filter.metadata ee.Filter.inList ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.BBox ee.Geometry.MultiLineString ee.Geometry.MultiPolygon ee.Geometry.MultiPoint ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSON ee.Geometry.LineString ee.Geometry.prototype.toGeoJSONString ee.Geometry.Polygon ee.Geometry ee.Image.prototype.getThumbURL ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getInfo ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.getMapId ee.Image.prototype.getThumbId ee.Image ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getMap ee.List ee.Number ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
|
|
27249
|
+
orderedParamLists = [["name", "namedArgs"], ["name", "var_args"], ["name"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "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(" "),
|
|
27250
|
+
["classifier", "opt_description", "opt_assetId", "opt_priority"], ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
|
|
27251
|
+
"image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27200
27252
|
"image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27201
|
-
["filter"], ["
|
|
27202
|
-
"
|
|
27203
|
-
"
|
|
27204
|
-
"opt_callback"], ["
|
|
27205
|
-
["
|
|
27206
|
-
"opt_callback"], ["
|
|
27207
|
-
["west", "south", "east", "north"], ["coords", "opt_proj"
|
|
27208
|
-
["
|
|
27209
|
-
["list"], ["number"], ["obj"], ["obj", "
|
|
27210
|
-
[ee.ApiFunction._apply, ee.ApiFunction.
|
|
27211
|
-
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.filter, ee.Collection.prototype.
|
|
27212
|
-
ee.ComputedObject.prototype.
|
|
27213
|
-
ee.data.
|
|
27214
|
-
ee.data.
|
|
27215
|
-
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.
|
|
27216
|
-
ee.Filter.
|
|
27217
|
-
ee.
|
|
27218
|
-
ee.ImageCollection.prototype.
|
|
27253
|
+
["filter"], ["geometry"], ["name", "operator", "value"], ["start", "opt_end"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["opt_callback"], ["callback"], ["legacy"], ["func", "var_args"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["parent", "opt_params", "opt_callback"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"],
|
|
27254
|
+
["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["id"], ["assetId", "aclUpdate", "opt_callback"], ["project", "opt_callback"], ["opt_count", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "request", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"],
|
|
27255
|
+
["id", "x", "y", "z"], ["opt_callback"], [], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["tag"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_resetDefault"], ["sourceId", "destinationId", "opt_callback"], ["taskId", "request", "opt_callback"], ["asset", "params", "opt_callback"], ["operationName", "opt_callback"], ["operationName", "opt_callback"], ["params", "opt_callback"],
|
|
27256
|
+
["id", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "opt_callback"], ["obj", "opt_callback"], ["taskId", "action", "opt_callback"], ["id", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["date", "opt_tz"],
|
|
27257
|
+
["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "namedArgs"], [], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams",
|
|
27258
|
+
"opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], [], ["var_args"], ["opt_filter"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
|
|
27259
|
+
["legacy"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["params", "opt_callback"], ["params", "opt_callback"],
|
|
27260
|
+
["var_args"], ["r", "g", "b"], ["var_args"], ["opt_callback"], ["expression", "opt_map"], ["geometry"], ["opt_visParams", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_args"], [], ["args"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_visParams", "opt_callback"],
|
|
27261
|
+
["list"], ["number"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27262
|
+
[ee.ApiFunction._apply, ee.ApiFunction._call, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toFeatureView,
|
|
27263
|
+
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.filter, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.ComputedObject.prototype.getInfo,
|
|
27264
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.listImages, ee.data.getDownloadId, ee.data.getList, ee.data.authenticateViaPopup, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.updateAsset, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.setAssetAcl, ee.data.listBuckets, ee.data.newTaskId, ee.data.setAssetProperties, ee.data.getAssetRoots, ee.data.getAssetRootQuota,
|
|
27265
|
+
ee.data.getTaskStatus, ee.data.getMapId, ee.data.createAssetHome, ee.data.startIngestion, ee.data.copyAsset, ee.data.getTileUrl, ee.data.getTaskList, ee.data.getWorkloadTag, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.createFolder, ee.data.setDefaultWorkloadTag, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.resetWorkloadTag, ee.data.renameAsset, ee.data.startTableIngestion, ee.data.listFeatures, ee.data.cancelOperation, ee.data.getOperation,
|
|
27266
|
+
ee.data.getVideoThumbId, ee.data.getAsset, ee.data.getThumbId, ee.data.deleteAsset, ee.data.cancelTask, ee.data.computeValue, ee.data.updateTask, ee.data.getInfo, ee.data.makeThumbUrl, ee.data.startProcessing, ee.data.getAssetAcl, ee.data.getFilmstripThumbId, ee.data.authenticate, ee.data.authenticateViaOauth, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.TILE_SIZE, ee.apply, ee.reset, ee.Algorithms,
|
|
27267
|
+
ee.InitState, ee.initialize, ee.call, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter.prototype.not, ee.Filter.and, ee.Filter, ee.Filter.bounds, ee.Filter.gte,
|
|
27268
|
+
ee.Filter.or, ee.Filter.eq, ee.Filter.gt, ee.Filter.date, ee.Filter.neq, ee.Filter.lt, ee.Filter.metadata, ee.Filter.inList, ee.Filter.lte, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.BBox, ee.Geometry.MultiLineString, ee.Geometry.MultiPolygon, ee.Geometry.MultiPoint, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Polygon,
|
|
27269
|
+
ee.Geometry, ee.Image.prototype.getThumbURL, ee.Image.prototype.getDownloadURL, ee.Image.prototype.select, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.prototype.getInfo, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.getMap, ee.Image.cat, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbId, ee.Image, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL,
|
|
27270
|
+
ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getMap, ee.List, ee.Number, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27219
27271
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27220
27272
|
});
|
|
27221
27273
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|