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,24 @@
import {
FileProperties,
} from '../../Interfaces';
export const fileDelDescription: FileProperties = [
{
displayName: 'File ID',
name: 'fileId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'delete',
],
resource: [
'file',
],
},
},
default: '',
description: 'ID of the file',
},
];