s-private API Documentation - v3.8.1
    Preparing search index...
    ExportedStatus: ZodObject<
        {
            exportedAt: $ZodBranded<ZodDate, "ExportedAt", "out">;
            status: ZodLiteral<"EXPORTED">;
        },
        $strip,
    > = ...

    Zod schema for the EXPORTED status with timestamp.

    Represents the published state of content entities. Includes both the status literal and the export timestamp.

    const exported = ExportedStatus.parse({
    status: "EXPORTED",
    exportedAt: new Date()
    });