feat: add Proxmox integration/widget (#1903)

This commit is contained in:
Dylan Slattery
2024-03-23 10:19:38 -05:00
committed by GitHub
parent 4a8b7377a8
commit 06772713ce
13 changed files with 1181 additions and 217 deletions

View File

@@ -58,7 +58,8 @@ export type IntegrationType =
| 'pihole'
| 'adGuardHome'
| 'homeAssistant'
| 'openmediavault';
| 'openmediavault'
| 'proxmox';
export type AppIntegrationType = {
type: IntegrationType | null;
@@ -103,6 +104,7 @@ export const integrationFieldProperties: {
adGuardHome: ['username', 'password'],
homeAssistant: ['apiKey'],
openmediavault: ['username', 'password'],
proxmox: ['apiKey'],
};
export type IntegrationFieldDefinitionType = {