fix(api) 🏷️ Add missing property "playback" to /stats API endpoint (#555)

* fix(api) 🏷️ Add missing property "playback" to /stats API endpoint

* fix(api) 🏷️ Add missing sub properties to "playback"
This commit is contained in:
Sebastian Hädrich 2024-05-15 18:54:33 +02:00 committed by GitHub
parent 1b68e2610f
commit d984302483
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,11 @@ All endpoints that return a JSON body support `&hl=LANGUAGE` for translating fie
"metadata": {
"updatedAt": Int64,
"lastChannelRefreshedAt": Int64
},
"playback": {
"totalRequests": Int32?
"successfulRequests": Int32?
"ratio": Float32?
}
}
```