UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

37 lines (33 loc) 796 B
/** * TheHive Node - Version 1 * Discriminator: resource=log, operation=getAll */ interface Credentials { theHiveApi: CredentialReference; } /** Get many task logs */ export type TheHiveV1LogGetAllParams = { resource: 'log'; operation: 'getAll'; /** * ID of the task */ taskId?: string | Expression<string> | PlaceholderValue; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression<boolean>; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression<number>; }; export type TheHiveV1LogGetAllNode = { type: 'n8n-nodes-base.theHive'; version: 1; credentials?: Credentials; config: NodeConfig<TheHiveV1LogGetAllParams>; };