addedInput schema / properties / delay / description
Added value: +"Extra wait in milliseconds before capture (0–10000)"
addedInput schema / properties / format / description
Added value: +"Image format: \"png\" (default) or \"jpeg\""
addedInput schema / properties / fullPage / description
Added value: +"Capture the full scrollable page (default true)"
addedInput schema / properties / height / description
Added value: +"Viewport height in pixels (100–2160)"
changedInput schema / properties / html / description
Previous value: -"Raw HTML to render instead of a URL (max 2MB)"New value: +"Raw HTML to render instead of a URL (max 2MB). Provide either url or html."
addedInput schema / properties / quality / description
Added value: +"JPEG quality 1–100 (ignored for PNG)"
addedInput schema / properties / scale / description
Added value: +"Device pixel ratio for high-DPI/retina output (1–3)"
changedInput schema / properties / url / description
Previous value: -"Public http/https URL to render"New value: +"Public http/https URL to render. Provide either url or html."
addedInput schema / properties / waitUntil / description
Added value: +"When to consider the page ready: \"load\" (default) or \"networkidle\""
addedInput schema / properties / width / description
Added value: +"Viewport width in pixels (100–3840)"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "bytes": {
+ "description": "Size of the returned image in bytes",
+ "type": "integer"
+ },
+ "mimeType": {
+ "description": "Image MIME type, e.g. image/png",
+ "type": "string"
+ }
+ },
+ "required": [
+ "bytes",
+ "mimeType"
+ ],
+ "type": "object"
+}