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