@browserless.io/browserless 2.16.0-beta-1 → 2.16.1
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/CHANGELOG.md +11 -1
- package/bin/browserless.js +6 -4
- package/bin/scaffold/src/hello-world.http.ts +1 -1
- package/build/logger.js +1 -1
- package/build/routes/chrome/http/content.post.body.json +38 -8
- package/build/routes/chrome/http/pdf.post.body.json +43 -9
- package/build/routes/chrome/http/scrape.post.body.json +38 -8
- package/build/routes/chrome/http/screenshot.post.body.json +38 -8
- package/build/routes/chromium/http/content.post.body.json +38 -8
- package/build/routes/chromium/http/pdf.post.body.json +43 -9
- package/build/routes/chromium/http/scrape.post.body.json +38 -8
- package/build/routes/chromium/http/screenshot.post.body.json +38 -8
- package/extensions/ublock/_locales/be/messages.json +1 -1
- package/extensions/ublock/_locales/br_FR/messages.json +2 -2
- package/extensions/ublock/_locales/bs/messages.json +5 -5
- package/extensions/ublock/_locales/eu/messages.json +1 -1
- package/extensions/ublock/_locales/it/messages.json +21 -21
- package/extensions/ublock/_locales/kn/messages.json +13 -13
- package/extensions/ublock/_locales/lt/messages.json +1 -1
- package/extensions/ublock/_locales/ms/messages.json +9 -9
- package/extensions/ublock/_locales/nb/messages.json +2 -2
- package/extensions/ublock/_locales/no/messages.json +2 -2
- package/extensions/ublock/_locales/sv/messages.json +2 -2
- package/extensions/ublock/_locales/tr/messages.json +4 -4
- package/extensions/ublock/_locales/zh_TW/messages.json +17 -17
- package/extensions/ublock/assets/assets.json +4 -3
- package/extensions/ublock/assets/resources/scriptlets.js +208 -57
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +3584 -4032
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +3732 -1683
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +27 -205
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +465 -434
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +3232 -1382
- package/extensions/ublock/assets/ublock/badware.min.txt +867 -408
- package/extensions/ublock/assets/ublock/filters.min.txt +1382 -937
- package/extensions/ublock/assets/ublock/privacy.min.txt +43 -56
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +127 -71
- package/extensions/ublock/assets/ublock/unbreak.min.txt +145 -27
- package/extensions/ublock/js/contentscript-extra.js +25 -0
- package/extensions/ublock/js/contentscript.js +3 -1
- package/extensions/ublock/js/cosmetic-filtering.js +8 -7
- package/extensions/ublock/js/dom.js +8 -4
- package/extensions/ublock/js/epicker-ui.js +1 -1
- package/extensions/ublock/js/s14e-serializer.js +2 -1
- package/extensions/ublock/js/static-filtering-parser.js +255 -254
- package/extensions/ublock/js/storage.js +7 -6
- package/extensions/ublock/js/traffic.js +33 -34
- package/extensions/ublock/manifest.json +1 -1
- package/extensions/ublock/popup-fenix.html +1 -1
- package/package.json +16 -16
- package/src/logger.ts +1 -1
- package/static/debugger/index.html +1 -1
- package/static/debugger/router.js +1 -0
- package/static/debugger/tracker.js +1 -1
- package/static/docs/swagger.json +45 -11
- package/static/docs/swagger.min.json +44 -10
- package/static/function/client.js +4441 -16820
- package/static/function/index.html +4441 -16820
- package/static/debugger/router.bundle.js +0 -2
- package/static/debugger/router.bundle.js.map +0 -1
- package/static/debugger/router.d.ts +0 -2
|
@@ -173,6 +173,10 @@
|
|
|
173
173
|
"type": "string"
|
|
174
174
|
}
|
|
175
175
|
]
|
|
176
|
+
},
|
|
177
|
+
"signal": {
|
|
178
|
+
"description": "A signal object that allows you to cancel the call.",
|
|
179
|
+
"$ref": "#/definitions/AbortSignal"
|
|
176
180
|
}
|
|
177
181
|
},
|
|
178
182
|
"additionalProperties": false
|
|
@@ -186,6 +190,32 @@
|
|
|
186
190
|
],
|
|
187
191
|
"type": "string"
|
|
188
192
|
},
|
|
193
|
+
"AbortSignal": {
|
|
194
|
+
"type": "object",
|
|
195
|
+
"properties": {
|
|
196
|
+
"aborted": {
|
|
197
|
+
"type": "boolean"
|
|
198
|
+
},
|
|
199
|
+
"onabort": {
|
|
200
|
+
"anyOf": [
|
|
201
|
+
{
|
|
202
|
+
"type": "object",
|
|
203
|
+
"additionalProperties": false
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": "null"
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
"reason": {}
|
|
211
|
+
},
|
|
212
|
+
"additionalProperties": false,
|
|
213
|
+
"required": [
|
|
214
|
+
"aborted",
|
|
215
|
+
"onabort",
|
|
216
|
+
"reason"
|
|
217
|
+
]
|
|
218
|
+
},
|
|
189
219
|
"Partial<ResponseForRequest>": {
|
|
190
220
|
"type": "object",
|
|
191
221
|
"properties": {
|
|
@@ -225,14 +255,14 @@
|
|
|
225
255
|
"length": {
|
|
226
256
|
"type": "number"
|
|
227
257
|
},
|
|
228
|
-
"__@toStringTag@
|
|
258
|
+
"__@toStringTag@11906": {
|
|
229
259
|
"type": "string",
|
|
230
260
|
"const": "Uint8Array"
|
|
231
261
|
}
|
|
232
262
|
},
|
|
233
263
|
"required": [
|
|
234
264
|
"BYTES_PER_ELEMENT",
|
|
235
|
-
"__@toStringTag@
|
|
265
|
+
"__@toStringTag@11906",
|
|
236
266
|
"buffer",
|
|
237
267
|
"byteLength",
|
|
238
268
|
"byteOffset",
|
|
@@ -267,13 +297,13 @@
|
|
|
267
297
|
"byteLength": {
|
|
268
298
|
"type": "number"
|
|
269
299
|
},
|
|
270
|
-
"__@toStringTag@
|
|
300
|
+
"__@toStringTag@11906": {
|
|
271
301
|
"type": "string"
|
|
272
302
|
}
|
|
273
303
|
},
|
|
274
304
|
"additionalProperties": false,
|
|
275
305
|
"required": [
|
|
276
|
-
"__@toStringTag@
|
|
306
|
+
"__@toStringTag@11906",
|
|
277
307
|
"byteLength"
|
|
278
308
|
]
|
|
279
309
|
},
|
|
@@ -283,18 +313,18 @@
|
|
|
283
313
|
"byteLength": {
|
|
284
314
|
"type": "number"
|
|
285
315
|
},
|
|
286
|
-
"__@species@
|
|
316
|
+
"__@species@11945": {
|
|
287
317
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
288
318
|
},
|
|
289
|
-
"__@toStringTag@
|
|
319
|
+
"__@toStringTag@11906": {
|
|
290
320
|
"type": "string",
|
|
291
321
|
"const": "SharedArrayBuffer"
|
|
292
322
|
}
|
|
293
323
|
},
|
|
294
324
|
"additionalProperties": false,
|
|
295
325
|
"required": [
|
|
296
|
-
"__@species@
|
|
297
|
-
"__@toStringTag@
|
|
326
|
+
"__@species@11945",
|
|
327
|
+
"__@toStringTag@11906",
|
|
298
328
|
"byteLength"
|
|
299
329
|
]
|
|
300
330
|
},
|
|
@@ -649,8 +679,12 @@
|
|
|
649
679
|
"type": "boolean"
|
|
650
680
|
},
|
|
651
681
|
"timeout": {
|
|
652
|
-
"description": "Timeout in milliseconds. Pass `0` to disable timeout.",
|
|
682
|
+
"description": "Timeout in milliseconds. Pass `0` to disable timeout.\n\nThe default value can be changed by using {@link Page.setDefaultTimeout}",
|
|
653
683
|
"type": "number"
|
|
684
|
+
},
|
|
685
|
+
"waitForFonts": {
|
|
686
|
+
"description": "If true, waits for `document.fonts.ready` to resolve. This might require\nactivating the page using {@link Page.bringToFront} if the page is in the\nbackground.",
|
|
687
|
+
"type": "boolean"
|
|
654
688
|
}
|
|
655
689
|
},
|
|
656
690
|
"additionalProperties": false
|
|
@@ -935,7 +969,7 @@
|
|
|
935
969
|
},
|
|
936
970
|
"info": {
|
|
937
971
|
"title": "Browserless",
|
|
938
|
-
"version": "2.16.
|
|
972
|
+
"version": "2.16.1",
|
|
939
973
|
"x-logo": {
|
|
940
974
|
"altText": "browserless logo",
|
|
941
975
|
"url": "./docs/browserless-logo-inline.svg"
|