import { Field, META_PATH } from '.' const rootPath = `${META_PATH}.parts` export const TypePart = new Field('Type Code', `${rootPath}.type`) export const CountryPart = new Field('Country Code', `${rootPath}.country`) export const VehicleDetailPart = new Field('Vehicle Detail', `${rootPath}.detail`) export const SerialPart = new Field('Serial Number', `${rootPath}.serial`) export const ChecksumDigitPart = new Field('Checksum Digit', `${rootPath}.checksum`) //TODO add to parser export const KeeperCountryPart = new Field('Keeper Marking (Country)', `${rootPath}.keeper.country`) export const KeeperCompanyPart = new Field('Keeper Marking (Company)', `${rootPath}.keeper.company`) export const KeeperMarkingPart = new Field('Keeper Marking (VKM)', `${rootPath}.keeper.marking`)