Source

types/investigation/enums.js

/**
 * Investigation-specific Enums
 *
 * This file contains all enums related to investigations.
 */
/**
 * Investigation Status Enum
 * @category Types
 * @enum {string}
 */
export var InvestigationStatus;
(function (InvestigationStatus) {
    InvestigationStatus["DRAFT_INCOMPLETE"] = "draft_incomplete";
    InvestigationStatus["DRAFT_NON_CONTRADICTORY_COMPLETE"] = "draft_non_contradictory_complete";
    InvestigationStatus["DRAFT_CONTRADICTORY_COMPLETE"] = "draft_contradictory_complete";
    InvestigationStatus["IN_DEVELOPMENT"] = "in_development";
    InvestigationStatus["PUBLISHED"] = "published";
    InvestigationStatus["UNPUBLISHED"] = "unpublished";
})(InvestigationStatus || (InvestigationStatus = {}));