n8n-nodes-base
Version:
Base nodes of n8n
25 lines (21 loc) • 560 B
text/typescript
/**
* Bitwarden Node - Version 1
* Discriminator: resource=collection, operation=delete
*/
interface Credentials {
bitwardenApi: CredentialReference;
}
export type BitwardenV1CollectionDeleteParams = {
resource: 'collection';
operation: 'delete';
/**
* The identifier of the collection
*/
collectionId?: string | Expression<string> | PlaceholderValue;
};
export type BitwardenV1CollectionDeleteNode = {
type: 'n8n-nodes-base.bitwarden';
version: 1;
credentials?: Credentials;
config: NodeConfig<BitwardenV1CollectionDeleteParams>;
};