import type { Entity } from '.'; export type CustomEntityFields = { updated: string; name: string; code?: string; externalCode?: string; description?: string; }; export type CustomEntity = Entity<'customentity'> & CustomEntityFields; export type CustomEntityPatch = Partial>;