/** * BambooHR Node - Version 1 * Discriminator: resource=employeeDocument, operation=getAll */ interface Credentials { bambooHrApi: CredentialReference; } /** Get many employees */ export type BambooHrV1EmployeeDocumentGetAllParams = { resource: 'employeeDocument'; operation: 'getAll'; /** * Employee ID */ employeeId?: string | Expression | PlaceholderValue; /** * 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 5 */ limit?: number | Expression; /** * Whether to return a simplified version of the response instead of the raw data * @default true */ simplifyOutput?: boolean | Expression; }; export type BambooHrV1EmployeeDocumentGetAllNode = { type: 'n8n-nodes-base.bambooHr'; version: 1; credentials?: Credentials; config: NodeConfig; };