Add other APIs

This commit is contained in:
trojanh
2020-01-28 21:20:15 +05:30
parent 8027601283
commit 7b50a4bcfd
9 changed files with 1450 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import { INodeProperties } from "n8n-workflow";
export const clientOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'company',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Retrieves the company for the currently authenticated user',
},
],
default: 'get',
description: 'The operation to perform.',
},
] as INodeProperties[];