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 AccountingTrackingCategoriesDeleteGlobals = { /** * 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 AccountingTrackingCategoriesDeleteRequest = { /** * 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 AccountingTrackingCategoriesDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Tracking category deleted */ deleteTrackingCategoryResponse?: components.DeleteTrackingCategoryResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesDeleteGlobals$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 AccountingTrackingCategoriesDeleteGlobals$ { /** @deprecated use `AccountingTrackingCategoriesDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteGlobals$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesDeleteGlobals$Outbound; } export declare function accountingTrackingCategoriesDeleteGlobalsToJSON(accountingTrackingCategoriesDeleteGlobals: AccountingTrackingCategoriesDeleteGlobals): string; export declare function accountingTrackingCategoriesDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingTrackingCategoriesDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingTrackingCategoriesDeleteRequest$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 AccountingTrackingCategoriesDeleteRequest$ { /** @deprecated use `AccountingTrackingCategoriesDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteRequest$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesDeleteRequest$Outbound; } export declare function accountingTrackingCategoriesDeleteRequestToJSON(accountingTrackingCategoriesDeleteRequest: AccountingTrackingCategoriesDeleteRequest): string; export declare function accountingTrackingCategoriesDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingTrackingCategoriesDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingTrackingCategoriesDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteTrackingCategoryResponse?: components.DeleteTrackingCategoryResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingTrackingCategoriesDeleteResponse$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 AccountingTrackingCategoriesDeleteResponse$ { /** @deprecated use `AccountingTrackingCategoriesDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingTrackingCategoriesDeleteResponse$Outbound` instead. */ type Outbound = AccountingTrackingCategoriesDeleteResponse$Outbound; } export declare function accountingTrackingCategoriesDeleteResponseToJSON(accountingTrackingCategoriesDeleteResponse: AccountingTrackingCategoriesDeleteResponse): string; export declare function accountingTrackingCategoriesDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingtrackingcategoriesdelete.d.ts.map