@mychoice/mychoice-sdk-store 2.2.10 → 2.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
1
  export * from './types';
2
2
  export * from './utils';
3
3
  export * from './useAutofillCarForm';
4
+ export * from './useAutofillLifeForm';
@@ -74,3 +74,29 @@ export interface MappedAutofillData {
74
74
  postalData: any;
75
75
  configData: any;
76
76
  }
77
+ export interface LifeAutofillQuoterInfo {
78
+ phone: number;
79
+ last_name: string;
80
+ first_name: string;
81
+ utm_source: string | null;
82
+ recalculate: boolean;
83
+ utm_campaign: string | null;
84
+ }
85
+ export interface LifeAutofillData {
86
+ Sex: string;
87
+ uuid: string;
88
+ City: string;
89
+ State: string;
90
+ Health: string;
91
+ Smoker: string;
92
+ Birthday: string;
93
+ ModeUsed: string;
94
+ email_to: string;
95
+ BirthYear: string;
96
+ BirthMonth: string;
97
+ FaceAmount: number;
98
+ IsUsaQuote: boolean;
99
+ PostalCode: string;
100
+ NewCategory: string;
101
+ quoter_info: LifeAutofillQuoterInfo;
102
+ }
@@ -0,0 +1,8 @@
1
+ interface AutofillOptions {
2
+ onComplete?: () => void;
3
+ }
4
+ /**
5
+ * Hook to initialize life insurance form with autofill data from query parameter
6
+ */
7
+ export declare const useAutofillLifeForm: (options?: AutofillOptions) => void;
8
+ export {};
@@ -92,3 +92,51 @@ export declare const mapToDriverState: (autofillData: AutofillData) => {
92
92
  export declare const mapToConfigState: (autofillData: AutofillData) => {
93
93
  province: string;
94
94
  };
95
+ /**
96
+ * Parse URL-encoded JSON from query parameter for life insurance
97
+ */
98
+ export declare const parseLifeAutofillParam: (urlEncodedJson: string) => any;
99
+ /**
100
+ * Get province code from state number
101
+ */
102
+ export declare const getProvinceCodeFromState: (stateNumber: string) => string;
103
+ /**
104
+ * Map life autofill data to coverage state format
105
+ */
106
+ export declare const mapToLifeCoverageState: (autofillData: any) => {
107
+ province: string;
108
+ type: any;
109
+ coverage: string;
110
+ postalCode: any;
111
+ city: any;
112
+ };
113
+ /**
114
+ * Map life autofill data to applicant state format
115
+ */
116
+ export declare const mapToLifeApplicantState: (autofillData: any) => {
117
+ birthYear: any;
118
+ birthMonth: any;
119
+ birthDay: any;
120
+ gender: any;
121
+ smoker: boolean;
122
+ emailTo: {
123
+ email: any;
124
+ };
125
+ quoterInfo: {
126
+ firstName: any;
127
+ lastName: any;
128
+ phone: string;
129
+ utmSource: any;
130
+ utmCampaign: any;
131
+ };
132
+ };
133
+ /**
134
+ * Map life autofill data to postal state format
135
+ */
136
+ export declare const mapToLifePostalState: (autofillData: any) => {
137
+ postalCode: any;
138
+ provinceCode: string;
139
+ provinceName: string;
140
+ city: any;
141
+ locationIndex: string;
142
+ };
package/dist/esm/index.js CHANGED
@@ -6823,6 +6823,83 @@ const mapToConfigState = (autofillData) => {
6823
6823
  province: autofillData.province_code || '',
6824
6824
  };
6825
6825
  };
