/** * BambooHR Node - Version 1 * Discriminator: resource=file, operation=update */ interface Credentials { bambooHrApi: CredentialReference; } /** Update an employee */ export type BambooHrV1FileUpdateParams = { resource: 'file'; operation: 'update'; /** * ID of the file */ fileId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Move the file to a different category. 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 BambooHrV1FileUpdateNode = { type: 'n8n-nodes-base.bambooHr'; version: 1; credentials?: Credentials; config: NodeConfig; };