Automated API Docs update

pull/4672/head
Servarr 2 months ago
parent ebfa68087d
commit a29ad5f05d

@ -3869,6 +3869,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/{id}": { "/api/v1/language/{id}": {
"get": { "get": {
"tags": [ "tags": [
@ -10143,6 +10181,25 @@
}, },
"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
},
"IndexerResource": { "IndexerResource": {
"type": "object", "type": "object",
"properties": { "properties": {
@ -10437,6 +10494,10 @@
"type": "string", "type": "string",
"nullable": true "nullable": true
}, },
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"rejections": { "rejections": {
"type": "array", "type": "array",
"items": { "items": {
@ -10511,6 +10572,10 @@
"type": "string", "type": "string",
"nullable": true "nullable": true
}, },
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"downloadId": { "downloadId": {
"type": "string", "type": "string",
"nullable": true "nullable": true
@ -11972,6 +12037,10 @@
"protocol": { "protocol": {
"$ref": "#/components/schemas/DownloadProtocol" "$ref": "#/components/schemas/DownloadProtocol"
}, },
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"artistId": { "artistId": {
"type": "integer", "type": "integer",
"format": "int32", "format": "int32",
@ -12640,6 +12709,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"
}, },

Loading…
Cancel
Save