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 AccountingLedgerAccountsUpdateGlobals = { /** * 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 AccountingLedgerAccountsUpdateRequest = { /** * 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; ledgerAccount: components.LedgerAccountInput; }; export type AccountingLedgerAccountsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * LedgerAccount updated */ updateLedgerAccountResponse?: components.UpdateLedgerAccountResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingLedgerAccountsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingLedgerAccountsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingLedgerAccountsUpdateGlobals$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 AccountingLedgerAccountsUpdateGlobals$ { /** @deprecated use `AccountingLedgerAccountsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateGlobals$Outbound` instead. */ type Outbound = AccountingLedgerAccountsUpdateGlobals$Outbound; } export declare function accountingLedgerAccountsUpdateGlobalsToJSON(accountingLedgerAccountsUpdateGlobals: AccountingLedgerAccountsUpdateGlobals): string; export declare function accountingLedgerAccountsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingLedgerAccountsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingLedgerAccountsUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; LedgerAccount: components.LedgerAccountInput$Outbound; }; /** @internal */ export declare const AccountingLedgerAccountsUpdateRequest$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 AccountingLedgerAccountsUpdateRequest$ { /** @deprecated use `AccountingLedgerAccountsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateRequest$Outbound` instead. */ type Outbound = AccountingLedgerAccountsUpdateRequest$Outbound; } export declare function accountingLedgerAccountsUpdateRequestToJSON(accountingLedgerAccountsUpdateRequest: AccountingLedgerAccountsUpdateRequest): string; export declare function accountingLedgerAccountsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingLedgerAccountsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingLedgerAccountsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateLedgerAccountResponse?: components.UpdateLedgerAccountResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingLedgerAccountsUpdateResponse$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 AccountingLedgerAccountsUpdateResponse$ { /** @deprecated use `AccountingLedgerAccountsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingLedgerAccountsUpdateResponse$Outbound` instead. */ type Outbound = AccountingLedgerAccountsUpdateResponse$Outbound; } export declare function accountingLedgerAccountsUpdateResponseToJSON(accountingLedgerAccountsUpdateResponse: AccountingLedgerAccountsUpdateResponse): string; export declare function accountingLedgerAccountsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingledgeraccountsupdate.d.ts.map