UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

25 lines (21 loc) 525 B
/** * Bitwarden Node - Version 1 * Discriminator: resource=group, operation=delete */ interface Credentials { bitwardenApi: CredentialReference; } export type BitwardenV1GroupDeleteParams = { resource: 'group'; operation: 'delete'; /** * The identifier of the group */ groupId?: string | Expression<string> | PlaceholderValue; }; export type BitwardenV1GroupDeleteNode = { type: 'n8n-nodes-base.bitwarden'; version: 1; credentials?: Credentials; config: NodeConfig<BitwardenV1GroupDeleteParams>; };