/** * Home Assistant Node - Version 1 * Discriminator: resource=config, operation=check */ interface Credentials { homeAssistantApi: CredentialReference; } /** Check the configuration */ export type HomeAssistantV1ConfigCheckParams = { resource: 'config'; operation: 'check'; }; export type HomeAssistantV1ConfigCheckNode = { type: 'n8n-nodes-base.homeAssistant'; version: 1; credentials?: Credentials; config: NodeConfig; };