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 AccountingDepartmentsUpdateGlobals = { /** * 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 AccountingDepartmentsUpdateRequest = { /** * 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; accountingDepartment: components.AccountingDepartmentInput; }; export type AccountingDepartmentsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Department */ updateAccountingDepartmentResponse?: components.UpdateAccountingDepartmentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingDepartmentsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartmentsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingDepartmentsUpdateGlobals$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 AccountingDepartmentsUpdateGlobals$ { /** @deprecated use `AccountingDepartmentsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateGlobals$Outbound` instead. */ type Outbound = AccountingDepartmentsUpdateGlobals$Outbound; } export declare function accountingDepartmentsUpdateGlobalsToJSON(accountingDepartmentsUpdateGlobals: AccountingDepartmentsUpdateGlobals): string; export declare function accountingDepartmentsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingDepartmentsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartmentsUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; AccountingDepartment: components.AccountingDepartmentInput$Outbound; }; /** @internal */ export declare const AccountingDepartmentsUpdateRequest$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 AccountingDepartmentsUpdateRequest$ { /** @deprecated use `AccountingDepartmentsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateRequest$Outbound` instead. */ type Outbound = AccountingDepartmentsUpdateRequest$Outbound; } export declare function accountingDepartmentsUpdateRequestToJSON(accountingDepartmentsUpdateRequest: AccountingDepartmentsUpdateRequest): string; export declare function accountingDepartmentsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingDepartmentsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartmentsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateAccountingDepartmentResponse?: components.UpdateAccountingDepartmentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingDepartmentsUpdateResponse$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 AccountingDepartmentsUpdateResponse$ { /** @deprecated use `AccountingDepartmentsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsUpdateResponse$Outbound` instead. */ type Outbound = AccountingDepartmentsUpdateResponse$Outbound; } export declare function accountingDepartmentsUpdateResponseToJSON(accountingDepartmentsUpdateResponse: AccountingDepartmentsUpdateResponse): string; export declare function accountingDepartmentsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingdepartmentsupdate.d.ts.map