Automated API Docs update

ignore-downstream
pull/7101/head
Sonarr 6 months ago committed by Mark McDowall
parent dc7a16a03a
commit cd3a1c18ab

@ -3301,6 +3301,37 @@
} }
} }
}, },
"/api/v3/importlistexclusion/bulk": {
"delete": {
"tags": [
"ImportListExclusion"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ImportListExclusionBulkResource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/ImportListExclusionBulkResource"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/ImportListExclusionBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/api/v3/indexer": { "/api/v3/indexer": {
"get": { "get": {
"tags": [ "tags": [
@ -9013,6 +9044,21 @@
}, },
"additionalProperties": false "additionalProperties": false
}, },
"ImportListExclusionBulkResource": {
"type": "object",
"properties": {
"ids": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
}
},
"additionalProperties": false
},
"ImportListExclusionResource": { "ImportListExclusionResource": {
"type": "object", "type": "object",
"properties": { "properties": {

Loading…
Cancel
Save