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 IssueTrackingCollectionTicketsUpdateGlobals = { /** * 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 IssueTrackingCollectionTicketsUpdateRequest = { /** * ID of the ticket you are acting upon. */ ticketId: 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; /** * The collection ID */ collectionId: string; ticket: components.TicketInput; }; export type IssueTrackingCollectionTicketsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Update a Ticket */ updateTicketResponse?: components.UpdateTicketResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateGlobals$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 IssueTrackingCollectionTicketsUpdateGlobals$ { /** @deprecated use `IssueTrackingCollectionTicketsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateGlobals$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsUpdateGlobals$Outbound; } export declare function issueTrackingCollectionTicketsUpdateGlobalsToJSON(issueTrackingCollectionTicketsUpdateGlobals: IssueTrackingCollectionTicketsUpdateGlobals): string; export declare function issueTrackingCollectionTicketsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsUpdateRequest$Outbound = { ticket_id: string; serviceId?: string | undefined; raw: boolean; collection_id: string; Ticket: components.TicketInput$Outbound; }; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateRequest$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 IssueTrackingCollectionTicketsUpdateRequest$ { /** @deprecated use `IssueTrackingCollectionTicketsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateRequest$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsUpdateRequest$Outbound; } export declare function issueTrackingCollectionTicketsUpdateRequestToJSON(issueTrackingCollectionTicketsUpdateRequest: IssueTrackingCollectionTicketsUpdateRequest): string; export declare function issueTrackingCollectionTicketsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateTicketResponse?: components.UpdateTicketResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsUpdateResponse$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 IssueTrackingCollectionTicketsUpdateResponse$ { /** @deprecated use `IssueTrackingCollectionTicketsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsUpdateResponse$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsUpdateResponse$Outbound; } export declare function issueTrackingCollectionTicketsUpdateResponseToJSON(issueTrackingCollectionTicketsUpdateResponse: IssueTrackingCollectionTicketsUpdateResponse): string; export declare function issueTrackingCollectionTicketsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuetrackingcollectionticketsupdate.d.ts.map