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
@@ -0,0 +1,51 @@
import type { INodeProperties } from 'n8n-workflow';
export const cloudStorageDescription: INodeProperties[] = [
{
"displayName": "Operation",
"name": "operation",
"type": "options",
"noDataExpression": true,
"displayOptions": {
"show": {
"resource": [
"Cloud Storage"
]
}
},
"options": [
{
"name": "Cloud Storage API Get List",
"value": "Cloud Storage API Get List",
"action": "Gets a list of all connected cloud storage devices",
"description": "Gets a list of all connected cloud storage devices",
"routing": {
"request": {
"method": "GET",
"url": "=/api/v1/cloudstorages"
}
}
}
],
"default": ""
},
{
"displayName": "GET /api/v1/cloudstorages",
"name": "operation",
"type": "notice",
"typeOptions": {
"theme": "info"
},
"default": "",
"displayOptions": {
"show": {
"resource": [
"Cloud Storage"
],
"operation": [
"Cloud Storage API Get List"
]
}
}
},
];