/** * create: * - exclude unmutable fields (id, created_at, deleted_at, updated_at) + defined / custm ones * - get the ultimateEntity * - get the ultimateEntityFields * - merge fields with default values to complete empty ones * - * - validate the data with valdiators if enabled * - check that the given fields match with the available fields * update: * - same process as the first one + exclude unmutable fields (id, created_at, deleted_at, updated_at) + defined / custm ones * delete: simply give the id of the document to delete */ /** * /ultimate-entities get ultimate entities, return entities with schema * /ultimate-entities/:ultimate-entitiy-id get ultimate entity schema, return entitiy with schema * /ultimate-entities/:ultimate-entitiy-id/documents get ultimate entity schema documents */ import { Router } from "express"; declare const _default: (adminRouter: Router) => void; export default _default;