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 CrmPipelinesDeleteGlobals = { /** * 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 CrmPipelinesDeleteRequest = { /** * 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 CrmPipelinesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Pipeline deleted */ deletePipelineResponse?: components.DeletePipelineResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const CrmPipelinesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type CrmPipelinesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const CrmPipelinesDeleteGlobals$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 CrmPipelinesDeleteGlobals$ { /** @deprecated use `CrmPipelinesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteGlobals$Outbound` instead. */ type Outbound = CrmPipelinesDeleteGlobals$Outbound; } export declare function crmPipelinesDeleteGlobalsToJSON(crmPipelinesDeleteGlobals: CrmPipelinesDeleteGlobals): string; export declare function crmPipelinesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CrmPipelinesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type CrmPipelinesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const CrmPipelinesDeleteRequest$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 CrmPipelinesDeleteRequest$ { /** @deprecated use `CrmPipelinesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteRequest$Outbound` instead. */ type Outbound = CrmPipelinesDeleteRequest$Outbound; } export declare function crmPipelinesDeleteRequestToJSON(crmPipelinesDeleteRequest: CrmPipelinesDeleteRequest): string; export declare function crmPipelinesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CrmPipelinesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type CrmPipelinesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeletePipelineResponse?: components.DeletePipelineResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const CrmPipelinesDeleteResponse$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 CrmPipelinesDeleteResponse$ { /** @deprecated use `CrmPipelinesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CrmPipelinesDeleteResponse$Outbound` instead. */ type Outbound = CrmPipelinesDeleteResponse$Outbound; } export declare function crmPipelinesDeleteResponseToJSON(crmPipelinesDeleteResponse: CrmPipelinesDeleteResponse): string; export declare function crmPipelinesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=crmpipelinesdelete.d.ts.map