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 AccountingTrackingCategoriesUpdateGlobals = { /** * 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 AccountingTrackingCategoriesUpdateRequest = { /** * 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; trackingCategory: components.TrackingCategoryInput; }; export type AccountingTrackingCategoriesUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Tracking category updated */ updateTrackingCategoryResponse?: components.UpdateTrackingCategoryResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesUpdateGlobals$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 AccountingTrackingCategoriesUpdateGlobals$ { /** @deprecated use `AccountingTrackingCategoriesUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateGlobals$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesUpdateGlobals$Outbound; } export declare function accountingTrackingCategoriesUpdateGlobalsToJSON(accountingTrackingCategoriesUpdateGlobals: AccountingTrackingCategoriesUpdateGlobals): string; export declare function accountingTrackingCategoriesUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingTrackingCategoriesUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; TrackingCategory: components.TrackingCategoryInput$Outbound; }; /** @internal */ export declare const AccountingTrackingCategoriesUpdateRequest$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 AccountingTrackingCategoriesUpdateRequest$ { /** @deprecated use `AccountingTrackingCategoriesUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateRequest$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesUpdateRequest$Outbound; } export declare function accountingTrackingCategoriesUpdateRequestToJSON(accountingTrackingCategoriesUpdateRequest: AccountingTrackingCategoriesUpdateRequest): string; export declare function accountingTrackingCategoriesUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingTrackingCategoriesUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateTrackingCategoryResponse?: components.UpdateTrackingCategoryResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesUpdateResponse$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 AccountingTrackingCategoriesUpdateResponse$ { /** @deprecated use `AccountingTrackingCategoriesUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesUpdateResponse$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesUpdateResponse$Outbound; } export declare function accountingTrackingCategoriesUpdateResponseToJSON(accountingTrackingCategoriesUpdateResponse: AccountingTrackingCategoriesUpdateResponse): string; export declare function accountingTrackingCategoriesUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingtrackingcategoriesupdate.d.ts.map