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 AtsApplicationsAddGlobals = { /** * 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 AtsApplicationsAddRequest = { /** * 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; application: components.ApplicationInput; }; export type AtsApplicationsAddResponse = { httpMeta: components.HTTPMetadata; /** * Applications */ createApplicationResponse?: components.CreateApplicationResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicationsAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicationsAddGlobals$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 AtsApplicationsAddGlobals$ { /** @deprecated use `AtsApplicationsAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddGlobals$Outbound` instead. */ type Outbound = AtsApplicationsAddGlobals$Outbound; } export declare function atsApplicationsAddGlobalsToJSON(atsApplicationsAddGlobals: AtsApplicationsAddGlobals): string; export declare function atsApplicationsAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsAddRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; Application: components.ApplicationInput$Outbound; }; /** @internal */ export declare const AtsApplicationsAddRequest$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 AtsApplicationsAddRequest$ { /** @deprecated use `AtsApplicationsAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddRequest$Outbound` instead. */ type Outbound = AtsApplicationsAddRequest$Outbound; } export declare function atsApplicationsAddRequestToJSON(atsApplicationsAddRequest: AtsApplicationsAddRequest): string; export declare function atsApplicationsAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsAddResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateApplicationResponse?: components.CreateApplicationResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicationsAddResponse$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 AtsApplicationsAddResponse$ { /** @deprecated use `AtsApplicationsAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAddResponse$Outbound` instead. */ type Outbound = AtsApplicationsAddResponse$Outbound; } export declare function atsApplicationsAddResponseToJSON(atsApplicationsAddResponse: AtsApplicationsAddResponse): string; export declare function atsApplicationsAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicationsadd.d.ts.map