Skip to content

Commit

Permalink
feat: remove status NotPublic from PublicationStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
ReidyT committed Jul 24, 2024
1 parent a70f295 commit 050b080
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/itemPublished/itemPublished.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,21 @@ export interface PackedItemPublished {
}

export enum PublicationStatus {
/** Indicates that the item is not published. */
Unpublished = 'unpublished',
/** Indicates that the item is valid and published. */
Published = 'published',
/** Indicates that the item is published because it's a child of a published parent. */
PublishedChildren = 'publishedChildren',
/** Indicates that the item is valid and ready to be published. */
ReadyToPublish = 'readyToPublish',
/** Indicates that the item is currently subject to validation checks. */
Pending = 'pending',
/** Indicates that the item failed validation and cannot be published. */
Invalid = 'invalid',
/** Indicates that the item is published but the validation is outdated. */
Outdated = 'outdated',
NotPublic = 'notPublic',
/** Indicates that the item's type is not authorised for publication. */
ItemTypeNotAllowed = 'itemTypeNotAllowed',
}

Expand Down

0 comments on commit 050b080

Please sign in to comment.