import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { Job } from "../components/job.js"; import { JobsCreateRequestBody, JobsCreateRequestBody$Outbound } from "../components/jobscreaterequestbody.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export declare const PostV1EmployeesEmployeeIdJobsHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentyFiveMinus06Minus15: "2025-06-15"; }; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export type PostV1EmployeesEmployeeIdJobsHeaderXGustoAPIVersion = ClosedEnum; export type PostV1EmployeesEmployeeIdJobsRequest = { /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ xGustoAPIVersion?: PostV1EmployeesEmployeeIdJobsHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; jobsCreateRequestBody: JobsCreateRequestBody; }; export type PostV1EmployeesEmployeeIdJobsResponse = { httpMeta: HTTPMetadata; /** * created a primary job with a null title */ job?: Job | undefined; }; /** @internal */ export declare const PostV1EmployeesEmployeeIdJobsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1EmployeesEmployeeIdJobsRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; "Jobs-Create-Request-Body": JobsCreateRequestBody$Outbound; }; /** @internal */ export declare const PostV1EmployeesEmployeeIdJobsRequest$outboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeIdJobsRequestToJSON(postV1EmployeesEmployeeIdJobsRequest: PostV1EmployeesEmployeeIdJobsRequest): string; /** @internal */ export declare const PostV1EmployeesEmployeeIdJobsResponse$inboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeIdJobsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1employeesemployeeidjobs.d.ts.map