WIP jordan
This commit is contained in:
34
app/data/taxonomy.ts
Normal file
34
app/data/taxonomy.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
export const INSURER_SLUGS = [
|
||||
'acerta',
|
||||
'assa',
|
||||
'ancon',
|
||||
'fedpa',
|
||||
'mapfre',
|
||||
'optima',
|
||||
'palig'
|
||||
] as const
|
||||
|
||||
export type InsurerSlug = (typeof INSURER_SLUGS)[number]
|
||||
|
||||
export const PRODUCT_LINE_SLUGS = [
|
||||
'life',
|
||||
'health_local',
|
||||
'health_international',
|
||||
'auto_full_coverage',
|
||||
'auto_dat_liability',
|
||||
'home',
|
||||
'general_liability',
|
||||
'any'
|
||||
] as const
|
||||
|
||||
export type ProductLineSlug = (typeof PRODUCT_LINE_SLUGS)[number]
|
||||
|
||||
export const INSURER_LABEL: Record<string, string> = {
|
||||
acerta: 'ACERTA',
|
||||
assa: 'ASSA',
|
||||
ancon: 'ANCON',
|
||||
fedpa: 'FEDPA',
|
||||
mapfre: 'MAPFRE',
|
||||
optima: 'OPTIMA',
|
||||
palig: 'PALIG'
|
||||
}
|
||||
Reference in New Issue
Block a user