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 HrisEmployeesDeleteGlobals = { /** * 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 HrisEmployeesDeleteRequest = { /** * 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; }; export type HrisEmployeesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Employees */ deleteEmployeeResponse?: components.DeleteEmployeeResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisEmployeesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisEmployeesDeleteGlobals$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 HrisEmployeesDeleteGlobals$ { /** @deprecated use `HrisEmployeesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteGlobals$Outbound` instead. */ type Outbound = HrisEmployeesDeleteGlobals$Outbound; } export declare function hrisEmployeesDeleteGlobalsToJSON(hrisEmployeesDeleteGlobals: HrisEmployeesDeleteGlobals): string; export declare function hrisEmployeesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const HrisEmployeesDeleteRequest$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 HrisEmployeesDeleteRequest$ { /** @deprecated use `HrisEmployeesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteRequest$Outbound` instead. */ type Outbound = HrisEmployeesDeleteRequest$Outbound; } export declare function hrisEmployeesDeleteRequestToJSON(hrisEmployeesDeleteRequest: HrisEmployeesDeleteRequest): string; export declare function hrisEmployeesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisEmployeesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisEmployeesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteEmployeeResponse?: components.DeleteEmployeeResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisEmployeesDeleteResponse$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 HrisEmployeesDeleteResponse$ { /** @deprecated use `HrisEmployeesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisEmployeesDeleteResponse$Outbound` instead. */ type Outbound = HrisEmployeesDeleteResponse$Outbound; } export declare function hrisEmployeesDeleteResponseToJSON(hrisEmployeesDeleteResponse: HrisEmployeesDeleteResponse): string; export declare function hrisEmployeesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hrisemployeesdelete.d.ts.map