/** * Home Assistant Node - Version 1 * Discriminator: resource=log, operation=getLogbookEntries */ interface Credentials { homeAssistantApi: CredentialReference; } /** Get all logs */ export type HomeAssistantV1LogGetLogbookEntriesParams = { resource: 'log'; operation: 'getLogbookEntries'; /** * Additional Fields * @default {} */ additionalFields?: { /** The end of the period */ endTime?: string | Expression; /** Entity ID */ entityId?: string | Expression | PlaceholderValue; /** The beginning of the period */ startTime?: string | Expression; }; }; export type HomeAssistantV1LogGetLogbookEntriesNode = { type: 'n8n-nodes-base.homeAssistant'; version: 1; credentials?: Credentials; config: NodeConfig; };