import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * What category of status it is. All statuses apart from live (renamed in the app to Active) and learning (renamed in the app to Post-incident) are managed by incident.io and cannot be configured */ export declare const Category: { readonly Triage: "triage"; readonly Declined: "declined"; readonly Merged: "merged"; readonly Canceled: "canceled"; readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; readonly Paused: "paused"; }; /** * What category of status it is. All statuses apart from live (renamed in the app to Active) and learning (renamed in the app to Post-incident) are managed by incident.io and cannot be configured */ export type Category = ClosedEnum; export type IncidentStatusV1 = { /** * What category of status it is. All statuses apart from live (renamed in the app to Active) and learning (renamed in the app to Post-incident) are managed by incident.io and cannot be configured */ category: Category; createdAt: Date; /** * Rich text description of the incident status */ description: string; /** * Unique ID of this incident status */ id: string; /** * Unique name of this status */ name: string; /** * Order of this incident status */ rank: number; updatedAt: Date; }; /** @internal */ export declare const Category$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Category$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Category$ { /** @deprecated use `Category$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Triage: "triage"; readonly Declined: "declined"; readonly Merged: "merged"; readonly Canceled: "canceled"; readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; readonly Paused: "paused"; }>; /** @deprecated use `Category$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Triage: "triage"; readonly Declined: "declined"; readonly Merged: "merged"; readonly Canceled: "canceled"; readonly Live: "live"; readonly Learning: "learning"; readonly Closed: "closed"; readonly Paused: "paused"; }>; } /** @internal */ export declare const IncidentStatusV1$inboundSchema: z.ZodType; /** @internal */ export type IncidentStatusV1$Outbound = { category: string; created_at: string; description: string; id: string; name: string; rank: number; updated_at: string; }; /** @internal */ export declare const IncidentStatusV1$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 IncidentStatusV1$ { /** @deprecated use `IncidentStatusV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IncidentStatusV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IncidentStatusV1$Outbound` instead. */ type Outbound = IncidentStatusV1$Outbound; } //# sourceMappingURL=incidentstatusv1.d.ts.map