changedInput schema / properties / access_token / description
Previous value: -"Optional JWT access token for authentication."New value: +"Optional bearer token; prefer session_request_id."
changedInput schema / properties / content_type / description
Previous value: -"Which content to read: 'live' (default) returns the active content, 'idle' returns the idle/default content."New value: +"'live' (default) reads active content; 'idle' reads default content."
changedInput schema / properties / display_id / description
Previous value: -"The 8-character alphanumeric display profile ID, e.g. 'ABCD1234'."New value: +"8-character display profile ID, e.g. 'ABCD1234'."
addedInput schema / properties / max_bytes
Added value: +{
+ "description": "Maximum bytes of HTML to return. Default 51200.",
+ "maximum": 204800,
+ "minimum": 1024,
+ "type": "integer"
+}
addedInput schema / properties / offset
Added value: +{
+ "description": "Byte offset to start reading from. Default 0.",
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / session_request_id
Added value: +{
+ "description": "Session handle from create_auth_session; pass it on every authenticated call.",
+ "type": "string"
+}
addedOutput schema / properties / offset
Added value: +{
+ "type": [
+ "integer",
+ "null"
+ ]
+}
addedOutput schema / properties / totalBytes
Added value: +{
+ "type": [
+ "integer",
+ "null"
+ ]
+}
addedOutput schema / properties / truncated
Added value: +{
+ "type": [
+ "boolean",
+ "null"
+ ]
+}