/** * QuickBooks Online Node - Version 1 * Discriminator: resource=employee, operation=getAll */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1EmployeeGetAllParams = { resource: 'employee'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** The condition for selecting employees. See the <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries">guide</a> for supported syntax. */ query?: string | Expression | PlaceholderValue; }; }; export type QuickbooksV1EmployeeGetAllNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };