UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

22 lines (18 loc) 468 B
/** * Home Assistant Node - Version 1 * Discriminator: resource=config, operation=get */ interface Credentials { homeAssistantApi: CredentialReference; } /** Get the configuration */ export type HomeAssistantV1ConfigGetParams = { resource: 'config'; operation: 'get'; }; export type HomeAssistantV1ConfigGetNode = { type: 'n8n-nodes-base.homeAssistant'; version: 1; credentials?: Credentials; config: NodeConfig<HomeAssistantV1ConfigGetParams>; };