@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/main.js
CHANGED
|
@@ -12,9 +12,9 @@ $jscomp.arrayIterator = function(array) {
|
|
|
12
12
|
return {next:$jscomp.arrayIteratorImpl(array)};
|
|
13
13
|
};
|
|
14
14
|
$jscomp.ASSUME_ES5 = !1;
|
|
15
|
+
$jscomp.ASSUME_ES6 = !1;
|
|
15
16
|
$jscomp.ASSUME_NO_NATIVE_MAP = !1;
|
|
16
17
|
$jscomp.ASSUME_NO_NATIVE_SET = !1;
|
|
17
|
-
$jscomp.SIMPLE_FROUND_POLYFILL = !1;
|
|
18
18
|
$jscomp.ISOLATE_POLYFILLS = !1;
|
|
19
19
|
$jscomp.FORCE_POLYFILL_PROMISE = !1;
|
|
20
20
|
$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
|
|
@@ -130,50 +130,6 @@ $jscomp.iteratorPrototype = function(next) {
|
|
|
130
130
|
};
|
|
131
131
|
return iterator;
|
|
132
132
|
};
|
|
133
|
-
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
134
|
-
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
135
|
-
};
|
|
136
|
-
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
137
|
-
arrayStrings.raw = rawArrayStrings;
|
|
138
|
-
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
139
|
-
return arrayStrings;
|
|
140
|
-
};
|
|
141
|
-
$jscomp.makeIterator = function(iterable) {
|
|
142
|
-
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
143
|
-
if (iteratorFunction) {
|
|
144
|
-
return iteratorFunction.call(iterable);
|
|
145
|
-
}
|
|
146
|
-
if (typeof iterable.length == "number") {
|
|
147
|
-
return $jscomp.arrayIterator(iterable);
|
|
148
|
-
}
|
|
149
|
-
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
150
|
-
};
|
|
151
|
-
$jscomp.arrayFromIterator = function(iterator) {
|
|
152
|
-
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
153
|
-
arr.push(i.value);
|
|
154
|
-
}
|
|
155
|
-
return arr;
|
|
156
|
-
};
|
|
157
|
-
$jscomp.arrayFromIterable = function(iterable) {
|
|
158
|
-
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
159
|
-
};
|
|
160
|
-
$jscomp.owns = function(obj, prop) {
|
|
161
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
162
|
-
};
|
|
163
|
-
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
164
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
165
|
-
var source = arguments[i];
|
|
166
|
-
if (source) {
|
|
167
|
-
for (var key in source) {
|
|
168
|
-
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
return target;
|
|
173
|
-
};
|
|
174
|
-
$jscomp.polyfill("Object.assign", function(orig) {
|
|
175
|
-
return orig || $jscomp.assign;
|
|
176
|
-
}, "es6", "es3");
|
|
177
133
|
$jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
|
|
178
134
|
var ctor = function() {
|
|
179
135
|
};
|
|
@@ -242,6 +198,50 @@ $jscomp.inherits = function(childCtor, parentCtor) {
|
|
|
242
198
|
}
|
|
243
199
|
childCtor.superClass_ = parentCtor.prototype;
|
|
244
200
|
};
|
|
201
|
+
$jscomp.makeIterator = function(iterable) {
|
|
202
|
+
var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
|
|
203
|
+
if (iteratorFunction) {
|
|
204
|
+
return iteratorFunction.call(iterable);
|
|
205
|
+
}
|
|
206
|
+
if (typeof iterable.length == "number") {
|
|
207
|
+
return $jscomp.arrayIterator(iterable);
|
|
208
|
+
}
|
|
209
|
+
throw Error(String(iterable) + " is not an iterable or ArrayLike");
|
|
210
|
+
};
|
|
211
|
+
$jscomp.arrayFromIterator = function(iterator) {
|
|
212
|
+
for (var i, arr = []; !(i = iterator.next()).done;) {
|
|
213
|
+
arr.push(i.value);
|
|
214
|
+
}
|
|
215
|
+
return arr;
|
|
216
|
+
};
|
|
217
|
+
$jscomp.arrayFromIterable = function(iterable) {
|
|
218
|
+
return iterable instanceof Array ? iterable : $jscomp.arrayFromIterator($jscomp.makeIterator(iterable));
|
|
219
|
+
};
|
|
220
|
+
$jscomp.createTemplateTagFirstArg = function(arrayStrings) {
|
|
221
|
+
return $jscomp.createTemplateTagFirstArgWithRaw(arrayStrings, arrayStrings);
|
|
222
|
+
};
|
|
223
|
+
$jscomp.createTemplateTagFirstArgWithRaw = function(arrayStrings, rawArrayStrings) {
|
|
224
|
+
arrayStrings.raw = rawArrayStrings;
|
|
225
|
+
Object.freeze && (Object.freeze(arrayStrings), Object.freeze(rawArrayStrings));
|
|
226
|
+
return arrayStrings;
|
|
227
|
+
};
|
|
228
|
+
$jscomp.owns = function(obj, prop) {
|
|
229
|
+
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
230
|
+
};
|
|
231
|
+
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && typeof Object.assign == "function" ? Object.assign : function(target, var_args) {
|
|
232
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
233
|
+
var source = arguments[i];
|
|
234
|
+
if (source) {
|
|
235
|
+
for (var key in source) {
|
|
236
|
+
$jscomp.owns(source, key) && (target[key] = source[key]);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return target;
|
|
241
|
+
};
|
|
242
|
+
$jscomp.polyfill("Object.assign", function(orig) {
|
|
243
|
+
return orig || $jscomp.assign;
|
|
244
|
+
}, "es6", "es3");
|
|
245
245
|
$jscomp.generator = {};
|
|
246
246
|
$jscomp.generator.ensureIteratorResultIsObject_ = function(result) {
|
|
247
247
|
if (!(result instanceof Object)) {
|
|
@@ -746,6 +746,9 @@ $jscomp.polyfill("SuppressedError", function(orig) {
|
|
|
746
746
|
return SuppressedError;
|
|
747
747
|
}, "es_next", "es3");
|
|
748
748
|
$jscomp.iteratorFromArray = function(array, transform) {
|
|
749
|
+
if ($jscomp.ASSUME_ES6) {
|
|
750
|
+
return array[Symbol.iterator]();
|
|
751
|
+
}
|
|
749
752
|
array instanceof String && (array += "");
|
|
750
753
|
var i = 0, done = !1, iter = {next:function() {
|
|
751
754
|
if (!done && i < array.length) {
|
|
@@ -1255,8 +1258,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1255
1258
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1256
1259
|
};
|
|
1257
1260
|
}, "es8", "es3");
|
|
1258
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1,
|
|
1259
|
-
|
|
1261
|
+
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,
|
|
1262
|
+
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};
|
|
1260
1263
|
/*
|
|
1261
1264
|
|
|
1262
1265
|
Copyright The Closure Library Authors.
|
|
@@ -1681,6 +1684,14 @@ goog.createTrustedTypesPolicy = function(name) {
|
|
|
1681
1684
|
}
|
|
1682
1685
|
return policy;
|
|
1683
1686
|
};
|
|
1687
|
+
goog.CodeLocation = {};
|
|
1688
|
+
goog.callerLocation = function() {
|
|
1689
|
+
var stack;
|
|
1690
|
+
return "";
|
|
1691
|
+
};
|
|
1692
|
+
goog.callerLocationIdInternalDoNotCallOrElse = function(id) {
|
|
1693
|
+
return id;
|
|
1694
|
+
};
|
|
1684
1695
|
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf || function(d, b) {
|
|
1685
1696
|
for (var p in b) {
|
|
1686
1697
|
Object.prototype.hasOwnProperty.call(b, p) && (d[p] = b[p]);
|
|
@@ -2160,9 +2171,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
|
|
|
2160
2171
|
};
|
|
2161
2172
|
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;
|
|
2162
2173
|
function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
|
|
2163
|
-
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$
|
|
2164
|
-
{mapMetadata:void 0}, $jscomp$key$
|
|
2165
|
-
var key = $jscomp$key$
|
|
2174
|
+
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 =
|
|
2175
|
+
{mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
|
|
2176
|
+
var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
|
|
2166
2177
|
if (value != null) {
|
|
2167
2178
|
var copy = void 0;
|
|
2168
2179
|
if (arrays.hasOwnProperty(key)) {
|
|
@@ -2173,11 +2184,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2173
2184
|
} else if (objects.hasOwnProperty(key)) {
|
|
2174
2185
|
copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
|
|
2175
2186
|
} else if (objectMaps.hasOwnProperty(key)) {
|
|
2176
|
-
$jscomp$loop$
|
|
2187
|
+
$jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
|
|
2177
2188
|
return function(v) {
|
|
2178
|
-
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$
|
|
2189
|
+
return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2179
2190
|
};
|
|
2180
|
-
}($jscomp$loop$
|
|
2191
|
+
}($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
|
|
2181
2192
|
} else if (Array.isArray(value)) {
|
|
2182
2193
|
if (metadata.emptyArrayIsUnset && value.length === 0) {
|
|
2183
2194
|
continue;
|
|
@@ -2192,8 +2203,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
|
|
|
2192
2203
|
return target;
|
|
2193
2204
|
}
|
|
2194
2205
|
function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
|
|
2195
|
-
for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$
|
|
2196
|
-
var mapKey = $jscomp$key$
|
|
2206
|
+
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()) {
|
|
2207
|
+
var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
|
|
2197
2208
|
mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
|
|
2198
2209
|
}
|
|
2199
2210
|
return objMap;
|
|
@@ -2223,39 +2234,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
|
|
|
2223
2234
|
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))) {
|
|
2224
2235
|
return !1;
|
|
2225
2236
|
}
|
|
2226
|
-
for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$
|
|
2227
|
-
var key = $jscomp$key$
|
|
2237
|
+
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()) {
|
|
2238
|
+
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);
|
|
2228
2239
|
if (has1 !== has2) {
|
|
2229
2240
|
return !1;
|
|
2230
2241
|
}
|
|
2231
2242
|
if (has1) {
|
|
2232
2243
|
var value1 = serializable1.Serializable$get(key);
|
|
2233
|
-
$jscomp$loop$
|
|
2244
|
+
$jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
|
|
2234
2245
|
if (arrays1.hasOwnProperty(key)) {
|
|
2235
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2246
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
|
|
2236
2247
|
return !1;
|
|
2237
2248
|
}
|
|
2238
2249
|
} else if (objects1.hasOwnProperty(key)) {
|
|
2239
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2250
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
|
|
2240
2251
|
return !1;
|
|
2241
2252
|
}
|
|
2242
2253
|
} else if (objectMaps1.hasOwnProperty(key)) {
|
|
2243
|
-
if ($jscomp$loop$
|
|
2244
|
-
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$
|
|
2254
|
+
if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
|
|
2255
|
+
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
|
|
2245
2256
|
return function(v1, i) {
|
|
2246
|
-
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$
|
|
2257
|
+
return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
|
|
2247
2258
|
};
|
|
2248
|
-
}($jscomp$loop$
|
|
2259
|
+
}($jscomp$loop$m192531680$45))) {
|
|
2249
2260
|
return !1;
|
|
2250
2261
|
}
|
|
2251
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$
|
|
2262
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
|
|
2252
2263
|
return !1;
|
|
2253
2264
|
}
|
|
2254
2265
|
} else if (Array.isArray(value1)) {
|
|
2255
|
-
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2266
|
+
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
|
|
2256
2267
|
return !1;
|
|
2257
2268
|
}
|
|
2258
|
-
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$
|
|
2269
|
+
} else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
|
|
2259
2270
|
return !1;
|
|
2260
2271
|
}
|
|
2261
2272
|
}
|
|
@@ -2277,8 +2288,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
|
|
|
2277
2288
|
if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
|
|
2278
2289
|
return !1;
|
|
2279
2290
|
}
|
|
2280
|
-
for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$
|
|
2281
|
-
var mapKey = $jscomp$key$
|
|
2291
|
+
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()) {
|
|
2292
|
+
var mapKey = $jscomp$key$m192531680$43$mapKey.value;
|
|
2282
2293
|
if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
|
|
2283
2294
|
return !1;
|
|
2284
2295
|
}
|
|
@@ -2359,15 +2370,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
|
|
|
2359
2370
|
this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
|
|
2360
2371
|
};
|
|
2361
2372
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
|
|
2362
|
-
var $jscomp$this$
|
|
2373
|
+
var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
|
|
2363
2374
|
payload += this._metadataPayload;
|
|
2364
2375
|
return Promise.all(this.files.map(function(f) {
|
|
2365
|
-
return $jscomp$this$
|
|
2376
|
+
return $jscomp$this$m667091202$6.encodeFile(f);
|
|
2366
2377
|
})).then(function(filePayloads) {
|
|
2367
|
-
for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$
|
|
2368
|
-
payload += $jscomp$key$
|
|
2378
|
+
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()) {
|
|
2379
|
+
payload += $jscomp$key$m667091202$9$filePayload.value;
|
|
2369
2380
|
}
|
|
2370
|
-
return payload += "\r\n--" + $jscomp$this$
|
|
2381
|
+
return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
|
|
2371
2382
|
});
|
|
2372
2383
|
};
|
|
2373
2384
|
module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
|
|
@@ -2872,8 +2883,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
|
|
|
2872
2883
|
throw Error(message);
|
|
2873
2884
|
}
|
|
2874
2885
|
module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
|
|
2875
|
-
var $jscomp$templatelit$
|
|
2876
|
-
["\\0"]), $jscomp$templatelit$
|
|
2886
|
+
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"],
|
|
2887
|
+
["\\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"};
|
|
2877
2888
|
function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
|
|
2878
2889
|
if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
|
|
2879
2890
|
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 ##############################");
|
|
@@ -2887,14 +2898,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
|
|
|
2887
2898
|
return fn.toString().indexOf("`") === -1;
|
|
2888
2899
|
}
|
|
2889
2900
|
var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2890
|
-
return tag($jscomp$templatelit$
|
|
2901
|
+
return tag($jscomp$templatelit$1274514361$5);
|
|
2891
2902
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2892
|
-
return tag($jscomp$templatelit$
|
|
2903
|
+
return tag($jscomp$templatelit$1274514361$6);
|
|
2893
2904
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2894
|
-
return tag($jscomp$templatelit$
|
|
2905
|
+
return tag($jscomp$templatelit$1274514361$7);
|
|
2895
2906
|
}) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
|
|
2896
|
-
return tag($jscomp$templatelit$
|
|
2897
|
-
}), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$
|
|
2907
|
+
return tag($jscomp$templatelit$1274514361$8);
|
|
2908
|
+
}), 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);
|
|
2898
2909
|
function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
|
|
2899
2910
|
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)) ?
|
|
2900
2911
|
!0 : !1;
|
|
@@ -3080,6 +3091,11 @@ function module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(
|
|
|
3080
3091
|
}
|
|
3081
3092
|
}
|
|
3082
3093
|
module$exports$safevalues$builders$url_builders.sanitizeJavaScriptUrl = module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl;
|
|
3094
|
+
function module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration(url) {
|
|
3095
|
+
var sanitizedUrl = module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(url);
|
|
3096
|
+
return sanitizedUrl === void 0 ? module$exports$safevalues$internals$url_impl.INNOCUOUS_URL : module$contents$safevalues$internals$url_impl_createUrlInternal(sanitizedUrl);
|
|
3097
|
+
}
|
|
3098
|
+
module$exports$safevalues$builders$url_builders.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
3083
3099
|
function module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url) {
|
|
3084
3100
|
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);
|
|
3085
3101
|
}
|
|
@@ -3116,16 +3132,16 @@ module$exports$safevalues$dom$elements$anchor.setHref = function(anchor, url) {
|
|
|
3116
3132
|
module$exports$safevalues$dom$elements$anchor.setHrefLite = function(anchor, url) {
|
|
3117
3133
|
module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (anchor.href = url);
|
|
3118
3134
|
};
|
|
3119
|
-
var module$
|
|
3120
|
-
module$
|
|
3135
|
+
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"};
|
|
3136
|
+
function module$contents$safevalues$dom$elements$area_setHref(area, url) {
|
|
3121
3137
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3122
3138
|
sanitizedUrl !== void 0 && (area.href = sanitizedUrl);
|
|
3123
|
-
}
|
|
3124
|
-
var module$
|
|
3125
|
-
module$
|
|
3139
|
+
}
|
|
3140
|
+
;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"};
|
|
3141
|
+
function module$contents$safevalues$dom$elements$base_setHref(baseEl, url) {
|
|
3126
3142
|
baseEl.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3127
|
-
}
|
|
3128
|
-
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"};
|
|
3143
|
+
}
|
|
3144
|
+
;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"};
|
|
3129
3145
|
module$exports$safevalues$dom$elements$button.setFormaction = function(button, url) {
|
|
3130
3146
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3131
3147
|
sanitizedUrl !== void 0 && (button.formAction = sanitizedUrl);
|
|
@@ -3187,19 +3203,6 @@ module$exports$safevalues$internals$html_impl.unwrapHtml = function(value) {
|
|
|
3187
3203
|
goog.DEBUG && (message = "Unexpected type when unwrapping SafeHtml");
|
|
3188
3204
|
throw Error(message);
|
|
3189
3205
|
};
|
|
3190
|
-
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"};
|
|
3191
|
-
function module$contents$safevalues$internals$style_impl_createStyleInternal(value) {
|
|
3192
|
-
return value;
|
|
3193
|
-
}
|
|
3194
|
-
module$exports$safevalues$internals$style_impl.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
|
|
3195
|
-
function module$contents$safevalues$internals$style_impl_isStyle(value) {
|
|
3196
|
-
return typeof value === "string";
|
|
3197
|
-
}
|
|
3198
|
-
module$exports$safevalues$internals$style_impl.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
|
|
3199
|
-
function module$contents$safevalues$internals$style_impl_unwrapStyle(value) {
|
|
3200
|
-
return value;
|
|
3201
|
-
}
|
|
3202
|
-
module$exports$safevalues$internals$style_impl.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
|
|
3203
3206
|
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;
|
|
3204
3207
|
module$exports$safevalues$dom$elements$element.setInnerHtml = function(elOrRoot, v) {
|
|
3205
3208
|
module$contents$safevalues$dom$elements$element_isElement(elOrRoot) && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(elOrRoot);
|
|
@@ -3211,7 +3214,7 @@ module$exports$safevalues$dom$elements$element.setOuterHtml = function(e, v) {
|
|
|
3211
3214
|
e.outerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
|
|
3212
3215
|
};
|
|
3213
3216
|
module$exports$safevalues$dom$elements$element.setCssText = function(e, v) {
|
|
3214
|
-
e.style.cssText =
|
|
3217
|
+
e.style.cssText = v;
|
|
3215
3218
|
};
|
|
3216
3219
|
module$exports$safevalues$dom$elements$element.insertAdjacentHtml = function(element, position, v) {
|
|
3217
3220
|
var tagContext = position === "beforebegin" || position === "afterend" ? element.parentElement : element;
|
|
@@ -3250,11 +3253,11 @@ function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(el
|
|
|
3250
3253
|
function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
|
|
3251
3254
|
return elOrRoot.nodeType === 1;
|
|
3252
3255
|
}
|
|
3253
|
-
;var module$
|
|
3254
|
-
module$
|
|
3256
|
+
;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"};
|
|
3257
|
+
function module$contents$safevalues$dom$elements$embed_setSrc(embedEl, url) {
|
|
3255
3258
|
embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
|
|
3256
|
-
}
|
|
3257
|
-
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"};
|
|
3259
|
+
}
|
|
3260
|
+
;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"};
|
|
3258
3261
|
module$exports$safevalues$dom$elements$form.setAction = function(form, url) {
|
|
3259
3262
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3260
3263
|
sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
|
|
@@ -3296,9 +3299,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
|
|
|
3296
3299
|
}
|
|
3297
3300
|
}
|
|
3298
3301
|
module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError = function(type, intent) {
|
|
3299
|
-
var $jscomp$tmp$error$
|
|
3300
|
-
this.message = $jscomp$tmp$error$
|
|
3301
|
-
"stack" in $jscomp$tmp$error$
|
|
3302
|
+
var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
|
|
3303
|
+
this.message = $jscomp$tmp$error$240424914$1.message;
|
|
3304
|
+
"stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
|
|
3302
3305
|
this.type = type;
|
|
3303
3306
|
this.intent = intent;
|
|
3304
3307
|
this.name = "TypeCannotBeUsedWithIntentError";
|
|
@@ -3389,11 +3392,11 @@ function module$contents$safevalues$dom$elements$link_setHrefAndRelWithTrustedRe
|
|
|
3389
3392
|
link.rel = rel;
|
|
3390
3393
|
}
|
|
3391
3394
|
module$exports$safevalues$dom$elements$link.setHrefAndRelWithTrustedResourceUrl = module$contents$safevalues$dom$elements$link_setHrefAndRelWithTrustedResourceUrl;
|
|
3392
|
-
var module$
|
|
3393
|
-
module$
|
|
3395
|
+
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"};
|
|
3396
|
+
function module$contents$safevalues$dom$elements$object_setData(obj, v) {
|
|
3394
3397
|
obj.data = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(v);
|
|
3395
|
-
}
|
|
3396
|
-
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"};
|
|
3398
|
+
}
|
|
3399
|
+
;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"};
|
|
3397
3400
|
module$exports$safevalues$dom$globals$window.open = function(win, url, target, features) {
|
|
3398
3401
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
3399
3402
|
return sanitizedUrl !== void 0 ? win.open(sanitizedUrl, target, features) : null;
|
|
@@ -3406,7 +3409,7 @@ module$exports$safevalues$dom$globals$window.getStyleNonce = function(documentOr
|
|
|
3406
3409
|
};
|
|
3407
3410
|
function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, documentOrWindow) {
|
|
3408
3411
|
documentOrWindow = documentOrWindow === void 0 ? document : documentOrWindow;
|
|
3409
|
-
var $jscomp$optchain$
|
|
3412
|
+
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]");
|
|
3410
3413
|
return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
|
|
3411
3414
|
}
|
|
3412
3415
|
;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"};
|
|
@@ -3485,8 +3488,8 @@ var module$exports$safevalues$dom$elements$style = {}, module$contents$safevalue
|
|
|
3485
3488
|
module$exports$safevalues$dom$elements$style.setTextContent = function(elem, safeStyleSheet) {
|
|
3486
3489
|
elem.textContent = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet(safeStyleSheet);
|
|
3487
3490
|
};
|
|
3488
|
-
var module$
|
|
3489
|
-
module$
|
|
3491
|
+
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"];
|
|
3492
|
+
function module$contents$safevalues$dom$elements$svg_setAttribute(svg, attr, value) {
|
|
3490
3493
|
var attrLower = attr.toLowerCase();
|
|
3491
3494
|
if (module$contents$safevalues$dom$elements$svg_UNSAFE_SVG_ATTRIBUTES.indexOf(attrLower) !== -1 || attrLower.indexOf("on") === 0) {
|
|
3492
3495
|
var msg = "";
|
|
@@ -3494,8 +3497,8 @@ module$exports$safevalues$dom$elements$svg.setAttribute = function(svg, attr, va
|
|
|
3494
3497
|
throw Error(msg);
|
|
3495
3498
|
}
|
|
3496
3499
|
svg.setAttribute(attr, value);
|
|
3497
|
-
}
|
|
3498
|
-
goog.debug = {};
|
|
3500
|
+
}
|
|
3501
|
+
;goog.debug = {};
|
|
3499
3502
|
function module$contents$goog$debug$Error_DebugError(msg, cause) {
|
|
3500
3503
|
if (Error.captureStackTrace) {
|
|
3501
3504
|
Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
|
|
@@ -4640,8 +4643,8 @@ goog.log.info = function(logger, msg, exception) {
|
|
|
4640
4643
|
goog.log.fine = function(logger, msg, exception) {
|
|
4641
4644
|
goog.log.ENABLED && logger && goog.log.log(logger, goog.log.Level.FINE, msg, exception);
|
|
4642
4645
|
};
|
|
4643
|
-
var module$
|
|
4644
|
-
module$
|
|
4646
|
+
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"};
|
|
4647
|
+
function module$contents$safevalues$dom$elements$svg_use_setHref(useEl, url) {
|
|
4645
4648
|
var scheme = module$contents$safevalues$builders$url_builders_extractScheme(url);
|
|
4646
4649
|
if (scheme === "javascript:" || scheme === "data:") {
|
|
4647
4650
|
if (goog.DEBUG) {
|
|
@@ -4651,20 +4654,23 @@ module$exports$safevalues$dom$elements$svg_use.setHref = function(useEl, url) {
|
|
|
4651
4654
|
} else {
|
|
4652
4655
|
useEl.setAttribute("href", url);
|
|
4653
4656
|
}
|
|
4654
|
-
}
|
|
4655
|
-
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"};
|
|
4656
|
-
module$
|
|
4657
|
+
}
|
|
4658
|
+
;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"};
|
|
4659
|
+
function module$contents$safevalues$dom$globals$document_write(doc, text) {
|
|
4657
4660
|
doc.write((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(text));
|
|
4658
|
-
}
|
|
4661
|
+
}
|
|
4662
|
+
module$exports$safevalues$dom$globals$document.write = module$contents$safevalues$dom$globals$document_write;
|
|
4659
4663
|
var module$contents$safevalues$dom$globals$document_ValueType;
|
|
4660
|
-
module$
|
|
4664
|
+
function module$contents$safevalues$dom$globals$document_execCommand(doc, command, value) {
|
|
4661
4665
|
var commandString = String(command), valueArgument = value;
|
|
4662
4666
|
commandString.toLowerCase() === "inserthtml" && (valueArgument = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(value));
|
|
4663
4667
|
return doc.execCommand(commandString, !1, valueArgument);
|
|
4664
|
-
}
|
|
4665
|
-
module$exports$safevalues$dom$globals$document.
|
|
4668
|
+
}
|
|
4669
|
+
module$exports$safevalues$dom$globals$document.execCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4670
|
+
function module$contents$safevalues$dom$globals$document_execCommandInsertHtml(doc, html) {
|
|
4666
4671
|
return doc.execCommand("insertHTML", !1, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4667
|
-
}
|
|
4672
|
+
}
|
|
4673
|
+
module$exports$safevalues$dom$globals$document.execCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4668
4674
|
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"};
|
|
4669
4675
|
module$exports$safevalues$dom$globals$dom_parser.parseHtml = function(parser, html) {
|
|
4670
4676
|
return module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, html, "text/html");
|
|
@@ -4689,9 +4695,9 @@ function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parse
|
|
|
4689
4695
|
module$exports$safevalues$dom$globals$dom_parser.parseFromString = module$contents$safevalues$dom$globals$dom_parser_parseFromString;
|
|
4690
4696
|
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"};
|
|
4691
4697
|
module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
|
|
4692
|
-
var $jscomp$tmp$error$
|
|
4693
|
-
this.message = $jscomp$tmp$error$
|
|
4694
|
-
"stack" in $jscomp$tmp$error$
|
|
4698
|
+
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.");
|
|
4699
|
+
this.message = $jscomp$tmp$error$m991617773$25.message;
|
|
4700
|
+
"stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
|
|
4695
4701
|
this.url = url;
|
|
4696
4702
|
this.typeName = typeName;
|
|
4697
4703
|
this.contentType = contentType;
|
|
@@ -4703,48 +4709,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
|
|
|
4703
4709
|
return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
|
|
4704
4710
|
}
|
|
4705
4711
|
function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
|
|
4706
|
-
var response, $jscomp$optchain$
|
|
4707
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4708
|
-
if ($jscomp$generator$context$
|
|
4709
|
-
return $jscomp$generator$context$
|
|
4710
|
-
}
|
|
4711
|
-
response = $jscomp$generator$context$
|
|
4712
|
-
mimeType = ($jscomp$optchain$
|
|
4713
|
-
return $jscomp$generator$context$
|
|
4712
|
+
var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
|
|
4713
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
|
|
4714
|
+
if ($jscomp$generator$context$m991617773$29.nextAddress == 1) {
|
|
4715
|
+
return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
|
|
4716
|
+
}
|
|
4717
|
+
response = $jscomp$generator$context$m991617773$29.yieldResult;
|
|
4718
|
+
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();
|
|
4719
|
+
return $jscomp$generator$context$m991617773$29.return({html:function() {
|
|
4714
4720
|
var text;
|
|
4715
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4716
|
-
if ($jscomp$generator$context$
|
|
4721
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
|
|
4722
|
+
if ($jscomp$generator$context$m991617773$26.nextAddress == 1) {
|
|
4717
4723
|
if (mimeType !== "text/html") {
|
|
4718
4724
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
|
|
4719
4725
|
}
|
|
4720
|
-
return $jscomp$generator$context$
|
|
4726
|
+
return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
|
|
4721
4727
|
}
|
|
4722
|
-
text = $jscomp$generator$context$
|
|
4723
|
-
return $jscomp$generator$context$
|
|
4728
|
+
text = $jscomp$generator$context$m991617773$26.yieldResult;
|
|
4729
|
+
return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
|
|
4724
4730
|
});
|
|
4725
4731
|
}, script:function() {
|
|
4726
4732
|
var text;
|
|
4727
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4728
|
-
if ($jscomp$generator$context$
|
|
4733
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
|
|
4734
|
+
if ($jscomp$generator$context$m991617773$27.nextAddress == 1) {
|
|
4729
4735
|
if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
|
|
4730
4736
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
|
|
4731
4737
|
}
|
|
4732
|
-
return $jscomp$generator$context$
|
|
4738
|
+
return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
|
|
4733
4739
|
}
|
|
4734
|
-
text = $jscomp$generator$context$
|
|
4735
|
-
return $jscomp$generator$context$
|
|
4740
|
+
text = $jscomp$generator$context$m991617773$27.yieldResult;
|
|
4741
|
+
return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
|
|
4736
4742
|
});
|
|
4737
4743
|
}, styleSheet:function() {
|
|
4738
4744
|
var text;
|
|
4739
|
-
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$
|
|
4740
|
-
if ($jscomp$generator$context$
|
|
4745
|
+
return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
|
|
4746
|
+
if ($jscomp$generator$context$m991617773$28.nextAddress == 1) {
|
|
4741
4747
|
if (mimeType !== "text/css") {
|
|
4742
4748
|
throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
|
|
4743
4749
|
}
|
|
4744
|
-
return $jscomp$generator$context$
|
|
4750
|
+
return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
|
|
4745
4751
|
}
|
|
4746
|
-
text = $jscomp$generator$context$
|
|
4747
|
-
return $jscomp$generator$context$
|
|
4752
|
+
text = $jscomp$generator$context$m991617773$28.yieldResult;
|
|
4753
|
+
return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
|
|
4748
4754
|
});
|
|
4749
4755
|
}});
|
|
4750
4756
|
});
|
|
@@ -4752,11 +4758,12 @@ function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init)
|
|
|
4752
4758
|
module$exports$safevalues$dom$globals$fetch.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4753
4759
|
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"};
|
|
4754
4760
|
module$exports$safevalues$dom$globals$global.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4755
|
-
module$
|
|
4761
|
+
function module$contents$safevalues$dom$globals$global_globalEval(win, script) {
|
|
4756
4762
|
var trustedScript = module$contents$safevalues$internals$script_impl_unwrapScript(script), result = win.eval(trustedScript);
|
|
4757
4763
|
result === trustedScript && (result = win.eval(trustedScript.toString()));
|
|
4758
4764
|
return result;
|
|
4759
|
-
}
|
|
4765
|
+
}
|
|
4766
|
+
module$exports$safevalues$dom$globals$global.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4760
4767
|
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"};
|
|
4761
4768
|
module$exports$safevalues$dom$globals$location.setHref = function(loc, url) {
|
|
4762
4769
|
var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
|
|
@@ -4777,15 +4784,15 @@ module$exports$safevalues$dom$globals$location.mockableLocation = {setHref:funct
|
|
|
4777
4784
|
}, assign:function(loc, url) {
|
|
4778
4785
|
loc.assign(url);
|
|
4779
4786
|
}};
|
|
4780
|
-
var module$
|
|
4781
|
-
module$
|
|
4787
|
+
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"};
|
|
4788
|
+
function module$contents$safevalues$dom$globals$range_createContextualFragment(range, html) {
|
|
4782
4789
|
return range.createContextualFragment((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(html));
|
|
4783
|
-
}
|
|
4784
|
-
var module$
|
|
4785
|
-
module$
|
|
4790
|
+
}
|
|
4791
|
+
;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"};
|
|
4792
|
+
function module$contents$safevalues$dom$globals$service_worker_container_register(container, scriptURL, options) {
|
|
4786
4793
|
return container.register(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(scriptURL), options);
|
|
4787
|
-
}
|
|
4788
|
-
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"};
|
|
4794
|
+
}
|
|
4795
|
+
;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"};
|
|
4789
4796
|
module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource = function(source) {
|
|
4790
4797
|
return module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource(source).toString();
|
|
4791
4798
|
};
|
|
@@ -4805,33 +4812,23 @@ module$exports$safevalues$dom$globals$worker.importScripts = function(scope) {
|
|
|
4805
4812
|
};
|
|
4806
4813
|
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"};
|
|
4807
4814
|
module$exports$safevalues$dom$index.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4808
|
-
module$exports$safevalues$dom$index.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4809
|
-
module$exports$safevalues$dom$index.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4810
4815
|
module$exports$safevalues$dom$index.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4811
4816
|
module$exports$safevalues$dom$index.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4812
|
-
module$exports$safevalues$dom$index.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4813
4817
|
module$exports$safevalues$dom$index.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4814
4818
|
module$exports$safevalues$dom$index.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4815
4819
|
module$exports$safevalues$dom$index.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
4816
4820
|
module$exports$safevalues$dom$index.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
4817
|
-
module$exports$safevalues$dom$index.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4818
4821
|
module$exports$safevalues$dom$index.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4819
4822
|
module$exports$safevalues$dom$index.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4820
|
-
module$exports$safevalues$dom$index.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4821
|
-
module$exports$safevalues$dom$index.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4822
|
-
module$exports$safevalues$dom$index.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4823
4823
|
module$exports$safevalues$dom$index.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4824
|
-
module$exports$safevalues$dom$index.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4825
4824
|
module$exports$safevalues$dom$index.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4826
|
-
module$exports$safevalues$dom$index.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4827
|
-
module$exports$safevalues$dom$index.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4828
4825
|
module$exports$safevalues$dom$index.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4829
4826
|
module$exports$safevalues$dom$index.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4830
4827
|
module$exports$safevalues$dom$index.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4831
4828
|
module$exports$safevalues$dom$index.setAnchorHref = module$exports$safevalues$dom$elements$anchor.setHref;
|
|
4832
4829
|
module$exports$safevalues$dom$index.setAnchorHrefLite = module$exports$safevalues$dom$elements$anchor.setHrefLite;
|
|
4833
|
-
module$exports$safevalues$dom$index.setAreaHref = module$
|
|
4834
|
-
module$exports$safevalues$dom$index.setBaseHref = module$
|
|
4830
|
+
module$exports$safevalues$dom$index.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4831
|
+
module$exports$safevalues$dom$index.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4835
4832
|
module$exports$safevalues$dom$index.setButtonFormaction = module$exports$safevalues$dom$elements$button.setFormaction;
|
|
4836
4833
|
module$exports$safevalues$dom$index.buildPrefixedAttributeSetter = module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter;
|
|
4837
4834
|
module$exports$safevalues$dom$index.elementInsertAdjacentHtml = module$exports$safevalues$dom$elements$element.insertAdjacentHtml;
|
|
@@ -4839,8 +4836,9 @@ module$exports$safevalues$dom$index.setElementCssText = module$exports$safevalue
|
|
|
4839
4836
|
module$exports$safevalues$dom$index.setElementInnerHtml = module$exports$safevalues$dom$elements$element.setInnerHtml;
|
|
4840
4837
|
module$exports$safevalues$dom$index.setElementOuterHtml = module$exports$safevalues$dom$elements$element.setOuterHtml;
|
|
4841
4838
|
module$exports$safevalues$dom$index.setElementPrefixedAttribute = module$exports$safevalues$dom$elements$element.setPrefixedAttribute;
|
|
4842
|
-
module$exports$safevalues$dom$index.setEmbedSrc = module$
|
|
4839
|
+
module$exports$safevalues$dom$index.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4843
4840
|
module$exports$safevalues$dom$index.setFormAction = module$exports$safevalues$dom$elements$form.setAction;
|
|
4841
|
+
module$exports$safevalues$dom$index.setFormActionLite = module$exports$safevalues$dom$elements$form.setActionLite;
|
|
4844
4842
|
module$exports$safevalues$dom$index.IframeIntent = module$exports$safevalues$dom$elements$iframe.Intent;
|
|
4845
4843
|
module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError;
|
|
4846
4844
|
module$exports$safevalues$dom$index.setIframeSrc = module$exports$safevalues$dom$elements$iframe.setSrc;
|
|
@@ -4850,25 +4848,25 @@ module$exports$safevalues$dom$index.setIframeSrcdocWithIntent = module$exports$s
|
|
|
4850
4848
|
module$exports$safevalues$dom$index.setInputFormaction = module$exports$safevalues$dom$elements$input.setFormaction;
|
|
4851
4849
|
module$exports$safevalues$dom$index.setLinkHrefAndRel = module$exports$safevalues$dom$elements$link.setHrefAndRel;
|
|
4852
4850
|
module$exports$safevalues$dom$index.setLinkWithResourceUrlHrefAndRel = module$exports$safevalues$dom$elements$link.setHrefAndRelWithTrustedResourceUrl;
|
|
4853
|
-
module$exports$safevalues$dom$index.setObjectData = module$
|
|
4851
|
+
module$exports$safevalues$dom$index.setObjectData = module$contents$safevalues$dom$elements$object_setData;
|
|
4854
4852
|
module$exports$safevalues$dom$index.setScriptSrc = module$exports$safevalues$dom$elements$script.setSrc;
|
|
4855
4853
|
module$exports$safevalues$dom$index.setScriptTextContent = module$exports$safevalues$dom$elements$script.setTextContent;
|
|
4856
4854
|
module$exports$safevalues$dom$index.setStyleTextContent = module$exports$safevalues$dom$elements$style.setTextContent;
|
|
4857
|
-
module$exports$safevalues$dom$index.setSvgAttribute = module$
|
|
4858
|
-
module$exports$safevalues$dom$index.setSvgUseHref = module$
|
|
4859
|
-
module$exports$safevalues$dom$index.documentExecCommand = module$
|
|
4860
|
-
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$
|
|
4861
|
-
module$exports$safevalues$dom$index.documentWrite = module$
|
|
4855
|
+
module$exports$safevalues$dom$index.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4856
|
+
module$exports$safevalues$dom$index.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4857
|
+
module$exports$safevalues$dom$index.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4858
|
+
module$exports$safevalues$dom$index.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4859
|
+
module$exports$safevalues$dom$index.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4862
4860
|
module$exports$safevalues$dom$index.domParserParseFromString = module$exports$safevalues$dom$globals$dom_parser.parseFromString;
|
|
4863
4861
|
module$exports$safevalues$dom$index.domParserParseHtml = module$exports$safevalues$dom$globals$dom_parser.parseHtml;
|
|
4864
4862
|
module$exports$safevalues$dom$index.domParserParseXml = module$exports$safevalues$dom$globals$dom_parser.parseXml;
|
|
4865
|
-
module$exports$safevalues$dom$index.fetchResourceUrl = module$
|
|
4866
|
-
module$exports$safevalues$dom$index.globalEval = module$
|
|
4863
|
+
module$exports$safevalues$dom$index.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4864
|
+
module$exports$safevalues$dom$index.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4867
4865
|
module$exports$safevalues$dom$index.locationAssign = module$exports$safevalues$dom$globals$location.assign;
|
|
4868
4866
|
module$exports$safevalues$dom$index.locationReplace = module$exports$safevalues$dom$globals$location.replace;
|
|
4869
4867
|
module$exports$safevalues$dom$index.setLocationHref = module$exports$safevalues$dom$globals$location.setHref;
|
|
4870
|
-
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$
|
|
4871
|
-
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$
|
|
4868
|
+
module$exports$safevalues$dom$index.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4869
|
+
module$exports$safevalues$dom$index.serviceWorkerContainerRegister = module$contents$safevalues$dom$globals$service_worker_container_register;
|
|
4872
4870
|
module$exports$safevalues$dom$index.objectUrlFromSafeSource = module$exports$safevalues$dom$globals$url.objectUrlFromSafeSource;
|
|
4873
4871
|
module$exports$safevalues$dom$index.getScriptNonce = module$exports$safevalues$dom$globals$window.getScriptNonce;
|
|
4874
4872
|
module$exports$safevalues$dom$index.getStyleNonce = module$exports$safevalues$dom$globals$window.getStyleNonce;
|
|
@@ -4878,33 +4876,23 @@ module$exports$safevalues$dom$index.createSharedWorker = module$exports$safevalu
|
|
|
4878
4876
|
module$exports$safevalues$dom$index.workerGlobalScopeImportScripts = module$exports$safevalues$dom$globals$worker.importScripts;
|
|
4879
4877
|
var safevalues = {dom:{}};
|
|
4880
4878
|
safevalues.dom.safeAnchorEl = module$exports$safevalues$dom$elements$anchor;
|
|
4881
|
-
safevalues.dom.safeAreaEl = module$exports$safevalues$dom$elements$area;
|
|
4882
|
-
safevalues.dom.safeBaseEl = module$exports$safevalues$dom$elements$base;
|
|
4883
4879
|
safevalues.dom.safeButtonEl = module$exports$safevalues$dom$elements$button;
|
|
4884
4880
|
safevalues.dom.safeElement = module$exports$safevalues$dom$elements$element;
|
|
4885
|
-
safevalues.dom.safeEmbedEl = module$exports$safevalues$dom$elements$embed;
|
|
4886
4881
|
safevalues.dom.safeFormEl = module$exports$safevalues$dom$elements$form;
|
|
4887
4882
|
safevalues.dom.safeIframeEl = module$exports$safevalues$dom$elements$iframe;
|
|
4888
4883
|
safevalues.dom.safeInputEl = module$exports$safevalues$dom$elements$input;
|
|
4889
4884
|
safevalues.dom.safeLinkEl = module$exports$safevalues$dom$elements$link;
|
|
4890
|
-
safevalues.dom.safeObjectEl = module$exports$safevalues$dom$elements$object;
|
|
4891
4885
|
safevalues.dom.safeScriptEl = module$exports$safevalues$dom$elements$script;
|
|
4892
4886
|
safevalues.dom.safeStyleEl = module$exports$safevalues$dom$elements$style;
|
|
4893
|
-
safevalues.dom.safeSvgEl = module$exports$safevalues$dom$elements$svg;
|
|
4894
|
-
safevalues.dom.safeSvgUseEl = module$exports$safevalues$dom$elements$svg_use;
|
|
4895
|
-
safevalues.dom.safeDocument = module$exports$safevalues$dom$globals$document;
|
|
4896
4887
|
safevalues.dom.safeDomParser = module$exports$safevalues$dom$globals$dom_parser;
|
|
4897
|
-
safevalues.dom.safeGlobal = module$exports$safevalues$dom$globals$global;
|
|
4898
4888
|
safevalues.dom.safeLocation = module$exports$safevalues$dom$globals$location;
|
|
4899
|
-
safevalues.dom.safeRange = module$exports$safevalues$dom$globals$range;
|
|
4900
|
-
safevalues.dom.safeServiceWorkerContainer = module$exports$safevalues$dom$globals$service_worker_container;
|
|
4901
4889
|
safevalues.dom.safeUrl = module$exports$safevalues$dom$globals$url;
|
|
4902
4890
|
safevalues.dom.safeWindow = module$exports$safevalues$dom$globals$window;
|
|
4903
4891
|
safevalues.dom.safeWorker = module$exports$safevalues$dom$globals$worker;
|
|
4904
4892
|
safevalues.dom.setAnchorHref = module$exports$safevalues$dom$index.setAnchorHref;
|
|
4905
4893
|
safevalues.dom.setAnchorHrefLite = module$exports$safevalues$dom$index.setAnchorHrefLite;
|
|
4906
|
-
safevalues.dom.setAreaHref = module$
|
|
4907
|
-
safevalues.dom.setBaseHref = module$
|
|
4894
|
+
safevalues.dom.setAreaHref = module$contents$safevalues$dom$elements$area_setHref;
|
|
4895
|
+
safevalues.dom.setBaseHref = module$contents$safevalues$dom$elements$base_setHref;
|
|
4908
4896
|
safevalues.dom.setButtonFormaction = module$exports$safevalues$dom$index.setButtonFormaction;
|
|
4909
4897
|
safevalues.dom.buildPrefixedAttributeSetter = module$exports$safevalues$dom$index.buildPrefixedAttributeSetter;
|
|
4910
4898
|
safevalues.dom.elementInsertAdjacentHtml = module$exports$safevalues$dom$index.elementInsertAdjacentHtml;
|
|
@@ -4912,8 +4900,9 @@ safevalues.dom.setElementCssText = module$exports$safevalues$dom$index.setElemen
|
|
|
4912
4900
|
safevalues.dom.setElementInnerHtml = module$exports$safevalues$dom$index.setElementInnerHtml;
|
|
4913
4901
|
safevalues.dom.setElementOuterHtml = module$exports$safevalues$dom$index.setElementOuterHtml;
|
|
4914
4902
|
safevalues.dom.setElementPrefixedAttribute = module$exports$safevalues$dom$index.setElementPrefixedAttribute;
|
|
4915
|
-
safevalues.dom.setEmbedSrc = module$
|
|
4903
|
+
safevalues.dom.setEmbedSrc = module$contents$safevalues$dom$elements$embed_setSrc;
|
|
4916
4904
|
safevalues.dom.setFormAction = module$exports$safevalues$dom$index.setFormAction;
|
|
4905
|
+
safevalues.dom.setFormActionLite = module$exports$safevalues$dom$index.setFormActionLite;
|
|
4917
4906
|
safevalues.dom.IframeIntent = module$exports$safevalues$dom$index.IframeIntent;
|
|
4918
4907
|
safevalues.dom.TypeCannotBeUsedWithIframeIntentError = module$exports$safevalues$dom$index.TypeCannotBeUsedWithIframeIntentError;
|
|
4919
4908
|
safevalues.dom.setIframeSrc = module$exports$safevalues$dom$index.setIframeSrc;
|
|
@@ -4923,25 +4912,25 @@ safevalues.dom.setIframeSrcdocWithIntent = module$exports$safevalues$dom$index.s
|
|
|
4923
4912
|
safevalues.dom.setInputFormaction = module$exports$safevalues$dom$index.setInputFormaction;
|
|
4924
4913
|
safevalues.dom.setLinkHrefAndRel = module$exports$safevalues$dom$index.setLinkHrefAndRel;
|
|
4925
4914
|
safevalues.dom.setLinkWithResourceUrlHrefAndRel = module$exports$safevalues$dom$index.setLinkWithResourceUrlHrefAndRel;
|
|
4926
|
-
safevalues.dom.setObjectData = module$
|
|
4915
|
+
safevalues.dom.setObjectData = module$contents$safevalues$dom$elements$object_setData;
|
|
4927
4916
|
safevalues.dom.setScriptSrc = module$exports$safevalues$dom$index.setScriptSrc;
|
|
4928
4917
|
safevalues.dom.setScriptTextContent = module$exports$safevalues$dom$index.setScriptTextContent;
|
|
4929
4918
|
safevalues.dom.setStyleTextContent = module$exports$safevalues$dom$index.setStyleTextContent;
|
|
4930
|
-
safevalues.dom.setSvgAttribute = module$
|
|
4931
|
-
safevalues.dom.setSvgUseHref = module$
|
|
4932
|
-
safevalues.dom.documentExecCommand = module$
|
|
4933
|
-
safevalues.dom.documentExecCommandInsertHtml = module$
|
|
4934
|
-
safevalues.dom.documentWrite = module$
|
|
4919
|
+
safevalues.dom.setSvgAttribute = module$contents$safevalues$dom$elements$svg_setAttribute;
|
|
4920
|
+
safevalues.dom.setSvgUseHref = module$contents$safevalues$dom$elements$svg_use_setHref;
|
|
4921
|
+
safevalues.dom.documentExecCommand = module$contents$safevalues$dom$globals$document_execCommand;
|
|
4922
|
+
safevalues.dom.documentExecCommandInsertHtml = module$contents$safevalues$dom$globals$document_execCommandInsertHtml;
|
|
4923
|
+
safevalues.dom.documentWrite = module$contents$safevalues$dom$globals$document_write;
|
|
4935
4924
|
safevalues.dom.domParserParseFromString = module$exports$safevalues$dom$index.domParserParseFromString;
|
|
4936
4925
|
safevalues.dom.domParserParseHtml = module$exports$safevalues$dom$index.domParserParseHtml;
|
|
4937
4926
|
safevalues.dom.domParserParseXml = module$exports$safevalues$dom$index.domParserParseXml;
|
|
4938
|
-
safevalues.dom.fetchResourceUrl = module$
|
|
4939
|
-
safevalues.dom.globalEval = module$
|
|
4927
|
+
safevalues.dom.fetchResourceUrl = module$contents$safevalues$dom$globals$fetch_fetchResourceUrl;
|
|
4928
|
+
safevalues.dom.globalEval = module$contents$safevalues$dom$globals$global_globalEval;
|
|
4940
4929
|
safevalues.dom.locationAssign = module$exports$safevalues$dom$index.locationAssign;
|
|
4941
4930
|
safevalues.dom.locationReplace = module$exports$safevalues$dom$index.locationReplace;
|
|
4942
4931
|
safevalues.dom.setLocationHref = module$exports$safevalues$dom$index.setLocationHref;
|
|
4943
|
-
safevalues.dom.rangeCreateContextualFragment = module$
|
|
4944
|
-
safevalues.dom.serviceWorkerContainerRegister = module$
|
|
4932
|
+
safevalues.dom.rangeCreateContextualFragment = module$contents$safevalues$dom$globals$range_createContextualFragment;
|
|
4933
|
+
safevalues.dom.serviceWorkerContainerRegister = module$contents$safevalues$dom$globals$service_worker_container_register;
|
|
4945
4934
|
safevalues.dom.objectUrlFromSafeSource = module$exports$safevalues$dom$index.objectUrlFromSafeSource;
|
|
4946
4935
|
safevalues.dom.getScriptNonce = module$exports$safevalues$dom$index.getScriptNonce;
|
|
4947
4936
|
safevalues.dom.getStyleNonce = module$exports$safevalues$dom$index.getStyleNonce;
|
|
@@ -4949,6 +4938,19 @@ safevalues.dom.windowOpen = module$exports$safevalues$dom$index.windowOpen;
|
|
|
4949
4938
|
safevalues.dom.createWorker = module$exports$safevalues$dom$index.createWorker;
|
|
4950
4939
|
safevalues.dom.createSharedWorker = module$exports$safevalues$dom$index.createSharedWorker;
|
|
4951
4940
|
safevalues.dom.workerGlobalScopeImportScripts = module$exports$safevalues$dom$index.workerGlobalScopeImportScripts;
|
|
4941
|
+
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"};
|
|
4942
|
+
function module$contents$safevalues$internals$style_impl_createStyleInternal(value) {
|
|
4943
|
+
return value;
|
|
4944
|
+
}
|
|
4945
|
+
module$exports$safevalues$internals$style_impl.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
|
|
4946
|
+
function module$contents$safevalues$internals$style_impl_isStyle(value) {
|
|
4947
|
+
return typeof value === "string";
|
|
4948
|
+
}
|
|
4949
|
+
module$exports$safevalues$internals$style_impl.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
|
|
4950
|
+
function module$contents$safevalues$internals$style_impl_unwrapStyle(value) {
|
|
4951
|
+
return value;
|
|
4952
|
+
}
|
|
4953
|
+
module$exports$safevalues$internals$style_impl.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
|
|
4952
4954
|
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"};
|
|
4953
4955
|
function module$contents$safevalues$restricted$reviewed_assertValidJustification(justification) {
|
|
4954
4956
|
if (typeof justification !== "string" || justification.trim() === "") {
|
|
@@ -6271,8 +6273,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
|
|
|
6271
6273
|
}
|
|
6272
6274
|
module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
|
|
6273
6275
|
function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
|
|
6274
|
-
for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$
|
|
6275
|
-
var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6276
|
+
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()) {
|
|
6277
|
+
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;
|
|
6276
6278
|
jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
|
|
6277
6279
|
}
|
|
6278
6280
|
return urlQueryParams;
|
|
@@ -6283,8 +6285,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
|
|
|
6283
6285
|
var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
|
|
6284
6286
|
if (params.headers) {
|
|
6285
6287
|
hasContentType = params.headers["Content-Type"] != null;
|
|
6286
|
-
for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$
|
|
6287
|
-
var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
6288
|
+
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()) {
|
|
6289
|
+
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;
|
|
6288
6290
|
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);
|
|
6289
6291
|
}
|
|
6290
6292
|
}
|
|
@@ -6324,9 +6326,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6324
6326
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6325
6327
|
};
|
|
6326
6328
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6327
|
-
var $jscomp$this$
|
|
6329
|
+
var $jscomp$this$1237977804$4 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6328
6330
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6329
|
-
return $jscomp$this$
|
|
6331
|
+
return $jscomp$this$1237977804$4.requestService.send(params, responseCtor);
|
|
6330
6332
|
}));
|
|
6331
6333
|
};
|
|
6332
6334
|
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"};
|
|
@@ -6496,8 +6498,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_
|
|
|
6496
6498
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_client_hints__enable = !1;
|
|
6497
6499
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6498
6500
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
|
|
6499
|
-
module$exports$closure$flags$flags$2etoggles.
|
|
6500
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__enable = !1;
|
|
6501
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_distinct_contexts_for_control_flow_branches__disable = !1;
|
|
6501
6502
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6502
6503
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable = !1;
|
|
6503
6504
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_ignore_implicit_extension_deps__disable = !1;
|
|
@@ -6510,9 +6511,8 @@ var module$contents$goog$flags_STAGING = goog.readFlagInternalDoNotUseOrElse(1,
|
|
|
6510
6511
|
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);
|
|
6511
6512
|
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);
|
|
6512
6513
|
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);
|
|
6513
|
-
goog.flags.
|
|
6514
|
+
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,
|
|
6514
6515
|
!0);
|
|
6515
|
-
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);
|
|
6516
6516
|
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);
|
|
6517
6517
|
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);
|
|
6518
6518
|
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);
|
|
@@ -16059,8 +16059,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
|
|
|
16059
16059
|
this.replacements = new Map();
|
|
16060
16060
|
};
|
|
16061
16061
|
module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
|
|
16062
|
-
var $jscomp$this$
|
|
16063
|
-
return $jscomp$this$
|
|
16062
|
+
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) {
|
|
16063
|
+
return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
|
|
16064
16064
|
});
|
|
16065
16065
|
if (openedTags.length !== 0) {
|
|
16066
16066
|
if (goog.DEBUG) {
|
|
@@ -16278,8 +16278,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16278
16278
|
if (Array.isArray(token)) {
|
|
16279
16279
|
tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
|
|
16280
16280
|
} else {
|
|
16281
|
-
var $jscomp$optchain$
|
|
16282
|
-
if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$
|
|
16281
|
+
var $jscomp$optchain$tmpm583190311$0 = void 0;
|
|
16282
|
+
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) {
|
|
16283
16283
|
tokens.push(token);
|
|
16284
16284
|
if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
|
|
16285
16285
|
return tokens;
|
|
@@ -16525,9 +16525,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
|
|
|
16525
16525
|
repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
|
|
16526
16526
|
};
|
|
16527
16527
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
|
|
16528
|
-
var $jscomp$this$
|
|
16528
|
+
var $jscomp$this$m583190311$26 = this;
|
|
16529
16529
|
return this.nextTwoInputCodePoints().every(function(c) {
|
|
16530
|
-
return $jscomp$this$
|
|
16530
|
+
return $jscomp$this$m583190311$26.isWhitespace(c);
|
|
16531
16531
|
});
|
|
16532
16532
|
};
|
|
16533
16533
|
module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
|
|
@@ -16634,8 +16634,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16634
16634
|
return null;
|
|
16635
16635
|
}
|
|
16636
16636
|
if (token.lowercaseName === "url") {
|
|
16637
|
-
var nextToken = tokens[i + 1], $jscomp$optchain$
|
|
16638
|
-
if ((($jscomp$optchain$
|
|
16637
|
+
var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
|
|
16638
|
+
if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
|
|
16639
16639
|
return null;
|
|
16640
16640
|
}
|
|
16641
16641
|
var parsedUrl = module$contents$safevalues$builders$html_sanitizer$resource_url_policy_parseUrl(nextToken.value);
|
|
@@ -16658,8 +16658,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16658
16658
|
if (!this.allowKeyframes) {
|
|
16659
16659
|
return null;
|
|
16660
16660
|
}
|
|
16661
|
-
for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$
|
|
16662
|
-
var rule = $jscomp$key$
|
|
16661
|
+
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()) {
|
|
16662
|
+
var rule = $jscomp$key$m1877845113$1$rule.value;
|
|
16663
16663
|
if (rule instanceof CSSKeyframeRule) {
|
|
16664
16664
|
var sanitizedRule = this.sanitizeKeyframeRule(rule);
|
|
16665
16665
|
sanitizedRule && keyframeRules.push(sanitizedRule);
|
|
@@ -16671,8 +16671,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16671
16671
|
if (!this.propertyAllowlist.has(name)) {
|
|
16672
16672
|
return !1;
|
|
16673
16673
|
}
|
|
16674
|
-
for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$
|
|
16675
|
-
var discarder = $jscomp$key$
|
|
16674
|
+
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()) {
|
|
16675
|
+
var discarder = $jscomp$key$m1877845113$2$discarder.value;
|
|
16676
16676
|
if (discarder(name)) {
|
|
16677
16677
|
return !1;
|
|
16678
16678
|
}
|
|
@@ -16687,8 +16687,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16687
16687
|
return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
|
|
16688
16688
|
};
|
|
16689
16689
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
|
|
16690
|
-
for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$
|
|
16691
|
-
var name = $jscomp$key$
|
|
16690
|
+
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()) {
|
|
16691
|
+
var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
|
|
16692
16692
|
sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
|
|
16693
16693
|
}
|
|
16694
16694
|
return sanitizedProperties;
|
|
@@ -16702,8 +16702,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
|
|
|
16702
16702
|
return selector + " { " + sanitizedProperties + " }";
|
|
16703
16703
|
};
|
|
16704
16704
|
module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
|
|
16705
|
-
for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$
|
|
16706
|
-
var rule = $jscomp$key$
|
|
16705
|
+
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()) {
|
|
16706
|
+
var rule = $jscomp$key$m1877845113$4$rule.value;
|
|
16707
16707
|
if (rule instanceof CSSStyleRule) {
|
|
16708
16708
|
var sanitizedRule = this.sanitizeStyleRule(rule);
|
|
16709
16709
|
sanitizedRule && output.push(sanitizedRule);
|
|
@@ -16737,7 +16737,7 @@ function module$contents$safevalues$builders$html_sanitizer$inert_fragment_creat
|
|
|
16737
16737
|
var range = inertDocument.createRange();
|
|
16738
16738
|
range.selectNode(inertDocument.body);
|
|
16739
16739
|
var temporarySafeHtml = (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(dirtyHtml);
|
|
16740
|
-
return
|
|
16740
|
+
return module$contents$safevalues$dom$globals$range_createContextualFragment(range, temporarySafeHtml);
|
|
16741
16741
|
}
|
|
16742
16742
|
;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"};
|
|
16743
16743
|
function module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(node) {
|
|
@@ -16864,8 +16864,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16864
16864
|
return fragment;
|
|
16865
16865
|
};
|
|
16866
16866
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
|
|
16867
|
-
for (var $jscomp$this$
|
|
16868
|
-
return $jscomp$this$
|
|
16867
|
+
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) {
|
|
16868
|
+
return $jscomp$this$m1803429925$13.nodeFilter(n);
|
|
16869
16869
|
}), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
|
|
16870
16870
|
var sanitizedNode = void 0;
|
|
16871
16871
|
if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
|
|
@@ -16900,8 +16900,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16900
16900
|
return this.createTextNode(textNode.data);
|
|
16901
16901
|
};
|
|
16902
16902
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
|
|
16903
|
-
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$
|
|
16904
|
-
var $jscomp$destructuring$var31 = $jscomp$key$
|
|
16903
|
+
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()) {
|
|
16904
|
+
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);
|
|
16905
16905
|
if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
|
|
16906
16906
|
switch(policy.policyAction) {
|
|
16907
16907
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
|
|
@@ -16933,9 +16933,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16933
16933
|
break;
|
|
16934
16934
|
case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
|
|
16935
16935
|
if (this.resourceUrlPolicy) {
|
|
16936
|
-
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$
|
|
16936
|
+
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 =
|
|
16937
16937
|
$jscomp$iter$35.next()) {
|
|
16938
|
-
var part = $jscomp$key$
|
|
16938
|
+
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);
|
|
16939
16939
|
sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
|
|
16940
16940
|
}
|
|
16941
16941
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
|
|
@@ -16979,8 +16979,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
|
|
|
16979
16979
|
if (!conditions) {
|
|
16980
16980
|
return !0;
|
|
16981
16981
|
}
|
|
16982
|
-
for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$
|
|
16983
|
-
var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16982
|
+
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()) {
|
|
16983
|
+
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;
|
|
16984
16984
|
if (value && !expectedValues.has(value)) {
|
|
16985
16985
|
return !1;
|
|
16986
16986
|
}
|
|
@@ -16995,8 +16995,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
|
|
|
16995
16995
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
|
|
16996
16996
|
};
|
|
16997
16997
|
function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
|
|
16998
|
-
for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$
|
|
16999
|
-
var $jscomp$destructuring$var34 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
16998
|
+
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()) {
|
|
16999
|
+
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;
|
|
17000
17000
|
parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
|
|
17001
17001
|
}
|
|
17002
17002
|
return {parts:parts};
|
|
@@ -17053,8 +17053,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17053
17053
|
this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
|
|
17054
17054
|
};
|
|
17055
17055
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
|
|
17056
|
-
for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$
|
|
17057
|
-
var element = $jscomp$key$
|
|
17056
|
+
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()) {
|
|
17057
|
+
var element = $jscomp$key$m1412690177$21$element.value;
|
|
17058
17058
|
element = element.toUpperCase();
|
|
17059
17059
|
if (!this.sanitizerTable.isAllowedElement(element)) {
|
|
17060
17060
|
throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
|
|
@@ -17072,8 +17072,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17072
17072
|
throw Error("Element: " + element + " is not a custom element");
|
|
17073
17073
|
}
|
|
17074
17074
|
if (allowedAttributes) {
|
|
17075
|
-
for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$
|
|
17076
|
-
elementPolicy.set($jscomp$key$
|
|
17075
|
+
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()) {
|
|
17076
|
+
elementPolicy.set($jscomp$key$m1412690177$22$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
|
|
17077
17077
|
}
|
|
17078
17078
|
allowedElementPolicies.set(element, elementPolicy);
|
|
17079
17079
|
} else {
|
|
@@ -17083,15 +17083,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17083
17083
|
return this;
|
|
17084
17084
|
};
|
|
17085
17085
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
|
|
17086
|
-
for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$
|
|
17087
|
-
var attribute = $jscomp$key$
|
|
17086
|
+
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()) {
|
|
17087
|
+
var attribute = $jscomp$key$m1412690177$23$attribute.value;
|
|
17088
17088
|
this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
|
|
17089
17089
|
this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
|
|
17090
17090
|
}
|
|
17091
|
-
for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$
|
|
17092
|
-
for (var $jscomp$destructuring$var37 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17091
|
+
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()) {
|
|
17092
|
+
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$ =
|
|
17093
17093
|
$jscomp$iter$42.next()) {
|
|
17094
|
-
var $jscomp$destructuring$var39 = (0,$jscomp.makeIterator)($jscomp$key$
|
|
17094
|
+
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;
|
|
17095
17095
|
attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
|
|
17096
17096
|
}
|
|
17097
17097
|
elementPolicies.set(elementName, newElementPolicy);
|
|
@@ -17100,8 +17100,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
|
|
|
17100
17100
|
return this;
|
|
17101
17101
|
};
|
|
17102
17102
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.allowDataAttributes = function(attributes) {
|
|
17103
|
-
for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$
|
|
17104
|
-
var attribute = $jscomp$key$
|
|
17103
|
+
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()) {
|
|
17104
|
+
var attribute = $jscomp$key$m1412690177$26$attribute.value;
|
|
17105
17105
|
if (attribute.indexOf("data-") !== 0) {
|
|
17106
17106
|
throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
|
|
17107
17107
|
}
|
|
@@ -17163,7 +17163,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17163
17163
|
return this;
|
|
17164
17164
|
};
|
|
17165
17165
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
|
|
17166
|
-
var $jscomp$this$
|
|
17166
|
+
var $jscomp$this$m1412690177$17 = this;
|
|
17167
17167
|
this.extendSanitizerTableForCss();
|
|
17168
17168
|
var propertyDiscarders = [];
|
|
17169
17169
|
this.animationsAllowed || propertyDiscarders.push(function(property) {
|
|
@@ -17173,9 +17173,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
|
|
|
17173
17173
|
return /^transition(-|$)/.test(property);
|
|
17174
17174
|
});
|
|
17175
17175
|
return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
|
|
17176
|
-
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$
|
|
17176
|
+
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);
|
|
17177
17177
|
}, function(cssText) {
|
|
17178
|
-
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$
|
|
17178
|
+
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);
|
|
17179
17179
|
}, this.resourceUrlPolicy);
|
|
17180
17180
|
};
|
|
17181
17181
|
module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
|
|
@@ -17353,7 +17353,7 @@ function module$contents$safevalues$builders$script_builders_safeScriptWithArgs(
|
|
|
17353
17353
|
};
|
|
17354
17354
|
}
|
|
17355
17355
|
module$exports$safevalues$builders$script_builders.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17356
|
-
var module$
|
|
17356
|
+
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"};
|
|
17357
17357
|
function module$contents$safevalues$builders$style_builders_safeStyle(templateObj) {
|
|
17358
17358
|
var rest = $jscomp.getRestArguments.apply(1, arguments);
|
|
17359
17359
|
goog.DEBUG && module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, rest.length);
|
|
@@ -17376,16 +17376,7 @@ function module$contents$safevalues$builders$style_builders_safeStyle(templateOb
|
|
|
17376
17376
|
}
|
|
17377
17377
|
return module$contents$safevalues$internals$style_impl_createStyleInternal(stringifiedStyle);
|
|
17378
17378
|
}
|
|
17379
|
-
module$exports$safevalues$
|
|
17380
|
-
function module$contents$safevalues$builders$style_builders_styleForMigration(style) {
|
|
17381
|
-
return module$contents$safevalues$internals$style_impl_createStyleInternal(style);
|
|
17382
|
-
}
|
|
17383
|
-
module$exports$safevalues$builders$style_builders.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17384
|
-
function module$contents$safevalues$builders$style_builders_concatStyles(styles) {
|
|
17385
|
-
return module$contents$safevalues$internals$style_impl_createStyleInternal(styles.map(module$contents$safevalues$internals$style_impl_unwrapStyle).join(""));
|
|
17386
|
-
}
|
|
17387
|
-
module$exports$safevalues$builders$style_builders.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17388
|
-
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 =
|
|
17379
|
+
;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 =
|
|
17389
17380
|
{0:.1, 1:.1};
|
|
17390
17381
|
module$exports$safevalues$reporting$reporting.ReportingOptions = function() {
|
|
17391
17382
|
};
|
|
@@ -17425,12 +17416,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
|
|
|
17425
17416
|
}
|
|
17426
17417
|
try {
|
|
17427
17418
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
|
|
17428
|
-
} catch ($jscomp$unused$catch$
|
|
17419
|
+
} catch ($jscomp$unused$catch$442189172$0) {
|
|
17429
17420
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
|
|
17430
17421
|
}
|
|
17431
17422
|
try {
|
|
17432
17423
|
module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
|
|
17433
|
-
} catch ($jscomp$unused$catch$
|
|
17424
|
+
} catch ($jscomp$unused$catch$442189172$1) {
|
|
17434
17425
|
return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
|
|
17435
17426
|
}
|
|
17436
17427
|
return !1;
|
|
@@ -17485,9 +17476,7 @@ module$exports$safevalues$index.concatScripts = module$contents$safevalues$build
|
|
|
17485
17476
|
module$exports$safevalues$index.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
|
|
17486
17477
|
module$exports$safevalues$index.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17487
17478
|
module$exports$safevalues$index.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
|
|
17488
|
-
module$exports$safevalues$index.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17489
17479
|
module$exports$safevalues$index.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
|
|
17490
|
-
module$exports$safevalues$index.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17491
17480
|
module$exports$safevalues$index.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
|
|
17492
17481
|
module$exports$safevalues$index.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
|
|
17493
17482
|
module$exports$safevalues$index.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
|
|
@@ -17499,6 +17488,7 @@ module$exports$safevalues$index.objectUrlFromSafeSource = module$contents$safeva
|
|
|
17499
17488
|
module$exports$safevalues$index.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
|
|
17500
17489
|
module$exports$safevalues$index.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
|
|
17501
17490
|
module$exports$safevalues$index.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
|
|
17491
|
+
module$exports$safevalues$index.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
17502
17492
|
module$exports$safevalues$index.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
|
|
17503
17493
|
module$exports$safevalues$index.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
|
|
17504
17494
|
module$exports$safevalues$index.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
|
|
@@ -17560,9 +17550,7 @@ safevalues.concatScripts = module$contents$safevalues$builders$script_builders_c
|
|
|
17560
17550
|
safevalues.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
|
|
17561
17551
|
safevalues.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
|
|
17562
17552
|
safevalues.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
|
|
17563
|
-
safevalues.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
|
|
17564
17553
|
safevalues.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
|
|
17565
|
-
safevalues.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
|
|
17566
17554
|
safevalues.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
|
|
17567
17555
|
safevalues.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
|
|
17568
17556
|
safevalues.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
|
|
@@ -17574,6 +17562,7 @@ safevalues.objectUrlFromSafeSource = module$contents$safevalues$builders$url_bui
|
|
|
17574
17562
|
safevalues.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
|
|
17575
17563
|
safevalues.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
|
|
17576
17564
|
safevalues.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
|
|
17565
|
+
safevalues.sanitizeUrlForMigration = module$contents$safevalues$builders$url_builders_sanitizeUrlForMigration;
|
|
17577
17566
|
safevalues.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
|
|
17578
17567
|
safevalues.Scheme = module$exports$safevalues$index.Scheme;
|
|
17579
17568
|
safevalues.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
|
|
@@ -18718,8 +18707,6 @@ goog.net.jsloader.Error = function(code, opt_message) {
|
|
|
18718
18707
|
};
|
|
18719
18708
|
goog.inherits(goog.net.jsloader.Error, module$contents$goog$debug$Error_DebugError);
|
|
18720
18709
|
goog.json = {};
|
|
18721
|
-
goog.json.Replacer = {};
|
|
18722
|
-
goog.json.Reviver = {};
|
|
18723
18710
|
goog.json.USE_NATIVE_JSON = !1;
|
|
18724
18711
|
goog.json.isValid = function(s) {
|
|
18725
18712
|
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, ""));
|
|
@@ -19283,7 +19270,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19283
19270
|
ee.apiclient = {};
|
|
19284
19271
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19285
19272
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19286
|
-
ee.apiclient.API_CLIENT_VERSION = "1.4.
|
|
19273
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.2";
|
|
19287
19274
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19288
19275
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19289
19276
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19581,8 +19568,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19581
19568
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19582
19569
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19583
19570
|
method = method || "POST";
|
|
19584
|
-
var headers = {"Content-Type":contentType}, version = "1.4.
|
|
19585
|
-
version === "1.4.
|
|
19571
|
+
var headers = {"Content-Type":contentType}, version = "1.4.2";
|
|
19572
|
+
version === "1.4.2" && (version = "latest");
|
|
19586
19573
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19587
19574
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19588
19575
|
if (authToken != null) {
|
|
@@ -27104,29 +27091,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27104
27091
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27105
27092
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27106
27093
|
(function() {
|
|
27107
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27108
|
-
orderedParamLists = [["name", "
|
|
27109
|
-
"
|
|
27110
|
-
"collection opt_description
|
|
27111
|
-
|
|
27112
|
-
["
|
|
27113
|
-
["
|
|
27114
|
-
["
|
|
27115
|
-
["
|
|
27116
|
-
[
|
|
27117
|
-
"
|
|
27118
|
-
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "
|
|
27119
|
-
|
|
27120
|
-
[
|
|
27121
|
-
|
|
27122
|
-
|
|
27123
|
-
ee.
|
|
27124
|
-
ee.data.
|
|
27125
|
-
ee.
|
|
27126
|
-
ee.
|
|
27127
|
-
ee.
|
|
27128
|
-
ee.
|
|
27129
|
-
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) {
|
|
27094
|
+
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(" "),
|
|
27095
|
+
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(" "),
|
|
27096
|
+
"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(" "),
|
|
27097
|
+
"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(" "),
|
|
27098
|
+
"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",
|
|
27099
|
+
"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(" "),
|
|
27100
|
+
["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"],
|
|
27101
|
+
["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"],
|
|
27102
|
+
["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"],
|
|
27103
|
+
[], ["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"],
|
|
27104
|
+
["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",
|
|
27105
|
+
"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",
|
|
27106
|
+
"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"], []];
|
|
27107
|
+
[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,
|
|
27108
|
+
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,
|
|
27109
|
+
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,
|
|
27110
|
+
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,
|
|
27111
|
+
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,
|
|
27112
|
+
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,
|
|
27113
|
+
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,
|
|
27114
|
+
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,
|
|
27115
|
+
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) {
|
|
27130
27116
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27131
27117
|
});
|
|
27132
27118
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|