#698 homeassistant widget (#1658)

This commit is contained in:
Manuel
2023-11-23 21:44:05 +01:00
committed by GitHub
parent 7f46fafbb9
commit 312e2c8297
13 changed files with 261 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import { Icon, IconKey, IconPassword, IconUser } from '@tabler/icons-react';
import { Property } from 'csstype';
import { TileBaseType } from './tile';
@@ -55,7 +56,8 @@ export type IntegrationType =
| 'jellyfin'
| 'nzbGet'
| 'pihole'
| 'adGuardHome';
| 'adGuardHome'
| 'homeAssistant';
export type AppIntegrationType = {
type: IntegrationType | null;
@@ -97,6 +99,7 @@ export const integrationFieldProperties: {
plex: ['apiKey'],
pihole: ['apiKey'],
adGuardHome: ['username', 'password'],
homeAssistant: ['apiKey']
};
export type IntegrationFieldDefinitionType = {