mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 07:43:01 +00:00
Automated API Docs update
ignore-downstream
This commit is contained in:
parent
4e9ef57e3d
commit
ae7c07e02f
1 changed files with 31 additions and 4 deletions
|
@ -5931,8 +5931,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"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -10855,8 +10868,7 @@
|
|||
"nullable": true
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
"$ref": "#/components/schemas/QueueStatus"
|
||||
},
|
||||
"trackedDownloadStatus": {
|
||||
"$ref": "#/components/schemas/TrackedDownloadStatus"
|
||||
|
@ -10935,6 +10947,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