feat: initial n8n community node for billbee
This commit is contained in:
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user