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 HrisCompaniesDeleteGlobals = { /** * 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 HrisCompaniesDeleteRequest = { /** * 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 HrisCompaniesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Companies */ deleteHrisCompanyResponse?: components.DeleteHrisCompanyResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisCompaniesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisCompaniesDeleteGlobals$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 HrisCompaniesDeleteGlobals$ { /** @deprecated use `HrisCompaniesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteGlobals$Outbound` instead. */ type Outbound = HrisCompaniesDeleteGlobals$Outbound; } export declare function hrisCompaniesDeleteGlobalsToJSON(hrisCompaniesDeleteGlobals: HrisCompaniesDeleteGlobals): string; export declare function hrisCompaniesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisCompaniesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const HrisCompaniesDeleteRequest$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 HrisCompaniesDeleteRequest$ { /** @deprecated use `HrisCompaniesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteRequest$Outbound` instead. */ type Outbound = HrisCompaniesDeleteRequest$Outbound; } export declare function hrisCompaniesDeleteRequestToJSON(hrisCompaniesDeleteRequest: HrisCompaniesDeleteRequest): string; export declare function hrisCompaniesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisCompaniesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteHrisCompanyResponse?: components.DeleteHrisCompanyResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisCompaniesDeleteResponse$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 HrisCompaniesDeleteResponse$ { /** @deprecated use `HrisCompaniesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesDeleteResponse$Outbound` instead. */ type Outbound = HrisCompaniesDeleteResponse$Outbound; } export declare function hrisCompaniesDeleteResponseToJSON(hrisCompaniesDeleteResponse: HrisCompaniesDeleteResponse): string; export declare function hrisCompaniesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hriscompaniesdelete.d.ts.map