import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { NotFoundErrorObject } from "../models/errors/notfounderrorobject.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetV1EmployeesEmployeeIdJobsRequest, GetV1EmployeesEmployeeIdJobsResponse } from "../models/operations/getv1employeesemployeeidjobs.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get jobs for an employee * * @remarks * Get all of the jobs that an employee holds. * Note: Compensation data (pay rate, payment unit, and related fields) represents sensitive employee pay information. When retrieving employee job data, these fields (`rate`, `payment_unit`, `current_compensation_uuid`, `compensations`) are only returned when the `compensations:read` scope is included. This allows you to access employee and job metadata without exposing pay rates. * * Compensation data in the response requires the `compensations:read` scope. * * scope: `jobs:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function jobsAndCompensationsGetJobs(client: GustoEmbeddedCore, request: GetV1EmployeesEmployeeIdJobsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=jobsAndCompensationsGetJobs.d.ts.map