import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Employee } from "../components/employee.js"; import { HistoricalEmployeeBody, HistoricalEmployeeBody$Outbound } from "../components/historicalemployeebody.js"; import { HTTPMetadata } from "../components/httpmetadata.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 PostV1HistoricalEmployeesHeaderXGustoAPIVersion: { 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 PostV1HistoricalEmployeesHeaderXGustoAPIVersion = ClosedEnum; export type PostV1HistoricalEmployeesRequest = { /** * 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?: PostV1HistoricalEmployeesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company that will employ this historical record. */ companyUuid: string; historicalEmployeeBody: HistoricalEmployeeBody; }; export type PostV1HistoricalEmployeesResponse = { httpMeta: HTTPMetadata; /** * Created */ employee?: Employee | undefined; }; /** @internal */ export declare const PostV1HistoricalEmployeesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1HistoricalEmployeesRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; "Historical-Employee-Body": HistoricalEmployeeBody$Outbound; }; /** @internal */ export declare const PostV1HistoricalEmployeesRequest$outboundSchema: z.ZodType; export declare function postV1HistoricalEmployeesRequestToJSON(postV1HistoricalEmployeesRequest: PostV1HistoricalEmployeesRequest): string; /** @internal */ export declare const PostV1HistoricalEmployeesResponse$inboundSchema: z.ZodType; export declare function postV1HistoricalEmployeesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1historicalemployees.d.ts.map