n8n-nodes-base
Version:
Base nodes of n8n
30 lines (26 loc) • 699 B
text/typescript
/**
* BambooHR Node - Version 1
* Discriminator: resource=employeeDocument, operation=delete
*/
interface Credentials {
bambooHrApi: CredentialReference;
}
/** Delete an employee document */
export type BambooHrV1EmployeeDocumentDeleteParams = {
resource: 'employeeDocument';
operation: 'delete';
/**
* ID of the employee
*/
employeeId?: string | Expression<string> | PlaceholderValue;
/**
* ID of the employee file
*/
fileId?: string | Expression<string> | PlaceholderValue;
};
export type BambooHrV1EmployeeDocumentDeleteNode = {
type: 'n8n-nodes-base.bambooHr';
version: 1;
credentials?: Credentials;
config: NodeConfig<BambooHrV1EmployeeDocumentDeleteParams>;
};