Files
policy-ui/app/composables/useHealthQuoteDraft.ts
Jordan Weingarten 67482f6629 WIP jordan
2026-04-16 11:11:44 -05:00

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: []
}
}
}