@google/earthengine 1.7.12 → 1.7.14
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 +224 -200
- package/build/ee_api_js.js +17 -16
- package/build/ee_api_js_debug.js +201 -177
- package/build/ee_api_js_npm.js +224 -200
- package/build/main.js +224 -200
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/build/main.js
CHANGED
|
@@ -256,14 +256,18 @@ $jscomp.generator.Context.prototype.throw_ = function(e) {
|
|
|
256
256
|
this.abruptCompletion_ = {exception:e, isException:!0};
|
|
257
257
|
this.jumpToErrorHandler_();
|
|
258
258
|
};
|
|
259
|
-
$jscomp.generator.Context.prototype.
|
|
259
|
+
$jscomp.generator.Context.prototype.getNextAddressJsc = function() {
|
|
260
260
|
return this.nextAddress;
|
|
261
261
|
};
|
|
262
|
-
$jscomp.generator.Context.prototype.
|
|
263
|
-
|
|
262
|
+
$jscomp.generator.Context.prototype.getNextAddressJsc = function() {
|
|
263
|
+
return this.nextAddress;
|
|
264
|
+
};
|
|
265
|
+
$jscomp.generator.Context.prototype.getYieldResultJsc = function() {
|
|
266
|
+
return this.yieldResult;
|
|
267
|
+
};
|
|
268
|
+
$jscomp.generator.Context.prototype.getYieldResultJsc = function() {
|
|
264
269
|
return this.yieldResult;
|
|
265
270
|
};
|
|
266
|
-
$jscomp.generator.Context.prototype.getYieldResult = $jscomp.generator.Context.prototype.getYieldResult;
|
|
267
271
|
$jscomp.generator.Context.prototype.return = function(value) {
|
|
268
272
|
this.abruptCompletion_ = {return:value};
|
|
269
273
|
this.nextAddress = this.finallyAddress_;
|
|
@@ -1040,6 +1044,19 @@ $jscomp.polyfill("Map", function(NativeMap) {
|
|
|
1040
1044
|
};
|
|
1041
1045
|
return PolyfillMap;
|
|
1042
1046
|
}, "es6", "es3");
|
|
1047
|
+
$jscomp.polyfill("Map.groupBy", function(orig) {
|
|
1048
|
+
return orig ? orig : function(items, callbackFn) {
|
|
1049
|
+
if (typeof callbackFn !== "function") {
|
|
1050
|
+
throw new TypeError("callbackFn must be a function");
|
|
1051
|
+
}
|
|
1052
|
+
for (var result = new Map(), index = 0, iter = $jscomp.makeIterator(items), entry = iter.next(); !entry.done; entry = iter.next()) {
|
|
1053
|
+
var item = entry.value, key = callbackFn(item, index++), group = result.get(key);
|
|
1054
|
+
group || (group = [], result.set(key, group));
|
|
1055
|
+
group.push(item);
|
|
1056
|
+
}
|
|
1057
|
+
return result;
|
|
1058
|
+
};
|
|
1059
|
+
}, "es_next", "es3");
|
|
1043
1060
|
$jscomp.polyfill("Set", function(NativeSet) {
|
|
1044
1061
|
function isConformant() {
|
|
1045
1062
|
if ($jscomp.ASSUME_NO_NATIVE_SET || !NativeSet || typeof NativeSet != "function" || !NativeSet.prototype.entries || typeof Object.seal != "function") {
|
|
@@ -1368,9 +1385,9 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1368
1385
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1369
1386
|
};
|
|
1370
1387
|
}, "es8", "es3");
|
|
1371
|
-
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__disable:!1, GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__disable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1,
|
|
1372
|
-
GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__jspb_write_back_bigint__disable:!1, GoogFlags__optimize_get_ei_from_ved__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,
|
|
1373
|
-
GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1388
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__batch_fc_data_fetches_in_microtask__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__disable:!1, GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__disable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1,
|
|
1389
|
+
GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__jspb_write_back_bigint__disable:!1, GoogFlags__optimize_get_ei_from_ved__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_unobfuscated_rpc_method_names__enable:!1,
|
|
1390
|
+
GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1374
1391
|
/*
|
|
1375
1392
|
|
|
1376
1393
|
Copyright The Closure Library Authors.
|
|
@@ -2267,9 +2284,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2267
2284
|
};
|
|
2268
2285
|
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;
|
|
2269
2286
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2270
|
-
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$
|
|
2271
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2272
|
-
var key = $jscomp$key$
|
|
2287
|
+
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$m192531680$40$key = $jscomp$iter$19.next(), $jscomp$loop$m192531680$44 = {}; !$jscomp$key$m192531680$40$key.done; $jscomp$loop$m192531680$44 =
|
|
2288
|
+
{mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
|
|
2289
|
+
var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
|
|
2273
2290
|
if (value != null) {
|
|
2274
2291
|
var copy = void 0;
|
|
2275
2292
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2280,11 +2297,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2280
2297
|
} else if (objects.hasOwnProperty(key)) {
|
|
2281
2298
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2282
2299
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2283
|
-
$jscomp$loop$
|
|
2300
|
+
$jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
|
|
2284
2301
|
return function(v) {
|
|
2285
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2302
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2286
2303
|
};
|
|
2287
|
-
}($jscomp$loop$
|
|
2304
|
+
}($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2288
2305
|
} else if (Array.isArray(value)) {
|
|
2289
2306
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2290
2307
|
continue;
|
|
@@ -2299,8 +2316,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2299
2316
|
return target;
|
|
2300
2317
|
}
|
|
2301
2318
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2302
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2303
|
-
var mapKey = $jscomp$key$
|
|
2319
|
+
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next(); !$jscomp$key$m192531680$41$mapKey.done; $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next()) {
|
|
2320
|
+
var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
|
|
2304
2321
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2305
2322
|
}
|
|
2306
2323
|
return objMap;
|
|
@@ -2330,39 +2347,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2330
2347
|
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))) {
|
|
2331
2348
|
return !1;
|
|
2332
2349
|
}
|
|
2333
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2334
|
-
var key = $jscomp$key$
|
|
2350
|
+
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$m192531680$42$key = $jscomp$iter$21.next(), $jscomp$loop$m192531680$45 = {}; !$jscomp$key$m192531680$42$key.done; $jscomp$loop$m192531680$45 = {value2$jscomp$7:void 0, mapMetadata$jscomp$2:void 0}, $jscomp$key$m192531680$42$key = $jscomp$iter$21.next()) {
|
|
2351
|
+
var key = $jscomp$key$m192531680$42$key.value, has1 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable1, key, metadata1), has2 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable2, key, metadata2);
|
|
2335
2352
|
if (has1 !== has2) {
|
|
2336
2353
|
return !1;
|
|
2337
2354
|
}
|
|
2338
2355
|
if (has1) {
|
|
2339
2356
|
var value1 = serializable1.Serializable$get(key);
|
|
2340
|
-
$jscomp$loop$
|
|
2357
|
+
$jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2341
2358
|
if (arrays1.hasOwnProperty(key)) {
|
|
2342
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2359
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
|
|
2343
2360
|
return !1;
|
|
2344
2361
|
}
|
|
2345
2362
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2346
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2363
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
|
|
2347
2364
|
return !1;
|
|
2348
2365
|
}
|
|
2349
2366
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2350
|
-
if ($jscomp$loop$
|
|
2351
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2367
|
+
if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2368
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
|
|
2352
2369
|
return function(v1, i) {
|
|
2353
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2370
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
|
|
2354
2371
|
};
|
|
2355
|
-
}($jscomp$loop$
|
|
2372
|
+
}($jscomp$loop$m192531680$45))) {
|
|
2356
2373
|
return !1;
|
|
2357
2374
|
}
|
|
2358
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2375
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
|
|
2359
2376
|
return !1;
|
|
2360
2377
|
}
|
|
2361
2378
|
} else if (Array.isArray(value1)) {
|
|
2362
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2379
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
|
|
2363
2380
|
return !1;
|
|
2364
2381
|
}
|
|
2365
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2382
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
|
|
2366
2383
|
return !1;
|
|
2367
2384
|
}
|
|
2368
2385
|
}
|
|
@@ -2384,8 +2401,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2384
2401
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2385
2402
|
return !1;
|
|
2386
2403
|
}
|
|
2387
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2388
|
-
var mapKey = $jscomp$key$
|
|
2404
|
+
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next(); !$jscomp$key$m192531680$43$mapKey.done; $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next()) {
|
|
2405
|
+
var mapKey = $jscomp$key$m192531680$43$mapKey.value;
|
|
2389
2406
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2390
2407
|
return !1;
|
|
2391
2408
|
}
|
|
@@ -2466,15 +2483,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2466
2483
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2467
2484
|
};
|
|
2468
2485
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2469
|
-
var $jscomp$this$
|
|
2486
|
+
var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2470
2487
|
payload += this._metadataPayload;
|
|
2471
2488
|
return Promise.all(this.files.map(function(f) {
|
|
2472
|
-
return $jscomp$this$
|
|
2489
|
+
return $jscomp$this$m667091202$6.encodeFile(f);
|
|
2473
2490
|
})).then(function(filePayloads) {
|
|
2474
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2475
|
-
payload += $jscomp$key$
|
|
2491
|
+
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next(); !$jscomp$key$m667091202$9$filePayload.done; $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next()) {
|
|
2492
|
+
payload += $jscomp$key$m667091202$9$filePayload.value;
|
|
2476
2493
|
}
|
|
2477
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2494
|
+
return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
|
|
2478
2495
|
});
|
|
2479
2496
|
};
|
|
2480
2497
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2986,8 +3003,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2986
3003
|
throw Error(message);
|
|
2987
3004
|
}
|
|
2988
3005
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2989
|
-
var $jscomp$templatelit$
|
|
2990
|
-
["\\0"]), $jscomp$templatelit$
|
|
3006
|
+
var $jscomp$templatelit$1274514361$5 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$6 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\0"]), $jscomp$templatelit$1274514361$7 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$8 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), $jscomp$templatelit$1274514361$9 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$10 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"],
|
|
3007
|
+
["\\0"]), $jscomp$templatelit$1274514361$11 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$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"};
|
|
2991
3008
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2992
3009
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2993
3010
|
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 ##############################");
|
|
@@ -3001,14 +3018,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
3001
3018
|
return fn.toString().indexOf("`") === -1;
|
|
3002
3019
|
}
|
|
3003
3020
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
3004
|
-
return tag($jscomp$templatelit$
|
|
3021
|
+
return tag($jscomp$templatelit$1274514361$5);
|
|
3005
3022
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
3006
|
-
return tag($jscomp$templatelit$
|
|
3023
|
+
return tag($jscomp$templatelit$1274514361$6);
|
|
3007
3024
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
3008
|
-
return tag($jscomp$templatelit$
|
|
3025
|
+
return tag($jscomp$templatelit$1274514361$7);
|
|
3009
3026
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
3010
|
-
return tag($jscomp$templatelit$
|
|
3011
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
3027
|
+
return tag($jscomp$templatelit$1274514361$8);
|
|
3028
|
+
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$9) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$10) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$11) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$12);
|
|
3012
3029
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
3013
3030
|
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)) ?
|
|
3014
3031
|
!0 : !1;
|
|
@@ -3334,9 +3351,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3334
3351
|
}
|
|
3335
3352
|
}
|
|
3336
3353
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIframeIntentError = function(type, intent) {
|
|
3337
|
-
var $jscomp$tmp$error$
|
|
3338
|
-
this.message = $jscomp$tmp$error$
|
|
3339
|
-
"stack" in $jscomp$tmp$error$
|
|
3354
|
+
var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.IframeIntent[intent]);
|
|
3355
|
+
this.message = $jscomp$tmp$error$240424914$1.message;
|
|
3356
|
+
"stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
|
|
3340
3357
|
this.type = type;
|
|
3341
3358
|
this.intent = intent;
|
|
3342
3359
|
this.name = "TypeCannotBeUsedWithIframeIntentError";
|
|
@@ -3432,7 +3449,7 @@ function module$contents$safevalues$dom$globals$window_getStyleNonce(doc) {
|
|
|
3432
3449
|
module$exports$safevalues$dom$globals$window.getStyleNonce = module$contents$safevalues$dom$globals$window_getStyleNonce;
|
|
3433
3450
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, doc) {
|
|
3434
3451
|
doc = doc === void 0 ? document : doc;
|
|
3435
|
-
var $jscomp$optchain$
|
|
3452
|
+
var $jscomp$optchain$tmp220578679$0, $jscomp$optchain$tmp220578679$1, el = ($jscomp$optchain$tmp220578679$1 = ($jscomp$optchain$tmp220578679$0 = doc).querySelector) == null ? void 0 : $jscomp$optchain$tmp220578679$1.call($jscomp$optchain$tmp220578679$0, elementName + "[nonce]");
|
|
3436
3453
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3437
3454
|
}
|
|
3438
3455
|
;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"};
|
|
@@ -4865,9 +4882,9 @@ function module$contents$safevalues$dom$globals$dom_parser_domParserParseFromStr
|
|
|
4865
4882
|
module$exports$safevalues$dom$globals$dom_parser.domParserParseFromString = module$contents$safevalues$dom$globals$dom_parser_domParserParseFromString;
|
|
4866
4883
|
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"};
|
|
4867
4884
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4868
|
-
var $jscomp$tmp$error$
|
|
4869
|
-
this.message = $jscomp$tmp$error$
|
|
4870
|
-
"stack" in $jscomp$tmp$error$
|
|
4885
|
+
var $jscomp$tmp$error$m991617773$25 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
|
|
4886
|
+
this.message = $jscomp$tmp$error$m991617773$25.message;
|
|
4887
|
+
"stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
|
|
4871
4888
|
this.url = url;
|
|
4872
4889
|
this.typeName = typeName;
|
|
4873
4890
|
this.contentType = contentType;
|
|
@@ -4879,48 +4896,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4879
4896
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4880
4897
|
}
|
|
4881
4898
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4882
|
-
var response, $jscomp$optchain$
|
|
4883
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4884
|
-
if ($jscomp$generator$context$
|
|
4885
|
-
return $jscomp$generator$context$
|
|
4886
|
-
}
|
|
4887
|
-
response = $jscomp$generator$context$
|
|
4888
|
-
mimeType = ($jscomp$optchain$
|
|
4889
|
-
return $jscomp$generator$context$
|
|
4899
|
+
var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
|
|
4900
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
|
|
4901
|
+
if ($jscomp$generator$context$m991617773$29.getNextAddressJsc() == 1) {
|
|
4902
|
+
return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4903
|
+
}
|
|
4904
|
+
response = $jscomp$generator$context$m991617773$29.getYieldResultJsc();
|
|
4905
|
+
mimeType = ($jscomp$optchain$tmpm991617773$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmpm991617773$1 = $jscomp$optchain$tmpm991617773$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmpm991617773$2 = $jscomp$optchain$tmpm991617773$1[0]) == null ? void 0 : $jscomp$optchain$tmpm991617773$2.toLowerCase();
|
|
4906
|
+
return $jscomp$generator$context$m991617773$29.return({html:function() {
|
|
4890
4907
|
var text;
|
|
4891
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4892
|
-
if ($jscomp$generator$context$
|
|
4908
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
|
|
4909
|
+
if ($jscomp$generator$context$m991617773$26.getNextAddressJsc() == 1) {
|
|
4893
4910
|
if (mimeType !== "text/html") {
|
|
4894
4911
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4895
4912
|
}
|
|
4896
|
-
return $jscomp$generator$context$
|
|
4913
|
+
return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
|
|
4897
4914
|
}
|
|
4898
|
-
text = $jscomp$generator$context$
|
|
4899
|
-
return $jscomp$generator$context$
|
|
4915
|
+
text = $jscomp$generator$context$m991617773$26.getYieldResultJsc();
|
|
4916
|
+
return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4900
4917
|
});
|
|
4901
4918
|
}, script:function() {
|
|
4902
4919
|
var text;
|
|
4903
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4904
|
-
if ($jscomp$generator$context$
|
|
4920
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
|
|
4921
|
+
if ($jscomp$generator$context$m991617773$27.getNextAddressJsc() == 1) {
|
|
4905
4922
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4906
4923
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4907
4924
|
}
|
|
4908
|
-
return $jscomp$generator$context$
|
|
4925
|
+
return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
|
|
4909
4926
|
}
|
|
4910
|
-
text = $jscomp$generator$context$
|
|
4911
|
-
return $jscomp$generator$context$
|
|
4927
|
+
text = $jscomp$generator$context$m991617773$27.getYieldResultJsc();
|
|
4928
|
+
return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4912
4929
|
});
|
|
4913
4930
|
}, styleSheet:function() {
|
|
4914
4931
|
var text;
|
|
4915
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4916
|
-
if ($jscomp$generator$context$
|
|
4932
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
|
|
4933
|
+
if ($jscomp$generator$context$m991617773$28.getNextAddressJsc() == 1) {
|
|
4917
4934
|
if (mimeType !== "text/css") {
|
|
4918
4935
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4919
4936
|
}
|
|
4920
|
-
return $jscomp$generator$context$
|
|
4937
|
+
return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
|
|
4921
4938
|
}
|
|
4922
|
-
text = $jscomp$generator$context$
|
|
4923
|
-
return $jscomp$generator$context$
|
|
4939
|
+
text = $jscomp$generator$context$m991617773$28.getYieldResultJsc();
|
|
4940
|
+
return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4924
4941
|
});
|
|
4925
4942
|
}});
|
|
4926
4943
|
});
|
|
@@ -6358,8 +6375,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6358
6375
|
}
|
|
6359
6376
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6360
6377
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6361
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6362
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6378
|
+
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$1047461284$0$ = $jscomp$iter$29.next(); !$jscomp$key$1047461284$0$.done; $jscomp$key$1047461284$0$ = $jscomp$iter$29.next()) {
|
|
6379
|
+
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$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;
|
|
6363
6380
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6364
6381
|
}
|
|
6365
6382
|
return urlQueryParams;
|
|
@@ -6371,8 +6388,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params,
|
|
|
6371
6388
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6372
6389
|
if (params.headers) {
|
|
6373
6390
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6374
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6375
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6391
|
+
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$1047461284$1$ = $jscomp$iter$30.next(); !$jscomp$key$1047461284$1$.done; $jscomp$key$1047461284$1$ = $jscomp$iter$30.next()) {
|
|
6392
|
+
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$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;
|
|
6376
6393
|
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);
|
|
6377
6394
|
}
|
|
6378
6395
|
}
|
|
@@ -6407,8 +6424,8 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$addHoo
|
|
|
6407
6424
|
}, function(error) {
|
|
6408
6425
|
throw error;
|
|
6409
6426
|
}).finally(function() {
|
|
6410
|
-
var $jscomp$optchain$
|
|
6411
|
-
($jscomp$optchain$
|
|
6427
|
+
var $jscomp$optchain$tmp1237977804$1;
|
|
6428
|
+
($jscomp$optchain$tmp1237977804$1 = hook.onFinalize) == null || $jscomp$optchain$tmp1237977804$1.call(hook);
|
|
6412
6429
|
});
|
|
6413
6430
|
};
|
|
6414
6431
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$request = function(requestParams) {
|
|
@@ -6416,9 +6433,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6416
6433
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6417
6434
|
};
|
|
6418
6435
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6419
|
-
var $jscomp$this$
|
|
6436
|
+
var $jscomp$this$1237977804$6 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6420
6437
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6421
|
-
return $jscomp$this$
|
|
6438
|
+
return $jscomp$this$1237977804$6.requestService.send(params, responseCtor);
|
|
6422
6439
|
}));
|
|
6423
6440
|
};
|
|
6424
6441
|
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"};
|
|
@@ -6603,6 +6620,8 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_throw_in_arr
|
|
|
6603
6620
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable = !1;
|
|
6604
6621
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_write_back_bigint__disable = !1;
|
|
6605
6622
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable = !1;
|
|
6623
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__batch_fc_data_fetches_in_microtask__enable = !1;
|
|
6624
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_unobfuscated_rpc_method_names__enable = !1;
|
|
6606
6625
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6607
6626
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
6608
6627
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable = !1;
|
|
@@ -6625,6 +6644,8 @@ goog.flags.JSPB_THROW_IN_ARRAY_CONSTRUCTOR_IF_ARRAY_IS_ALREADY_CONSTRUCTED = mod
|
|
|
6625
6644
|
goog.flags.JSPB_DESERIALIZE_BINARY_INT64S_AS_GBIGINT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_deserialize_binary_int64s_as_gbigint__disable : goog.readFlagInternalDoNotUseOrElse(824648567, !0);
|
|
6626
6645
|
goog.flags.JSPB_WRITE_BACK_BIGINT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_write_back_bigint__disable) : goog.readFlagInternalDoNotUseOrElse(824656860, module$contents$goog$flags_STAGING);
|
|
6627
6646
|
goog.flags.OPTIMIZE_GET_EI_FROM_VED = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable : goog.readFlagInternalDoNotUseOrElse(333098724, !1);
|
|
6647
|
+
goog.flags.BATCH_FC_DATA_FETCHES_IN_MICROTASK = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__batch_fc_data_fetches_in_microtask__enable : goog.readFlagInternalDoNotUseOrElse(861377723, goog.DEBUG);
|
|
6648
|
+
goog.flags.USE_UNOBFUSCATED_RPC_METHOD_NAMES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_unobfuscated_rpc_method_names__enable : goog.readFlagInternalDoNotUseOrElse(861377724, goog.DEBUG);
|
|
6628
6649
|
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);
|
|
6629
6650
|
goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
|
|
6630
6651
|
goog.flags.TESTONLY_STAGING_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_staging_flag__disable) : goog.readFlagInternalDoNotUseOrElse(2147483646, module$contents$goog$flags_STAGING);
|
|
@@ -6725,7 +6746,7 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6725
6746
|
module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue.prototype.load = function() {
|
|
6726
6747
|
var $jscomp$async$this$m2110036436$9 = this, userAgentData;
|
|
6727
6748
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m2110036436$35) {
|
|
6728
|
-
if ($jscomp$generator$context$m2110036436$35.
|
|
6749
|
+
if ($jscomp$generator$context$m2110036436$35.getNextAddressJsc() == 1) {
|
|
6729
6750
|
userAgentData = module$contents$goog$labs$userAgent$util_getUserAgentData();
|
|
6730
6751
|
if (!userAgentData) {
|
|
6731
6752
|
return $jscomp$generator$context$m2110036436$35.return(void 0);
|
|
@@ -6733,11 +6754,11 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6733
6754
|
$jscomp$async$this$m2110036436$9.promise_ || ($jscomp$async$this$m2110036436$9.pending_ = !0, $jscomp$async$this$m2110036436$9.promise_ = function() {
|
|
6734
6755
|
var dataValues;
|
|
6735
6756
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m2110036436$34) {
|
|
6736
|
-
if ($jscomp$generator$context$m2110036436$34.
|
|
6757
|
+
if ($jscomp$generator$context$m2110036436$34.getNextAddressJsc() == 1) {
|
|
6737
6758
|
return $jscomp$generator$context$m2110036436$34.setFinallyBlock(2), $jscomp$generator$context$m2110036436$34.yield(userAgentData.getHighEntropyValues([$jscomp$async$this$m2110036436$9.key_]), 4);
|
|
6738
6759
|
}
|
|
6739
|
-
if ($jscomp$generator$context$m2110036436$34.
|
|
6740
|
-
return dataValues = $jscomp$generator$context$m2110036436$34.
|
|
6760
|
+
if ($jscomp$generator$context$m2110036436$34.getNextAddressJsc() != 2) {
|
|
6761
|
+
return dataValues = $jscomp$generator$context$m2110036436$34.getYieldResultJsc(), $jscomp$async$this$m2110036436$9.value_ = dataValues[$jscomp$async$this$m2110036436$9.key_], $jscomp$generator$context$m2110036436$34.return($jscomp$async$this$m2110036436$9.value_);
|
|
6741
6762
|
}
|
|
6742
6763
|
$jscomp$generator$context$m2110036436$34.enterFinallyBlock();
|
|
6743
6764
|
$jscomp$async$this$m2110036436$9.pending_ = !1;
|
|
@@ -6746,7 +6767,7 @@ module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue
|
|
|
6746
6767
|
}());
|
|
6747
6768
|
return $jscomp$generator$context$m2110036436$35.yield($jscomp$async$this$m2110036436$9.promise_, 2);
|
|
6748
6769
|
}
|
|
6749
|
-
return $jscomp$generator$context$m2110036436$35.return($jscomp$generator$context$m2110036436$35.
|
|
6770
|
+
return $jscomp$generator$context$m2110036436$35.return($jscomp$generator$context$m2110036436$35.getYieldResultJsc());
|
|
6750
6771
|
});
|
|
6751
6772
|
};
|
|
6752
6773
|
module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.HighEntropyValue.prototype.resetForTesting = function() {
|
|
@@ -6996,10 +7017,10 @@ module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.ge
|
|
|
6996
7017
|
module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.load = function() {
|
|
6997
7018
|
var $jscomp$async$this$1683157560$59 = this, loadedVersionList, matchingBrand;
|
|
6998
7019
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1683157560$106) {
|
|
6999
|
-
if ($jscomp$generator$context$1683157560$106.
|
|
7020
|
+
if ($jscomp$generator$context$1683157560$106.getNextAddressJsc() == 1) {
|
|
7000
7021
|
return $jscomp$async$this$1683157560$59.useUach_ ? $jscomp$generator$context$1683157560$106.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.fullVersionList.load(), 5) : $jscomp$generator$context$1683157560$106.yield(0, 3);
|
|
7001
7022
|
}
|
|
7002
|
-
if ($jscomp$generator$context$1683157560$106.
|
|
7023
|
+
if ($jscomp$generator$context$1683157560$106.getNextAddressJsc() != 3 && (loadedVersionList = $jscomp$generator$context$1683157560$106.getYieldResultJsc(), loadedVersionList !== void 0)) {
|
|
7003
7024
|
return matchingBrand = loadedVersionList.find(function($jscomp$destructuring$var11) {
|
|
7004
7025
|
return $jscomp$async$this$1683157560$59.brand_ === $jscomp$destructuring$var11.brand;
|
|
7005
7026
|
}), (0,goog.asserts.assertExists)(matchingBrand), $jscomp$generator$context$1683157560$106.return(new module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version(matchingBrand.version));
|
|
@@ -7011,7 +7032,7 @@ module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion.prototype.lo
|
|
|
7011
7032
|
var module$contents$goog$labs$userAgent$browser_preUachHasLoaded = !1;
|
|
7012
7033
|
goog.labs.userAgent.browser.loadFullVersions = function() {
|
|
7013
7034
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1683157560$107) {
|
|
7014
|
-
if ($jscomp$generator$context$1683157560$107.
|
|
7035
|
+
if ($jscomp$generator$context$1683157560$107.getNextAddressJsc() == 1) {
|
|
7015
7036
|
return module$contents$goog$labs$userAgent$browser_useUserAgentDataBrand(!0) ? $jscomp$generator$context$1683157560$107.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.fullVersionList.load(), 2) : $jscomp$generator$context$1683157560$107.jumpTo(2);
|
|
7016
7037
|
}
|
|
7017
7038
|
module$contents$goog$labs$userAgent$browser_preUachHasLoaded = !0;
|
|
@@ -7196,14 +7217,14 @@ module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.getIfLoad
|
|
|
7196
7217
|
module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.load = function() {
|
|
7197
7218
|
var $jscomp$async$this$m1628565157$33 = this, JSCompiler_temp_const;
|
|
7198
7219
|
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m1628565157$37) {
|
|
7199
|
-
if ($jscomp$generator$context$m1628565157$37.
|
|
7220
|
+
if ($jscomp$generator$context$m1628565157$37.getNextAddressJsc() == 1) {
|
|
7200
7221
|
if (!module$contents$goog$labs$userAgent$platform_useUserAgentDataPlatform(!0)) {
|
|
7201
7222
|
return $jscomp$async$this$m1628565157$33.preUachHasLoaded_ = !0, $jscomp$generator$context$m1628565157$37.return(new module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version(module$contents$goog$labs$userAgent$platform_getVersion()));
|
|
7202
7223
|
}
|
|
7203
7224
|
JSCompiler_temp_const = module$exports$goog$labs$userAgent$highEntropy$highEntropyValue.Version;
|
|
7204
7225
|
return $jscomp$generator$context$m1628565157$37.yield(module$exports$goog$labs$userAgent$highEntropy$highEntropyData.platformVersion.load(), 3);
|
|
7205
7226
|
}
|
|
7206
|
-
return $jscomp$generator$context$m1628565157$37.return(new JSCompiler_temp_const($jscomp$generator$context$m1628565157$37.
|
|
7227
|
+
return $jscomp$generator$context$m1628565157$37.return(new JSCompiler_temp_const($jscomp$generator$context$m1628565157$37.getYieldResultJsc()));
|
|
7207
7228
|
});
|
|
7208
7229
|
};
|
|
7209
7230
|
module$contents$goog$labs$userAgent$platform_PlatformVersion.prototype.resetForTesting = function() {
|
|
@@ -7368,15 +7389,16 @@ goog.events.eventTypeHelpers.getPointerFallbackEventName = function(pointerEvent
|
|
|
7368
7389
|
return goog.events.BrowserFeature.POINTER_EVENTS ? pointerEventName : fallbackEventName;
|
|
7369
7390
|
};
|
|
7370
7391
|
goog.events.eventTypeHelpers.getVendorPrefixedName = module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName;
|
|
7371
|
-
goog
|
|
7372
|
-
CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange",
|
|
7373
|
-
DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play",
|
|
7374
|
-
SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut",
|
|
7375
|
-
ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationStart"), ANIMATIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationEnd"),
|
|
7376
|
-
TRANSITIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture",
|
|
7377
|
-
MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut",
|
|
7378
|
-
COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive",
|
|
7379
|
-
AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
|
|
7392
|
+
var module$contents$goog$events$EventType_EventType = {CLICK:"click", RIGHTCLICK:"rightclick", DBLCLICK:"dblclick", AUXCLICK:"auxclick", MOUSEDOWN:"mousedown", MOUSEUP:"mouseup", MOUSEOVER:"mouseover", MOUSEOUT:"mouseout", MOUSEMOVE:"mousemove", MOUSEENTER:"mouseenter", MOUSELEAVE:"mouseleave", MOUSECANCEL:"mousecancel", SELECTIONCHANGE:"selectionchange", SELECTSTART:"selectstart", WHEEL:"wheel", KEYPRESS:"keypress", KEYDOWN:"keydown", KEYUP:"keyup", BLUR:"blur", FOCUS:"focus", DEACTIVATE:"deactivate",
|
|
7393
|
+
FOCUSIN:"focusin", FOCUSOUT:"focusout", CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange",
|
|
7394
|
+
DEVICEMOTION:"devicemotion", DEVICEORIENTATION:"deviceorientation", DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play",
|
|
7395
|
+
PLAYING:"playing", PROGRESS:"progress", RATECHANGE:"ratechange", SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut",
|
|
7396
|
+
BEFORECOPY:"beforecopy", BEFORECUT:"beforecut", BEFOREPASTE:"beforepaste", ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationStart"), ANIMATIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationEnd"),
|
|
7397
|
+
ANIMATIONITERATION:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationIteration"), TRANSITIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture",
|
|
7398
|
+
MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart", MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut",
|
|
7399
|
+
MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:"textInput", COMPOSITIONSTART:"compositionstart", COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive",
|
|
7400
|
+
SIZECHANGED:"sizechanged", UNRESPONSIVE:"unresponsive", VISIBILITYCHANGE:"visibilitychange", STORAGE:"storage", BEFOREPRINT:"beforeprint", AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
|
|
7401
|
+
goog.events.EventType = module$contents$goog$events$EventType_EventType;
|
|
7380
7402
|
function module$contents$goog$events$BrowserEvent_BrowserEvent(opt_e, opt_currentTarget) {
|
|
7381
7403
|
goog.events.Event.call(this, opt_e ? opt_e.type : "");
|
|
7382
7404
|
this.relatedTarget = this.currentTarget = this.target = null;
|
|
@@ -7401,7 +7423,7 @@ module$contents$goog$events$BrowserEvent_BrowserEvent.prototype.init = function(
|
|
|
7401
7423
|
this.target = e.target || e.srcElement;
|
|
7402
7424
|
this.currentTarget = opt_currentTarget;
|
|
7403
7425
|
var relatedTarget = e.relatedTarget;
|
|
7404
|
-
relatedTarget || (type == goog
|
|
7426
|
+
relatedTarget || (type == module$contents$goog$events$EventType_EventType.MOUSEOVER ? relatedTarget = e.fromElement : type == module$contents$goog$events$EventType_EventType.MOUSEOUT && (relatedTarget = e.toElement));
|
|
7405
7427
|
this.relatedTarget = relatedTarget;
|
|
7406
7428
|
relevantTouch ? (this.clientX = relevantTouch.clientX !== void 0 ? relevantTouch.clientX : relevantTouch.pageX, this.clientY = relevantTouch.clientY !== void 0 ? relevantTouch.clientY : relevantTouch.pageY, this.screenX = relevantTouch.screenX || 0, this.screenY = relevantTouch.screenY || 0) : (module$contents$goog$events$BrowserEvent_BrowserEvent.USE_LAYER_XY_AS_OFFSET_XY ? (this.offsetX = e.layerX !== void 0 ? e.layerX : e.offsetX, this.offsetY = e.layerY !== void 0 ? e.layerY : e.offsetY) :
|
|
7407
7429
|
(this.offsetX = goog.userAgent.WEBKIT || e.offsetX !== void 0 ? e.offsetX : e.layerX, this.offsetY = goog.userAgent.WEBKIT || e.offsetY !== void 0 ? e.offsetY : e.layerY), this.clientX = e.clientX !== void 0 ? e.clientX : e.pageX, this.clientY = e.clientY !== void 0 ? e.clientY : e.pageY, this.screenX = e.screenX || 0, this.screenY = e.screenY || 0);
|
|
@@ -9384,8 +9406,9 @@ module$exports$eeapiclient$ee_api_client.ProjectRegistrationFreeQuotaEnum = {FRE
|
|
|
9384
9406
|
}};
|
|
9385
9407
|
module$exports$eeapiclient$ee_api_client.IProjectRegistrationUpdateReasonEnum = function() {
|
|
9386
9408
|
};
|
|
9387
|
-
module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum = {AUTOMATIC_DOWNGRADE:"AUTOMATIC_DOWNGRADE", MANUAL_CLOUD_CONSOLE:"MANUAL_CLOUD_CONSOLE", MANUAL_SYSTEM:"MANUAL_SYSTEM", UPDATE_REASON_UNSPECIFIED:"UPDATE_REASON_UNSPECIFIED", values:function() {
|
|
9388
|
-
return [module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.UPDATE_REASON_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.MANUAL_CLOUD_CONSOLE, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.MANUAL_SYSTEM, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.AUTOMATIC_DOWNGRADE
|
|
9409
|
+
module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum = {AUTOMATIC_DOWNGRADE:"AUTOMATIC_DOWNGRADE", AUTOMATIC_DOWNGRADE_ACKNOWLEDGEMENT:"AUTOMATIC_DOWNGRADE_ACKNOWLEDGEMENT", MANUAL_CLOUD_CONSOLE:"MANUAL_CLOUD_CONSOLE", MANUAL_SYSTEM:"MANUAL_SYSTEM", UPDATE_REASON_UNSPECIFIED:"UPDATE_REASON_UNSPECIFIED", values:function() {
|
|
9410
|
+
return [module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.UPDATE_REASON_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.MANUAL_CLOUD_CONSOLE, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.MANUAL_SYSTEM, module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.AUTOMATIC_DOWNGRADE,
|
|
9411
|
+
module$exports$eeapiclient$ee_api_client.ProjectRegistrationUpdateReasonEnum.AUTOMATIC_DOWNGRADE_ACKNOWLEDGEMENT];
|
|
9389
9412
|
}};
|
|
9390
9413
|
module$exports$eeapiclient$ee_api_client.IRankByOneThingRuleDirectionEnum = function() {
|
|
9391
9414
|
};
|
|
@@ -16351,8 +16374,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16351
16374
|
this.replacements = new Map();
|
|
16352
16375
|
};
|
|
16353
16376
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16354
|
-
var $jscomp$this$
|
|
16355
|
-
return $jscomp$this$
|
|
16377
|
+
var $jscomp$this$380122516$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) {
|
|
16378
|
+
return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
|
|
16356
16379
|
});
|
|
16357
16380
|
if (openedTags.length !== 0) {
|
|
16358
16381
|
if (goog.DEBUG) {
|
|
@@ -16570,8 +16593,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16570
16593
|
if (Array.isArray(token)) {
|
|
16571
16594
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16572
16595
|
} else {
|
|
16573
|
-
var $jscomp$optchain$
|
|
16574
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16596
|
+
var $jscomp$optchain$tmpm583190311$0 = void 0;
|
|
16597
|
+
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$tmpm583190311$0 = lastToken) == null ? void 0 : $jscomp$optchain$tmpm583190311$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE) {
|
|
16575
16598
|
tokens.push(token);
|
|
16576
16599
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16577
16600
|
return tokens;
|
|
@@ -16817,9 +16840,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16817
16840
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16818
16841
|
};
|
|
16819
16842
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16820
|
-
var $jscomp$this$
|
|
16843
|
+
var $jscomp$this$m583190311$26 = this;
|
|
16821
16844
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16822
|
-
return $jscomp$this$
|
|
16845
|
+
return $jscomp$this$m583190311$26.isWhitespace(c);
|
|
16823
16846
|
});
|
|
16824
16847
|
};
|
|
16825
16848
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16926,8 +16949,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16926
16949
|
return null;
|
|
16927
16950
|
}
|
|
16928
16951
|
if (token.lowercaseName === "url") {
|
|
16929
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16930
|
-
if ((($jscomp$optchain$
|
|
16952
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
|
|
16953
|
+
if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16931
16954
|
return null;
|
|
16932
16955
|
}
|
|
16933
16956
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$url_policy_parseUrl(nextToken.value);
|
|
@@ -16950,8 +16973,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16950
16973
|
if (!this.allowKeyframes) {
|
|
16951
16974
|
return null;
|
|
16952
16975
|
}
|
|
16953
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16954
|
-
var rule = $jscomp$key$
|
|
16976
|
+
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next(); !$jscomp$key$m1877845113$1$rule.done; $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next()) {
|
|
16977
|
+
var rule = $jscomp$key$m1877845113$1$rule.value;
|
|
16955
16978
|
if (rule instanceof CSSKeyframeRule) {
|
|
16956
16979
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16957
16980
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16963,8 +16986,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16963
16986
|
if (!this.propertyAllowlist.has(name)) {
|
|
16964
16987
|
return !1;
|
|
16965
16988
|
}
|
|
16966
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16967
|
-
var discarder = $jscomp$key$
|
|
16989
|
+
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next(); !$jscomp$key$m1877845113$2$discarder.done; $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next()) {
|
|
16990
|
+
var discarder = $jscomp$key$m1877845113$2$discarder.value;
|
|
16968
16991
|
if (discarder(name)) {
|
|
16969
16992
|
return !1;
|
|
16970
16993
|
}
|
|
@@ -16979,8 +17002,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16979
17002
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16980
17003
|
};
|
|
16981
17004
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16982
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16983
|
-
var name = $jscomp$key$
|
|
17005
|
+
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next(); !$jscomp$key$m1877845113$3$name.done; $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next()) {
|
|
17006
|
+
var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16984
17007
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16985
17008
|
}
|
|
16986
17009
|
return sanitizedProperties;
|
|
@@ -16994,8 +17017,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16994
17017
|
return selector + " { " + sanitizedProperties + " }";
|
|
16995
17018
|
};
|
|
16996
17019
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16997
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16998
|
-
var rule = $jscomp$key$
|
|
17020
|
+
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next(); !$jscomp$key$m1877845113$4$rule.done; $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next()) {
|
|
17021
|
+
var rule = $jscomp$key$m1877845113$4$rule.value;
|
|
16999
17022
|
if (rule instanceof CSSStyleRule) {
|
|
17000
17023
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
17001
17024
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -17159,8 +17182,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17159
17182
|
return fragment;
|
|
17160
17183
|
};
|
|
17161
17184
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
17162
|
-
for (var $jscomp$this$
|
|
17163
|
-
return $jscomp$this$
|
|
17185
|
+
for (var $jscomp$this$m1803429925$13 = this, dirtyFragment = module$contents$safevalues$builders$html_sanitizer$inert_fragment_createInertFragment(html, inertDocument), treeWalker = document.createTreeWalker(dirtyFragment, 5, function(n) {
|
|
17186
|
+
return $jscomp$this$m1803429925$13.nodeFilter(n);
|
|
17164
17187
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
17165
17188
|
var sanitizedNode = void 0;
|
|
17166
17189
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -17195,8 +17218,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17195
17218
|
return this.createTextNode(textNode.data);
|
|
17196
17219
|
};
|
|
17197
17220
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
17198
|
-
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$
|
|
17199
|
-
var $jscomp$destructuring$var30 = $jscomp$key$
|
|
17221
|
+
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$m1803429925$34$ = $jscomp$iter$36.next(); !$jscomp$key$m1803429925$34$.done; $jscomp$key$m1803429925$34$ = $jscomp$iter$36.next()) {
|
|
17222
|
+
var $jscomp$destructuring$var30 = $jscomp$key$m1803429925$34$.value, name = $jscomp$destructuring$var30.name, value = $jscomp$destructuring$var30.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
|
|
17200
17223
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
17201
17224
|
switch(policy.policyAction) {
|
|
17202
17225
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -17228,9 +17251,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17228
17251
|
break;
|
|
17229
17252
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
17230
17253
|
if (this.resourceUrlPolicy) {
|
|
17231
|
-
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$url_policy.UrlPolicyHintsType.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$
|
|
17254
|
+
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$url_policy.UrlPolicyHintsType.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$m1803429925$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1803429925$33$part.done; $jscomp$key$m1803429925$33$part =
|
|
17232
17255
|
$jscomp$iter$35.next()) {
|
|
17233
|
-
var part = $jscomp$key$
|
|
17256
|
+
var part = $jscomp$key$m1803429925$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
|
|
17234
17257
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
17235
17258
|
}
|
|
17236
17259
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -17288,8 +17311,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
17288
17311
|
if (!conditions) {
|
|
17289
17312
|
return !0;
|
|
17290
17313
|
}
|
|
17291
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
17292
|
-
var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17314
|
+
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next(); !$jscomp$key$m1803429925$35$.done; $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next()) {
|
|
17315
|
+
var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var32.next().value, expectedValues = $jscomp$destructuring$var32.next().value, $jscomp$optchain$tmpm1803429925$0 = void 0, value = ($jscomp$optchain$tmpm1803429925$0 = attrs.getNamedItem(attrName__tsickle_destructured_1)) == null ? void 0 : $jscomp$optchain$tmpm1803429925$0.value;
|
|
17293
17316
|
if (value && !expectedValues.has(value)) {
|
|
17294
17317
|
return !1;
|
|
17295
17318
|
}
|
|
@@ -17304,8 +17327,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
17304
17327
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
17305
17328
|
};
|
|
17306
17329
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
17307
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
17308
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17330
|
+
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next(); !$jscomp$key$m1803429925$36$part.done; $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next()) {
|
|
17331
|
+
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$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;
|
|
17309
17332
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
17310
17333
|
}
|
|
17311
17334
|
return {parts:parts};
|
|
@@ -17362,8 +17385,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17362
17385
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17363
17386
|
};
|
|
17364
17387
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17365
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17366
|
-
var element = $jscomp$key$
|
|
17388
|
+
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$m1412690177$23$element = $jscomp$iter$39.next(); !$jscomp$key$m1412690177$23$element.done; $jscomp$key$m1412690177$23$element = $jscomp$iter$39.next()) {
|
|
17389
|
+
var element = $jscomp$key$m1412690177$23$element.value;
|
|
17367
17390
|
element = element.toUpperCase();
|
|
17368
17391
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17369
17392
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17381,8 +17404,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17381
17404
|
throw Error("Element: " + element + " is not a custom element");
|
|
17382
17405
|
}
|
|
17383
17406
|
if (allowedAttributes) {
|
|
17384
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17385
|
-
elementPolicy.set($jscomp$key$
|
|
17407
|
+
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$m1412690177$24$attribute = $jscomp$iter$40.next(); !$jscomp$key$m1412690177$24$attribute.done; $jscomp$key$m1412690177$24$attribute = $jscomp$iter$40.next()) {
|
|
17408
|
+
elementPolicy.set($jscomp$key$m1412690177$24$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17386
17409
|
}
|
|
17387
17410
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17388
17411
|
} else {
|
|
@@ -17392,15 +17415,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17392
17415
|
return this;
|
|
17393
17416
|
};
|
|
17394
17417
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17395
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17396
|
-
var attribute = $jscomp$key$
|
|
17418
|
+
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$m1412690177$25$attribute = $jscomp$iter$41.next(); !$jscomp$key$m1412690177$25$attribute.done; $jscomp$key$m1412690177$25$attribute = $jscomp$iter$41.next()) {
|
|
17419
|
+
var attribute = $jscomp$key$m1412690177$25$attribute.value;
|
|
17397
17420
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17398
17421
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17399
17422
|
}
|
|
17400
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17401
|
-
for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17423
|
+
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$m1412690177$27$ = $jscomp$iter$43.next(); !$jscomp$key$m1412690177$27$.done; $jscomp$key$m1412690177$27$ = $jscomp$iter$43.next()) {
|
|
17424
|
+
for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$27$.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$m1412690177$26$ = $jscomp$iter$42.next(); !$jscomp$key$m1412690177$26$.done; $jscomp$key$m1412690177$26$ =
|
|
17402
17425
|
$jscomp$iter$42.next()) {
|
|
17403
|
-
var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17426
|
+
var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$26$.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;
|
|
17404
17427
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17405
17428
|
}
|
|
17406
17429
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17415,8 +17438,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17415
17438
|
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);
|
|
17416
17439
|
return this;
|
|
17417
17440
|
}
|
|
17418
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17419
|
-
var attribute = $jscomp$key$
|
|
17441
|
+
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$m1412690177$28$attribute = $jscomp$iter$44.next(); !$jscomp$key$m1412690177$28$attribute.done; $jscomp$key$m1412690177$28$attribute = $jscomp$iter$44.next()) {
|
|
17442
|
+
var attribute = $jscomp$key$m1412690177$28$attribute.value;
|
|
17420
17443
|
if (attribute.indexOf("data-") !== 0) {
|
|
17421
17444
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17422
17445
|
}
|
|
@@ -17486,7 +17509,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17486
17509
|
return this;
|
|
17487
17510
|
};
|
|
17488
17511
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17489
|
-
var $jscomp$this$
|
|
17512
|
+
var $jscomp$this$m1412690177$19 = this;
|
|
17490
17513
|
this.extendSanitizerTableForCss();
|
|
17491
17514
|
var propertyDiscarders = [];
|
|
17492
17515
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17496,9 +17519,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17496
17519
|
return /^transition(-|$)/.test(property);
|
|
17497
17520
|
});
|
|
17498
17521
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
17499
|
-
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$
|
|
17522
|
+
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$m1412690177$19.resourceUrlPolicy, $jscomp$this$m1412690177$19.animationsAllowed, propertyDiscarders);
|
|
17500
17523
|
}, function(cssText) {
|
|
17501
|
-
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$
|
|
17524
|
+
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$m1412690177$19.resourceUrlPolicy, propertyDiscarders);
|
|
17502
17525
|
}, this.resourceUrlPolicy, this.navigationUrlPolicy, this.openShadow);
|
|
17503
17526
|
};
|
|
17504
17527
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17718,12 +17741,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17718
17741
|
}
|
|
17719
17742
|
try {
|
|
17720
17743
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17721
|
-
} catch ($jscomp$unused$catch$
|
|
17744
|
+
} catch ($jscomp$unused$catch$442189172$0) {
|
|
17722
17745
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17723
17746
|
}
|
|
17724
17747
|
try {
|
|
17725
17748
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17726
|
-
} catch ($jscomp$unused$catch$
|
|
17749
|
+
} catch ($jscomp$unused$catch$442189172$1) {
|
|
17727
17750
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17728
17751
|
}
|
|
17729
17752
|
return !1;
|
|
@@ -19187,7 +19210,8 @@ var module$contents$goog$net$ErrorCode_ErrorCode = {NO_ERROR:0, ACCESS_DENIED:1,
|
|
|
19187
19210
|
}
|
|
19188
19211
|
}};
|
|
19189
19212
|
goog.net.ErrorCode = module$contents$goog$net$ErrorCode_ErrorCode;
|
|
19190
|
-
goog
|
|
19213
|
+
var module$contents$goog$net$EventType_EventType = {COMPLETE:"complete", SUCCESS:"success", ERROR:"error", ABORT:"abort", READY:"ready", READY_STATE_CHANGE:"readystatechange", TIMEOUT:"timeout", INCREMENTAL_DATA:"incrementaldata", PROGRESS:"progress", DOWNLOAD_PROGRESS:"downloadprogress", UPLOAD_PROGRESS:"uploadprogress"};
|
|
19214
|
+
goog.net.EventType = module$contents$goog$net$EventType_EventType;
|
|
19191
19215
|
var module$contents$goog$net$HttpStatus_HttpStatus = {CONTINUE:100, SWITCHING_PROTOCOLS:101, OK:200, CREATED:201, ACCEPTED:202, NON_AUTHORITATIVE_INFORMATION:203, NO_CONTENT:204, RESET_CONTENT:205, PARTIAL_CONTENT:206, MULTI_STATUS:207, MULTIPLE_CHOICES:300, MOVED_PERMANENTLY:301, FOUND:302, SEE_OTHER:303, NOT_MODIFIED:304, USE_PROXY:305, TEMPORARY_REDIRECT:307, PERMANENT_REDIRECT:308, BAD_REQUEST:400, UNAUTHORIZED:401, PAYMENT_REQUIRED:402, FORBIDDEN:403, NOT_FOUND:404, METHOD_NOT_ALLOWED:405, NOT_ACCEPTABLE:406,
|
|
19192
19216
|
PROXY_AUTHENTICATION_REQUIRED:407, REQUEST_TIMEOUT:408, CONFLICT:409, GONE:410, LENGTH_REQUIRED:411, PRECONDITION_FAILED:412, REQUEST_ENTITY_TOO_LARGE:413, REQUEST_URI_TOO_LONG:414, UNSUPPORTED_MEDIA_TYPE:415, REQUEST_RANGE_NOT_SATISFIABLE:416, EXPECTATION_FAILED:417, UNPROCESSABLE_ENTITY:422, LOCKED:423, FAILED_DEPENDENCY:424, PRECONDITION_REQUIRED:428, TOO_MANY_REQUESTS:429, REQUEST_HEADER_FIELDS_TOO_LARGE:431, CLIENT_CLOSED_REQUEST:499, INTERNAL_SERVER_ERROR:500, NOT_IMPLEMENTED:501, BAD_GATEWAY:502,
|
|
19193
19217
|
SERVICE_UNAVAILABLE:503, GATEWAY_TIMEOUT:504, HTTP_VERSION_NOT_SUPPORTED:505, INSUFFICIENT_STORAGE:507, NETWORK_AUTHENTICATION_REQUIRED:511, QUIRK_IE_NO_CONTENT:1223, isSuccess:function(status) {
|
|
@@ -19268,8 +19292,8 @@ goog.net.XhrIo.sendInstances_ = [];
|
|
|
19268
19292
|
goog.net.XhrIo.send = function(url, opt_callback, opt_method, opt_content, opt_headers, opt_timeoutInterval, opt_withCredentials) {
|
|
19269
19293
|
var x = new goog.net.XhrIo();
|
|
19270
19294
|
goog.net.XhrIo.sendInstances_.push(x);
|
|
19271
|
-
opt_callback && x.listen(goog
|
|
19272
|
-
x.listenOnce(goog
|
|
19295
|
+
opt_callback && x.listen(module$contents$goog$net$EventType_EventType.COMPLETE, opt_callback);
|
|
19296
|
+
x.listenOnce(module$contents$goog$net$EventType_EventType.READY, x.cleanupSend_);
|
|
19273
19297
|
opt_timeoutInterval && x.setTimeoutInterval(opt_timeoutInterval);
|
|
19274
19298
|
opt_withCredentials && x.setWithCredentials(opt_withCredentials);
|
|
19275
19299
|
x.send(url, opt_method, opt_content, opt_headers);
|
|
@@ -19396,7 +19420,7 @@ goog.net.XhrIo.prototype.createXhr = function() {
|
|
|
19396
19420
|
return this.xmlHttpFactory_ ? this.xmlHttpFactory_.createInstance() : goog.net.XmlHttp();
|
|
19397
19421
|
};
|
|
19398
19422
|
goog.net.XhrIo.prototype.timeout_ = function() {
|
|
19399
|
-
typeof goog != "undefined" && this.xhr_ && (this.lastError_ = "Timed out after " + this.timeoutInterval_ + "ms, aborting", this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT, goog.log.fine(this.logger_, this.formatMsg_(this.lastError_)), this.dispatchEvent(goog
|
|
19423
|
+
typeof goog != "undefined" && this.xhr_ && (this.lastError_ = "Timed out after " + this.timeoutInterval_ + "ms, aborting", this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT, goog.log.fine(this.logger_, this.formatMsg_(this.lastError_)), this.dispatchEvent(module$contents$goog$net$EventType_EventType.TIMEOUT), this.abort(module$contents$goog$net$ErrorCode_ErrorCode.TIMEOUT));
|
|
19400
19424
|
};
|
|
19401
19425
|
goog.net.XhrIo.prototype.error_ = function(errorCode, err) {
|
|
19402
19426
|
this.active_ = !1;
|
|
@@ -19407,10 +19431,10 @@ goog.net.XhrIo.prototype.error_ = function(errorCode, err) {
|
|
|
19407
19431
|
this.cleanUpXhr_();
|
|
19408
19432
|
};
|
|
19409
19433
|
goog.net.XhrIo.prototype.dispatchErrors_ = function() {
|
|
19410
|
-
this.errorDispatched_ || (this.errorDispatched_ = !0, this.dispatchEvent(goog
|
|
19434
|
+
this.errorDispatched_ || (this.errorDispatched_ = !0, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.ERROR));
|
|
19411
19435
|
};
|
|
19412
19436
|
goog.net.XhrIo.prototype.abort = function(opt_failureCode) {
|
|
19413
|
-
this.xhr_ && this.active_ && (goog.log.fine(this.logger_, this.formatMsg_("Aborting")), this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1, this.lastErrorCode_ = opt_failureCode || module$contents$goog$net$ErrorCode_ErrorCode.ABORT, this.dispatchEvent(goog
|
|
19437
|
+
this.xhr_ && this.active_ && (goog.log.fine(this.logger_, this.formatMsg_("Aborting")), this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1, this.lastErrorCode_ = opt_failureCode || module$contents$goog$net$ErrorCode_ErrorCode.ABORT, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.ABORT), this.cleanUpXhr_());
|
|
19414
19438
|
};
|
|
19415
19439
|
goog.net.XhrIo.prototype.disposeInternal = function() {
|
|
19416
19440
|
this.xhr_ && (this.active_ && (this.active_ = !1, this.inAbort_ = !0, this.xhr_.abort(), this.inAbort_ = !1), this.cleanUpXhr_(!0));
|
|
@@ -19433,11 +19457,11 @@ goog.net.XhrIo.prototype.onReadyStateChangeHelper_ = function() {
|
|
|
19433
19457
|
if (this.inSend_ && this.getReadyState() == goog.net.XmlHttp.ReadyState.COMPLETE) {
|
|
19434
19458
|
setTimeout(this.onReadyStateChange_.bind(this), 0);
|
|
19435
19459
|
} else {
|
|
19436
|
-
if (this.dispatchEvent(goog
|
|
19460
|
+
if (this.dispatchEvent(module$contents$goog$net$EventType_EventType.READY_STATE_CHANGE), this.isComplete()) {
|
|
19437
19461
|
goog.log.fine(this.logger_, this.formatMsg_("Request complete"));
|
|
19438
19462
|
this.active_ = !1;
|
|
19439
19463
|
try {
|
|
19440
|
-
this.isSuccess() ? (this.dispatchEvent(goog
|
|
19464
|
+
this.isSuccess() ? (this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE), this.dispatchEvent(module$contents$goog$net$EventType_EventType.SUCCESS)) : (this.lastErrorCode_ = module$contents$goog$net$ErrorCode_ErrorCode.HTTP_ERROR, this.lastError_ = this.getStatusText() + " [" + this.getStatus() + "]", this.dispatchErrors_());
|
|
19441
19465
|
} finally {
|
|
19442
19466
|
this.cleanUpXhr_();
|
|
19443
19467
|
}
|
|
@@ -19446,9 +19470,9 @@ goog.net.XhrIo.prototype.onReadyStateChangeHelper_ = function() {
|
|
|
19446
19470
|
}
|
|
19447
19471
|
};
|
|
19448
19472
|
goog.net.XhrIo.prototype.onProgressHandler_ = function(e, opt_isDownload) {
|
|
19449
|
-
goog.asserts.assert(e.type === goog
|
|
19450
|
-
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, goog
|
|
19451
|
-
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, opt_isDownload ? goog
|
|
19473
|
+
goog.asserts.assert(e.type === module$contents$goog$net$EventType_EventType.PROGRESS, "goog.net.EventType.PROGRESS is of the same type as raw XHR progress.");
|
|
19474
|
+
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, module$contents$goog$net$EventType_EventType.PROGRESS));
|
|
19475
|
+
this.dispatchEvent(goog.net.XhrIo.buildProgressEvent_(e, opt_isDownload ? module$contents$goog$net$EventType_EventType.DOWNLOAD_PROGRESS : module$contents$goog$net$EventType_EventType.UPLOAD_PROGRESS));
|
|
19452
19476
|
};
|
|
19453
19477
|
goog.net.XhrIo.buildProgressEvent_ = function(e, eventType) {
|
|
19454
19478
|
return {type:eventType, lengthComputable:e.lengthComputable, loaded:e.loaded, total:e.total};
|
|
@@ -19458,7 +19482,7 @@ goog.net.XhrIo.prototype.cleanUpXhr_ = function(opt_fromDispose) {
|
|
|
19458
19482
|
this.cleanUpTimeoutTimer_();
|
|
19459
19483
|
var xhr = this.xhr_;
|
|
19460
19484
|
this.xhr_ = null;
|
|
19461
|
-
opt_fromDispose || this.dispatchEvent(goog
|
|
19485
|
+
opt_fromDispose || this.dispatchEvent(module$contents$goog$net$EventType_EventType.READY);
|
|
19462
19486
|
try {
|
|
19463
19487
|
xhr.onreadystatechange = null;
|
|
19464
19488
|
} catch (e) {
|
|
@@ -19604,7 +19628,7 @@ var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["ht
|
|
|
19604
19628
|
ee.apiclient = {};
|
|
19605
19629
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19606
19630
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19607
|
-
ee.apiclient.API_CLIENT_VERSION = "1.7.
|
|
19631
|
+
ee.apiclient.API_CLIENT_VERSION = "1.7.14";
|
|
19608
19632
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19609
19633
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19610
19634
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19909,8 +19933,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19909
19933
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19910
19934
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19911
19935
|
method = method || "POST";
|
|
19912
|
-
var headers = {"Content-Type":contentType}, version = "1.7.
|
|
19913
|
-
version === "1.7.
|
|
19936
|
+
var headers = {"Content-Type":contentType}, version = "1.7.14";
|
|
19937
|
+
version === "1.7.14" && (version = "latest");
|
|
19914
19938
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19915
19939
|
module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
|
|
19916
19940
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
@@ -26328,7 +26352,7 @@ ee.layers.AbstractTile.prototype.startLoad = function() {
|
|
|
26328
26352
|
this.loadingStartTs_ = (new Date()).getTime();
|
|
26329
26353
|
this.xhrIo_ = new goog.net.XhrIo();
|
|
26330
26354
|
this.xhrIo_.setResponseType(goog.net.XhrIo.ResponseType.BLOB);
|
|
26331
|
-
this.xhrIo_.listen(goog
|
|
26355
|
+
this.xhrIo_.listen(module$contents$goog$net$EventType_EventType.COMPLETE, function(event) {
|
|
26332
26356
|
var blob = $jscomp$this$800656669$27.xhrIo_.getResponse(), status = $jscomp$this$800656669$27.xhrIo_.getStatus();
|
|
26333
26357
|
status == module$contents$goog$net$HttpStatus_HttpStatus.TOO_MANY_REQUESTS && $jscomp$this$800656669$27.setStatus(ee.layers.AbstractTile.Status.THROTTLED);
|
|
26334
26358
|
if (module$contents$goog$net$HttpStatus_HttpStatus.isSuccess(status)) {
|
|
@@ -26349,7 +26373,7 @@ ee.layers.AbstractTile.prototype.startLoad = function() {
|
|
|
26349
26373
|
$jscomp$this$800656669$27.retryLoad("Failed to load tile.");
|
|
26350
26374
|
}
|
|
26351
26375
|
}, !1);
|
|
26352
|
-
this.xhrIo_.listenOnce(goog
|
|
26376
|
+
this.xhrIo_.listenOnce(module$contents$goog$net$EventType_EventType.READY, goog.partial(module$contents$goog$dispose_dispose, this.xhrIo_));
|
|
26353
26377
|
this.sourceUrl && this.sourceUrl.endsWith("&profiling=1") && (this.sourceUrl = this.sourceUrl.replace("&profiling=1", ""), this.xhrIo_.headers.set(module$contents$ee$apiclient_apiclient.PROFILE_REQUEST_HEADER, "1"));
|
|
26354
26378
|
this.xhrIo_.send(this.sourceUrl, "GET");
|
|
26355
26379
|
};
|
|
@@ -26478,21 +26502,21 @@ module$contents$goog$net$ImageLoader_ImageLoader.prototype.loadImage_ = function
|
|
|
26478
26502
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.onNetworkEvent_ = function(evt) {
|
|
26479
26503
|
var image = evt.currentTarget;
|
|
26480
26504
|
if (image) {
|
|
26481
|
-
if (evt.type == goog
|
|
26482
|
-
if (image.readyState == goog
|
|
26483
|
-
evt.type = goog
|
|
26505
|
+
if (evt.type == module$contents$goog$net$EventType_EventType.READY_STATE_CHANGE) {
|
|
26506
|
+
if (image.readyState == module$contents$goog$net$EventType_EventType.COMPLETE) {
|
|
26507
|
+
evt.type = module$contents$goog$events$EventType_EventType.LOAD;
|
|
26484
26508
|
} else {
|
|
26485
26509
|
return;
|
|
26486
26510
|
}
|
|
26487
26511
|
}
|
|
26488
|
-
typeof image.naturalWidth == "undefined" && (evt.type == goog
|
|
26512
|
+
typeof image.naturalWidth == "undefined" && (evt.type == module$contents$goog$events$EventType_EventType.LOAD ? (image.naturalWidth = image.width, image.naturalHeight = image.height) : (image.naturalWidth = 0, image.naturalHeight = 0));
|
|
26489
26513
|
this.removeImage(image.id);
|
|
26490
26514
|
this.dispatchEvent({type:evt.type, target:image});
|
|
26491
26515
|
this.isDisposed() || this.maybeFireCompletionEvent_();
|
|
26492
26516
|
}
|
|
26493
26517
|
};
|
|
26494
26518
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.maybeFireCompletionEvent_ = function() {
|
|
26495
|
-
module$contents$goog$object_isEmpty(this.imageIdToImageMap_) && module$contents$goog$object_isEmpty(this.imageIdToRequestMap_) && !this.completionFired_ && (this.completionFired_ = !0, this.dispatchEvent(goog
|
|
26519
|
+
module$contents$goog$object_isEmpty(this.imageIdToImageMap_) && module$contents$goog$object_isEmpty(this.imageIdToRequestMap_) && !this.completionFired_ && (this.completionFired_ = !0, this.dispatchEvent(module$contents$goog$net$EventType_EventType.COMPLETE));
|
|
26496
26520
|
};
|
|
26497
26521
|
module$contents$goog$net$ImageLoader_ImageLoader.prototype.disposeInternal = function() {
|
|
26498
26522
|
delete this.imageIdToRequestMap_;
|
|
@@ -26502,7 +26526,7 @@ module$contents$goog$net$ImageLoader_ImageLoader.prototype.disposeInternal = fun
|
|
|
26502
26526
|
};
|
|
26503
26527
|
module$contents$goog$net$ImageLoader_ImageLoader.CorsRequestType = {ANONYMOUS:"anonymous", USE_CREDENTIALS:"use-credentials"};
|
|
26504
26528
|
var module$contents$goog$net$ImageLoader_ImageRequest;
|
|
26505
|
-
module$contents$goog$net$ImageLoader_ImageLoader.IMAGE_LOAD_EVENTS_ = [goog
|
|
26529
|
+
module$contents$goog$net$ImageLoader_ImageLoader.IMAGE_LOAD_EVENTS_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
26506
26530
|
goog.net.ImageLoader = module$contents$goog$net$ImageLoader_ImageLoader;
|
|
26507
26531
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay = {};
|
|
26508
26532
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay = function(tileSource, opt_options) {
|
|
@@ -26531,7 +26555,7 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.pro
|
|
|
26531
26555
|
this.imageLoader_ = new module$contents$goog$net$ImageLoader_ImageLoader();
|
|
26532
26556
|
this.imageLoader_.addImage(this.div.id + "-image", imageUrl);
|
|
26533
26557
|
this.imageLoaderListenerKey_ = goog.events.listenOnce(this.imageLoader_, ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_, function(event) {
|
|
26534
|
-
event.type == goog
|
|
26558
|
+
event.type == module$contents$goog$events$EventType_EventType.LOAD ? (this.imageEl = event.target, ee.layers.AbstractTile.prototype.finishLoad.call(this)) : this.retryLoad();
|
|
26535
26559
|
}, void 0, this);
|
|
26536
26560
|
this.imageLoader_.start();
|
|
26537
26561
|
};
|
|
@@ -26546,7 +26570,7 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.pro
|
|
|
26546
26570
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.defaultRenderer_ = function(tile) {
|
|
26547
26571
|
tile.div.appendChild(tile.imageEl);
|
|
26548
26572
|
};
|
|
26549
|
-
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [goog
|
|
26573
|
+
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
26550
26574
|
goog.string.path = {};
|
|
26551
26575
|
function module$contents$goog$string$path_baseName(path) {
|
|
26552
26576
|
var i = path.lastIndexOf("/") + 1;
|
|
@@ -27133,7 +27157,7 @@ ee.MapTileManager.Request_.prototype.hasReachedMaxRetries = function() {
|
|
|
27133
27157
|
return this.attemptCount_ > this.maxRetries_;
|
|
27134
27158
|
};
|
|
27135
27159
|
ee.MapTileManager.Request_.prototype.setAborted = function(aborted) {
|
|
27136
|
-
aborted && !this.aborted_ && (this.aborted_ = aborted, this.event_ = new goog.events.Event(goog
|
|
27160
|
+
aborted && !this.aborted_ && (this.aborted_ = aborted, this.event_ = new goog.events.Event(module$contents$goog$net$EventType_EventType.ABORT));
|
|
27137
27161
|
};
|
|
27138
27162
|
ee.MapTileManager.Request_.prototype.getAborted = function() {
|
|
27139
27163
|
return this.aborted_;
|
|
@@ -27143,12 +27167,12 @@ ee.MapTileManager.Request_.prototype.handleImageEvent_ = function(e) {
|
|
|
27143
27167
|
this.markCompleted_();
|
|
27144
27168
|
} else {
|
|
27145
27169
|
switch(e.type) {
|
|
27146
|
-
case goog
|
|
27170
|
+
case module$contents$goog$events$EventType_EventType.LOAD:
|
|
27147
27171
|
this.handleSuccess_(e);
|
|
27148
27172
|
this.markCompleted_();
|
|
27149
27173
|
break;
|
|
27150
|
-
case goog
|
|
27151
|
-
case goog
|
|
27174
|
+
case module$contents$goog$net$EventType_EventType.ERROR:
|
|
27175
|
+
case module$contents$goog$net$EventType_EventType.ABORT:
|
|
27152
27176
|
this.handleError_(e);
|
|
27153
27177
|
}
|
|
27154
27178
|
}
|
|
@@ -27184,7 +27208,7 @@ ee.MapTileManager.Request_.prototype.start_ = function() {
|
|
|
27184
27208
|
if (module$contents$goog$Uri_Uri.parse(sourceUrl).getQueryData().containsKey("profiling")) {
|
|
27185
27209
|
var xhrIo = new goog.net.XhrIo();
|
|
27186
27210
|
xhrIo.setResponseType(goog.net.XhrIo.ResponseType.BLOB);
|
|
27187
|
-
xhrIo.listen(goog
|
|
27211
|
+
xhrIo.listen(module$contents$goog$net$EventType_EventType.COMPLETE, goog.bind(function(event) {
|
|
27188
27212
|
this.profileId_ = xhrIo.getResponseHeader(module$contents$ee$apiclient_apiclient.PROFILE_HEADER) || null;
|
|
27189
27213
|
if (xhrIo.getStatus() >= 200 && xhrIo.getStatus() < 300) {
|
|
27190
27214
|
try {
|
|
@@ -27195,7 +27219,7 @@ ee.MapTileManager.Request_.prototype.start_ = function() {
|
|
|
27195
27219
|
}
|
|
27196
27220
|
actuallyLoadImage(ok ? objectUrl : sourceUrl);
|
|
27197
27221
|
}, this));
|
|
27198
|
-
xhrIo.listenOnce(goog
|
|
27222
|
+
xhrIo.listenOnce(module$contents$goog$net$EventType_EventType.READY, goog.bind(xhrIo.dispose, xhrIo));
|
|
27199
27223
|
xhrIo.send(sourceUrl, "GET");
|
|
27200
27224
|
} else {
|
|
27201
27225
|
actuallyLoadImage(sourceUrl);
|
|
@@ -27208,7 +27232,7 @@ ee.MapTileManager.Request_.prototype.imageLoader_ = null;
|
|
|
27208
27232
|
ee.MapTileManager.Request_.prototype.token_ = null;
|
|
27209
27233
|
ee.MapTileManager.Request_.prototype.event_ = null;
|
|
27210
27234
|
ee.MapTileManager.Request_.prototype.profileId_ = null;
|
|
27211
|
-
ee.MapTileManager.Request_.IMAGE_LOADER_EVENT_TYPES_ = [goog
|
|
27235
|
+
ee.MapTileManager.Request_.IMAGE_LOADER_EVENT_TYPES_ = [module$contents$goog$events$EventType_EventType.LOAD, module$contents$goog$net$EventType_EventType.ABORT, module$contents$goog$net$EventType_EventType.ERROR];
|
|
27212
27236
|
ee.MapTileManager.Token_ = function() {
|
|
27213
27237
|
goog.Disposable.call(this);
|
|
27214
27238
|
this.active_ = !1;
|
|
@@ -27295,11 +27319,11 @@ ee.MapLayerOverlay.prototype.setOpacity = function(opacity) {
|
|
|
27295
27319
|
});
|
|
27296
27320
|
};
|
|
27297
27321
|
ee.MapLayerOverlay.prototype.handleImageCompleted_ = function(div, tileId, e, profileId) {
|
|
27298
|
-
if (e.type == goog
|
|
27322
|
+
if (e.type == module$contents$goog$net$EventType_EventType.ERROR) {
|
|
27299
27323
|
module$contents$goog$array_remove(this.tilesLoading, tileId), this.tilesFailed.add(tileId), this.dispatchEvent(e);
|
|
27300
27324
|
} else {
|
|
27301
27325
|
module$contents$goog$array_remove(this.tilesLoading, tileId);
|
|
27302
|
-
if (e.target && e.type == goog
|
|
27326
|
+
if (e.target && e.type == module$contents$goog$events$EventType_EventType.LOAD) {
|
|
27303
27327
|
var tile = e.target;
|
|
27304
27328
|
this.tiles_.add(tile);
|
|
27305
27329
|
this.opacity_ != 1 && goog.style.setOpacity(tile, this.opacity_);
|
|
@@ -27466,29 +27490,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27466
27490
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27467
27491
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27468
27492
|
(function() {
|
|
27469
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.
|
|
27470
|
-
orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "image opt_description
|
|
27471
|
-
"
|
|
27472
|
-
|
|
27473
|
-
"
|
|
27474
|
-
|
|
27475
|
-
["
|
|
27476
|
-
|
|
27477
|
-
["
|
|
27478
|
-
|
|
27479
|
-
"
|
|
27480
|
-
"
|
|
27481
|
-
"
|
|
27482
|
-
["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27483
|
-
[ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.
|
|
27484
|
-
module$contents$ee$batch_Export.
|
|
27485
|
-
ee.ComputedObject.prototype.
|
|
27486
|
-
ee.data.
|
|
27487
|
-
ee.data.
|
|
27488
|
-
ee.
|
|
27489
|
-
ee.Filter.
|
|
27490
|
-
ee.Image.
|
|
27491
|
-
ee.ImageCollection.prototype.
|
|
27493
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toBigQuery ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.newTaskId ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.getAssetRoots ee.data.getMapId ee.data.getTaskStatus ee.data.createAssetHome ee.data.getWorkloadTag ee.data.startIngestion ee.data.setWorkloadTag ee.data.getTaskList ee.data.getTileUrl ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.listFeatures ee.data.getFeatureViewTilesKey ee.data.resetWorkloadTag ee.data.createFolder ee.data.listOperations ee.data.renameAsset ee.data.startTableIngestion ee.data.cancelOperation ee.data.computeValue ee.data.copyAsset ee.data.getThumbId ee.data.getVideoThumbId ee.data.authenticateViaPrivateKey ee.data.getAsset ee.data.getOperation ee.data.deleteAsset ee.data.getFilmstripThumbId ee.data.getInfo ee.data.cancelTask ee.data.getAssetAcl ee.data.listAssets ee.data.authenticateViaPopup ee.data.makeThumbUrl ee.data.authenticate ee.data.updateTask ee.data.updateAsset ee.data.getList ee.data.authenticateViaOauth ee.data.getDownloadId ee.data.setAssetAcl ee.data.startProcessing ee.data.makeDownloadUrl ee.data.makeTableDownloadUrl ee.data.getTableDownloadId ee.data.listImages ee.data.setAssetProperties ee.data.getAssetRootQuota ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.InitState ee.call ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter ee.Filter.lte ee.Filter.prototype.not ee.Filter.lt ee.Filter.bounds ee.Filter.gte ee.Filter.or ee.Filter.eq ee.Filter.and ee.Filter.gt ee.Filter.date ee.Filter.neq ee.Filter.metadata ee.Filter.inList ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Point ee.Geometry.MultiLineString ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiPoint ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.Rectangle ee.Geometry.MultiPolygon ee.Geometry.Polygon ee.Geometry.LinearRing ee.Image.prototype.getMapId ee.Image.cat ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getThumbId ee.Image.prototype.getInfo ee.Image.prototype.select ee.Image.rgb ee.Image.prototype.expression ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.select ee.List ee.Number ee.Serializer.encode ee.Serializer.encodeCloudApi ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
27494
|
+
orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_assetId opt_maxVertices opt_priority opt_overwrite".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27495
|
+
"image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority opt_overwrite".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "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(" "),
|
|
27496
|
+
"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(" "), "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(" "),
|
|
27497
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
|
|
27498
|
+
"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(" "), ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["filter"], ["geometry"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["start", "opt_end"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["opt_count", "opt_callback"],
|
|
27499
|
+
["project", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["requestedId", "opt_callback"], [], ["taskId", "request", "opt_callback"], ["tag"], ["opt_callback"], ["id", "x", "y", "z"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["asset", "params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["path", "opt_force", "opt_callback"], ["opt_limit", "opt_callback"], ["sourceId",
|
|
27500
|
+
"destinationId", "opt_callback"], ["taskId", "request", "opt_callback"], ["operationName", "opt_callback"], ["obj", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"],
|
|
27501
|
+
["assetId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["taskId", "action", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["taskId", "params",
|
|
27502
|
+
"opt_callback"], ["id"], ["id"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["rootId", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "var_args"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_callback"],
|
|
27503
|
+
["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_filter"], ["name", "value"], [], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["name", "value"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["name", "value"], ["name",
|
|
27504
|
+
"operator", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj"], [], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
|
|
27505
|
+
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_visParams", "opt_callback"], ["var_args"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["params", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["var_args"], ["r", "g", "b"], ["expression", "opt_map"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection",
|
|
27506
|
+
"opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["args"], ["opt_callback"], [], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27507
|
+
[ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive,
|
|
27508
|
+
module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.evaluate,
|
|
27509
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.newTaskId, ee.data.listBuckets, ee.data.getTaskListWithLimit, ee.data.getAssetRoots, ee.data.getMapId, ee.data.getTaskStatus, ee.data.createAssetHome, ee.data.getWorkloadTag, ee.data.startIngestion, ee.data.setWorkloadTag, ee.data.getTaskList, ee.data.getTileUrl, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.listFeatures, ee.data.getFeatureViewTilesKey, ee.data.resetWorkloadTag,
|
|
27510
|
+
ee.data.createFolder, ee.data.listOperations, ee.data.renameAsset, ee.data.startTableIngestion, ee.data.cancelOperation, ee.data.computeValue, ee.data.copyAsset, ee.data.getThumbId, ee.data.getVideoThumbId, ee.data.authenticateViaPrivateKey, ee.data.getAsset, ee.data.getOperation, ee.data.deleteAsset, ee.data.getFilmstripThumbId, ee.data.getInfo, ee.data.cancelTask, ee.data.getAssetAcl, ee.data.listAssets, ee.data.authenticateViaPopup, ee.data.makeThumbUrl, ee.data.authenticate, ee.data.updateTask,
|
|
27511
|
+
ee.data.updateAsset, ee.data.getList, ee.data.authenticateViaOauth, ee.data.getDownloadId, ee.data.setAssetAcl, ee.data.startProcessing, ee.data.makeDownloadUrl, ee.data.makeTableDownloadUrl, ee.data.getTableDownloadId, ee.data.listImages, ee.data.setAssetProperties, ee.data.getAssetRootQuota, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.InitState, ee.call, ee.apply, ee.TILE_SIZE, ee.initialize, ee.reset,
|
|
27512
|
+
ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter, ee.Filter.lte, ee.Filter.prototype.not, ee.Filter.lt, ee.Filter.bounds, ee.Filter.gte, ee.Filter.or,
|
|
27513
|
+
ee.Filter.eq, ee.Filter.and, ee.Filter.gt, ee.Filter.date, ee.Filter.neq, ee.Filter.metadata, ee.Filter.inList, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Point, ee.Geometry.MultiLineString, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiPoint, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.MultiPolygon, ee.Geometry.Polygon, ee.Geometry.LinearRing, ee.Image.prototype.getMapId,
|
|
27514
|
+
ee.Image.cat, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getThumbId, ee.Image.prototype.getInfo, ee.Image.prototype.select, ee.Image.rgb, ee.Image.prototype.expression, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection,
|
|
27515
|
+
ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.select, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.encodeCloudApi, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27492
27516
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27493
27517
|
});
|
|
27494
27518
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|