mirror of
https://github.com/Radarr/Radarr
synced 2026-02-10 16:53:30 +01:00
Automated API Docs update
This commit is contained in:
parent
ff09da3a69
commit
b1df9b2401
1 changed files with 31 additions and 4 deletions
|
|
@ -6569,8 +6569,21 @@
|
|||
"name": "quality",
|
||||
"in": "query",
|
||||
"schema": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"in": "query",
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/QueueStatus"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
@ -11676,8 +11689,7 @@
|
|||
"nullable": true
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
"$ref": "#/components/schemas/QueueStatus"
|
||||
},
|
||||
"trackedDownloadStatus": {
|
||||
"$ref": "#/components/schemas/TrackedDownloadStatus"
|
||||
|
|
@ -11753,6 +11765,21 @@
|
|||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"QueueStatus": {
|
||||
"enum": [
|
||||
"unknown",
|
||||
"queued",
|
||||
"paused",
|
||||
"downloading",
|
||||
"completed",
|
||||
"failed",
|
||||
"warning",
|
||||
"delay",
|
||||
"downloadClientUnavailable",
|
||||
"fallback"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"QueueStatusResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue