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 AccountingSuppliersDeleteGlobals = { /** * 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 AccountingSuppliersDeleteRequest = { /** * 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 AccountingSuppliersDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Supplier deleted */ deleteSupplierResponse?: components.DeleteSupplierResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingSuppliersDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingSuppliersDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingSuppliersDeleteGlobals$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 AccountingSuppliersDeleteGlobals$ { /** @deprecated use `AccountingSuppliersDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteGlobals$Outbound` instead. */ type Outbound = AccountingSuppliersDeleteGlobals$Outbound; } export declare function accountingSuppliersDeleteGlobalsToJSON(accountingSuppliersDeleteGlobals: AccountingSuppliersDeleteGlobals): string; export declare function accountingSuppliersDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingSuppliersDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingSuppliersDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingSuppliersDeleteRequest$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 AccountingSuppliersDeleteRequest$ { /** @deprecated use `AccountingSuppliersDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteRequest$Outbound` instead. */ type Outbound = AccountingSuppliersDeleteRequest$Outbound; } export declare function accountingSuppliersDeleteRequestToJSON(accountingSuppliersDeleteRequest: AccountingSuppliersDeleteRequest): string; export declare function accountingSuppliersDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingSuppliersDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingSuppliersDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteSupplierResponse?: components.DeleteSupplierResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingSuppliersDeleteResponse$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 AccountingSuppliersDeleteResponse$ { /** @deprecated use `AccountingSuppliersDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingSuppliersDeleteResponse$Outbound` instead. */ type Outbound = AccountingSuppliersDeleteResponse$Outbound; } export declare function accountingSuppliersDeleteResponseToJSON(accountingSuppliersDeleteResponse: AccountingSuppliersDeleteResponse): string; export declare function accountingSuppliersDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingsuppliersdelete.d.ts.map