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 AtsApplicationsOneGlobals = { /** * 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 AtsApplicationsOneRequest = { /** * 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 AtsApplicationsOneResponse = { httpMeta: components.HTTPMetadata; /** * Applications */ getApplicationResponse?: components.GetApplicationResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicationsOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsOneGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicationsOneGlobals$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 AtsApplicationsOneGlobals$ { /** @deprecated use `AtsApplicationsOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneGlobals$Outbound` instead. */ type Outbound = AtsApplicationsOneGlobals$Outbound; } export declare function atsApplicationsOneGlobalsToJSON(atsApplicationsOneGlobals: AtsApplicationsOneGlobals): string; export declare function atsApplicationsOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsOneRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsOneRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AtsApplicationsOneRequest$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 AtsApplicationsOneRequest$ { /** @deprecated use `AtsApplicationsOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneRequest$Outbound` instead. */ type Outbound = AtsApplicationsOneRequest$Outbound; } export declare function atsApplicationsOneRequestToJSON(atsApplicationsOneRequest: AtsApplicationsOneRequest): string; export declare function atsApplicationsOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsOneResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetApplicationResponse?: components.GetApplicationResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicationsOneResponse$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 AtsApplicationsOneResponse$ { /** @deprecated use `AtsApplicationsOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsOneResponse$Outbound` instead. */ type Outbound = AtsApplicationsOneResponse$Outbound; } export declare function atsApplicationsOneResponseToJSON(atsApplicationsOneResponse: AtsApplicationsOneResponse): string; export declare function atsApplicationsOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicationsone.d.ts.map