import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CompanyLocationRequest, CompanyLocationRequest$Outbound } from "../components/companylocationrequest.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { Location } from "../components/location.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 PostV1CompaniesCompanyIdLocationsHeaderXGustoAPIVersion: { 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 PostV1CompaniesCompanyIdLocationsHeaderXGustoAPIVersion = ClosedEnum; export type PostV1CompaniesCompanyIdLocationsRequest = { /** * 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?: PostV1CompaniesCompanyIdLocationsHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; companyLocationRequest: CompanyLocationRequest; }; export type PostV1CompaniesCompanyIdLocationsResponse = { httpMeta: HTTPMetadata; /** * Created */ location?: Location | undefined; }; /** @internal */ export declare const PostV1CompaniesCompanyIdLocationsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1CompaniesCompanyIdLocationsRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; "Company-Location-Request": CompanyLocationRequest$Outbound; }; /** @internal */ export declare const PostV1CompaniesCompanyIdLocationsRequest$outboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdLocationsRequestToJSON(postV1CompaniesCompanyIdLocationsRequest: PostV1CompaniesCompanyIdLocationsRequest): string; /** @internal */ export declare const PostV1CompaniesCompanyIdLocationsResponse$inboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdLocationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1companiescompanyidlocations.d.ts.map