/** * QuickBooks Online Node - Version 1 * Discriminator: resource=employee, operation=get */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1EmployeeGetParams = { resource: 'employee'; operation: 'get'; /** * The ID of the employee to retrieve */ employeeId?: string | Expression | PlaceholderValue; }; export type QuickbooksV1EmployeeGetNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };