@google/earthengine 1.4.0 → 1.4.2
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 +291 -305
- package/build/ee_api_js.js +181 -181
- package/build/ee_api_js_debug.js +269 -282
- package/build/ee_api_js_npm.js +291 -305
- package/build/main.js +291 -305
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/build/browser.js
CHANGED
|
@@ -10,9 +10,9 @@ $jscomp.arrayIterator = function(array) {
|
|
|
10
10
|
return {next:$jscomp.arrayIteratorImpl(array)};
|
|
11
11
|
};
|
|
12
12
|
$jscomp.ASSUME_ES5 = !1;
|
|
13
|
+
$jscomp.ASSUME_ES6 = !1;
|
|
13
14
|
$jscomp.ASSUME_NO_NATIVE_MAP = !1;
|
|
14
15
|
$jscomp.ASSUME_NO_NATIVE_SET = !1;
|
|
15
|
-
$jscomp.SIMPLE_FROUND_POLYFILL = !1;
|
|
16
16
|
$jscomp.ISOLATE_POLYFILLS = !1;
|
|
17
17
|
$jscomp.FORCE_POLYFILL_PROMISE = !1;
|
|
18
18
|
$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
|
|
@@ -128,50 +128,6 @@ $jscomp.iteratorPrototype = function(next) {
|
|
|
128
128
|
};
|
|
129
129
|
return iterator;
|
|
130
130
|
};
|
|
131
|
-
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
132
|
-
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
133
|
-
};
|
|
134
|
-
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
135
|
-
arrayStrings.raw = rawArrayStrings;
|
|
136
|
-
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
137
|
-
return arrayStrings;
|
|
138
|
-
};
|
|
139
|
-
$jscomp.makeIterator = function(iterable) {
|
|
140
|
-
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
141
|
-
if (iteratorFunction) {
|
|
142
|
-
return iteratorFunction.call(iterable);
|
|
143
|
-
}
|
|
144
|
-
if (typeof iterable.length == "number") {
|
|
145
|
-
return $jscomp.arrayIterator(iterable);
|
|
146
|
-
}
|
|
147
|
-
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
148
|
-
};
|
|
149
|
-
$jscomp.arrayFromIterator = function(iterator) {
|
|
150
|
-
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
151
|
-
arr.push(i.value);
|
|
152
|
-
}
|
|
153
|
-
return arr;
|
|
154
|
-
};
|
|
155
|
-
$jscomp.arrayFromIterable = function(iterable) {
|
|
156
|
-
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
157
|
-
};
|
|
158
|
-
$jscomp.owns = function(obj, prop) {
|
|
159
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
160
|
-
};
|
|
161
|
-
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
162
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
163
|
-
var source = arguments[i];
|
|
164
|
-
if (source) {
|
|
165
|
-
for (var key in source) {
|
|
166
|
-
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
return target;
|
|
171
|
-
};
|
|
172
|
-
$jscomp.polyfill("Object.assign", function(orig) {
|
|
173
|
-
return orig || $jscomp.assign;
|
|
174
|
-
}, "es6", "es3");
|
|
175
131
|
$jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
|
|
176
132
|
var ctor = function() {
|
|
177
133
|
};
|
|
@@ -240,6 +196,50 @@ $jscomp.inherits = function(childCtor, parentCtor) {
|
|
|
240
196
|
}
|
|
241
197
|
childCtor.superClass_ = parentCtor.prototype;
|
|
242
198
|
};
|
|
199
|
+
$jscomp.makeIterator = function(iterable) {
|
|
200
|
+
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
201
|
+
if (iteratorFunction) {
|
|
202
|
+
return iteratorFunction.call(iterable);
|
|
203
|
+
}
|
|
204
|
+
if (typeof iterable.length == "number") {
|
|
205
|
+
return $jscomp.arrayIterator(iterable);
|
|
206
|
+
}
|
|
207
|
+
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
208
|
+
};
|
|
209
|
+
$jscomp.arrayFromIterator = function(iterator) {
|
|
210
|
+
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
211
|
+
arr.push(i.value);
|
|
212
|
+
}
|
|
213
|
+
return arr;
|
|
214
|
+
};
|
|
215
|
+
$jscomp.arrayFromIterable = function(iterable) {
|
|
216
|
+
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
217
|
+
};
|
|
218
|
+
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
219
|
+
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
220
|
+
};
|
|
221
|
+
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
222
|
+
arrayStrings.raw = rawArrayStrings;
|
|
223
|
+
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
224
|
+
return arrayStrings;
|
|
225
|
+
};
|
|
226
|
+
$jscomp.owns = function(obj, prop) {
|
|
227
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
228
|
+
};
|
|
229
|
+
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
230
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
231
|
+
var source = arguments[i];
|
|
232
|
+
if (source) {
|
|
233
|
+
for (var key in source) {
|
|
234
|
+
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
return target;
|
|
239
|
+
};
|
|
240
|
+
$jscomp.polyfill("Object.assign", function(orig) {
|
|
241
|
+
return orig || $jscomp.assign;
|
|
242
|
+
}, "es6", "es3");
|
|
243
243
|
$jscomp.generator = {};
|
|
244
244
|
$jscomp.generator.ensureIteratorResultIsObject_ = function(result) {
|
|
245
245
|
if (!(result instanceof Object)) {
|
|
@@ -744,6 +744,9 @@ $jscomp.polyfill("SuppressedError", function(orig) {
|
|
|
744
744
|
return SuppressedError;
|
|
745
745
|
}, "es_next", "es3");
|
|
746
746
|
$jscomp.iteratorFromArray = function(array, transform) {
|
|
747
|
+
if ($jscomp.ASSUME_ES6) {
|
|
748
|
+
return array[Symbol.iterator]();
|
|
749
|
+
}
|
|
747
750
|
array instanceof String && (array += "");
|
|
748
751
|
var i = 0, done = !1, iter = {next:function() {
|
|
749
752
|
if (!done && i < array.length) {
|
|
@@ -1253,8 +1256,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1253
1256
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1254
1257
|
};
|
|
1255
1258
|
}, "es8", "es3");
|
|
1256
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1,
|
|
1257
|
-
|
|
1259
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__disable:!1, GoogFlags__jspb_ignore_implicit_extension_deps__disable:!1, GoogFlags__jspb_readonly_repeated_fields__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1,
|
|
1260
|
+
GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1258
1261
|
/*
|
|
1259
1262
|
|
|
1260
1263
|
Copyright The Closure Library Authors.
|
|
@@ -1679,6 +1682,14 @@ goog.createTrustedTypesPolicy = function(name) {
|
|
|
1679
1682
|
}
|
|
1680
1683
|
return policy;
|
|
1681
1684
|
};
|
|
1685
|
+
goog.CodeLocation = {};
|
|
1686
|
+
goog.callerLocation = function() {
|
|
1687
|
+
var stack;
|
|
1688
|
+
return "";
|
|
1689
|
+
};
|
|
1690
|
+
goog.callerLocationIdInternalDoNotCallOrElse = function(id) {
|
|
1691
|
+
return id;
|
|
1692
|
+
};
|
|
1682
1693
|
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf || function(d, b) {
|
|
1683
1694
|
for (var p in b) {
|
|
1684
1695
|
Object.prototype.hasOwnProperty.call(b, p) && (d[p] = b[p]);
|
|
@@ -2158,9 +2169,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2158
2169
|
};
|
|
2159
2170
|
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;
|
|
2160
2171
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2161
|
-
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$
|
|
2162
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2163
|
-
var key = $jscomp$key$
|
|
2172
|
+
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 =
|
|
2173
|
+
{mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
|
|
2174
|
+
var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
|
|
2164
2175
|
if (value != null) {
|
|
2165
2176
|
var copy = void 0;
|
|
2166
2177
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2171,11 +2182,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2171
2182
|
} else if (objects.hasOwnProperty(key)) {
|
|
2172
2183
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2173
2184
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2174
|
-
$jscomp$loop$
|
|
2185
|
+
$jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
|
|
2175
2186
|
return function(v) {
|
|
2176
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2187
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2177
2188
|
};
|
|
2178
|
-
}($jscomp$loop$
|
|
2189
|
+
}($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2179
2190
|
} else if (Array.isArray(value)) {
|
|
2180
2191
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2181
2192
|
continue;
|
|
@@ -2190,8 +2201,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2190
2201
|
return target;
|
|
2191
2202
|
}
|
|
2192
2203
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2193
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2194
|
-
var mapKey = $jscomp$key$
|
|
2204
|
+
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()) {
|
|
2205
|
+
var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
|
|
2195
2206
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2196
2207
|
}
|
|
2197
2208
|
return objMap;
|
|
@@ -2221,39 +2232,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2221
2232
|
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))) {
|
|
2222
2233
|
return !1;
|
|
2223
2234
|
}
|
|
2224
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2225
|
-
var key = $jscomp$key$
|
|
2235
|
+
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()) {
|
|
2236
|
+
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);
|
|
2226
2237
|
if (has1 !== has2) {
|
|
2227
2238
|
return !1;
|
|
2228
2239
|
}
|
|
2229
2240
|
if (has1) {
|
|
2230
2241
|
var value1 = serializable1.Serializable$get(key);
|
|
2231
|
-
$jscomp$loop$
|
|
2242
|
+
$jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2232
2243
|
if (arrays1.hasOwnProperty(key)) {
|
|
2233
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2244
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
|
|
2234
2245
|
return !1;
|
|
2235
2246
|
}
|
|
2236
2247
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2237
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2248
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
|
|
2238
2249
|
return !1;
|
|
2239
2250
|
}
|
|
2240
2251
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2241
|
-
if ($jscomp$loop$
|
|
2242
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2252
|
+
if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2253
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
|
|
2243
2254
|
return function(v1, i) {
|
|
2244
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2255
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
|
|
2245
2256
|
};
|
|
2246
|
-
}($jscomp$loop$
|
|
2257
|
+
}($jscomp$loop$m192531680$45))) {
|
|
2247
2258
|
return !1;
|
|
2248
2259
|
}
|
|
2249
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2260
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
|
|
2250
2261
|
return !1;
|
|
2251
2262
|
}
|
|
2252
2263
|
} else if (Array.isArray(value1)) {
|
|
2253
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2264
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
|
|
2254
2265
|
return !1;
|
|
2255
2266
|
}
|
|
2256
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2267
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
|
|
2257
2268
|
return !1;
|
|
2258
2269
|
}
|
|
2259
2270
|
}
|
|
@@ -2275,8 +2286,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2275
2286
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2276
2287
|
return !1;
|
|
2277
2288
|
}
|
|
2278
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2279
|
-
var mapKey = $jscomp$key$
|
|
2289
|
+
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()) {
|
|
2290
|
+
var mapKey = $jscomp$key$m192531680$43$mapKey.value;
|
|
2280
2291
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2281
2292
|
return !1;
|
|
2282
2293
|
}
|
|
@@ -2357,15 +2368,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2357
2368
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2358
2369
|
};
|
|
2359
2370
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2360
|
-
var $jscomp$this$
|
|
2371
|
+
var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2361
2372
|
payload += this._metadataPayload;
|
|
2362
2373
|
return Promise.all(this.files.map(function(f) {
|
|
2363
|
-
return $jscomp$this$
|
|
2374
|
+
return $jscomp$this$m667091202$6.encodeFile(f);
|
|
2364
2375
|
})).then(function(filePayloads) {
|
|
2365
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2366
|
-
payload += $jscomp$key$
|
|
2376
|
+
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()) {
|
|
2377
|
+
payload += $jscomp$key$m667091202$9$filePayload.value;
|
|
2367
2378
|
}
|
|
2368
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2379
|
+
return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
|
|
2369
2380
|
});
|
|
2370
2381
|
};
|
|
2371
2382
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2870,8 +2881,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2870
2881
|
throw Error(message);
|
|
2871
2882
|
}
|
|
2872
2883
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2873
|
-
var $jscomp$templatelit$
|
|
2874
|
-
["\\0"]), $jscomp$templatelit$
|
|
2884
|
+
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"],
|
|
2885
|
+
["\\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"};
|
|
2875
2886
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2876
2887
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2877
2888
|
throw new TypeError("\n ############################## ERROR ##############################\n\n It looks like you are trying to call a template tag function (fn`...`)\n using the normal function syntax (fn(...)), which is not supported.\n\n The functions in the safevalues library are not designed to be called\n like normal functions, and doing so invalidates the security guarantees\n that safevalues provides.\n\n If you are stuck and not sure how to proceed, please reach out to us\n instead through:\n - go/ise-hardening-yaqs (preferred) // LINE-INTERNAL\n - g/ise-hardening // LINE-INTERNAL\n - https://github.com/google/safevalues/issues\n\n ############################## ERROR ##############################");
|
|
@@ -2885,14 +2896,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
2885
2896
|
return fn.toString().indexOf("`") === -1;
|
|
2886
2897
|
}
|
|
2887
2898
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2888
|
-
return tag($jscomp$templatelit$
|
|
2899
|
+
return tag($jscomp$templatelit$1274514361$5);
|
|
2889
2900
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2890
|
-
return tag($jscomp$templatelit$
|
|
2901
|
+
return tag($jscomp$templatelit$1274514361$6);
|
|
2891
2902
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2892
|
-
return tag($jscomp$templatelit$
|
|
2903
|
+
return tag($jscomp$templatelit$1274514361$7);
|
|
2893
2904
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2894
|
-
return tag($jscomp$templatelit$
|
|
2895
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
2905
|
+
return tag($jscomp$templatelit$1274514361$8);
|
|
2906
|
+
}), 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);
|
|
2896
2907
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
2897
2908
|
return Array.isArray(templateObj) && Array.isArray(templateObj.raw) && templateObj.length === templateObj.raw.length && (module$contents$safevalues$internals$string_literal_isTranspiled || templateObj !== templateObj.raw) && (module$contents$safevalues$internals$string_literal_isTranspiled && !module$contents$safevalues$internals$string_literal_frozenTSA || module$contents$safevalues$internals$string_literal_checkFrozen(templateObj)) ?
|
|
2898
2909
|
!0 : !1;
|
|
@@ -3078,6 +3089,11 @@ function module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(
|
|
|
3078
3089
|
}
|
|
3079
3090
|
}
|
|
3080
3091
|
module$exports$safevalues$builders$url_builders.sanitizeJavaScriptUrl = module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl;
|
|
3092
|
+
function module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration(url) {
|
|
3093
|
+
var sanitizedUrl = module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(url);
|
|
3094
|
+
return sanitizedUrl === void 0 ? module$exports$safevalues$internals$url_impl.INNOCUOUS_URL : module$contents$safevalues$internals$url_impl_createUrlInternal(sanitizedUrl);
|
|
3095
|
+
}
|
|
3096
|
+
module$exports$safevalues$builders$url_builders.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
3081
3097
|
function module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url) {
|
|
3082
3098
|
return url instanceof module$exports$safevalues$internals$url_impl.SafeUrl ? module$contents$safevalues$internals$url_impl_unwrapUrl(url) : module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(url);
|
|
3083
3099
|
}
|
|
@@ -3114,16 +3130,16 @@ module$exports$safevalues$dom$elements$anchor.setHref = function(anchor, url) {
|
|
|
3114
3130
|
module$exports$safevalues$dom$elements$anchor.setHrefLite = function(anchor, url) {
|
|
3115
3131
|
module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (anchor.href = url);
|
|
3116
3132
|
};
|
|
3117
|
-
var module$
|
|
3118
|
-
module$
|
|
3133
|
+
var module$contents$safevalues$dom$elements$area_module = module$contents$safevalues$dom$elements$area_module || {id:"third_party/javascript/safevalues/dom/elements/area.closure.js"};
|
|
3134
|
+
function module$contents$safevalues$dom$elements$area_setHref(area, url) {
|
|
3119
3135
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3120
3136
|
sanitizedUrl !== void 0 && (area.href = sanitizedUrl);
|
|
3121
|
-
}
|
|
3122
|
-
var module$
|
|
3123
|
-
module$
|
|
3137
|
+
}
|
|
3138
|
+
;var module$contents$safevalues$dom$elements$base_module = module$contents$safevalues$dom$elements$base_module || {id:"third_party/javascript/safevalues/dom/elements/base.closure.js"};
|
|
3139
|
+
function module$contents$safevalues$dom$elements$base_setHref(baseEl, url) {
|
|
3124
3140
|
baseEl.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3125
|
-
}
|
|
3126
|
-
var module$exports$safevalues$dom$elements$button = {}, module$contents$safevalues$dom$elements$button_module = module$contents$safevalues$dom$elements$button_module || {id:"third_party/javascript/safevalues/dom/elements/button.closure.js"};
|
|
3141
|
+
}
|
|
3142
|
+
;var module$exports$safevalues$dom$elements$button = {}, module$contents$safevalues$dom$elements$button_module = module$contents$safevalues$dom$elements$button_module || {id:"third_party/javascript/safevalues/dom/elements/button.closure.js"};
|
|
3127
3143
|
module$exports$safevalues$dom$elements$button.setFormaction = function(button, url) {
|
|
3128
3144
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3129
3145
|
sanitizedUrl !== void 0 && (button.formAction = sanitizedUrl);
|
|
@@ -3185,19 +3201,6 @@ module$exports$safevalues$internals$html_impl.unwrapHtml = function(value) {
|
|
|
3185
3201
|
goog.DEBUG && (message = "Unexpected type when unwrapping SafeHtml");
|
|
3186
3202
|
throw Error(message);
|
|
3187
3203
|
};
|
|
3188
|
-
var module$exports$safevalues$internals$style_impl = {}, module$contents$safevalues$internals$style_impl_module = module$contents$safevalues$internals$style_impl_module || {id:"third_party/javascript/safevalues/internals/style_impl.closure.js"};
|
|
3189
|
-
function module$contents$safevalues$internals$style_impl_createStyleInternal(value) {
|
|
3190
|
-
return value;
|
|
3191
|
-
}
|
|
3192
|
-
module$exports$safevalues$internals$style_impl.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
|
|
3193
|
-
function module$contents$safevalues$internals$style_impl_isStyle(value) {
|
|
3194
|
-
return typeof value === "string";
|
|
3195
|
-
}
|
|
3196
|
-
module$exports$safevalues$internals$style_impl.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
|
|
3197
|
-
function module$contents$safevalues$internals$style_impl_unwrapStyle(value) {
|
|
3198
|
-
return value;
|
|
3199
|
-
}
|
|
3200
|
-
module$exports$safevalues$internals$style_impl.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
|
|
3201
3204
|
var module$exports$safevalues$dom$elements$element = {}, module$contents$safevalues$dom$elements$element_module = module$contents$safevalues$dom$elements$element_module || {id:"third_party/javascript/safevalues/dom/elements/element.closure.js"}, module$contents$safevalues$dom$elements$element_ScriptOrStyle;
|
|
3202
3205
|
module$exports$safevalues$dom$elements$element.setInnerHtml = function(elOrRoot, v) {
|
|
3203
3206
|
module$contents$safevalues$dom$elements$element_isElement(elOrRoot) && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(elOrRoot);
|
|
@@ -3209,7 +3212,7 @@ module$exports$safevalues$dom$elements$element.setOuterHtml = function(e, v) {
|
|
|
3209
3212
|
e.outerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
|
|
3210
3213
|
};
|
|
3211
3214
|
module$exports$safevalues$dom$elements$element.setCssText = function(e, v) {
|
|
3212
|
-
e.style.cssText =
|
|
3215
|
+
e.style.cssText = v;
|
|
3213
3216
|
};
|
|
3214
3217
|
module$exports$safevalues$dom$elements$element.insertAdjacentHtml = function(element, position, v) {
|
|
3215
3218
|
var tagContext = position === "beforebegin" || position === "afterend" ? element.parentElement : element;
|
|
@@ -3248,11 +3251,11 @@ function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(el
|
|
|
3248
3251
|
function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
|
|
3249
3252
|
return elOrRoot.nodeType === 1;
|
|
3250
3253
|
}
|
|
3251
|
-
;var module$
|
|
3252
|
-
module$
|
|
3254
|
+
;var module$contents$safevalues$dom$elements$embed_module = module$contents$safevalues$dom$elements$embed_module || {id:"third_party/javascript/safevalues/dom/elements/embed.closure.js"};
|
|
3255
|
+
function module$contents$safevalues$dom$elements$embed_setSrc(embedEl, url) {
|
|
3253
3256
|
embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3254
|
-
}
|
|
3255
|
-
var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
|
|
3257
|
+
}
|
|
3258
|
+
;var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
|
|
3256
3259
|
module$exports$safevalues$dom$elements$form.setAction = function(form, url) {
|
|
3257
3260
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3258
3261
|
sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
|
|
@@ -3294,9 +3297,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3294
3297
|
}
|
|
3295
3298
|
}
|
|
3296
3299
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError = function(type, intent) {
|
|
3297
|
-
var $jscomp$tmp$error$
|
|
3298
|
-
this.message = $jscomp$tmp$error$
|
|
3299
|
-
"stack" in $jscomp$tmp$error$
|
|
3300
|
+
var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
|
|
3301
|
+
this.message = $jscomp$tmp$error$240424914$1.message;
|
|
3302
|
+
"stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
|
|
3300
3303
|
this.type = type;
|
|
3301
3304
|
this.intent = intent;
|
|
3302
3305
|
this.name = "TypeCannotBeUsedWithIntentError";
|
|
@@ -3387,11 +3390,11 @@ function module$contents$safevalues$dom$elements$link_setHrefAndRelWithTrustedRe
|
|
|
3387
3390
|
link.rel = rel;
|
|
3388
3391
|
}
|
|
3389
3392
|
module$exports$safevalues$dom$elements$link.setHrefAndRelWithTrustedResourceUrl = module$contents$safevalues$dom$elements$link_setHrefAndRelWithTrustedResourceUrl;
|
|
3390
|
-
var module$
|
|
3391
|
-
module$
|
|
3393
|
+
var module$contents$safevalues$dom$elements$object_module = module$contents$safevalues$dom$elements$object_module || {id:"third_party/javascript/safevalues/dom/elements/object.closure.js"};
|
|
3394
|
+
function module$contents$safevalues$dom$elements$object_setData(obj, v) {
|
|
3392
3395
|
obj.data = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(v);
|
|
3393
|
-
}
|
|
3394
|
-
var module$exports$safevalues$dom$globals$window = {}, module$contents$safevalues$dom$globals$window_module = module$contents$safevalues$dom$globals$window_module || {id:"third_party/javascript/safevalues/dom/globals/window.closure.js"};
|
|
3396
|
+
}
|
|
3397
|
+
;var module$exports$safevalues$dom$globals$window = {}, module$contents$safevalues$dom$globals$window_module = module$contents$safevalues$dom$globals$window_module || {id:"third_party/javascript/safevalues/dom/globals/window.closure.js"};
|
|
3395
3398
|
module$exports$safevalues$dom$globals$window.open = function(win, url, target, features) {
|
|
3396
3399
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3397
3400
|
return sanitizedUrl !== void 0 ? win.open(sanitizedUrl, target, features) : null;
|
|
@@ -3404,7 +3407,7 @@ module$exports$safevalues$dom$globals$window.getStyleNonce = function(documentOr
|
|
|
3404
3407
|
};
|
|
3405
3408
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, documentOrWindow) {
|
|
3406
3409
|
documentOrWindow = documentOrWindow === void 0 ? document : documentOrWindow;
|
|
3407
|
-
var $jscomp$optchain$
|
|
3410
|
+
var $jscomp$optchain$tmp220578679$0, $jscomp$optchain$tmp220578679$1, el = ($jscomp$optchain$tmp220578679$1 = ($jscomp$optchain$tmp220578679$0 = "document" in documentOrWindow ? documentOrWindow.document : documentOrWindow).querySelector) == null ? void 0 : $jscomp$optchain$tmp220578679$1.call($jscomp$optchain$tmp220578679$0, elementName + "[nonce]");
|
|
3408
3411
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3409
3412
|
}
|
|
3410
3413
|
;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"};
|
|
@@ -3483,8 +3486,8 @@ var module$exports$safevalues$dom$elements$style = {}, module$contents$safevalue
|
|
|
3483
3486
|
module$exports$safevalues$dom$elements$style.setTextContent = function(elem, safeStyleSheet) {
|
|
3484
3487
|
elem.textContent = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet(safeStyleSheet);
|
|
3485
3488
|
};
|
|
3486
|
-
var module$
|
|
3487
|
-
module$
|
|
3489
|
+
var module$contents$safevalues$dom$elements$svg_module = module$contents$safevalues$dom$elements$svg_module || {id:"third_party/javascript/safevalues/dom/elements/svg.closure.js"}, module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES = ["href", "xlink:href"];
|
|
3490
|
+
function module$contents$safevalues$dom$elements$svg_setAttribute(svg, attr, value) {
|
|
3488
3491
|
var attrLower = attr.toLowerCase();
|
|
3489
3492
|
if (module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES.indexOf(attrLower) !== -1 || attrLower.indexOf("on") === 0) {
|
|
3490
3493
|
var msg = "";
|
|
@@ -3492,8 +3495,8 @@ module$exports$safevalues$dom$elements$svg.setAttribute = function(svg, attr, va
|
|
|
3492
3495
|
throw Error(msg);
|
|
3493
3496
|
}
|
|
3494
3497
|
svg.setAttribute(attr, value);
|
|
3495
|
-
}
|
|
3496
|
-
goog.debug = {};
|
|
3498
|
+
}
|
|
3499
|
+
;goog.debug = {};
|
|
3497
3500
|
function module$contents$goog$debug$Error_DebugError(msg, cause) {
|
|
3498
3501
|
if (Error.captureStackTrace) {
|
|
3499
3502
|
Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
|
|
@@ -4638,8 +4641,8 @@ goog.log.info = function(logger, msg, exception) {
|
|
|
4638
4641
|
goog.log.fine = function(logger, msg, exception) {
|
|
4639
4642
|
goog.log.ENABLED && logger && goog.log.log(logger, goog.log.Level.FINE, msg, exception);
|
|
4640
4643
|
};
|
|
4641
|
-
var module$
|
|
4642
|
-
module$
|
|
4644
|
+
var module$contents$safevalues$dom$elements$svg_use_module = module$contents$safevalues$dom$elements$svg_use_module || {id:"third_party/javascript/safevalues/dom/elements/svg_use.closure.js"};
|
|
4645
|
+
function module$contents$safevalues$dom$elements$svg_use_setHref(useEl, url) {
|
|
4643
4646
|
var scheme = module$contents$safevalues$builders$url_builders_extractScheme(url);
|
|
4644
4647
|
if (scheme === "javascript:" || scheme === "data:") {
|
|
4645
4648
|
if (goog.DEBUG) {
|
|
@@ -4649,20 +4652,23 @@ module$exports$safevalues$dom$elements$svg_use.setHref = function(useEl, url) {
|
|
|
4649
4652
|
} else {
|
|
4650
4653
|
useEl.setAttribute("href", url);
|
|
4651
4654
|
}
|
|
4652
|
-
}
|
|
4653
|
-
var module$exports$safevalues$dom$globals$document = {}, module$contents$safevalues$dom$globals$document_module = module$contents$safevalues$dom$globals$document_module || {id:"third_party/javascript/safevalues/dom/globals/document.closure.js"};
|
|
4654
|
-
module$
|
|
4655
|
+
}
|
|
4656
|
+
;var module$exports$safevalues$dom$globals$document = {}, module$contents$safevalues$dom$globals$document_module = module$contents$safevalues$dom$globals$document_module || {id:"third_party/javascript/safevalues/dom/globals/document.closure.js"};
|
|
4657
|
+
function module$contents$safevalues$dom$globals$document_write(doc, text) {
|
|
4655
4658
|
doc.write((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(text));
|
|
4656
|
-
}
|
|
4659
|
+
}
|
|
4660
|
+
module$exports$safevalues$dom$globals$document.write = module$contents$safevalues$dom$globals$document_write;
|
|
4657
4661
|
var module$contents$safevalues$dom$globals$document_ValueType;
|
|
4658
|
-
module$
|
|
4662
|
+
function module$contents$safevalues$dom$globals$document_execCommand(doc, command, value) {
|
|
4659
4663
|
var commandString = String(command), valueArgument = value;
|
|
4660
4664
|
commandString.toLowerCase() === "inserthtml" && (valueArgument = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(value));
|
|
4661
4665
|
return doc.execCommand(commandString, !1, valueArgument);
|
|
4662
|
-
}
|
|
4663
|
-
module$exports$safevalues$dom$globals$document.
|
|
4666
|
+
}
|
|
4667
|
+
module$exports$safevalues$dom$globals$document.execCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4668
|
+
function module$contents$safevalues$dom$globals$document_execCommandInsertHtml(doc, html) {
|
|
4664
4669
|
return doc.execCommand("insertHTML", !1, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4665
|
-
}
|
|
4670
|
+
}
|
|
4671
|
+
module$exports$safevalues$dom$globals$document.execCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4666
4672
|
var module$exports$safevalues$dom$globals$dom_parser = {}, module$contents$safevalues$dom$globals$dom_parser_module = module$contents$safevalues$dom$globals$dom_parser_module || {id:"third_party/javascript/safevalues/dom/globals/dom_parser.closure.js"};
|
|
4667
4673
|
module$exports$safevalues$dom$globals$dom_parser.parseHtml = function(parser, html) {
|
|
4668
4674
|
return module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, html, "text/html");
|
|
@@ -4687,9 +4693,9 @@ function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parse
|
|
|
4687
4693
|
module$exports$safevalues$dom$globals$dom_parser.parseFromString = module$contents$safevalues$dom$globals$dom_parser_parseFromString;
|
|
4688
4694
|
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"};
|
|
4689
4695
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4690
|
-
var $jscomp$tmp$error$
|
|
4691
|
-
this.message = $jscomp$tmp$error$
|
|
4692
|
-
"stack" in $jscomp$tmp$error$
|
|
4696
|
+
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.");
|
|
4697
|
+
this.message = $jscomp$tmp$error$m991617773$25.message;
|
|
4698
|
+
"stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
|
|
4693
4699
|
this.url = url;
|
|
4694
4700
|
this.typeName = typeName;
|
|
4695
4701
|
this.contentType = contentType;
|
|
@@ -4701,48 +4707,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4701
4707
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4702
4708
|
}
|
|
4703
4709
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4704
|
-
var response, $jscomp$optchain$
|
|
4705
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4706
|
-
if ($jscomp$generator$context$
|
|
4707
|
-
return $jscomp$generator$context$
|
|
4708
|
-
}
|
|
4709
|
-
response = $jscomp$generator$context$
|
|
4710
|
-
mimeType = ($jscomp$optchain$
|
|
4711
|
-
return $jscomp$generator$context$
|
|
4710
|
+
var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
|
|
4711
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
|
|
4712
|
+
if ($jscomp$generator$context$m991617773$29.nextAddress == 1) {
|
|
4713
|
+
return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4714
|
+
}
|
|
4715
|
+
response = $jscomp$generator$context$m991617773$29.yieldResult;
|
|
4716
|
+
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();
|
|
4717
|
+
return $jscomp$generator$context$m991617773$29.return({html:function() {
|
|
4712
4718
|
var text;
|
|
4713
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4714
|
-
if ($jscomp$generator$context$
|
|
4719
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
|
|
4720
|
+
if ($jscomp$generator$context$m991617773$26.nextAddress == 1) {
|
|
4715
4721
|
if (mimeType !== "text/html") {
|
|
4716
4722
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4717
4723
|
}
|
|
4718
|
-
return $jscomp$generator$context$
|
|
4724
|
+
return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
|
|
4719
4725
|
}
|
|
4720
|
-
text = $jscomp$generator$context$
|
|
4721
|
-
return $jscomp$generator$context$
|
|
4726
|
+
text = $jscomp$generator$context$m991617773$26.yieldResult;
|
|
4727
|
+
return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4722
4728
|
});
|
|
4723
4729
|
}, script:function() {
|
|
4724
4730
|
var text;
|
|
4725
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4726
|
-
if ($jscomp$generator$context$
|
|
4731
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
|
|
4732
|
+
if ($jscomp$generator$context$m991617773$27.nextAddress == 1) {
|
|
4727
4733
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4728
4734
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4729
4735
|
}
|
|
4730
|
-
return $jscomp$generator$context$
|
|
4736
|
+
return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
|
|
4731
4737
|
}
|
|
4732
|
-
text = $jscomp$generator$context$
|
|
4733
|
-
return $jscomp$generator$context$
|
|
4738
|
+
text = $jscomp$generator$context$m991617773$27.yieldResult;
|
|
4739
|
+
return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4734
4740
|
});
|
|
4735
4741
|
}, styleSheet:function() {
|
|
4736
4742
|
var text;
|
|
4737
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4738
|
-
if ($jscomp$generator$context$
|
|
4743
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
|
|
4744
|
+
if ($jscomp$generator$context$m991617773$28.nextAddress == 1) {
|
|
4739
4745
|
if (mimeType !== "text/css") {
|
|
4740
4746
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4741
4747
|
}
|
|
4742
|
-
return $jscomp$generator$context$
|
|
4748
|
+
return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
|
|
4743
4749
|
}
|
|
4744
|
-
text = $jscomp$generator$context$
|
|
4745
|
-
return $jscomp$generator$context$
|
|
4750
|
+
text = $jscomp$generator$context$m991617773$28.yieldResult;
|
|
4751
|
+
return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4746
4752
|
});
|
|
4747
4753
|
}});
|
|
4748
4754
|
});
|
|
@@ -4750,11 +4756,12 @@ function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init)
|
|
|
4750
4756
|
module$exports$safevalues$dom$globals$fetch.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4751
4757
|
var module$exports$safevalues$dom$globals$global = {}, module$contents$safevalues$dom$globals$global_module = module$contents$safevalues$dom$globals$global_module || {id:"third_party/javascript/safevalues/dom/globals/global.closure.js"};
|
|
4752
4758
|
module$exports$safevalues$dom$globals$global.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4753
|
-
module$
|
|
4759
|
+
function module$contents$safevalues$dom$globals$global_globalEval(win, script) {
|
|
4754
4760
|
var trustedScript = module$contents$safevalues$internals$script_impl_unwrapScript(script), result = win.eval(trustedScript);
|
|
4755
4761
|
result === trustedScript && (result = win.eval(trustedScript.toString()));
|
|
4756
4762
|
return result;
|
|
4757
|
-
}
|
|
4763
|
+
}
|
|
4764
|
+
module$exports$safevalues$dom$globals$global.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4758
4765
|
var module$exports$safevalues$dom$globals$location = {}, module$contents$safevalues$dom$globals$location_module = module$contents$safevalues$dom$globals$location_module || {id:"third_party/javascript/safevalues/dom/globals/location.closure.js"};
|
|
4759
4766
|
module$exports$safevalues$dom$globals$location.setHref = function(loc, url) {
|
|
4760
4767
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
@@ -4775,15 +4782,15 @@ module$exports$safevalues$dom$globals$location.mockableLocation = {setHref:funct
|
|
|
4775
4782
|
}, assign:function(loc, url) {
|
|
4776
4783
|
loc.assign(url);
|
|
4777
4784
|
}};
|
|
4778
|
-
var module$
|
|
4779
|
-
module$
|
|
4785
|
+
var module$contents$safevalues$dom$globals$range_module = module$contents$safevalues$dom$globals$range_module || {id:"third_party/javascript/safevalues/dom/globals/range.closure.js"};
|
|
4786
|
+
function module$contents$safevalues$dom$globals$range_createContextualFragment(range, html) {
|
|
4780
4787
|
return range.createContextualFragment((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4781
|
-
}
|
|
4782
|
-
var module$
|
|
4783
|
-
module$
|
|
4788
|
+
}
|
|
4789
|
+
;var module$contents$safevalues$dom$globals$service_worker_container_module = module$contents$safevalues$dom$globals$service_worker_container_module || {id:"third_party/javascript/safevalues/dom/globals/service_worker_container.closure.js"};
|
|
4790
|
+
function module$contents$safevalues$dom$globals$service_worker_container_register(container, scriptURL, options) {
|
|
4784
4791
|
return container.register(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(scriptURL), options);
|
|
4785
|
-
}
|
|
4786
|
-
var module$exports$safevalues$dom$globals$url = {}, module$contents$safevalues$dom$globals$url_module = module$contents$safevalues$dom$globals$url_module || {id:"third_party/javascript/safevalues/dom/globals/url.closure.js"};
|
|
4792
|
+
}
|
|
4793
|
+
;var module$exports$safevalues$dom$globals$url = {}, module$contents$safevalues$dom$globals$url_module = module$contents$safevalues$dom$globals$url_module || {id:"third_party/javascript/safevalues/dom/globals/url.closure.js"};
|
|
4787
4794
|
module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource = function(source) {
|
|
4788
4795
|
return module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource(source).toString();
|
|
4789
4796
|
};
|
|
@@ -4803,33 +4810,23 @@ module$exports$safevalues$dom$globals$worker.importScripts = function(scope) {
|
|
|
4803
4810
|
};
|
|
4804
4811
|
var module$exports$safevalues$dom$index = {}, module$contents$safevalues$dom$index_module = module$contents$safevalues$dom$index_module || {id:"third_party/javascript/safevalues/dom/index.closure.js"};
|
|
4805
4812
|
module$exports$safevalues$dom$index.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4806
|
-
module$exports$safevalues$dom$index.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4807
|
-
module$exports$safevalues$dom$index.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4808
4813
|
module$exports$safevalues$dom$index.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4809
4814
|
module$exports$safevalues$dom$index.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4810
|
-
module$exports$safevalues$dom$index.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4811
4815
|
module$exports$safevalues$dom$index.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4812
4816
|
module$exports$safevalues$dom$index.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4813
4817
|
module$exports$safevalues$dom$index.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
4814
4818
|
module$exports$safevalues$dom$index.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
4815
|
-
module$exports$safevalues$dom$index.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4816
4819
|
module$exports$safevalues$dom$index.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4817
4820
|
module$exports$safevalues$dom$index.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4818
|
-
module$exports$safevalues$dom$index.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4819
|
-
module$exports$safevalues$dom$index.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4820
|
-
module$exports$safevalues$dom$index.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4821
4821
|
module$exports$safevalues$dom$index.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4822
|
-
module$exports$safevalues$dom$index.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4823
4822
|
module$exports$safevalues$dom$index.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4824
|
-
module$exports$safevalues$dom$index.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4825
|
-
module$exports$safevalues$dom$index.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4826
4823
|
module$exports$safevalues$dom$index.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4827
4824
|
module$exports$safevalues$dom$index.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4828
4825
|
module$exports$safevalues$dom$index.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4829
4826
|
module$exports$safevalues$dom$index.setAnchorHref = module$exports$safevalues$dom$elements$anchor.setHref;
|
|
4830
4827
|
module$exports$safevalues$dom$index.setAnchorHrefLite = module$exports$safevalues$dom$elements$anchor.setHrefLite;
|
|
4831
|
-
module$exports$safevalues$dom$index.setAreaHref = module$
|
|
4832
|
-
module$exports$safevalues$dom$index.setBaseHref = module$
|
|
4828
|
+
module$exports$safevalues$dom$index.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4829
|
+
module$exports$safevalues$dom$index.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4833
4830
|
module$exports$safevalues$dom$index.setButtonFormaction = module$exports$safevalues$dom$elements$button.setFormaction;
|
|
4834
4831
|
module$exports$safevalues$dom$index.buildPrefixedAttributeSetter = module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter;
|
|
4835
4832
|
module$exports$safevalues$dom$index.elementInsertAdjacentHtml = module$exports$safevalues$dom$elements$element.insertAdjacentHtml;
|
|
@@ -4837,8 +4834,9 @@ module$exports$safevalues$dom$index.setElementCssText = module$exports$safevalue
|
|
|
4837
4834
|
module$exports$safevalues$dom$index.setElementInnerHtml = module$exports$safevalues$dom$elements$element.setInnerHtml;
|
|
4838
4835
|
module$exports$safevalues$dom$index.setElementOuterHtml = module$exports$safevalues$dom$elements$element.setOuterHtml;
|
|
4839
4836
|
module$exports$safevalues$dom$index.setElementPrefixedAttribute = module$exports$safevalues$dom$elements$element.setPrefixedAttribute;
|
|
4840
|
-
module$exports$safevalues$dom$index.setEmbedSrc = module$
|
|
4837
|
+
module$exports$safevalues$dom$index.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4841
4838
|
module$exports$safevalues$dom$index.setFormAction = module$exports$safevalues$dom$elements$form.setAction;
|
|
4839
|
+
module$exports$safevalues$dom$index.setFormActionLite = module$exports$safevalues$dom$elements$form.setActionLite;
|
|
4842
4840
|
module$exports$safevalues$dom$index.IframeIntent = module$exports$safevalues$dom$elements$iframe.Intent;
|
|
4843
4841
|
module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError;
|
|
4844
4842
|
module$exports$safevalues$dom$index.setIframeSrc = module$exports$safevalues$dom$elements$iframe.setSrc;
|
|
@@ -4848,25 +4846,25 @@ module$exports$safevalues$dom$index.setIframeSrcdocWithIntent = module$exports$s
|
|
|
4848
4846
|
module$exports$safevalues$dom$index.setInputFormaction = module$exports$safevalues$dom$elements$input.setFormaction;
|
|
4849
4847
|
module$exports$safevalues$dom$index.setLinkHrefAndRel = module$exports$safevalues$dom$elements$link.setHrefAndRel;
|
|
4850
4848
|
module$exports$safevalues$dom$index.setLinkWithResourceUrlHrefAndRel = module$exports$safevalues$dom$elements$link.setHrefAndRelWithTrustedResourceUrl;
|
|
4851
|
-
module$exports$safevalues$dom$index.setObjectData = module$
|
|
4849
|
+
module$exports$safevalues$dom$index.setObjectData = module$contents$safevalues$dom$elements$object_setData;
|
|
4852
4850
|
module$exports$safevalues$dom$index.setScriptSrc = module$exports$safevalues$dom$elements$script.setSrc;
|
|
4853
4851
|
module$exports$safevalues$dom$index.setScriptTextContent = module$exports$safevalues$dom$elements$script.setTextContent;
|
|
4854
4852
|
module$exports$safevalues$dom$index.setStyleTextContent = module$exports$safevalues$dom$elements$style.setTextContent;
|
|
4855
|
-
module$exports$safevalues$dom$index.setSvgAttribute = module$
|
|
4856
|
-
module$exports$safevalues$dom$index.setSvgUseHref = module$
|
|
4857
|
-
module$exports$safevalues$dom$index.documentExecCommand = module$
|
|
4858
|
-
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$
|
|
4859
|
-
module$exports$safevalues$dom$index.documentWrite = module$
|
|
4853
|
+
module$exports$safevalues$dom$index.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4854
|
+
module$exports$safevalues$dom$index.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4855
|
+
module$exports$safevalues$dom$index.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4856
|
+
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4857
|
+
module$exports$safevalues$dom$index.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4860
4858
|
module$exports$safevalues$dom$index.domParserParseFromString = module$exports$safevalues$dom$globals$dom_parser.parseFromString;
|
|
4861
4859
|
module$exports$safevalues$dom$index.domParserParseHtml = module$exports$safevalues$dom$globals$dom_parser.parseHtml;
|
|
4862
4860
|
module$exports$safevalues$dom$index.domParserParseXml = module$exports$safevalues$dom$globals$dom_parser.parseXml;
|
|
4863
|
-
module$exports$safevalues$dom$index.fetchResourceUrl = module$
|
|
4864
|
-
module$exports$safevalues$dom$index.globalEval = module$
|
|
4861
|
+
module$exports$safevalues$dom$index.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4862
|
+
module$exports$safevalues$dom$index.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4865
4863
|
module$exports$safevalues$dom$index.locationAssign = module$exports$safevalues$dom$globals$location.assign;
|
|
4866
4864
|
module$exports$safevalues$dom$index.locationReplace = module$exports$safevalues$dom$globals$location.replace;
|
|
4867
4865
|
module$exports$safevalues$dom$index.setLocationHref = module$exports$safevalues$dom$globals$location.setHref;
|
|
4868
|
-
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$
|
|
4869
|
-
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$
|
|
4866
|
+
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4867
|
+
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$contents$safevalues$dom$globals$service_worker_container_register;
|
|
4870
4868
|
module$exports$safevalues$dom$index.objectUrlFromSafeSource = module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource;
|
|
4871
4869
|
module$exports$safevalues$dom$index.getScriptNonce = module$exports$safevalues$dom$globals$window.getScriptNonce;
|
|
4872
4870
|
module$exports$safevalues$dom$index.getStyleNonce = module$exports$safevalues$dom$globals$window.getStyleNonce;
|
|
@@ -4876,33 +4874,23 @@ module$exports$safevalues$dom$index.createSharedWorker = module$exports$safevalu
|
|
|
4876
4874
|
module$exports$safevalues$dom$index.workerGlobalScopeImportScripts = module$exports$safevalues$dom$globals$worker.importScripts;
|
|
4877
4875
|
var safevalues = {dom:{}};
|
|
4878
4876
|
safevalues.dom.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4879
|
-
safevalues.dom.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4880
|
-
safevalues.dom.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4881
4877
|
safevalues.dom.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4882
4878
|
safevalues.dom.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4883
|
-
safevalues.dom.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4884
4879
|
safevalues.dom.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4885
4880
|
safevalues.dom.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4886
4881
|
safevalues.dom.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
4887
4882
|
safevalues.dom.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
4888
|
-
safevalues.dom.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4889
4883
|
safevalues.dom.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4890
4884
|
safevalues.dom.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4891
|
-
safevalues.dom.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4892
|
-
safevalues.dom.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4893
|
-
safevalues.dom.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4894
4885
|
safevalues.dom.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4895
|
-
safevalues.dom.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4896
4886
|
safevalues.dom.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4897
|
-
safevalues.dom.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4898
|
-
safevalues.dom.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4899
4887
|
safevalues.dom.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4900
4888
|
safevalues.dom.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4901
4889
|
safevalues.dom.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4902
4890
|
safevalues.dom.setAnchorHref = module$exports$safevalues$dom$index.setAnchorHref;
|
|
4903
4891
|
safevalues.dom.setAnchorHrefLite = module$exports$safevalues$dom$index.setAnchorHrefLite;
|
|
4904
|
-
safevalues.dom.setAreaHref = module$
|
|
4905
|
-
safevalues.dom.setBaseHref = module$
|
|
4892
|
+
safevalues.dom.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4893
|
+
safevalues.dom.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4906
4894
|
safevalues.dom.setButtonFormaction = module$exports$safevalues$dom$index.setButtonFormaction;
|
|
4907
4895
|
safevalues.dom.buildPrefixedAttributeSetter = module$exports$safevalues$dom$index.buildPrefixedAttributeSetter;
|
|
4908
4896
|
safevalues.dom.elementInsertAdjacentHtml = module$exports$safevalues$dom$index.elementInsertAdjacentHtml;
|
|
@@ -4910,8 +4898,9 @@ safevalues.dom.setElementCssText = module$exports$safevalues$dom$index.setElemen
|
|
|
4910
4898
|
safevalues.dom.setElementInnerHtml = module$exports$safevalues$dom$index.setElementInnerHtml;
|
|
4911
4899
|
safevalues.dom.setElementOuterHtml = module$exports$safevalues$dom$index.setElementOuterHtml;
|
|
4912
4900
|
safevalues.dom.setElementPrefixedAttribute = module$exports$safevalues$dom$index.setElementPrefixedAttribute;
|
|
4913
|
-
safevalues.dom.setEmbedSrc = module$
|
|
4901
|
+
safevalues.dom.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4914
4902
|
safevalues.dom.setFormAction = module$exports$safevalues$dom$index.setFormAction;
|
|
4903
|
+
safevalues.dom.setFormActionLite = module$exports$safevalues$dom$index.setFormActionLite;
|
|
4915
4904
|
safevalues.dom.IframeIntent = module$exports$safevalues$dom$index.IframeIntent;
|
|
4916
4905
|
safevalues.dom.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError;
|
|
4917
4906
|
safevalues.dom.setIframeSrc = module$exports$safevalues$dom$index.setIframeSrc;
|
|
@@ -4921,25 +4910,25 @@ safevalues.dom.setIframeSrcdocWithIntent = module$exports$safevalues$dom$index.s
|
|
|
4921
4910
|
safevalues.dom.setInputFormaction = module$exports$safevalues$dom$index.setInputFormaction;
|
|
4922
4911
|
safevalues.dom.setLinkHrefAndRel = module$exports$safevalues$dom$index.setLinkHrefAndRel;
|
|
4923
4912
|
safevalues.dom.setLinkWithResourceUrlHrefAndRel = module$exports$safevalues$dom$index.setLinkWithResourceUrlHrefAndRel;
|
|
4924
|
-
safevalues.dom.setObjectData = module$
|
|
4913
|
+
safevalues.dom.setObjectData = module$contents$safevalues$dom$elements$object_setData;
|
|
4925
4914
|
safevalues.dom.setScriptSrc = module$exports$safevalues$dom$index.setScriptSrc;
|
|
4926
4915
|
safevalues.dom.setScriptTextContent = module$exports$safevalues$dom$index.setScriptTextContent;
|
|
4927
4916
|
safevalues.dom.setStyleTextContent = module$exports$safevalues$dom$index.setStyleTextContent;
|
|
4928
|
-
safevalues.dom.setSvgAttribute = module$
|
|
4929
|
-
safevalues.dom.setSvgUseHref = module$
|
|
4930
|
-
safevalues.dom.documentExecCommand = module$
|
|
4931
|
-
safevalues.dom.documentExecCommandInsertHtml = module$
|
|
4932
|
-
safevalues.dom.documentWrite = module$
|
|
4917
|
+
safevalues.dom.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4918
|
+
safevalues.dom.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4919
|
+
safevalues.dom.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4920
|
+
safevalues.dom.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4921
|
+
safevalues.dom.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4933
4922
|
safevalues.dom.domParserParseFromString = module$exports$safevalues$dom$index.domParserParseFromString;
|
|
4934
4923
|
safevalues.dom.domParserParseHtml = module$exports$safevalues$dom$index.domParserParseHtml;
|
|
4935
4924
|
safevalues.dom.domParserParseXml = module$exports$safevalues$dom$index.domParserParseXml;
|
|
4936
|
-
safevalues.dom.fetchResourceUrl = module$
|
|
4937
|
-
safevalues.dom.globalEval = module$
|
|
4925
|
+
safevalues.dom.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4926
|
+
safevalues.dom.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4938
4927
|
safevalues.dom.locationAssign = module$exports$safevalues$dom$index.locationAssign;
|
|
4939
4928
|
safevalues.dom.locationReplace = module$exports$safevalues$dom$index.locationReplace;
|
|
4940
4929
|
safevalues.dom.setLocationHref = module$exports$safevalues$dom$index.setLocationHref;
|
|
4941
|
-
safevalues.dom.rangeCreateContextualFragment = module$
|
|
4942
|
-
safevalues.dom.serviceWorkerContainerRegister = module$
|
|
4930
|
+
safevalues.dom.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4931
|
+
safevalues.dom.serviceWorkerContainerRegister = module$contents$safevalues$dom$globals$service_worker_container_register;
|
|
4943
4932
|
safevalues.dom.objectUrlFromSafeSource = module$exports$safevalues$dom$index.objectUrlFromSafeSource;
|
|
4944
4933
|
safevalues.dom.getScriptNonce = module$exports$safevalues$dom$index.getScriptNonce;
|
|
4945
4934
|
safevalues.dom.getStyleNonce = module$exports$safevalues$dom$index.getStyleNonce;
|
|
@@ -4947,6 +4936,19 @@ safevalues.dom.windowOpen = module$exports$safevalues$dom$index.windowOpen;
|
|
|
4947
4936
|
safevalues.dom.createWorker = module$exports$safevalues$dom$index.createWorker;
|
|
4948
4937
|
safevalues.dom.createSharedWorker = module$exports$safevalues$dom$index.createSharedWorker;
|
|
4949
4938
|
safevalues.dom.workerGlobalScopeImportScripts = module$exports$safevalues$dom$index.workerGlobalScopeImportScripts;
|
|
4939
|
+
var module$exports$safevalues$internals$style_impl = {}, module$contents$safevalues$internals$style_impl_module = module$contents$safevalues$internals$style_impl_module || {id:"third_party/javascript/safevalues/internals/style_impl.closure.js"};
|
|
4940
|
+
function module$contents$safevalues$internals$style_impl_createStyleInternal(value) {
|
|
4941
|
+
return value;
|
|
4942
|
+
}
|
|
4943
|
+
module$exports$safevalues$internals$style_impl.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
|
|
4944
|
+
function module$contents$safevalues$internals$style_impl_isStyle(value) {
|
|
4945
|
+
return typeof value === "string";
|
|
4946
|
+
}
|
|
4947
|
+
module$exports$safevalues$internals$style_impl.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
|
|
4948
|
+
function module$contents$safevalues$internals$style_impl_unwrapStyle(value) {
|
|
4949
|
+
return value;
|
|
4950
|
+
}
|
|
4951
|
+
module$exports$safevalues$internals$style_impl.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
|
|
4950
4952
|
var module$exports$safevalues$restricted$reviewed = {}, module$contents$safevalues$restricted$reviewed_module = module$contents$safevalues$restricted$reviewed_module || {id:"third_party/javascript/safevalues/restricted/reviewed.closure.js"};
|
|
4951
4953
|
function module$contents$safevalues$restricted$reviewed_assertValidJustification(justification) {
|
|
4952
4954
|
if (typeof justification !== "string" || justification.trim() === "") {
|
|
@@ -6269,8 +6271,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6269
6271
|
}
|
|
6270
6272
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6271
6273
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6272
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6273
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6274
|
+
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()) {
|
|
6275
|
+
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;
|
|
6274
6276
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6275
6277
|
}
|
|
6276
6278
|
return urlQueryParams;
|
|
@@ -6281,8 +6283,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
|
|
|
6281
6283
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6282
6284
|
if (params.headers) {
|
|
6283
6285
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6284
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6285
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6286
|
+
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()) {
|
|
6287
|
+
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;
|
|
6286
6288
|
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);
|
|
6287
6289
|
}
|
|
6288
6290
|
}
|
|
@@ -6322,9 +6324,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6322
6324
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6323
6325
|
};
|
|
6324
6326
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6325
|
-
var $jscomp$this$
|
|
6327
|
+
var $jscomp$this$1237977804$4 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6326
6328
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6327
|
-
return $jscomp$this$
|
|
6329
|
+
return $jscomp$this$1237977804$4.requestService.send(params, responseCtor);
|
|
6328
6330
|
}));
|
|
6329
6331
|
};
|
|
6330
6332
|
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"};
|
|
@@ -6494,8 +6496,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_
|
|
|
6494
6496
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
|
|
6495
6497
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6496
6498
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
|
|
6497
|
-
module$exports$closure$flags$flags$2etoggles.
|
|
6498
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable = !1;
|
|
6499
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__disable = !1;
|
|
6499
6500
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6500
6501
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable = !1;
|
|
6501
6502
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_ignore_implicit_extension_deps__disable = !1;
|
|
@@ -6508,9 +6509,8 @@ var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1,
|
|
|
6508
6509
|
goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable : goog.readFlagInternalDoNotUseOrElse(610401301, !1);
|
|
6509
6510
|
goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
|
|
6510
6511
|
goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = 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_stop_using_repeated_field_sets_from_gencode__disable : goog.readFlagInternalDoNotUseOrElse(188588736, !0);
|
|
6511
|
-
goog.flags.
|
|
6512
|
+
goog.flags.CLIENT_ONLY_WIZ_DISTINCT_CONTEXTS_FOR_CONTROL_FLOW_BRANCHES = 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__client_only_wiz_distinct_contexts_for_control_flow_branches__disable : goog.readFlagInternalDoNotUseOrElse(691955189,
|
|
6512
6513
|
!0);
|
|
6513
|
-
goog.flags.CLIENT_ONLY_WIZ_DISTINCT_CONTEXTS_FOR_CONTROL_FLOW_BRANCHES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable : goog.readFlagInternalDoNotUseOrElse(691955189, !1);
|
|
6514
6514
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6515
6515
|
goog.flags.JSPB_READONLY_REPEATED_FIELDS = 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_readonly_repeated_fields__disable) : goog.readFlagInternalDoNotUseOrElse(653718497, module$contents$goog$flags_STAGING);
|
|
6516
6516
|
goog.flags.JSPB_IGNORE_IMPLICIT_EXTENSION_DEPS = 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_ignore_implicit_extension_deps__disable) : goog.readFlagInternalDoNotUseOrElse(660014094, module$contents$goog$flags_STAGING);
|
|
@@ -16057,8 +16057,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16057
16057
|
this.replacements = new Map();
|
|
16058
16058
|
};
|
|
16059
16059
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16060
|
-
var $jscomp$this$
|
|
16061
|
-
return $jscomp$this$
|
|
16060
|
+
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) {
|
|
16061
|
+
return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
|
|
16062
16062
|
});
|
|
16063
16063
|
if (openedTags.length !== 0) {
|
|
16064
16064
|
if (goog.DEBUG) {
|
|
@@ -16276,8 +16276,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16276
16276
|
if (Array.isArray(token)) {
|
|
16277
16277
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16278
16278
|
} else {
|
|
16279
|
-
var $jscomp$optchain$
|
|
16280
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16279
|
+
var $jscomp$optchain$tmpm583190311$0 = void 0;
|
|
16280
|
+
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) {
|
|
16281
16281
|
tokens.push(token);
|
|
16282
16282
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16283
16283
|
return tokens;
|
|
@@ -16523,9 +16523,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16523
16523
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16524
16524
|
};
|
|
16525
16525
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16526
|
-
var $jscomp$this$
|
|
16526
|
+
var $jscomp$this$m583190311$26 = this;
|
|
16527
16527
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16528
|
-
return $jscomp$this$
|
|
16528
|
+
return $jscomp$this$m583190311$26.isWhitespace(c);
|
|
16529
16529
|
});
|
|
16530
16530
|
};
|
|
16531
16531
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16632,8 +16632,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16632
16632
|
return null;
|
|
16633
16633
|
}
|
|
16634
16634
|
if (token.lowercaseName === "url") {
|
|
16635
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16636
|
-
if ((($jscomp$optchain$
|
|
16635
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
|
|
16636
|
+
if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16637
16637
|
return null;
|
|
16638
16638
|
}
|
|
16639
16639
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(nextToken.value);
|
|
@@ -16656,8 +16656,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16656
16656
|
if (!this.allowKeyframes) {
|
|
16657
16657
|
return null;
|
|
16658
16658
|
}
|
|
16659
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16660
|
-
var rule = $jscomp$key$
|
|
16659
|
+
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()) {
|
|
16660
|
+
var rule = $jscomp$key$m1877845113$1$rule.value;
|
|
16661
16661
|
if (rule instanceof CSSKeyframeRule) {
|
|
16662
16662
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16663
16663
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16669,8 +16669,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16669
16669
|
if (!this.propertyAllowlist.has(name)) {
|
|
16670
16670
|
return !1;
|
|
16671
16671
|
}
|
|
16672
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16673
|
-
var discarder = $jscomp$key$
|
|
16672
|
+
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()) {
|
|
16673
|
+
var discarder = $jscomp$key$m1877845113$2$discarder.value;
|
|
16674
16674
|
if (discarder(name)) {
|
|
16675
16675
|
return !1;
|
|
16676
16676
|
}
|
|
@@ -16685,8 +16685,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16685
16685
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16686
16686
|
};
|
|
16687
16687
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16688
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16689
|
-
var name = $jscomp$key$
|
|
16688
|
+
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()) {
|
|
16689
|
+
var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16690
16690
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16691
16691
|
}
|
|
16692
16692
|
return sanitizedProperties;
|
|
@@ -16700,8 +16700,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16700
16700
|
return selector + " { " + sanitizedProperties + " }";
|
|
16701
16701
|
};
|
|
16702
16702
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16703
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16704
|
-
var rule = $jscomp$key$
|
|
16703
|
+
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()) {
|
|
16704
|
+
var rule = $jscomp$key$m1877845113$4$rule.value;
|
|
16705
16705
|
if (rule instanceof CSSStyleRule) {
|
|
16706
16706
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
16707
16707
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -16735,7 +16735,7 @@ function module$contents$safevalues$builders$html_sanitizer$inert_fragment_creat
|
|
|
16735
16735
|
var range = inertDocument.createRange();
|
|
16736
16736
|
range.selectNode(inertDocument.body);
|
|
16737
16737
|
var temporarySafeHtml = (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(dirtyHtml);
|
|
16738
|
-
return
|
|
16738
|
+
return module$contents$safevalues$dom$globals$range_createContextualFragment(range, temporarySafeHtml);
|
|
16739
16739
|
}
|
|
16740
16740
|
;var module$exports$safevalues$builders$html_sanitizer$no_clobber = {}, module$contents$safevalues$builders$html_sanitizer$no_clobber_module = module$contents$safevalues$builders$html_sanitizer$no_clobber_module || {id:"third_party/javascript/safevalues/builders/html_sanitizer/no_clobber.closure.js"};
|
|
16741
16741
|
function module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(node) {
|
|
@@ -16862,8 +16862,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16862
16862
|
return fragment;
|
|
16863
16863
|
};
|
|
16864
16864
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
16865
|
-
for (var $jscomp$this$
|
|
16866
|
-
return $jscomp$this$
|
|
16865
|
+
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) {
|
|
16866
|
+
return $jscomp$this$m1803429925$13.nodeFilter(n);
|
|
16867
16867
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
16868
16868
|
var sanitizedNode = void 0;
|
|
16869
16869
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -16898,8 +16898,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16898
16898
|
return this.createTextNode(textNode.data);
|
|
16899
16899
|
};
|
|
16900
16900
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
16901
|
-
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$
|
|
16902
|
-
var $jscomp$destructuring$var31 = $jscomp$key$
|
|
16901
|
+
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()) {
|
|
16902
|
+
var $jscomp$destructuring$var31 = $jscomp$key$m1803429925$34$.value, name = $jscomp$destructuring$var31.name, value = $jscomp$destructuring$var31.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
|
|
16903
16903
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
16904
16904
|
switch(policy.policyAction) {
|
|
16905
16905
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -16931,9 +16931,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16931
16931
|
break;
|
|
16932
16932
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
16933
16933
|
if (this.resourceUrlPolicy) {
|
|
16934
|
-
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$
|
|
16934
|
+
for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$m1803429925$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1803429925$33$part.done; $jscomp$key$m1803429925$33$part =
|
|
16935
16935
|
$jscomp$iter$35.next()) {
|
|
16936
|
-
var part = $jscomp$key$
|
|
16936
|
+
var part = $jscomp$key$m1803429925$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
|
|
16937
16937
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
16938
16938
|
}
|
|
16939
16939
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -16977,8 +16977,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16977
16977
|
if (!conditions) {
|
|
16978
16978
|
return !0;
|
|
16979
16979
|
}
|
|
16980
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
16981
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16980
|
+
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()) {
|
|
16981
|
+
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var33.next().value, expectedValues = $jscomp$destructuring$var33.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;
|
|
16982
16982
|
if (value && !expectedValues.has(value)) {
|
|
16983
16983
|
return !1;
|
|
16984
16984
|
}
|
|
@@ -16993,8 +16993,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
16993
16993
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
16994
16994
|
};
|
|
16995
16995
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
16996
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
16997
|
-
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16996
|
+
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()) {
|
|
16997
|
+
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$36$part.value.trim().split(/\s+/, 2)), url__tsickle_destructured_3 = $jscomp$destructuring$var34.next().value, descriptor__tsickle_destructured_4 = $jscomp$destructuring$var34.next().value;
|
|
16998
16998
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
16999
16999
|
}
|
|
17000
17000
|
return {parts:parts};
|
|
@@ -17051,8 +17051,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17051
17051
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17052
17052
|
};
|
|
17053
17053
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17054
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17055
|
-
var element = $jscomp$key$
|
|
17054
|
+
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$m1412690177$21$element = $jscomp$iter$39.next(); !$jscomp$key$m1412690177$21$element.done; $jscomp$key$m1412690177$21$element = $jscomp$iter$39.next()) {
|
|
17055
|
+
var element = $jscomp$key$m1412690177$21$element.value;
|
|
17056
17056
|
element = element.toUpperCase();
|
|
17057
17057
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17058
17058
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17070,8 +17070,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17070
17070
|
throw Error("Element: " + element + " is not a custom element");
|
|
17071
17071
|
}
|
|
17072
17072
|
if (allowedAttributes) {
|
|
17073
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17074
|
-
elementPolicy.set($jscomp$key$
|
|
17073
|
+
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$m1412690177$22$attribute = $jscomp$iter$40.next(); !$jscomp$key$m1412690177$22$attribute.done; $jscomp$key$m1412690177$22$attribute = $jscomp$iter$40.next()) {
|
|
17074
|
+
elementPolicy.set($jscomp$key$m1412690177$22$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17075
17075
|
}
|
|
17076
17076
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17077
17077
|
} else {
|
|
@@ -17081,15 +17081,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17081
17081
|
return this;
|
|
17082
17082
|
};
|
|
17083
17083
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17084
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17085
|
-
var attribute = $jscomp$key$
|
|
17084
|
+
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$m1412690177$23$attribute = $jscomp$iter$41.next(); !$jscomp$key$m1412690177$23$attribute.done; $jscomp$key$m1412690177$23$attribute = $jscomp$iter$41.next()) {
|
|
17085
|
+
var attribute = $jscomp$key$m1412690177$23$attribute.value;
|
|
17086
17086
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17087
17087
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17088
17088
|
}
|
|
17089
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17090
|
-
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17089
|
+
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$m1412690177$25$ = $jscomp$iter$43.next(); !$jscomp$key$m1412690177$25$.done; $jscomp$key$m1412690177$25$ = $jscomp$iter$43.next()) {
|
|
17090
|
+
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$25$.value), elementName__tsickle_destructured_1 = $jscomp$destructuring$var37.next().value, originalElementPolicy__tsickle_destructured_2 = $jscomp$destructuring$var37.next().value, elementName = elementName__tsickle_destructured_1, newElementPolicy = new Map(), $jscomp$iter$42 = (0,$jscomp.makeIterator)(originalElementPolicy__tsickle_destructured_2.entries()), $jscomp$key$m1412690177$24$ = $jscomp$iter$42.next(); !$jscomp$key$m1412690177$24$.done; $jscomp$key$m1412690177$24$ =
|
|
17091
17091
|
$jscomp$iter$42.next()) {
|
|
17092
|
-
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17092
|
+
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$24$.value), attribute__tsickle_destructured_3 = $jscomp$destructuring$var39.next().value, attributePolicy__tsickle_destructured_4 = $jscomp$destructuring$var39.next().value, attribute$jscomp$0 = attribute__tsickle_destructured_3, attributePolicy = attributePolicy__tsickle_destructured_4;
|
|
17093
17093
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17094
17094
|
}
|
|
17095
17095
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17098,8 +17098,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17098
17098
|
return this;
|
|
17099
17099
|
};
|
|
17100
17100
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.allowDataAttributes = function(attributes) {
|
|
17101
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17102
|
-
var attribute = $jscomp$key$
|
|
17101
|
+
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$m1412690177$26$attribute = $jscomp$iter$44.next(); !$jscomp$key$m1412690177$26$attribute.done; $jscomp$key$m1412690177$26$attribute = $jscomp$iter$44.next()) {
|
|
17102
|
+
var attribute = $jscomp$key$m1412690177$26$attribute.value;
|
|
17103
17103
|
if (attribute.indexOf("data-") !== 0) {
|
|
17104
17104
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17105
17105
|
}
|
|
@@ -17161,7 +17161,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17161
17161
|
return this;
|
|
17162
17162
|
};
|
|
17163
17163
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17164
|
-
var $jscomp$this$
|
|
17164
|
+
var $jscomp$this$m1412690177$17 = this;
|
|
17165
17165
|
this.extendSanitizerTableForCss();
|
|
17166
17166
|
var propertyDiscarders = [];
|
|
17167
17167
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17171,9 +17171,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17171
17171
|
return /^transition(-|$)/.test(property);
|
|
17172
17172
|
});
|
|
17173
17173
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
17174
|
-
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$
|
|
17174
|
+
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$17.resourceUrlPolicy, $jscomp$this$m1412690177$17.animationsAllowed, propertyDiscarders);
|
|
17175
17175
|
}, function(cssText) {
|
|
17176
|
-
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$
|
|
17176
|
+
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$17.resourceUrlPolicy, propertyDiscarders);
|
|
17177
17177
|
}, this.resourceUrlPolicy);
|
|
17178
17178
|
};
|
|
17179
17179
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17351,7 +17351,7 @@ function module$contents$safevalues$builders$script_builders_safeScriptWithArgs(
|
|
|
17351
17351
|
};
|
|
17352
17352
|
}
|
|
17353
17353
|
module$exports$safevalues$builders$script_builders.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17354
|
-
var module$
|
|
17354
|
+
var module$contents$safevalues$builders$style_builders_module = module$contents$safevalues$builders$style_builders_module || {id:"third_party/javascript/safevalues/builders/style_builders.closure.js"};
|
|
17355
17355
|
function module$contents$safevalues$builders$style_builders_safeStyle(templateObj) {
|
|
17356
17356
|
var rest = $jscomp.getRestArguments.apply(1, arguments);
|
|
17357
17357
|
goog.DEBUG && module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, rest.length);
|
|
@@ -17374,16 +17374,7 @@ function module$contents$safevalues$builders$style_builders_safeStyle(templateOb
|
|
|
17374
17374
|
}
|
|
17375
17375
|
return module$contents$safevalues$internals$style_impl_createStyleInternal(stringifiedStyle);
|
|
17376
17376
|
}
|
|
17377
|
-
module$exports$safevalues$
|
|
17378
|
-
function module$contents$safevalues$builders$style_builders_styleForMigration(style) {
|
|
17379
|
-
return module$contents$safevalues$internals$style_impl_createStyleInternal(style);
|
|
17380
|
-
}
|
|
17381
|
-
module$exports$safevalues$builders$style_builders.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17382
|
-
function module$contents$safevalues$builders$style_builders_concatStyles(styles) {
|
|
17383
|
-
return module$contents$safevalues$internals$style_impl_createStyleInternal(styles.map(module$contents$safevalues$internals$style_impl_unwrapStyle).join(""));
|
|
17384
|
-
}
|
|
17385
|
-
module$exports$safevalues$builders$style_builders.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17386
|
-
var module$exports$safevalues$reporting$reporting = {}, module$contents$safevalues$reporting$reporting_module = module$contents$safevalues$reporting$reporting_module || {id:"third_party/javascript/safevalues/reporting/reporting.closure.js"}, module$contents$safevalues$reporting$reporting_REPORTING_ID_PREFIX_TO_SAMPLING_RATE = {0:1, 1:1}, module$contents$safevalues$reporting$reporting_REPORTING_ID_PREFIX_TO_HEARTBEAT_RATE =
|
|
17377
|
+
;var module$exports$safevalues$reporting$reporting = {}, module$contents$safevalues$reporting$reporting_module = module$contents$safevalues$reporting$reporting_module || {id:"third_party/javascript/safevalues/reporting/reporting.closure.js"}, module$contents$safevalues$reporting$reporting_REPORTING_ID_PREFIX_TO_SAMPLING_RATE = {0:1, 1:1}, module$contents$safevalues$reporting$reporting_REPORTING_ID_PREFIX_TO_HEARTBEAT_RATE =
|
|
17387
17378
|
{0:.1, 1:.1};
|
|
17388
17379
|
module$exports$safevalues$reporting$reporting.ReportingOptions = function() {
|
|
17389
17380
|
};
|
|
@@ -17423,12 +17414,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17423
17414
|
}
|
|
17424
17415
|
try {
|
|
17425
17416
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17426
|
-
} catch ($jscomp$unused$catch$
|
|
17417
|
+
} catch ($jscomp$unused$catch$442189172$0) {
|
|
17427
17418
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17428
17419
|
}
|
|
17429
17420
|
try {
|
|
17430
17421
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17431
|
-
} catch ($jscomp$unused$catch$
|
|
17422
|
+
} catch ($jscomp$unused$catch$442189172$1) {
|
|
17432
17423
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17433
17424
|
}
|
|
17434
17425
|
return !1;
|
|
@@ -17483,9 +17474,7 @@ module$exports$safevalues$index.concatScripts = module$contents$safevalues$build
|
|
|
17483
17474
|
module$exports$safevalues$index.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
|
|
17484
17475
|
module$exports$safevalues$index.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17485
17476
|
module$exports$safevalues$index.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
|
|
17486
|
-
module$exports$safevalues$index.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17487
17477
|
module$exports$safevalues$index.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
|
|
17488
|
-
module$exports$safevalues$index.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17489
17478
|
module$exports$safevalues$index.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
|
|
17490
17479
|
module$exports$safevalues$index.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
|
|
17491
17480
|
module$exports$safevalues$index.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
|
|
@@ -17497,6 +17486,7 @@ module$exports$safevalues$index.objectUrlFromSafeSource = module$contents$safeva
|
|
|
17497
17486
|
module$exports$safevalues$index.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
|
|
17498
17487
|
module$exports$safevalues$index.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
|
|
17499
17488
|
module$exports$safevalues$index.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
|
|
17489
|
+
module$exports$safevalues$index.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
17500
17490
|
module$exports$safevalues$index.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
|
|
17501
17491
|
module$exports$safevalues$index.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
|
|
17502
17492
|
module$exports$safevalues$index.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
|
|
@@ -17558,9 +17548,7 @@ safevalues.concatScripts = module$contents$safevalues$builders$script_builders_c
|
|
|
17558
17548
|
safevalues.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
|
|
17559
17549
|
safevalues.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17560
17550
|
safevalues.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
|
|
17561
|
-
safevalues.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17562
17551
|
safevalues.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
|
|
17563
|
-
safevalues.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17564
17552
|
safevalues.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
|
|
17565
17553
|
safevalues.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
|
|
17566
17554
|
safevalues.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
|
|
@@ -17572,6 +17560,7 @@ safevalues.objectUrlFromSafeSource = module$contents$safevalues$builders$url_bui
|
|
|
17572
17560
|
safevalues.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
|
|
17573
17561
|
safevalues.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
|
|
17574
17562
|
safevalues.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
|
|
17563
|
+
safevalues.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
17575
17564
|
safevalues.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
|
|
17576
17565
|
safevalues.Scheme = module$exports$safevalues$index.Scheme;
|
|
17577
17566
|
safevalues.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
|
|
@@ -18716,8 +18705,6 @@ goog.net.jsloader.Error = function(code, opt_message) {
|
|
|
18716
18705
|
};
|
|
18717
18706
|
goog.inherits(goog.net.jsloader.Error, module$contents$goog$debug$Error_DebugError);
|
|
18718
18707
|
goog.json = {};
|
|
18719
|
-
goog.json.Replacer = {};
|
|
18720
|
-
goog.json.Reviver = {};
|
|
18721
18708
|
goog.json.USE_NATIVE_JSON = !1;
|
|
18722
18709
|
goog.json.isValid = function(s) {
|
|
18723
18710
|
return /^\s*$/.test(s) ? !1 : /^[\],:{}\s\u2028\u2029]*$/.test(s.replace(/\\["\\\/bfnrtu]/g, "@").replace(/(?:"[^"\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)[\s\u2028\u2029]*(?=:|,|]|}|$)/g, "]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g, ""));
|
|
@@ -19281,7 +19268,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19281
19268
|
ee.apiclient = {};
|
|
19282
19269
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19283
19270
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19284
|
-
ee.apiclient.API_CLIENT_VERSION = "1.4.
|
|
19271
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.2";
|
|
19285
19272
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19286
19273
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19287
19274
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19579,8 +19566,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19579
19566
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19580
19567
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19581
19568
|
method = method || "POST";
|
|
19582
|
-
var headers = {"Content-Type":contentType}, version = "1.4.
|
|
19583
|
-
version === "1.4.
|
|
19569
|
+
var headers = {"Content-Type":contentType}, version = "1.4.2";
|
|
19570
|
+
version === "1.4.2" && (version = "latest");
|
|
19584
19571
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19585
19572
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19586
19573
|
if (authToken != null) {
|
|
@@ -27102,29 +27089,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27102
27089
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27103
27090
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27104
27091
|
(function() {
|
|
27105
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27106
|
-
orderedParamLists = [["name", "
|
|
27107
|
-
"
|
|
27108
|
-
"collection opt_description
|
|
27109
|
-
|
|
27110
|
-
["
|
|
27111
|
-
["
|
|
27112
|
-
["
|
|
27113
|
-
["
|
|
27114
|
-
[
|
|
27115
|
-
"
|
|
27116
|
-
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "
|
|
27117
|
-
|
|
27118
|
-
[
|
|
27119
|
-
|
|
27120
|
-
|
|
27121
|
-
ee.
|
|
27122
|
-
ee.data.
|
|
27123
|
-
ee.
|
|
27124
|
-
ee.
|
|
27125
|
-
ee.
|
|
27126
|
-
ee.
|
|
27127
|
-
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27092
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.createFolder ee.data.getTaskStatus ee.data.startIngestion ee.data.updateTask ee.data.setAssetAcl ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.startProcessing ee.data.renameAsset ee.data.listAssets ee.data.authenticateViaOauth ee.data.setAssetProperties ee.data.getMapId ee.data.copyAsset ee.data.getTaskList ee.data.listBuckets ee.data.getAssetRootQuota ee.data.authenticate ee.data.deleteAsset ee.data.getTileUrl ee.data.getTableDownloadId ee.data.startTableIngestion ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.listOperations ee.data.listImages ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.getAssetRoots ee.data.setWorkloadTag ee.data.getVideoThumbId ee.data.getAsset ee.data.listFeatures ee.data.createAssetHome ee.data.setDefaultWorkloadTag ee.data.createAsset ee.data.authenticateViaPrivateKey ee.data.getInfo ee.data.getOperation ee.data.newTaskId ee.data.computeValue ee.data.resetWorkloadTag ee.data.getThumbId ee.data.updateAsset ee.data.cancelTask ee.data.getList ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.call ee.reset ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.Filter ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.prototype.not ee.Filter.inList ee.Filter.or ee.Filter.eq ee.Filter.lte ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.MultiLineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Image.prototype.getDownloadURL ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image.cat ee.Image.prototype.select ee.Image.prototype.rename ee.Image.prototype.expression ee.Image ee.Image.rgb ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
|
|
27093
|
+
orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27094
|
+
"collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27095
|
+
"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_table opt_overwrite opt_append 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(" "),
|
|
27096
|
+
"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(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), ["geometry"], ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property",
|
|
27097
|
+
"opt_ascending"], ["name", "operator", "value"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "action", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["parent", "opt_params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
27098
|
+
["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["opt_callback"], ["project", "opt_callback"], ["rootId", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], [], ["opt_limit", "opt_callback"],
|
|
27099
|
+
["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["params", "opt_callback"], ["opt_callback"], ["tag"], ["params", "opt_callback"], ["id", "opt_callback"], ["asset", "params", "opt_callback"], ["requestedId", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id", "opt_callback"],
|
|
27100
|
+
["operationName", "opt_callback"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "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"],
|
|
27101
|
+
[], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_filter"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"],
|
|
27102
|
+
["name", "value"], ["name", "value"], [], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic",
|
|
27103
|
+
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["var_args"], ["var_args"], ["expression", "opt_map"], ["opt_args"], ["r",
|
|
27104
|
+
"g", "b"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["args"], [], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27105
|
+
[ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage,
|
|
27106
|
+
module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.getInfo,
|
|
27107
|
+
ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.data.createFolder, ee.data.getTaskStatus, ee.data.startIngestion, ee.data.updateTask, ee.data.setAssetAcl, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.data.startProcessing, ee.data.renameAsset, ee.data.listAssets, ee.data.authenticateViaOauth, ee.data.setAssetProperties, ee.data.getMapId, ee.data.copyAsset, ee.data.getTaskList, ee.data.listBuckets, ee.data.getAssetRootQuota,
|
|
27108
|
+
ee.data.authenticate, ee.data.deleteAsset, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.startTableIngestion, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.listOperations, ee.data.listImages, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.getAssetRoots, ee.data.setWorkloadTag, ee.data.getVideoThumbId, ee.data.getAsset, ee.data.listFeatures,
|
|
27109
|
+
ee.data.createAssetHome, ee.data.setDefaultWorkloadTag, ee.data.createAsset, ee.data.authenticateViaPrivateKey, ee.data.getInfo, ee.data.getOperation, ee.data.newTaskId, ee.data.computeValue, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.updateAsset, ee.data.cancelTask, ee.data.getList, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.call, ee.reset, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
|
|
27110
|
+
ee.initialize, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.Filter, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.gt, ee.Filter.neq,
|
|
27111
|
+
ee.Filter.lt, ee.Filter.prototype.not, ee.Filter.inList, ee.Filter.or, ee.Filter.eq, ee.Filter.lte, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.MultiLineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Image.prototype.getDownloadURL,
|
|
27112
|
+
ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.rename, ee.Image.prototype.expression, ee.Image, ee.Image.rgb, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getInfo,
|
|
27113
|
+
ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27128
27114
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27129
27115
|
});
|
|
27130
27116
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|