n8n-nodes-base
Version:
Base nodes of n8n
32 lines (28 loc) • 704 B
text/typescript
/**
* 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<boolean>;
/**
* Max number of results to return
* @displayOptions.show { returnAll: [false] }
* @default 10
*/
limit?: number | Expression<number>;
};
export type BitwardenV1GroupGetAllNode = {
type: 'n8n-nodes-base.bitwarden';
version: 1;
credentials?: Credentials;
config: NodeConfig<BitwardenV1GroupGetAllParams>;
};