Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/BambooHr/v1/actions/companyReport/index.ts
2024-12-19 18:46:14 +01:00

30 lines
510 B
TypeScript

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