/** * Demio Node - Version 1 * Discriminator: resource=event, operation=get */ interface Credentials { demioApi: CredentialReference; } /** Get an event */ export type DemioV1EventGetParams = { resource: 'event'; operation: 'get'; /** * Event ID */ eventId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to return only active dates in series * @default false */ active?: boolean | Expression; /** Event Date ID */ date_id?: string | Expression | PlaceholderValue; }; }; export type DemioV1EventGetNode = { type: 'n8n-nodes-base.demio'; version: 1; credentials?: Credentials; config: NodeConfig; };