mirror of
https://github.com/Readarr/Readarr
synced 2026-05-09 05:21:41 +02:00
Automated API Docs update
This commit is contained in:
parent
a397a19034
commit
8fb1aff68a
1 changed files with 89 additions and 0 deletions
|
|
@ -4229,6 +4229,44 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/api/v1/indexerflag": {
|
||||||
|
"get": {
|
||||||
|
"tags": [
|
||||||
|
"IndexerFlag"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Success",
|
||||||
|
"content": {
|
||||||
|
"text/plain": {
|
||||||
|
"schema": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/IndexerFlagResource"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/IndexerFlagResource"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"text/json": {
|
||||||
|
"schema": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/IndexerFlagResource"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/api/v1/language": {
|
"/api/v1/language": {
|
||||||
"get": {
|
"get": {
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
@ -9084,6 +9122,9 @@
|
||||||
"quality": {
|
"quality": {
|
||||||
"$ref": "#/components/schemas/QualityModel"
|
"$ref": "#/components/schemas/QualityModel"
|
||||||
},
|
},
|
||||||
|
"indexerFlags": {
|
||||||
|
"$ref": "#/components/schemas/IndexerFlags"
|
||||||
|
},
|
||||||
"mediaInfo": {
|
"mediaInfo": {
|
||||||
"$ref": "#/components/schemas/MediaInfoModel"
|
"$ref": "#/components/schemas/MediaInfoModel"
|
||||||
},
|
},
|
||||||
|
|
@ -9181,6 +9222,11 @@
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32"
|
"format": "int32"
|
||||||
},
|
},
|
||||||
|
"indexerFlags": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"nullable": true
|
||||||
|
},
|
||||||
"mediaInfo": {
|
"mediaInfo": {
|
||||||
"$ref": "#/components/schemas/MediaInfoResource"
|
"$ref": "#/components/schemas/MediaInfoResource"
|
||||||
},
|
},
|
||||||
|
|
@ -10897,6 +10943,37 @@
|
||||||
},
|
},
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
|
"IndexerFlagResource": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string",
|
||||||
|
"nullable": true
|
||||||
|
},
|
||||||
|
"nameLower": {
|
||||||
|
"type": "string",
|
||||||
|
"nullable": true,
|
||||||
|
"readOnly": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
|
"IndexerFlags": {
|
||||||
|
"enum": [
|
||||||
|
"freeleech",
|
||||||
|
"halfleech",
|
||||||
|
"doubleUpload",
|
||||||
|
"internal",
|
||||||
|
"scene",
|
||||||
|
"freeleech75",
|
||||||
|
"freeleech25"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"IndexerResource": {
|
"IndexerResource": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -11166,6 +11243,10 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"nullable": true
|
"nullable": true
|
||||||
},
|
},
|
||||||
|
"indexerFlags": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"rejections": {
|
"rejections": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
|
|
@ -11224,6 +11305,10 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"nullable": true
|
"nullable": true
|
||||||
},
|
},
|
||||||
|
"indexerFlags": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"downloadId": {
|
"downloadId": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"nullable": true
|
"nullable": true
|
||||||
|
|
@ -12748,6 +12833,10 @@
|
||||||
"protocol": {
|
"protocol": {
|
||||||
"$ref": "#/components/schemas/DownloadProtocol"
|
"$ref": "#/components/schemas/DownloadProtocol"
|
||||||
},
|
},
|
||||||
|
"indexerFlags": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
"authorId": {
|
"authorId": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int32",
|
"format": "int32",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue