Add useNet tile

This commit is contained in:
Meierschlumpf
2022-12-11 16:06:41 +01:00
parent c2571190f6
commit bbc02f38c1
13 changed files with 426 additions and 273 deletions

View File

@@ -24,11 +24,12 @@ interface ServiceAppearanceType {
iconUrl: string;
}
type ServiceIntegrationType =
export type ServiceIntegrationType =
| ServiceIntegrationApiKeyType
| ServiceIntegrationPasswordType
| ServiceIntegrationUsernamePasswordType;
// TODO: add nzbGet somewhere
export interface ServiceIntegrationApiKeyType {
type: 'readarr' | 'radarr' | 'sonarr' | 'lidarr' | 'sabnzbd' | 'jellyseerr' | 'overseerr';
properties: {
@@ -44,7 +45,7 @@ interface ServiceIntegrationPasswordType {
}
interface ServiceIntegrationUsernamePasswordType {
type: 'qBittorrent' | 'transmission';
type: 'qBittorrent' | 'transmission' | 'nzbGet';
properties: {
username?: string;
password?: string;