Files
Automata/packages/nodes-base/nodes/BambooHr/v1/actions/companyReport/index.ts
2022-01-22 18:48:58 +01:00

35 lines
479 B
TypeScript

import * as get from './get';
import {
INodeProperties,
} from 'n8n-workflow';
export {
get,
};
export const descriptions: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'companyReport',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get a company report',
},
],
default: 'get',
description: '',
},
...get.description,
];