/** * BambooHR Node - Version 1 * Discriminator: resource=employeeDocument, operation=update */ interface Credentials { bambooHrApi: CredentialReference; } /** Update an employee */ export type BambooHrV1EmployeeDocumentUpdateParams = { resource: 'employeeDocument'; operation: 'update'; /** * Employee ID */ employeeId?: string | Expression | PlaceholderValue; /** * File ID */ fileId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** ID of the new category of the file. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ categoryId?: string | Expression; /** New name of the file */ name?: string | Expression | PlaceholderValue; /** Whether this file is shared or not * @default true */ shareWithEmployee?: boolean | Expression; }; }; export type BambooHrV1EmployeeDocumentUpdateNode = { type: 'n8n-nodes-base.bambooHr'; version: 1; credentials?: Credentials; config: NodeConfig; };