import type { AllEntities, Entity, PropertiesOf } from 'n8n-workflow'; type BambooHrMap = { employee: 'create' | 'get' | 'getAll' | 'update'; employeeDocument: 'delete' | 'download' | 'get' | 'getAll' | 'update' | 'upload'; file: 'delete' | 'download' | 'getAll' | 'update'; companyReport: 'get'; }; export type BambooHr = AllEntities; export type BambooHrFile = Entity; export type BambooHrEmployee = Entity; export type BambooHrEmployeeDocument = Entity; export type BambooHrCompanyReport = Entity; export type FileProperties = PropertiesOf; export type EmployeeProperties = PropertiesOf; export type EmployeeDocumentProperties = PropertiesOf; export type CompanyReportProperties = PropertiesOf; export interface IAttachment { fields: { item?: object[]; }; actions: { item?: object[]; }; }