UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

22 lines (18 loc) 480 B
/** * 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<HomeAssistantV1ConfigCheckParams>; };