/** * Bitwarden Node - Version 1 * Discriminator: resource=group, operation=getAll */ interface Credentials { bitwardenApi: CredentialReference; } export type BitwardenV1GroupGetAllParams = { resource: 'group'; 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; }; export type BitwardenV1GroupGetAllNode = { type: 'n8n-nodes-base.bitwarden'; version: 1; credentials?: Credentials; config: NodeConfig; };