import { BackendSchematics } from "./backend/add-artifacts/backend-schematics"; import { FrontendSchematics } from "./frontend/add-artifacts/frontend-schematics"; import { JeovaSchematicsEnum } from "./shared/jeova-schematics.enum"; export const routerRequiredParamMap = new Map([ [JeovaSchematicsEnum.NEW_PROJECT, 'prjid'], [JeovaSchematicsEnum.NEW_BACKEND, 'prjid'], [JeovaSchematicsEnum.NEW_FRONTEND, 'prjid'], [FrontendSchematics.UC, 'modelid'], [FrontendSchematics.ALL_UCS_FRONTEND, 'prjid'], [BackendSchematics.UC, 'prjid'], [BackendSchematics.ALL_UCS_BACKEND, 'prjid'], [BackendSchematics.CONTROLLER, 'modelid'], [BackendSchematics.CREATE_TABLE, 'modelid'], [BackendSchematics.DTO, 'modelid'], [BackendSchematics.ENTITY, 'modelid'], [BackendSchematics.ENUM, 'enumdefid'], [BackendSchematics.MAPPER, 'modelid'], [BackendSchematics.REPOSITORY, 'modelid'], [BackendSchematics.SERVICE, 'modelid'], [BackendSchematics.INSERT_MENU, 'modelid'], [BackendSchematics.CREATE_TABLE_MM, 'modelrelid'], [FrontendSchematics.SERVICE, 'modelid'], [FrontendSchematics.CLASS, 'modelid'], [FrontendSchematics.ENUM, 'enumdefid'], [FrontendSchematics.APPFILTERABLE, 'modelid'], [FrontendSchematics.APPFORMABLE, 'modelid'], [FrontendSchematics.APPTABLEABLE, 'modelid'], [FrontendSchematics.COMPONENT, 'modelid'], [FrontendSchematics.UPDATEDIALOG, 'modelid'], [FrontendSchematics.UPDATEPAGE, 'modelid'], [FrontendSchematics.E2E_DUMMY_DATA_FACTORY, 'modelid'], [FrontendSchematics.E2E_UPDATE_PAGE, 'modelid'], [FrontendSchematics.E2E_UPDATE_DIALOG, 'modelid'], [FrontendSchematics.E2E_CHILD_UPDATE_DIALOG, 'modelrelid'], ]); export const P2 = '\t\t'; export const P3 = '\t\t\t'; export const P4 = '\t\t\t\t'; export const P5 = '\t\t\t\t\t';