35 lines
623 B
TypeScript
35 lines
623 B
TypeScript
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'
|
|
}
|