feat: initial n8n community node for billbee

This commit is contained in:
github-actions[bot]
2026-06-13 08:46:46 +00:00
commit f2bb08f85c
32 changed files with 32233 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
import type {
IAuthenticateGeneric,
Icon,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class BillbeeApi implements ICredentialType {
name = 'N8nDevBillbeeApi';
displayName = 'Billbee API';
icon: Icon = { light: 'file:../nodes/Billbee/billbee.png', dark: 'file:../nodes/Billbee/billbee.dark.png' };
documentationUrl = '';
properties: INodeProperties[] = [
{
displayName: 'Base URL',
name: 'url',
type: 'string',
default: 'https://app.billbee.io',
required: true,
placeholder: 'https://app.billbee.io',
description: 'The base URL of your Billbee API server',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
required: false,
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'X-Billbee-Api-Key': '={{$credentials.apiKey}}',
},
},
};
}