34 lines
681 B
TypeScript
34 lines
681 B
TypeScript
import type { HealthQuoteDraft } from '~/types/health-quote-intake'
|
|
|
|
export function emptyHealthQuoteDraft(): HealthQuoteDraft {
|
|
return {
|
|
quoteMode: null,
|
|
segment: null,
|
|
client: {
|
|
fullName: '',
|
|
email: '',
|
|
phone: '',
|
|
documentId: '',
|
|
organizationName: ''
|
|
},
|
|
health: {
|
|
coverageArea: '',
|
|
networkTier: '',
|
|
deductible: '',
|
|
dateOfBirth: '',
|
|
age: '',
|
|
preexistingConditions: false,
|
|
preexistingDetails: ''
|
|
},
|
|
forms: {
|
|
medicalQuestionnaire: false,
|
|
beneficiaryDesignation: false,
|
|
groupCensus: false
|
|
},
|
|
solicit: {
|
|
carrierIds: [],
|
|
planIds: []
|
|
}
|
|
}
|
|
}
|