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 HrisCompaniesAddGlobals = { /** * 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 HrisCompaniesAddRequest = { /** * 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; hrisCompany: components.HrisCompanyInput; }; export type HrisCompaniesAddResponse = { httpMeta: components.HTTPMetadata; /** * Companies */ createHrisCompanyResponse?: components.CreateHrisCompanyResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisCompaniesAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisCompaniesAddGlobals$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 HrisCompaniesAddGlobals$ { /** @deprecated use `HrisCompaniesAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddGlobals$Outbound` instead. */ type Outbound = HrisCompaniesAddGlobals$Outbound; } export declare function hrisCompaniesAddGlobalsToJSON(hrisCompaniesAddGlobals: HrisCompaniesAddGlobals): string; export declare function hrisCompaniesAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisCompaniesAddRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; HrisCompany: components.HrisCompanyInput$Outbound; }; /** @internal */ export declare const HrisCompaniesAddRequest$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 HrisCompaniesAddRequest$ { /** @deprecated use `HrisCompaniesAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddRequest$Outbound` instead. */ type Outbound = HrisCompaniesAddRequest$Outbound; } export declare function hrisCompaniesAddRequestToJSON(hrisCompaniesAddRequest: HrisCompaniesAddRequest): string; export declare function hrisCompaniesAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisCompaniesAddResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisCompaniesAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateHrisCompanyResponse?: components.CreateHrisCompanyResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisCompaniesAddResponse$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 HrisCompaniesAddResponse$ { /** @deprecated use `HrisCompaniesAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisCompaniesAddResponse$Outbound` instead. */ type Outbound = HrisCompaniesAddResponse$Outbound; } export declare function hrisCompaniesAddResponseToJSON(hrisCompaniesAddResponse: HrisCompaniesAddResponse): string; export declare function hrisCompaniesAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hriscompaniesadd.d.ts.map