mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
import {
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import * as file from './file';
|
|
import * as employee from './employee';
|
|
import * as employeeDocument from './employeeDocument';
|
|
import * as companyReport from './companyReport';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
credentials: [
|
|
{
|
|
name: 'bambooHrApi',
|
|
required: true,
|
|
testedBy: 'bambooHrApiCredentialTest',
|
|
},
|
|
],
|
|
defaults: {
|
|
name: 'BambooHR',
|
|
},
|
|
description: 'Consume BambooHR API',
|
|
displayName: 'BambooHR',
|
|
group: ['transform'],
|
|
icon: 'file:bambooHr.png',
|
|
inputs: ['main'],
|
|
name: 'bambooHr',
|
|
outputs: ['main'],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Company Report',
|
|
value: 'companyReport',
|
|
},
|
|
{
|
|
name: 'Employee',
|
|
value: 'employee',
|
|
},
|
|
{
|
|
name: 'Employee Document',
|
|
value: 'employeeDocument',
|
|
},
|
|
{
|
|
name: 'File',
|
|
value: 'file',
|
|
},
|
|
],
|
|
default: 'employee',
|
|
},
|
|
...employee.descriptions,
|
|
...employeeDocument.descriptions,
|
|
...file.descriptions,
|
|
...companyReport.descriptions,
|
|
],
|
|
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
|
version: 1,
|
|
};
|