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 AccountingJournalEntriesDeleteGlobals = { /** * 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 AccountingJournalEntriesDeleteRequest = { /** * 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 AccountingJournalEntriesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * JournalEntries */ deleteJournalEntryResponse?: components.DeleteJournalEntryResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingJournalEntriesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingJournalEntriesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingJournalEntriesDeleteGlobals$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 AccountingJournalEntriesDeleteGlobals$ { /** @deprecated use `AccountingJournalEntriesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteGlobals$Outbound` instead. */ type Outbound = AccountingJournalEntriesDeleteGlobals$Outbound; } export declare function accountingJournalEntriesDeleteGlobalsToJSON(accountingJournalEntriesDeleteGlobals: AccountingJournalEntriesDeleteGlobals): string; export declare function accountingJournalEntriesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingJournalEntriesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingJournalEntriesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingJournalEntriesDeleteRequest$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 AccountingJournalEntriesDeleteRequest$ { /** @deprecated use `AccountingJournalEntriesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteRequest$Outbound` instead. */ type Outbound = AccountingJournalEntriesDeleteRequest$Outbound; } export declare function accountingJournalEntriesDeleteRequestToJSON(accountingJournalEntriesDeleteRequest: AccountingJournalEntriesDeleteRequest): string; export declare function accountingJournalEntriesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingJournalEntriesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingJournalEntriesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteJournalEntryResponse?: components.DeleteJournalEntryResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingJournalEntriesDeleteResponse$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 AccountingJournalEntriesDeleteResponse$ { /** @deprecated use `AccountingJournalEntriesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingJournalEntriesDeleteResponse$Outbound` instead. */ type Outbound = AccountingJournalEntriesDeleteResponse$Outbound; } export declare function accountingJournalEntriesDeleteResponseToJSON(accountingJournalEntriesDeleteResponse: AccountingJournalEntriesDeleteResponse): string; export declare function accountingJournalEntriesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingjournalentriesdelete.d.ts.map