1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 14:17:19 +02:00

Automated API Docs update

This commit is contained in:
Servarr 2024-08-21 01:03:29 +00:00 committed by bakerboy448
parent da5323a08f
commit 14b125ccd9

View File

@ -1283,6 +1283,26 @@
} }
}, },
"/api/v3/customformat": { "/api/v3/customformat": {
"get": {
"tags": [
"CustomFormat"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomFormatResource"
}
}
}
}
}
}
},
"post": { "post": {
"tags": [ "tags": [
"CustomFormat" "CustomFormat"
@ -1318,26 +1338,6 @@
} }
} }
} }
},
"get": {
"tags": [
"CustomFormat"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomFormatResource"
}
}
}
}
}
}
} }
}, },
"/api/v3/customformat/{id}": { "/api/v3/customformat/{id}": {
@ -1447,6 +1447,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": { "/api/v3/customformat/schema": {
"get": { "get": {
"tags": [ "tags": [
@ -8799,6 +8846,25 @@
}, },
"additionalProperties": false "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": { "CustomFormatResource": {
"type": "object", "type": "object",
"properties": { "properties": {