Fix name of BambooHR node

This commit is contained in:
Jan Oberhauser
2022-01-22 18:48:58 +01:00
parent 88809936ee
commit bbf3c4c004
63 changed files with 52 additions and 52 deletions

View File

@@ -0,0 +1,45 @@
import { INodeProperties } from 'n8n-workflow';
export const employeeGetAllDescription: INodeProperties[] = [
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: [
'employee',
],
operation: [
'getAll',
],
},
},
description: 'Whether to return all results',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 5,
typeOptions: {
minValue: 1,
maxValue: 1000,
},
displayOptions: {
show: {
resource: [
'employee',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
description: 'The number of results to return',
},
];