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 HrisEmployeesAddGlobals = { /** * 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 HrisEmployeesAddRequest = { /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; /** * 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; employee: components.EmployeeInput; }; export type HrisEmployeesAddResponse = { httpMeta: components.HTTPMetadata; /** * Employees */ createEmployeeResponse?: components.CreateEmployeeResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisEmployeesAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisEmployeesAddGlobals$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 HrisEmployeesAddGlobals$ { /** @deprecated use `HrisEmployeesAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddGlobals$Outbound` instead. */ type Outbound = HrisEmployeesAddGlobals$Outbound; } export declare function hrisEmployeesAddGlobalsToJSON(hrisEmployeesAddGlobals: HrisEmployeesAddGlobals): string; export declare function hrisEmployeesAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesAddRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; Employee: components.EmployeeInput$Outbound; }; /** @internal */ export declare const HrisEmployeesAddRequest$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 HrisEmployeesAddRequest$ { /** @deprecated use `HrisEmployeesAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddRequest$Outbound` instead. */ type Outbound = HrisEmployeesAddRequest$Outbound; } export declare function hrisEmployeesAddRequestToJSON(hrisEmployeesAddRequest: HrisEmployeesAddRequest): string; export declare function hrisEmployeesAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesAddResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateEmployeeResponse?: components.CreateEmployeeResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisEmployeesAddResponse$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 HrisEmployeesAddResponse$ { /** @deprecated use `HrisEmployeesAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesAddResponse$Outbound` instead. */ type Outbound = HrisEmployeesAddResponse$Outbound; } export declare function hrisEmployeesAddResponseToJSON(hrisEmployeesAddResponse: HrisEmployeesAddResponse): string; export declare function hrisEmployeesAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hrisemployeesadd.d.ts.map