6826
+ // Life insurance autofill utilities
6827
+ // State number to province code mapping (reverse of stateMapper in LifeQuoteDataHandler)
6828
+ const STATE_TO_PROVINCE_CODE_MAP = {
6829
+ '1': 'AB',
6830
+ '2': 'BC',
6831
+ '3': 'MB',
6832
+ '4': 'NB',
6833
+ '5': 'NF',
6834
+ '6': 'NS',
6835
+ '7': 'NT',
6836
+ '9': 'ON',
6837
+ '10': 'PE',
6838
+ '11': 'QC',
6839
+ '12': 'SK',
6840
+ '13': 'YT',
6841
+ };
6842
+ /**
6843
+ * Parse URL-encoded JSON from query parameter for life insurance
6844
+ */
6845
+ const parseLifeAutofillParam = (urlEncodedJson) => {
6846
+ const decoded = decodeURIComponent(urlEncodedJson);
6847
+ return JSON.parse(decoded);
6848
+ };
6849
+ /**
6850
+ * Get province code from state number
6851
+ */
6852
+ const getProvinceCodeFromState = (stateNumber) => {
6853
+ return STATE_TO_PROVINCE_CODE_MAP[stateNumber] || '';
6854
+ };
6855
+ /**
6856
+ * Map life autofill data to coverage state format
6857
+ */
6858
+ const mapToLifeCoverageState = (autofillData) => {
6859
+ const provinceCode = getProvinceCodeFromState(autofillData.State || '');
6860
+ return {
6861
+ province: provinceCode,
6862
+ type: autofillData.NewCategory || '',
6863
+ coverage: String(autofillData.FaceAmount || ''),
6864
+ postalCode: autofillData.PostalCode || '',
6865
+ city: autofillData.City || '',
6866
+ };
6867
+ };
6868
+ /**
6869
+ * Map life autofill data to applicant state format
6870
+ */
6871
+ const mapToLifeApplicantState = (autofillData) => {
6872
+ return {
6873
+ birthYear: autofillData.BirthYear || '',
6874
+ birthMonth: autofillData.BirthMonth || '',
6875
+ birthDay: autofillData.Birthday || '',
6876
+ gender: autofillData.Sex || 'M',
6877
+ smoker: autofillData.Smoker === 'Y',
6878
+ emailTo: {
6879
+ email: autofillData.email_to || '',
6880
+ },
6881
+ quoterInfo: {
6882
+ firstName: autofillData.quoter_info?.first_name || '',
6883
+ lastName: autofillData.quoter_info?.last_name || '',
6884
+ phone: autofillData.quoter_info?.phone ? String(autofillData.quoter_info.phone) : '',
6885
+ utmSource: autofillData.quoter_info?.utm_source || '',
6886
+ utmCampaign: autofillData.quoter_info?.utm_campaign || '',
6887
+ },
6888
+ };
6889
+ };
6890
+ /**
6891
+ * Map life autofill data to postal state format
6892
+ */
6893
+ const mapToLifePostalState = (autofillData) => {
6894
+ const provinceCode = getProvinceCodeFromState(autofillData.State || '');
6895
+ return {
6896
+ postalCode: autofillData.PostalCode || '',
6897
+ provinceCode,
6898
+ provinceName: getProvinceName(provinceCode),
6899
+ city: autofillData.City || '',
6900
+ locationIndex: '',
6901
+ };
6902
+ };
6826
6903
 
