import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HrisEmployeesUpdateGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type HrisEmployeesUpdateRequest = { /** * ID of the record you are acting upon. */ id: string; /** * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. */ serviceId?: string | undefined; /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; employee: components.EmployeeInput; }; export type HrisEmployeesUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Employees */ updateEmployeeResponse?: components.UpdateEmployeeResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisEmployeesUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisEmployeesUpdateGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HrisEmployeesUpdateGlobals$ { /** @deprecated use `HrisEmployeesUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateGlobals$Outbound` instead. */ type Outbound = HrisEmployeesUpdateGlobals$Outbound; } export declare function hrisEmployeesUpdateGlobalsToJSON(hrisEmployeesUpdateGlobals: HrisEmployeesUpdateGlobals): string; export declare function hrisEmployeesUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; Employee: components.EmployeeInput$Outbound; }; /** @internal */ export declare const HrisEmployeesUpdateRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HrisEmployeesUpdateRequest$ { /** @deprecated use `HrisEmployeesUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateRequest$Outbound` instead. */ type Outbound = HrisEmployeesUpdateRequest$Outbound; } export declare function hrisEmployeesUpdateRequestToJSON(hrisEmployeesUpdateRequest: HrisEmployeesUpdateRequest): string; export declare function hrisEmployeesUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateEmployeeResponse?: components.UpdateEmployeeResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisEmployeesUpdateResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HrisEmployeesUpdateResponse$ { /** @deprecated use `HrisEmployeesUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesUpdateResponse$Outbound` instead. */ type Outbound = HrisEmployeesUpdateResponse$Outbound; } export declare function hrisEmployeesUpdateResponseToJSON(hrisEmployeesUpdateResponse: HrisEmployeesUpdateResponse): string; export declare function hrisEmployeesUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hrisemployeesupdate.d.ts.map