Files
Automata/packages/nodes-base/nodes/BambooHr/v1/actions/companyReport/index.ts
Iván Ovejero 62c096710f refactor: Run lintfix (no-changelog) (#7537)
- Fix autofixable violations
- Remove unused directives
- Allow for PascalCased variables - needed for dynamically imported or
assigned classes, decorators, routers, etc.
2023-10-27 14:15:02 +02:00

29 lines
509 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,
];