Change return type of api request to get Connectors to get connector-list instead of dictionary

This commit is contained in:
2024-10-17 21:03:37 +02:00
parent d80fcd9039
commit 225db8beda
4 changed files with 22 additions and 12 deletions

View File

@ -34,7 +34,7 @@ Returns available Manga Connectors (Scanlation sites)
<details>
<summary>Returns</summary>
Dictionary with Connector-Names and supported languages.
List of [Connectors](Types.md#Connector)
</details>
### <sub>![GET](https://img.shields.io/badge/GET-0f0)</sub> `/v2/Connector/<ConnectorName>/GetManga`

View File

@ -1,41 +1,51 @@
## Manga
```json
## Connector
```
{
"name": string,
"SupportedLanguages": string[]
}
```
## Manga
```
{
}
```
## Chapter
```json
```
{
}
```
## Job
```json
```
{
}
```
## ProgressToken
```json
```
{
}
```
## Settings
```json
```
{
}
```
## LibraryConnector
```json
```
{
}
```
## NotificationConnector
```json
```
{
}
```