diff --git a/src/Sonarr.Api.V3/openapi.json b/src/Sonarr.Api.V3/openapi.json index 70271b11d..4c4f2e5f5 100644 --- a/src/Sonarr.Api.V3/openapi.json +++ b/src/Sonarr.Api.V3/openapi.json @@ -8557,6 +8557,10 @@ "type": "string", "nullable": true }, + "passwordConfirmation": { + "type": "string", + "nullable": true + }, "logLevel": { "type": "string", "nullable": true @@ -8810,6 +8814,9 @@ "shouldMonitor": { "$ref": "#/components/schemas/MonitorTypes" }, + "monitorNewItems": { + "$ref": "#/components/schemas/NewItemMonitorTypes" + }, "rootFolderPath": { "type": "string", "nullable": true @@ -9609,8 +9616,10 @@ "missing", "existing", "firstSeason", + "lastSeason", "latestSeason", "pilot", + "recent", "monitorSpecials", "unmonitorSpecials", "none" @@ -9700,6 +9709,13 @@ }, "additionalProperties": false }, + "NewItemMonitorTypes": { + "enum": [ + "all", + "none" + ], + "type": "string" + }, "NotificationResource": { "type": "object", "properties": { @@ -11047,6 +11063,9 @@ "type": "boolean", "nullable": true }, + "monitorNewItems": { + "$ref": "#/components/schemas/NewItemMonitorTypes" + }, "qualityProfileId": { "type": "integer", "format": "int32", @@ -11180,6 +11199,9 @@ "monitored": { "type": "boolean" }, + "monitorNewItems": { + "$ref": "#/components/schemas/NewItemMonitorTypes" + }, "useSceneNumbering": { "type": "boolean" },