/** * @name PublicationStatus * @description The lifecycle status of an artifact. * @description draft | active | retired | unknown * @see PublicationStatus * @version R4 * @author Claudia Alarcón Lazo */ export type PublicationStatusType = 'draft' | 'active' | 'retired' | 'unknown';