Automated API Docs update

ignore-downstream
pull/6579/head
Sonarr 3 months ago committed by Mark McDowall
parent 6c8758c27a
commit de9899c60e

@ -8220,6 +8220,11 @@
"format": "int32", "format": "int32",
"nullable": true "nullable": true
}, },
"releaseType": {
"type": "integer",
"format": "int32",
"nullable": true
},
"mediaInfo": { "mediaInfo": {
"$ref": "#/components/schemas/MediaInfoResource" "$ref": "#/components/schemas/MediaInfoResource"
}, },
@ -9531,6 +9536,9 @@
"type": "integer", "type": "integer",
"format": "int32" "format": "int32"
}, },
"releaseType": {
"$ref": "#/components/schemas/ReleaseType"
},
"rejections": { "rejections": {
"type": "array", "type": "array",
"items": { "items": {
@ -9790,7 +9798,8 @@
"recent", "recent",
"monitorSpecials", "monitorSpecials",
"unmonitorSpecials", "unmonitorSpecials",
"none" "none",
"skip"
], ],
"type": "string" "type": "string"
}, },
@ -10158,6 +10167,9 @@
"isPossibleSceneSeasonSpecial": { "isPossibleSceneSeasonSpecial": {
"type": "boolean", "type": "boolean",
"readOnly": true "readOnly": true
},
"releaseType": {
"$ref": "#/components/schemas/ReleaseType"
} }
}, },
"additionalProperties": false "additionalProperties": false
@ -10963,6 +10975,15 @@
}, },
"additionalProperties": false "additionalProperties": false
}, },
"ReleaseType": {
"enum": [
"unknown",
"singleEpisode",
"multiEpisode",
"seasonPack"
],
"type": "string"
},
"RemotePathMappingResource": { "RemotePathMappingResource": {
"type": "object", "type": "object",
"properties": { "properties": {

Loading…
Cancel
Save