export type PipelineName = | "downsample-scan" | "ingest-scan" | "convert-ifc-and-process-scans" | "generate-ifc" | "create-and-process-svf" | "download-and-zip-project-files-folder" | "pipeline-steps" | "ingest-external-photo-project-data" | "ingest-project-file" | "convert-e57-to-las" | "convert-and-process-e57" | "ingest-las-or-e57" | "generate-bcf" | "compute-qa-statistics" | "create-project-report" | "compute-and-save-clashes" | "compute-and-post-mv-design-intent" | "generate-batch-ifc" export enum Pipelines { INGEST_PROJECT_FILE = "ingest-project-file", PIPELINE_STEPS = "pipeline-steps", DOWNSAMPLE_SCAN = "downsample-scan", INGEST_SCAN = "ingest-scan", CONVERT_IFC_AND_PROCESS_SCANS = "convert-ifc-and-process-scans", DOWNLOAD_AND_ZIP_PROJECT_FILES_FOLDER = "download-and-zip-project-files-folder", INGEST_EXTERNAL_PHOTO_PROJECT_DATA = "ingest-external-photo-project-data", GENERATE_IFC = "generate-ifc", CREATE_AND_PROCESS_SVF = "create-and-process-svf", CONVERT_E57_TO_LAS = "convert-e57-to-las", CONVERT_AND_PROCESS_E57 = "convert-and-process-e57", INGEST_LAS_OR_E57 = "ingest-las-or-e57", GENERATE_BCF = "generate-bcf", COMPUTE_QA_STATISTICS = "compute-qa-statistics", PROJECT_EXPORT_REPORT = "create-project-report", COMPUTE_AND_SAVE_CLASHES = "compute-and-save-clashes", COMPUTE_AND_POST_MV_DESIGN_INTENT = "compute-and-post-mv-design-intent", COMPUTE_AND_POST_MV_PROGRESS_ANALYSIS = "compute-and-post-mv-progress-analysis", GENERATE_BATCH_IFC="generate-batch-ifc" } export default Pipelines;