6827
6904
  /**
6828
6905
  * Hook to initialize car insurance form with autofill data from query parameter
@@ -6838,6 +6915,9 @@ const useAutofillCarForm = (options) => {
6838
6915
  const { dispatchDriverCancellationState } = useStoreFormCarDriverCancellation();
6839
6916
  const { dispatchDriverAccidentState } = useStoreFormCarDriverAccident();
6840
6917
  const { dispatchDriverTicketState } = useStoreFormCarDriverTicket();
6918
+ const { dispatchDriverBaseState } = useStoreFormCarDriverBase();
6919
+ const { dispatchDiscountState } = useStoreFormCarDiscount();
6920
+ const { dispatchQuoteState } = useStoreFormCarQuote();
6841
6921
  const { getVehicleMake } = useHandlerCarMake();
6842
6922
  const { getVehicleModel } = useHandlerCarModel();
6843
6923
  const { dispatchAppModalState } = useStoreAppModal();
@@ -6855,6 +6935,13 @@ const useAutofillCarForm = (options) => {
6855
6935
  }
6856
6936
  // Parse the autofill data
6857
6937
  const autofillData = parseAutofillParam(autofillParam);
6938
+ // Clear all existing car form state before applying autofill data
6939
+ dispatchPostalState({ type: StoreFormCarPostalActionTypes.FormCarPostalClear });
6940
+ dispatchVehicleState({ type: StoreFormCarVehicleActionTypes.FormCarVehicleClear });
6941
+ dispatchConfigState({ type: StoreFormCarConfigActionTypes.FormCarConfigClear, payload: { province: '' } });
6942
+ dispatchDriverBaseState({ type: StoreFormCarDriverBaseActionTypes.FormCarDriverClear });
6943
+ dispatchDiscountState({ type: StoreFormCarDiscountActionTypes.FormCarDiscountClear });
6944
+ dispatchQuoteState({ type: StoreFormCarQuoteActionTypes.FormCarQuoteClear });
6858
6945
  // Dispatch postal state
6859
6946
  const postalData = mapToPostalState(autofillData);
6860
6947
  dispatchPostalState({
@@ -7162,11 +7249,195 @@ const useAutofillCarForm = (options) => {
7162
7249
  dispatchDriverCancellationState,
7163
7250
  dispatchDriverAccidentState,
7164
7251
  dispatchDriverTicketState,
7252
+ dispatchDriverBaseState,
7253
+ dispatchDiscountState,
7254
+ dispatchQuoteState,
7165
7255
  dispatchAppModalState,
7166
7256
  getVehicleMake,
7167
7257
  getVehicleModel,
7168
7258
  ]);
7169
7259
  };
7170
7260
 
7171
- export { CarBrokerTypeEnum, CarQuoteDataHandler, ClearFormDataHandler, HomeBrokerTypeEnum, HomeQuoteDataHandler, LifeQuoteDataHandler, StoreClientActionTypes, StoreConfigAppConfigActionTypes, StoreConfigAppDeviceActionTypes, StoreConfigAppLoaderActionTypes, StoreConfigAppModalActionTypes, StoreFormCarConfigActionTypes, StoreFormCarDiscountActionTypes, StoreFormCarDriverAccidentActionTypes, StoreFormCarDriverBaseActionTypes, StoreFormCarDriverCancellationActionTypes, StoreFormCarDriverInfoActionTypes, StoreFormCarDriverInsuranceActionTypes, StoreFormCarDriverLicenceActionTypes, StoreFormCarDriverSuspensionActionTypes, StoreFormCarDriverTicketActionTypes, StoreFormCarPostalActionTypes, StoreFormCarQuoteActionTypes, StoreFormCarVehicleActionTypes, StoreFormHomeApplicantBaseActionTypes, StoreFormHomeApplicantCancellationActionTypes, StoreFormHomeApplicantClaimActionTypes, StoreFormHomeApplicantInfoActionTypes, StoreFormHomeApplicantInsuranceActionTypes, StoreFormHomeDiscountActionTypes, StoreFormHomeDwellingActionTypes, StoreFormHomePostalActionTypes, StoreFormHomeQuoteActionTypes, StoreFormLifeApplicantActionTypes, StoreFormLifeCoverageActionTypes, StoreFormLifePostalActionTypes, StoreFormLifeQuoteActionTypes, StorePartnerActionTypes, StoreProvider, addDayToDate, configStateReducer, differenceInHoursFromNow, formCarReducer, formCondoDwellingInitialState, formHomeDwellingInitialState, formHomeReducer, formLifeReducer, formTenantDwellingInitialState, getDwellingInitialState, getProvinceName, globalStateReducer, initHttpResponse, mapToConfigState, mapToDriverState, mapToPostalState, mapToVehicleState, parseAutofillParam, reducers, default_1 as token, useAutofillCarForm, useHandlerAuth, useHandlerCarMake, useHandlerCarModel, useHandlerCarQuoterEmail, useHandlerHomeQuoterEmail, useHandlerLifeQuoterEmail, useHandlerPartner, useHandlerPostal, useProvince, useStoreAppConfig, useStoreAppDevice, useStoreAppLoader, useStoreAppModal, useStoreClient, useStoreClientLoggedIn, useStoreClientProfile, useStoreClientToken, useStoreDeviceBP, useStoreDeviceType, useStoreFormCarConfig, useStoreFormCarDiscount, useStoreFormCarDriverAccident, useStoreFormCarDriverBase, useStoreFormCarDriverCancellation, useStoreFormCarDriverInfo, useStoreFormCarDriverInsurance, useStoreFormCarDriverLicence, useStoreFormCarDriverSuspension, useStoreFormCarDriverTicket, useStoreFormCarPostal, useStoreFormCarQuote, useStoreFormCarVehicle, useStoreFormHomeApplicantBase, useStoreFormHomeApplicantCancellation, useStoreFormHomeApplicantClaim, useStoreFormHomeApplicantInfo, useStoreFormHomeApplicantInsurance, useStoreFormHomeDiscount, useStoreFormHomeDwelling, useStoreFormHomePostal, useStoreFormHomeQuote, useStoreFormLifeApplicant, useStoreFormLifeCoverage, useStoreFormLifePostal, useStoreFormLifeQuote, useStorePartner, useValidationAddress, useValidationApplicant, useValidationCarDiscount, useValidationCoverage, useValidationDriver, useValidationDwelling, useValidationHomeDiscount, useValidationLifeApplicant, useValidationVehicle };
7261
+ /**
7262
+ * Hook to initialize life insurance form with autofill data from query parameter
7263
+ */
7264
+ const useAutofillLifeForm = (options) => {
7265
+ const { dispatchPostalState } = useStoreFormLifePostal();
7266
+ const { dispatchCoverageState } = useStoreFormLifeCoverage();
7267
+ const { dispatchApplicantState } = useStoreFormLifeApplicant();
7268
+ const { dispatchQuoteState } = useStoreFormLifeQuote();
7269
+ const { dispatchAppModalState } = useStoreAppModal();
7270
+ const autofillProcessedRef = useRef(false);
7271
+ useEffect(() => {
7272
+ // Prevent double execution in development strict mode
7273
+ if (autofillProcessedRef.current) {
7274
+ return;
7275
+ }
7276
+ try {
7277
+ const urlParams = new URLSearchParams(window.location.search);
7278
+ const autofillParam = urlParams.get('autofill');
7279
+ if (!autofillParam) {
7280
+ return;
7281
+ }
7282
+ // Parse the autofill data
7283
+ const autofillData = parseLifeAutofillParam(autofillParam);
7284
+ // Clear all existing life form state before applying autofill data
7285
+ dispatchPostalState({ type: StoreFormLifePostalActionTypes.FormLifePostalClear });
7286
+ dispatchCoverageState({ type: StoreFormLifeCoverageActionTypes.FormLifeCoverageClear });
7287
+ dispatchApplicantState({ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantClear });
7288
+ dispatchQuoteState({ type: StoreFormLifeQuoteActionTypes.FormLifeQuoteClear });
7289
+ // Map and dispatch postal state
7290
+ const postalData = mapToLifePostalState(autofillData);
7291
+ dispatchPostalState({
7292
+ type: StoreFormLifePostalActionTypes.FormLifePostalSet,
7293
+ payload: postalData,
7294
+ });
7295
+ // Close the postal modal since we have postal data from autofill
7296
+ dispatchAppModalState({
7297
+ type: StoreConfigAppModalActionTypes.AppModalClose,
7298
+ });
7299
+ // Map and dispatch coverage state
7300
+ const coverageData = mapToLifeCoverageState(autofillData);
7301
+ // Dispatch province
7302
+ dispatchCoverageState({
7303
+ type: StoreFormLifeCoverageActionTypes.FormLifeProvinceSelect,
7304
+ payload: {
7305
+ province: coverageData.province,
7306
+ },
7307
+ });
7308
+ // Dispatch coverage type
7309
+ dispatchCoverageState({
7310
+ type: StoreFormLifeCoverageActionTypes.FormLifeCoverageTypeSelect,
7311
+ payload: {
7312
+ type: coverageData.type,
7313
+ },
7314
+ });
7315
+ // Dispatch coverage amount
7316
+ dispatchCoverageState({
7317
+ type: StoreFormLifeCoverageActionTypes.FormLifeCoverageSelect,
7318
+ payload: {
7319
+ coverage: coverageData.coverage,
7320
+ },
7321
+ });
7322
+ // Dispatch postal code
7323
+ dispatchCoverageState({
7324
+ type: StoreFormLifeCoverageActionTypes.FormLifePostalCodeSelect,
7325
+ payload: {
7326
+ postalCode: coverageData.postalCode,
7327
+ },
7328
+ });
7329
+ // Dispatch city
7330
+ if (coverageData.city) {
7331
+ dispatchCoverageState({
7332
+ type: StoreFormLifeCoverageActionTypes.FormLifeCitySelect,
7333
+ payload: {
7334
+ city: coverageData.city,
7335
+ },
7336
+ });
7337
+ }
7338
+ // Map and dispatch applicant state
7339
+ const applicantData = mapToLifeApplicantState(autofillData);
7340
+ // Dispatch birth year
7341
+ dispatchApplicantState({
7342
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantBirthYearSelect,
7343
+ payload: {
7344
+ birthYear: applicantData.birthYear,
7345
+ },
7346
+ });
7347
+ // Dispatch birth month
7348
+ dispatchApplicantState({
7349
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantBirthMonthSelect,
7350
+ payload: {
7351
+ birthMonth: applicantData.birthMonth,
7352
+ },
7353
+ });
7354
+ // Dispatch birth day
7355
+ dispatchApplicantState({
7356
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantBirthDaySelect,
7357
+ payload: {
7358
+ birthDay: applicantData.birthDay,
7359
+ },
7360
+ });
7361
+ // Dispatch gender
7362
+ dispatchApplicantState({
7363
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantGenderSelect,
7364
+ payload: {
7365
+ gender: applicantData.gender,
7366
+ },
7367
+ });
7368
+ // Dispatch smoker status
7369
+ dispatchApplicantState({
7370
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantSmokerSelect,
7371
+ payload: {
7372
+ smoker: applicantData.smoker,
7373
+ },
7374
+ });
7375
+ // Dispatch email
7376
+ if (applicantData.emailTo.email) {
7377
+ dispatchApplicantState({
7378
+ type: StoreFormLifeApplicantActionTypes.FormLifeApplicantEmailSet,
7379
+ payload: {
7380
+ email: applicantData.emailTo.email,
7381
+ emailStatus: ValidationStatusTypes.Approved,
7382
+ },
7383
+ });
7384
+ }
7385
+ // Dispatch quoter info - first name
7386
+ if (applicantData.quoterInfo.firstName) {
7387
+ dispatchApplicantState({
7388
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterFirstNameSet,
7389
+ payload: {
7390
+ firstName: applicantData.quoterInfo.firstName,
7391
+ },
7392
+ });
7393
+ }
7394
+ // Dispatch quoter info - last name
7395
+ if (applicantData.quoterInfo.lastName) {
7396
+ dispatchApplicantState({
7397
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterLastNameSet,
7398
+ payload: {
7399
+ lastName: applicantData.quoterInfo.lastName,
7400
+ },
7401
+ });
7402
+ }
7403
+ // Dispatch quoter info - phone
7404
+ if (applicantData.quoterInfo.phone) {
7405
+ dispatchApplicantState({
7406
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterPhoneSet,
7407
+ payload: {
7408
+ phone: applicantData.quoterInfo.phone,
7409
+ },
7410
+ });
7411
+ }
7412
+ // Dispatch quoter info - utm source
7413
+ if (applicantData.quoterInfo.utmSource) {
7414
+ dispatchApplicantState({
7415
+ type: StoreFormLifeApplicantActionTypes.FormLifeUtmSourceSet,
7416
+ payload: {
7417
+ utmSource: applicantData.quoterInfo.utmSource,
7418
+ },
7419
+ });
7420
+ }
7421
+ // Dispatch quoter info - utm campaign
7422
+ if (applicantData.quoterInfo.utmCampaign) {
7423
+ dispatchApplicantState({
7424
+ type: StoreFormLifeApplicantActionTypes.FormLifeUtmCampaignSet,
7425
+ payload: {
7426
+ utmCampaign: applicantData.quoterInfo.utmCampaign,
7427
+ },
7428
+ });
7429
+ }
7430
+ autofillProcessedRef.current = true;
7431
+ if (options?.onComplete) {
7432
+ options.onComplete();
7433
+ }
7434
+ }
7435
+ catch (error) {
7436
+ // Silently fail - let the app continue with normal flow
7437
+ console.error('Life autofill initialization error:', error);
7438
+ }
7439
+ }, [dispatchPostalState, dispatchCoverageState, dispatchApplicantState, dispatchQuoteState, dispatchAppModalState]);
7440
+ };
7441
+
7442
+ export { CarBrokerTypeEnum, CarQuoteDataHandler, ClearFormDataHandler, HomeBrokerTypeEnum, HomeQuoteDataHandler, LifeQuoteDataHandler, StoreClientActionTypes, StoreConfigAppConfigActionTypes, StoreConfigAppDeviceActionTypes, StoreConfigAppLoaderActionTypes, StoreConfigAppModalActionTypes, StoreFormCarConfigActionTypes, StoreFormCarDiscountActionTypes, StoreFormCarDriverAccidentActionTypes, StoreFormCarDriverBaseActionTypes, StoreFormCarDriverCancellationActionTypes, StoreFormCarDriverInfoActionTypes, StoreFormCarDriverInsuranceActionTypes, StoreFormCarDriverLicenceActionTypes, StoreFormCarDriverSuspensionActionTypes, StoreFormCarDriverTicketActionTypes, StoreFormCarPostalActionTypes, StoreFormCarQuoteActionTypes, StoreFormCarVehicleActionTypes, StoreFormHomeApplicantBaseActionTypes, StoreFormHomeApplicantCancellationActionTypes, StoreFormHomeApplicantClaimActionTypes, StoreFormHomeApplicantInfoActionTypes, StoreFormHomeApplicantInsuranceActionTypes, StoreFormHomeDiscountActionTypes, StoreFormHomeDwellingActionTypes, StoreFormHomePostalActionTypes, StoreFormHomeQuoteActionTypes, StoreFormLifeApplicantActionTypes, StoreFormLifeCoverageActionTypes, StoreFormLifePostalActionTypes, StoreFormLifeQuoteActionTypes, StorePartnerActionTypes, StoreProvider, addDayToDate, configStateReducer, differenceInHoursFromNow, formCarReducer, formCondoDwellingInitialState, formHomeDwellingInitialState, formHomeReducer, formLifeReducer, formTenantDwellingInitialState, getDwellingInitialState, getProvinceCodeFromState, getProvinceName, globalStateReducer, initHttpResponse, mapToConfigState, mapToDriverState, mapToLifeApplicantState, mapToLifeCoverageState, mapToLifePostalState, mapToPostalState, mapToVehicleState, parseAutofillParam, parseLifeAutofillParam, reducers, default_1 as token, useAutofillCarForm, useAutofillLifeForm, useHandlerAuth, useHandlerCarMake, useHandlerCarModel, useHandlerCarQuoterEmail, useHandlerHomeQuoterEmail, useHandlerLifeQuoterEmail, useHandlerPartner, useHandlerPostal, useProvince, useStoreAppConfig, useStoreAppDevice, useStoreAppLoader, useStoreAppModal, useStoreClient, useStoreClientLoggedIn, useStoreClientProfile, useStoreClientToken, useStoreDeviceBP, useStoreDeviceType, useStoreFormCarConfig, useStoreFormCarDiscount, useStoreFormCarDriverAccident, useStoreFormCarDriverBase, useStoreFormCarDriverCancellation, useStoreFormCarDriverInfo, useStoreFormCarDriverInsurance, useStoreFormCarDriverLicence, useStoreFormCarDriverSuspension, useStoreFormCarDriverTicket, useStoreFormCarPostal, useStoreFormCarQuote, useStoreFormCarVehicle, useStoreFormHomeApplicantBase, useStoreFormHomeApplicantCancellation, useStoreFormHomeApplicantClaim, useStoreFormHomeApplicantInfo, useStoreFormHomeApplicantInsurance, useStoreFormHomeDiscount, useStoreFormHomeDwelling, useStoreFormHomePostal, useStoreFormHomeQuote, useStoreFormLifeApplicant, useStoreFormLifeCoverage, useStoreFormLifePostal, useStoreFormLifeQuote, useStorePartner, useValidationAddress, useValidationApplicant, useValidationCarDiscount, useValidationCoverage, useValidationDriver, useValidationDwelling, useValidationHomeDiscount, useValidationLifeApplicant, useValidationVehicle };
7172
7443
  //# sourceMappingURL=index.js.map