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