WIP jordan
This commit is contained in:
36
app/composables/useLifeQuoteDraft.ts
Normal file
36
app/composables/useLifeQuoteDraft.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
import type { LifeQuoteDraft } from '~/types/life-quote-intake'
|
||||
|
||||
export function emptyLifeQuoteDraft(): LifeQuoteDraft {
|
||||
return {
|
||||
quoteMode: null,
|
||||
segment: null,
|
||||
client: {
|
||||
fullName: '',
|
||||
email: '',
|
||||
phone: '',
|
||||
documentId: '',
|
||||
organizationName: ''
|
||||
},
|
||||
life: {
|
||||
dateOfBirth: '',
|
||||
age: '',
|
||||
gender: '',
|
||||
smoker: false,
|
||||
preexistingConditions: false,
|
||||
preexistingDetails: '',
|
||||
coverageAmount: '',
|
||||
coverageTerm: '',
|
||||
beneficiaryName: '',
|
||||
beneficiaryRelationship: ''
|
||||
},
|
||||
forms: {
|
||||
medicalQuestionnaire: false,
|
||||
beneficiaryDesignation: false,
|
||||
groupCensus: false
|
||||
},
|
||||
solicit: {
|
||||
carrierIds: [],
|
||||
planIds: []
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user