import * as z from "zod"; import { ActorV2, ActorV2$Outbound } from "./actorv2.js"; import { IncidentStatusV1, IncidentStatusV1$Outbound } from "./incidentstatusv1.js"; import { SeverityV2, SeverityV2$Outbound } from "./severityv2.js"; export type IncidentUpdateV2 = { /** * When the update was created */ createdAt: Date; /** * Unique identifier for this incident update */ id: string; /** * The incident this update relates to */ incidentId: string; /** * The ID of the incident that this incident was merged into, if it was merged in to another incident */ mergedIntoIncidentId?: string | undefined; /** * Message that explains the context behind the update */ message?: string | undefined; newIncidentStatus: IncidentStatusV1; newSeverity?: SeverityV2 | undefined; updater: ActorV2; }; /** @internal */ export declare const IncidentUpdateV2$inboundSchema: z.ZodType; /** @internal */ export type IncidentUpdateV2$Outbound = { created_at: string; id: string; incident_id: string; merged_into_incident_id?: string | undefined; message?: string | undefined; new_incident_status: IncidentStatusV1$Outbound; new_severity?: SeverityV2$Outbound | undefined; updater: ActorV2$Outbound; }; /** @internal */ export declare const IncidentUpdateV2$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 IncidentUpdateV2$ { /** @deprecated use `IncidentUpdateV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentUpdateV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentUpdateV2$Outbound` instead. */ type Outbound = IncidentUpdateV2$Outbound; } //# sourceMappingURL=incidentupdatev2.d.ts.map