WIP jordan
This commit is contained in:
33
app/composables/useHealthQuoteDraft.ts
Normal file
33
app/composables/useHealthQuoteDraft.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
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: []
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user