mirror of
https://github.com/Readarr/Readarr
synced 2025-12-10 10:22:31 +01:00
Automated API Docs update [skip ci]
This commit is contained in:
parent
921f170234
commit
243c88ce56
1 changed files with 282 additions and 6 deletions
|
|
@ -2490,6 +2490,53 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/downloadclient/bulk": {
|
||||
"put": {
|
||||
"tags": [
|
||||
"DownloadClient"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/DownloadClientBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/DownloadClientResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": [
|
||||
"DownloadClient"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/DownloadClientBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/downloadclient/schema": {
|
||||
"get": {
|
||||
"tags": [
|
||||
|
|
@ -3347,6 +3394,53 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/importlist/bulk": {
|
||||
"put": {
|
||||
"tags": [
|
||||
"ImportList"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ImportListBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ImportListResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": [
|
||||
"ImportList"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ImportListBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/importlist/schema": {
|
||||
"get": {
|
||||
"tags": [
|
||||
|
|
@ -3777,6 +3871,53 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/indexer/bulk": {
|
||||
"put": {
|
||||
"tags": [
|
||||
"Indexer"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/IndexerBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/IndexerResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"delete": {
|
||||
"tags": [
|
||||
"Indexer"
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/IndexerBulkResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/indexer/schema": {
|
||||
"get": {
|
||||
"tags": [
|
||||
|
|
@ -9528,6 +9669,48 @@
|
|||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"DownloadClientBulkResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"applyTags": {
|
||||
"$ref": "#/components/schemas/ApplyTags"
|
||||
},
|
||||
"enable": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"nullable": true
|
||||
},
|
||||
"removeCompletedDownloads": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"removeFailedDownloads": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"DownloadClientConfigResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -9542,14 +9725,8 @@
|
|||
"enableCompletedDownloadHandling": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"removeCompletedDownloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"autoRedownloadFailed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"removeFailedDownloads": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
@ -9616,6 +9793,12 @@
|
|||
"priority": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"removeCompletedDownloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"removeFailedDownloads": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
@ -10276,6 +10459,49 @@
|
|||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"ImportListBulkResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"applyTags": {
|
||||
"$ref": "#/components/schemas/ApplyTags"
|
||||
},
|
||||
"enableAutomaticAdd": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"rootFolderPath": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"qualityProfileId": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"nullable": true
|
||||
},
|
||||
"metadataProfileId": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"ImportListExclusionResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -10403,6 +10629,48 @@
|
|||
],
|
||||
"type": "string"
|
||||
},
|
||||
"IndexerBulkResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"applyTags": {
|
||||
"$ref": "#/components/schemas/ApplyTags"
|
||||
},
|
||||
"enableRss": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"enableAutomaticSearch": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"enableInteractiveSearch": {
|
||||
"type": "boolean",
|
||||
"nullable": true
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"IndexerConfigResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -12904,6 +13172,14 @@
|
|||
},
|
||||
"nullable": true
|
||||
},
|
||||
"downloadClientIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"authorIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue