Automated API Docs update

ignore-downstream
This commit is contained in:
Sonarr 2024-08-26 00:30:31 +00:00 committed by Mark McDowall
parent 041fdd3929
commit 882b54be61
1 changed files with 86 additions and 20 deletions

View File

@ -933,6 +933,26 @@
}
},
"/api/v3/customformat": {
"get": {
"tags": [
"CustomFormat"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomFormatResource"
}
}
}
}
}
}
},
"post": {
"tags": [
"CustomFormat"
@ -968,26 +988,6 @@
}
}
}
},
"get": {
"tags": [
"CustomFormat"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomFormatResource"
}
}
}
}
}
}
}
},
"/api/v3/customformat/{id}": {
@ -1087,6 +1087,53 @@
}
}
},
"/api/v3/customformat/bulk": {
"put": {
"tags": [
"CustomFormat"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomFormatBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomFormatResource"
}
}
}
}
}
},
"delete": {
"tags": [
"CustomFormat"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomFormatBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/api/v3/customformat/schema": {
"get": {
"tags": [
@ -7986,6 +8033,25 @@
},
"additionalProperties": false
},
"CustomFormatBulkResource": {
"type": "object",
"properties": {
"ids": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"includeCustomFormatWhenRenaming": {
"type": "boolean",
"nullable": true
}
},
"additionalProperties": false
},
"CustomFormatResource": {
"type": "object",
"properties": {