WIP jordan

This commit is contained in:
Jordan Weingarten
2026-04-16 11:11:44 -05:00
parent ff2d7b18b5
commit 67482f6629
163 changed files with 50627 additions and 728 deletions

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