removedInput schema / additionalProperties
Removed value: -false
changedInput schema / properties / description / maxLength
Previous value: -2000New value: +5000
addedInput schema / properties / metadata
Added value: +{
+ "additionalProperties": {},
+ "description": "Arbitrary metadata to attach",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+}
addedInput schema / properties / privacy
Added value: +{
+ "description": "Stream visibility (default: public)",
+ "enum": [
+ "public",
+ "private"
+ ],
+ "type": "string"
+}
changedInput schema / properties / protocol / description
Previous value: -"Streaming protocol (default: webrtc)"New value: +"Ingest protocol (default: auto)"
changedInput schema / properties / protocol / enum
Previous value: -[
- "webrtc",
- "srt",
- "rtmp",
- "hls"
-]New value: +[
+ "webrtc",
+ "srt",
+ "rtmp",
+ "auto"
+]
removedInput schema / properties / record
Removed value: -{
- "description": "Enable recording for this stream (default: false)",
- "type": "boolean"
-}
addedInput schema / properties / recording
Added value: +{
+ "description": "Recording configuration for this stream",
+ "properties": {
+ "enabled": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "enabled"
+ ],
+ "type": "object"
+}
removedInput schema / properties / region
Removed value: -{
- "description": "Preferred ingest region (e.g., us-east-1, eu-west-1)",
- "type": "string"
-}
changedInput schema / properties / title / maxLength
Previous value: -255New value: +200