/** * Bitwarden Node - Version 1 * Discriminator: resource=event, operation=getAll */ interface Credentials { bitwardenApi: CredentialReference; } export type BitwardenV1EventGetAllParams = { resource: 'event'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 10 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** The unique identifier of the acting user */ actingUserId?: string | Expression | PlaceholderValue; /** The end date for the search */ end?: string | Expression; /** The unique identifier of the item that the event describes */ itemID?: string | Expression | PlaceholderValue; /** The start date for the search */ start?: string | Expression; }; }; export type BitwardenV1EventGetAllNode = { type: 'n8n-nodes-base.bitwarden'; version: 1; credentials?: Credentials; config: NodeConfig; };