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 AccountingCustomersDeleteGlobals = { /** * 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 AccountingCustomersDeleteRequest = { /** * 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 AccountingCustomersDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Customers */ deleteCustomerResponse?: components.DeleteCustomerResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingCustomersDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingCustomersDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingCustomersDeleteGlobals$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 AccountingCustomersDeleteGlobals$ { /** @deprecated use `AccountingCustomersDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteGlobals$Outbound` instead. */ type Outbound = AccountingCustomersDeleteGlobals$Outbound; } export declare function accountingCustomersDeleteGlobalsToJSON(accountingCustomersDeleteGlobals: AccountingCustomersDeleteGlobals): string; export declare function accountingCustomersDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingCustomersDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingCustomersDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingCustomersDeleteRequest$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 AccountingCustomersDeleteRequest$ { /** @deprecated use `AccountingCustomersDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteRequest$Outbound` instead. */ type Outbound = AccountingCustomersDeleteRequest$Outbound; } export declare function accountingCustomersDeleteRequestToJSON(accountingCustomersDeleteRequest: AccountingCustomersDeleteRequest): string; export declare function accountingCustomersDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingCustomersDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingCustomersDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteCustomerResponse?: components.DeleteCustomerResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingCustomersDeleteResponse$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 AccountingCustomersDeleteResponse$ { /** @deprecated use `AccountingCustomersDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingCustomersDeleteResponse$Outbound` instead. */ type Outbound = AccountingCustomersDeleteResponse$Outbound; } export declare function accountingCustomersDeleteResponseToJSON(accountingCustomersDeleteResponse: AccountingCustomersDeleteResponse): string; export declare function accountingCustomersDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingcustomersdelete.d.ts.map