@mychoice/mychoice-sdk-store 2.2.23 → 2.2.25

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.
Files changed (46) hide show
  1. package/dist/cjs/handlers/dataHandlers/QuoterPhoneDataHandler/QuoterPhoneDataHandler.d.ts +4 -0
  2. package/dist/cjs/handlers/dataHandlers/QuoterPhoneDataHandler/index.d.ts +1 -0
  3. package/dist/cjs/handlers/dataHandlers/QuoterPhoneDataHandler/interfaces.d.ts +4 -0
  4. package/dist/cjs/handlers/dataHandlers/index.d.ts +1 -0
  5. package/dist/cjs/index.js +486 -69
  6. package/dist/cjs/index.js.map +1 -1
  7. package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +2 -0
  8. package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +19 -0
  9. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverInsuranceState/actions.d.ts +5 -1
  10. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverInsuranceState/interfaces.d.ts +24 -0
  11. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverLicenceState/actions.d.ts +2 -0
  12. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverLicenceState/interfaces.d.ts +12 -0
  13. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverTicketState/actions.d.ts +1 -0
  14. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/DriverTicketState/interfaces.d.ts +7 -0
  15. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/initialState.d.ts +1 -0
  16. package/dist/cjs/states/reducers/states/formStates/FormCarState/DriverState/interfaces.d.ts +9 -0
  17. package/dist/cjs/states/reducers/states/formStates/FormCarState/VehicleState/actions.d.ts +1 -0
  18. package/dist/cjs/states/reducers/states/formStates/FormCarState/VehicleState/interfaces.d.ts +8 -1
  19. package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
  20. package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +8 -0
  21. package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +1 -0
  22. package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +8 -0
  23. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/QuoterPhoneDataHandler.d.ts +4 -0
  24. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/index.d.ts +1 -0
  25. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/interfaces.d.ts +4 -0
  26. package/dist/esm/handlers/dataHandlers/index.d.ts +1 -0
  27. package/dist/esm/index.js +485 -71
  28. package/dist/esm/index.js.map +1 -1
  29. package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +2 -0
  30. package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +19 -0
  31. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverInsuranceState/actions.d.ts +5 -1
  32. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverInsuranceState/interfaces.d.ts +24 -0
  33. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverLicenceState/actions.d.ts +2 -0
  34. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverLicenceState/interfaces.d.ts +12 -0
  35. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverTicketState/actions.d.ts +1 -0
  36. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/DriverTicketState/interfaces.d.ts +7 -0
  37. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/initialState.d.ts +1 -0
  38. package/dist/esm/states/reducers/states/formStates/FormCarState/DriverState/interfaces.d.ts +9 -0
  39. package/dist/esm/states/reducers/states/formStates/FormCarState/VehicleState/actions.d.ts +1 -0
  40. package/dist/esm/states/reducers/states/formStates/FormCarState/VehicleState/interfaces.d.ts +8 -1
  41. package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
  42. package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +8 -0
  43. package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +1 -0
  44. package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +8 -0
  45. package/dist/index.d.ts +118 -4
  46. package/package.json +3 -3
@@ -10,10 +10,12 @@ export declare enum StoreFormCarDiscountActionTypes {
10
10
  FormCarDiscountQuoterFirstNameSet = "FormCarDiscountQuoterFirstNameSet",
11
11
  FormCarDiscountQuoterLastNameSet = "FormCarDiscountQuoterLastNameSet",
12
12
  FormCarDiscountQuoterPhoneSet = "FormCarDiscountQuoterPhoneSet",
13
+ FormCarDiscountQuoterPhoneStatusSet = "FormCarDiscountQuoterPhoneStatusSet",
13
14
  FormCarDiscountVehlinkAdd = "FormCarDiscountVehlinkAdd",
14
15
  FormCarDiscountVehlinkSelect = "FormCarDiscountVehlinkSelect",
15
16
  FormCarDiscountVehlinkByVehicleDelete = "FormCarDiscountVehlinkByVehicleDelete",
16
17
  FormCarDiscountVehlinkByDriverDelete = "FormCarDiscountVehlinkByDriverDelete",
18
+ FormCarDiscountOccVehlinkSelect = "FormCarDiscountOccVehlinkSelect",
17
19
  FormCarDiscountQuoterEmailStatusSet = "FormCarDiscountQuoterEmailStatusSet",
18
20
  FormCarDiscountValidate = "FormCarDiscountValidate",
19
21
  FormCarDiscountValidateSet = "FormCarDiscountValidateSet",
@@ -5,6 +5,7 @@ export interface DiscountQuoterInfoInterface {
5
5
  firstName: string;
6
6
  lastName: string;
7
7
  phone: string;
8
+ phoneStatus: ValidationStatusTypes;
8
9
  recalculate: boolean;
9
10
  accidentBenefitsChanged?: boolean;
10
11
  utmSource?: string;
@@ -38,6 +39,10 @@ export interface FormCarDiscountStateInterface extends StateBaseInterface {
38
39
  policyStartYear?: string;
39
40
  quoterInfo: DiscountQuoterInfoInterface;
40
41
  vehlinks: DiscountVehLinkInterface[];
42
+ occVehlinks: {
43
+ driverIndex: number;
44
+ vehicleIndex: number;
45
+ }[];
41
46
  }
42
47
  export type FormCarDiscountStateActionType = {
43
48
  type: StoreFormCarDiscountActionTypes.FormCarDiscountValidate;
@@ -78,6 +83,13 @@ export type FormCarDiscountStateActionType = {
78
83
  driverIndex: number;
79
84
  };
80
85
  localIndex?: string;
86
+ } | {
87
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountOccVehlinkSelect;
88
+ payload: {
89
+ driverIndex: number;
90
+ vehicleIndex: number;
91
+ };
92
+ localIndex?: string;
81
93
  } | {
82
94
  type: StoreFormCarDiscountActionTypes.FormCarDiscountMultiplePoliciesSelect;
83
95
  payload: {
@@ -114,6 +126,13 @@ export type FormCarDiscountStateActionType = {
114
126
  phone: string;
115
127
  };
116
128
  localIndex?: string;
129
+ } | {
130
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterPhoneStatusSet;
131
+ payload: {
132
+ phone: string;
133
+ phoneStatus: ValidationStatusTypes;
134
+ };
135
+ localIndex?: string;
117
136
  } | {
118
137
  type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterBrokerInfoSet;
119
138
  payload: {
@@ -3,5 +3,9 @@ export declare enum StoreFormCarDriverInsuranceActionTypes {
3
3
  FormCarDriverListedYearSelect = "FormCarDriverListedYearSelect",
4
4
  FormCarDriverListedMonthSelect = "FormCarDriverListedMonthSelect",
5
5
  FormCarDriverInsuredSelect = "FormCarDriverInsuredSelect",
6
- FormCarDriverInsuredDateSelect = "FormCarDriverInsuredDateSelect"
6
+ FormCarDriverInsuredDateSelect = "FormCarDriverInsuredDateSelect",
7
+ FormCarDriverNotCurrentlyInsuredSelect = "FormCarDriverNotCurrentlyInsuredSelect",
8
+ FormCarDriverLastPolicyEndYearSelect = "FormCarDriverLastPolicyEndYearSelect",
9
+ FormCarDriverLastPolicyEndMonthSelect = "FormCarDriverLastPolicyEndMonthSelect",
10
+ FormCarDriverLastPolicyCancelReasonSelect = "FormCarDriverLastPolicyCancelReasonSelect"
7
11
  }
@@ -30,6 +30,30 @@ export type FormCarDriverInsuranceStateActionType = {
30
30
  insuredDate: string;
31
31
  };
32
32
  localIndex?: string;
33
+ } | {
34
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverNotCurrentlyInsuredSelect;
35
+ payload: {
36
+ notCurrentlyInsured: boolean;
37
+ };
38
+ localIndex?: string;
39
+ } | {
40
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyEndYearSelect;
41
+ payload: {
42
+ lastPolicyEndYear: string;
43
+ };
44
+ localIndex?: string;
45
+ } | {
46
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyEndMonthSelect;
47
+ payload: {
48
+ lastPolicyEndMonth: string;
49
+ };
50
+ localIndex?: string;
51
+ } | {
52
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyCancelReasonSelect;
53
+ payload: {
54
+ lastPolicyCancelReason: string;
55
+ };
56
+ localIndex?: string;
33
57
  };
34
58
  export type FormCarDriverInsuranceStateReducerInterface = (state: FormCarDriverStateInterface, action: FormCarDriverInsuranceStateActionType) => FormCarDriverStateInterface;
35
59
  export interface FormCarDriverInsuranceHookInterface {
@@ -9,6 +9,8 @@ export declare enum StoreFormCarDriverLicenceActionTypes {
9
9
  FormCarDriverG1LicenceMaxSelect = "FormCarDriverG1LicenceMaxSelect",
10
10
  FormCarDriverTrainingSelect = "FormCarDriverTrainingSelect",
11
11
  FormCarDriverPreviousLicenceSelect = "FormCarDriverPreviousLicenceSelect",
12
+ FormCarDriverReceivedG2Select = "FormCarDriverReceivedG2Select",
13
+ FormCarDriverReceivedGSelect = "FormCarDriverReceivedGSelect",
12
14
  FormCarDriverLicenceYearSelect = "FormCarDriverLicenceYearSelect",
13
15
  FormCarDriverLicenceMonthSelect = "FormCarDriverLicenceMonthSelect"
14
16
  }
@@ -36,6 +36,18 @@ export type FormCarDriverLicenceStateActionType = {
36
36
  previousLicence: boolean;
37
37
  };
38
38
  localIndex?: string;
39
+ } | {
40
+ type: StoreFormCarDriverLicenceActionTypes.FormCarDriverReceivedG2Select;
41
+ payload: {
42
+ receivedG2: boolean;
43
+ };
44
+ localIndex?: string;
45
+ } | {
46
+ type: StoreFormCarDriverLicenceActionTypes.FormCarDriverReceivedGSelect;
47
+ payload: {
48
+ receivedG: boolean;
49
+ };
50
+ localIndex?: string;
39
51
  } | {
40
52
  type: StoreFormCarDriverLicenceActionTypes.FormCarDriverGLicenceMinSelect;
41
53
  payload: {
@@ -3,6 +3,7 @@ export declare enum StoreFormCarDriverTicketActionTypes {
3
3
  FormCarDriverTrafficTicketReasonSelect = "FormCarDriverTrafficTicketReasonSelect",
4
4
  FormCarDriverTrafficTicketYearSelect = "FormCarDriverTrafficTicketYearSelect",
5
5
  FormCarDriverTrafficTicketMonthSelect = "FormCarDriverTrafficTicketMonthSelect",
6
+ FormCarDriverTrafficTicketSpeedSelect = "FormCarDriverTrafficTicketSpeedSelect",
6
7
  FormCarDriverTrafficTicketAdd = "FormCarDriverTrafficTicketAdd",
7
8
  FormCarDriverTrafficTicketDelete = "FormCarDriverTrafficTicketDelete"
8
9
  }
@@ -37,6 +37,13 @@ export type FormCarDriverTicketStateActionType = {
37
37
  index: number;
38
38
  };
39
39
  localIndex?: string;
40
+ } | {
41
+ type: StoreFormCarDriverTicketActionTypes.FormCarDriverTrafficTicketSpeedSelect;
42
+ payload: {
43
+ speed: number;
44
+ index: number;
45
+ };
46
+ localIndex?: string;
40
47
  };
41
48
  export type FormCarDriverTicketStateReducerInterface = (state: FormCarDriverStateInterface, action: FormCarDriverTicketStateActionType) => FormCarDriverStateInterface;
42
49
  export interface FormCarDriverTicketHookInterface {
@@ -36,6 +36,7 @@ export declare const DriverListInitialStates: {
36
36
  ticketDate: string;
37
37
  ticketYear?: string | undefined;
38
38
  ticketMonth?: string | undefined;
39
+ speed?: number | undefined;
39
40
  };
40
41
  };
41
42
  export declare const driverItemInitialState: DriverItemInterface;
@@ -15,6 +15,9 @@ export interface DriverLicenceInterface {
15
15
  gLicenceMonth?: string;
16
16
  passedDriverTraining?: boolean;
17
17
  previousLicence?: boolean;
18
+ outsideExp?: boolean;
19
+ receivedG2?: boolean;
20
+ receivedG?: boolean;
18
21
  }
19
22
  export interface DriverCancellationItemInterface {
20
23
  reason: string;
@@ -47,6 +50,7 @@ export interface TicketItemInterface {
47
50
  ticketDate: string;
48
51
  ticketYear?: string;
49
52
  ticketMonth?: string;
53
+ speed?: number;
50
54
  }
51
55
  export type DriverListItemType = DriverCancellationItemInterface | SuspensionItemInterface | AccidentItemInterface | TicketItemInterface;
52
56
  export interface DriverMinMaxDates {
@@ -82,6 +86,11 @@ export interface DriverItemInterface {
82
86
  insured: boolean;
83
87
  insuredDate?: string;
84
88
  insuredYear?: string;
89
+ notCurrentlyInsured?: boolean;
90
+ lastPolicyEndYear?: string;
91
+ lastPolicyEndMonth?: string;
92
+ lastPolicyEndDate?: string;
93
+ lastPolicyCancelReason?: string;
85
94
  insuranceCancellation: boolean;
86
95
  insuranceCancellationList?: DriverCancellationItemInterface[];
87
96
  licenceSuspension: boolean;
@@ -19,6 +19,7 @@ export declare enum StoreFormCarVehicleActionTypes {
19
19
  FormCarParkingLocationSelect = "FormCarParkingLocationSelect",
20
20
  FormCarDailyDistanceSelect = "FormCarDailyDistanceSelect",
21
21
  FormCarBusinessDistanceSelect = "FormCarBusinessDistanceSelect",
22
+ FormCarBusinessUsePercentSelect = "FormCarBusinessUsePercentSelect",
22
23
  FormCarYearlyDistanceSelect = "FormCarYearlyDistanceSelect",
23
24
  FormCarComprehensiveCoverageSelect = "FormCarComprehensiveCoverageSelect",
24
25
  FormCarComprehensiveDeductibleSelect = "FormCarComprehensiveDeductibleSelect",
@@ -42,8 +42,9 @@ export interface VehicleItemInterface {
42
42
  winterTires: boolean;
43
43
  parkingLocation: string;
44
44
  primaryUse: string;
45
- distanceDaily: number;
45
+ distanceDaily: number | undefined;
46
46
  distanceBusiness?: number;
47
+ businessUsePercent?: string;
47
48
  distanceYearly: number;
48
49
  comprehensive: VehicleComprehensiveInterface;
49
50
  collision: VehicleCollisionInterface;
@@ -182,6 +183,12 @@ export type FormCarVehicleStateActionType = {
182
183
  distanceBusiness: string;
183
184
  };
184
185
  localIndex?: string;
186
+ } | {
187
+ type: StoreFormCarVehicleActionTypes.FormCarBusinessUsePercentSelect;
188
+ payload: {
189
+ businessUsePercent: string;
190
+ };
191
+ localIndex?: string;
185
192
  } | {
186
193
  type: StoreFormCarVehicleActionTypes.FormCarYearlyDistanceSelect;
187
194
  payload: {
@@ -13,6 +13,7 @@ export declare enum StoreFormHomeDiscountActionTypes {
13
13
  FormHomeQuoterFirstNameSet = "FormHomeQuoterFirstNameSet",
14
14
  FormHomeQuoterLastNameSet = "FormHomeQuoterLastNameSet",
15
15
  FormHomeQuoterPhoneSet = "FormHomeQuoterPhoneSet",
16
+ FormHomeQuoterPhoneStatusSet = "FormHomeQuoterPhoneStatusSet",
16
17
  FormHomeUtmCampaignSet = "FormHomeUtmCampaignSet",
17
18
  FormHomeUtmSourceSet = "FormHomeUtmSourceSet",
18
19
  FormHomeUtmProducerSet = "FormHomeUtmProducerSet",
@@ -5,6 +5,7 @@ export interface QuoterInfoInterface {
5
5
  firstName: string;
6
6
  lastName: string;
7
7
  phone: string;
8
+ phoneStatus: ValidationStatusTypes;
8
9
  recalculate: boolean;
9
10
  utmSource?: string;
10
11
  utmCampaign?: string;
@@ -74,6 +75,13 @@ export type FormHomeDiscountStateActionType = {
74
75
  phone: string;
75
76
  };
76
77
  localIndex?: string;
78
+ } | {
79
+ type: StoreFormHomeDiscountActionTypes.FormHomeQuoterPhoneStatusSet;
80
+ payload: {
81
+ phone: string;
82
+ phoneStatus: ValidationStatusTypes;
83
+ };
84
+ localIndex?: string;
77
85
  } | {
78
86
  type: StoreFormHomeDiscountActionTypes.FormHomeUtmCampaignSet;
79
87
  payload: {
@@ -13,6 +13,7 @@ export declare enum StoreFormLifeApplicantActionTypes {
13
13
  FormLifeQuoterFirstNameSet = "FormLifeQuoterFirstNameSet",
14
14
  FormLifeQuoterLastNameSet = "FormLifeQuoterLastNameSet",
15
15
  FormLifeQuoterPhoneSet = "FormLifeQuoterPhoneSet",
16
+ FormLifeQuoterPhoneStatusSet = "FormLifeQuoterPhoneStatusSet",
16
17
  FormLifeUtmCampaignSet = "FormLifeUtmCampaignSet",
17
18
  FormLifeUtmSourceSet = "FormLifeUtmSourceSet",
18
19
  FormLifeUtmProducerSet = "FormLifeUtmProducerSet"
@@ -15,6 +15,7 @@ export interface FormLifeApplicantStateInterface extends StateBaseInterface {
15
15
  firstName: string;
16
16
  lastName: string;
17
17
  phone: string;
18
+ phoneStatus: ValidationStatusTypes;
18
19
  recalculate: boolean;
19
20
  utmSource?: string;
20
21
  utmCampaign?: string;
@@ -91,6 +92,13 @@ export type FormLifeApplicantStateActionType = {
91
92
  phone: string;
92
93
  };
93
94
  localIndex?: string;
95
+ } | {
96
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterPhoneStatusSet;
97
+ payload: {
98
+ phone: string;
99
+ phoneStatus: ValidationStatusTypes;
100
+ };
101
+ localIndex?: string;
94
102
  } | {
95
103
  type: StoreFormLifeApplicantActionTypes.FormLifeUtmCampaignSet;
96
104
  payload: {
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { SdkFC, ModalTypes, AppTypes, InsuranceTypes, DeviceTypes, ScreenBPTypes, VehicleConditionTypes, DriverLicenceTypes, GenderTypes, OccupationTypes, DriverPriorityTypes, ValidationStatusTypes, RequestStatusTypes, SelectOptionInterface, SelectOptionGroupInterface } from '@mychoice/mychoice-sdk-components';
1
+ import { SdkFC, ModalTypes, AppTypes, InsuranceTypes, DeviceTypes, ScreenBPTypes, VehicleConditionTypes, DriverLicenceTypes, GenderTypes, OccupationTypes, ValidationStatusTypes, DriverPriorityTypes, RequestStatusTypes, SelectOptionInterface, SelectOptionGroupInterface } from '@mychoice/mychoice-sdk-components';
2
2
  import * as redux from 'redux';
3
3
 
4
4
  declare const initHttpResponse: () => void;
@@ -301,6 +301,7 @@ declare enum StoreFormCarVehicleActionTypes {
301
301
  FormCarParkingLocationSelect = "FormCarParkingLocationSelect",
302
302
  FormCarDailyDistanceSelect = "FormCarDailyDistanceSelect",
303
303
  FormCarBusinessDistanceSelect = "FormCarBusinessDistanceSelect",
304
+ FormCarBusinessUsePercentSelect = "FormCarBusinessUsePercentSelect",
304
305
  FormCarYearlyDistanceSelect = "FormCarYearlyDistanceSelect",
305
306
  FormCarComprehensiveCoverageSelect = "FormCarComprehensiveCoverageSelect",
306
307
  FormCarComprehensiveDeductibleSelect = "FormCarComprehensiveDeductibleSelect",
@@ -381,8 +382,9 @@ interface VehicleItemInterface {
381
382
  winterTires: boolean;
382
383
  parkingLocation: string;
383
384
  primaryUse: string;
384
- distanceDaily: number;
385
+ distanceDaily: number | undefined;
385
386
  distanceBusiness?: number;
387
+ businessUsePercent?: string;
386
388
  distanceYearly: number;
387
389
  comprehensive: VehicleComprehensiveInterface;
388
390
  collision: VehicleCollisionInterface;
@@ -521,6 +523,12 @@ type FormCarVehicleStateActionType = {
521
523
  distanceBusiness: string;
522
524
  };
523
525
  localIndex?: string;
526
+ } | {
527
+ type: StoreFormCarVehicleActionTypes.FormCarBusinessUsePercentSelect;
528
+ payload: {
529
+ businessUsePercent: string;
530
+ };
531
+ localIndex?: string;
524
532
  } | {
525
533
  type: StoreFormCarVehicleActionTypes.FormCarYearlyDistanceSelect;
526
534
  payload: {
@@ -697,6 +705,9 @@ interface DriverLicenceInterface {
697
705
  gLicenceMonth?: string;
698
706
  passedDriverTraining?: boolean;
699
707
  previousLicence?: boolean;
708
+ outsideExp?: boolean;
709
+ receivedG2?: boolean;
710
+ receivedG?: boolean;
700
711
  }
701
712
  interface DriverCancellationItemInterface {
702
713
  reason: string;
@@ -729,6 +740,7 @@ interface TicketItemInterface {
729
740
  ticketDate: string;
730
741
  ticketYear?: string;
731
742
  ticketMonth?: string;
743
+ speed?: number;
732
744
  }
733
745
  interface DriverMinMaxDates {
734
746
  gMin: string;
@@ -763,6 +775,11 @@ interface DriverItemInterface {
763
775
  insured: boolean;
764
776
  insuredDate?: string;
765
777
  insuredYear?: string;
778
+ notCurrentlyInsured?: boolean;
779
+ lastPolicyEndYear?: string;
780
+ lastPolicyEndMonth?: string;
781
+ lastPolicyEndDate?: string;
782
+ lastPolicyCancelReason?: string;
766
783
  insuranceCancellation: boolean;
767
784
  insuranceCancellationList?: DriverCancellationItemInterface[];
768
785
  licenceSuspension: boolean;
@@ -965,7 +982,11 @@ declare enum StoreFormCarDriverInsuranceActionTypes {
965
982
  FormCarDriverListedYearSelect = "FormCarDriverListedYearSelect",
966
983
  FormCarDriverListedMonthSelect = "FormCarDriverListedMonthSelect",
967
984
  FormCarDriverInsuredSelect = "FormCarDriverInsuredSelect",
968
- FormCarDriverInsuredDateSelect = "FormCarDriverInsuredDateSelect"
985
+ FormCarDriverInsuredDateSelect = "FormCarDriverInsuredDateSelect",
986
+ FormCarDriverNotCurrentlyInsuredSelect = "FormCarDriverNotCurrentlyInsuredSelect",
987
+ FormCarDriverLastPolicyEndYearSelect = "FormCarDriverLastPolicyEndYearSelect",
988
+ FormCarDriverLastPolicyEndMonthSelect = "FormCarDriverLastPolicyEndMonthSelect",
989
+ FormCarDriverLastPolicyCancelReasonSelect = "FormCarDriverLastPolicyCancelReasonSelect"
969
990
  }
970
991
 
971
992
  type FormCarDriverInsuranceStateActionType = {
@@ -998,6 +1019,30 @@ type FormCarDriverInsuranceStateActionType = {
998
1019
  insuredDate: string;
999
1020
  };
1000
1021
  localIndex?: string;
1022
+ } | {
1023
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverNotCurrentlyInsuredSelect;
1024
+ payload: {
1025
+ notCurrentlyInsured: boolean;
1026
+ };
1027
+ localIndex?: string;
1028
+ } | {
1029
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyEndYearSelect;
1030
+ payload: {
1031
+ lastPolicyEndYear: string;
1032
+ };
1033
+ localIndex?: string;
1034
+ } | {
1035
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyEndMonthSelect;
1036
+ payload: {
1037
+ lastPolicyEndMonth: string;
1038
+ };
1039
+ localIndex?: string;
1040
+ } | {
1041
+ type: StoreFormCarDriverInsuranceActionTypes.FormCarDriverLastPolicyCancelReasonSelect;
1042
+ payload: {
1043
+ lastPolicyCancelReason: string;
1044
+ };
1045
+ localIndex?: string;
1001
1046
  };
1002
1047
  interface FormCarDriverInsuranceHookInterface {
1003
1048
  driverState: FormCarDriverStateInterface;
@@ -1017,6 +1062,8 @@ declare enum StoreFormCarDriverLicenceActionTypes {
1017
1062
  FormCarDriverG1LicenceMaxSelect = "FormCarDriverG1LicenceMaxSelect",
1018
1063
  FormCarDriverTrainingSelect = "FormCarDriverTrainingSelect",
1019
1064
  FormCarDriverPreviousLicenceSelect = "FormCarDriverPreviousLicenceSelect",
1065
+ FormCarDriverReceivedG2Select = "FormCarDriverReceivedG2Select",
1066
+ FormCarDriverReceivedGSelect = "FormCarDriverReceivedGSelect",
1020
1067
  FormCarDriverLicenceYearSelect = "FormCarDriverLicenceYearSelect",
1021
1068
  FormCarDriverLicenceMonthSelect = "FormCarDriverLicenceMonthSelect"
1022
1069
  }
@@ -1055,6 +1102,18 @@ type FormCarDriverLicenceStateActionType = {
1055
1102
  previousLicence: boolean;
1056
1103
  };
1057
1104
  localIndex?: string;
1105
+ } | {
1106
+ type: StoreFormCarDriverLicenceActionTypes.FormCarDriverReceivedG2Select;
1107
+ payload: {
1108
+ receivedG2: boolean;
1109
+ };
1110
+ localIndex?: string;
1111
+ } | {
1112
+ type: StoreFormCarDriverLicenceActionTypes.FormCarDriverReceivedGSelect;
1113
+ payload: {
1114
+ receivedG: boolean;
1115
+ };
1116
+ localIndex?: string;
1058
1117
  } | {
1059
1118
  type: StoreFormCarDriverLicenceActionTypes.FormCarDriverGLicenceMinSelect;
1060
1119
  payload: {
@@ -1174,6 +1233,7 @@ declare enum StoreFormCarDriverTicketActionTypes {
1174
1233
  FormCarDriverTrafficTicketReasonSelect = "FormCarDriverTrafficTicketReasonSelect",
1175
1234
  FormCarDriverTrafficTicketYearSelect = "FormCarDriverTrafficTicketYearSelect",
1176
1235
  FormCarDriverTrafficTicketMonthSelect = "FormCarDriverTrafficTicketMonthSelect",
1236
+ FormCarDriverTrafficTicketSpeedSelect = "FormCarDriverTrafficTicketSpeedSelect",
1177
1237
  FormCarDriverTrafficTicketAdd = "FormCarDriverTrafficTicketAdd",
1178
1238
  FormCarDriverTrafficTicketDelete = "FormCarDriverTrafficTicketDelete"
1179
1239
  }
@@ -1215,6 +1275,13 @@ type FormCarDriverTicketStateActionType = {
1215
1275
  index: number;
1216
1276
  };
1217
1277
  localIndex?: string;
1278
+ } | {
1279
+ type: StoreFormCarDriverTicketActionTypes.FormCarDriverTrafficTicketSpeedSelect;
1280
+ payload: {
1281
+ speed: number;
1282
+ index: number;
1283
+ };
1284
+ localIndex?: string;
1218
1285
  };
1219
1286
  interface FormCarDriverTicketHookInterface {
1220
1287
  driverState: FormCarDriverStateInterface;
@@ -1296,10 +1363,12 @@ declare enum StoreFormCarDiscountActionTypes {
1296
1363
  FormCarDiscountQuoterFirstNameSet = "FormCarDiscountQuoterFirstNameSet",
1297
1364
  FormCarDiscountQuoterLastNameSet = "FormCarDiscountQuoterLastNameSet",
1298
1365
  FormCarDiscountQuoterPhoneSet = "FormCarDiscountQuoterPhoneSet",
1366
+ FormCarDiscountQuoterPhoneStatusSet = "FormCarDiscountQuoterPhoneStatusSet",
1299
1367
  FormCarDiscountVehlinkAdd = "FormCarDiscountVehlinkAdd",
1300
1368
  FormCarDiscountVehlinkSelect = "FormCarDiscountVehlinkSelect",
1301
1369
  FormCarDiscountVehlinkByVehicleDelete = "FormCarDiscountVehlinkByVehicleDelete",
1302
1370
  FormCarDiscountVehlinkByDriverDelete = "FormCarDiscountVehlinkByDriverDelete",
1371
+ FormCarDiscountOccVehlinkSelect = "FormCarDiscountOccVehlinkSelect",
1303
1372
  FormCarDiscountQuoterEmailStatusSet = "FormCarDiscountQuoterEmailStatusSet",
1304
1373
  FormCarDiscountValidate = "FormCarDiscountValidate",
1305
1374
  FormCarDiscountValidateSet = "FormCarDiscountValidateSet",
@@ -1317,6 +1386,7 @@ interface DiscountQuoterInfoInterface {
1317
1386
  firstName: string;
1318
1387
  lastName: string;
1319
1388
  phone: string;
1389
+ phoneStatus: ValidationStatusTypes;
1320
1390
  recalculate: boolean;
1321
1391
  accidentBenefitsChanged?: boolean;
1322
1392
  utmSource?: string;
@@ -1350,6 +1420,10 @@ interface FormCarDiscountStateInterface extends StateBaseInterface {
1350
1420
  policyStartYear?: string;
1351
1421
  quoterInfo: DiscountQuoterInfoInterface;
1352
1422
  vehlinks: DiscountVehLinkInterface[];
1423
+ occVehlinks: {
1424
+ driverIndex: number;
1425
+ vehicleIndex: number;
1426
+ }[];
1353
1427
  }
1354
1428
  type FormCarDiscountStateActionType = {
1355
1429
  type: StoreFormCarDiscountActionTypes.FormCarDiscountValidate;
@@ -1390,6 +1464,13 @@ type FormCarDiscountStateActionType = {
1390
1464
  driverIndex: number;
1391
1465
  };
1392
1466
  localIndex?: string;
1467
+ } | {
1468
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountOccVehlinkSelect;
1469
+ payload: {
1470
+ driverIndex: number;
1471
+ vehicleIndex: number;
1472
+ };
1473
+ localIndex?: string;
1393
1474
  } | {
1394
1475
  type: StoreFormCarDiscountActionTypes.FormCarDiscountMultiplePoliciesSelect;
1395
1476
  payload: {
@@ -1426,6 +1507,13 @@ type FormCarDiscountStateActionType = {
1426
1507
  phone: string;
1427
1508
  };
1428
1509
  localIndex?: string;
1510
+ } | {
1511
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterPhoneStatusSet;
1512
+ payload: {
1513
+ phone: string;
1514
+ phoneStatus: ValidationStatusTypes;
1515
+ };
1516
+ localIndex?: string;
1429
1517
  } | {
1430
1518
  type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterBrokerInfoSet;
1431
1519
  payload: {
@@ -2279,6 +2367,7 @@ declare enum StoreFormHomeDiscountActionTypes {
2279
2367
  FormHomeQuoterFirstNameSet = "FormHomeQuoterFirstNameSet",
2280
2368
  FormHomeQuoterLastNameSet = "FormHomeQuoterLastNameSet",
2281
2369
  FormHomeQuoterPhoneSet = "FormHomeQuoterPhoneSet",
2370
+ FormHomeQuoterPhoneStatusSet = "FormHomeQuoterPhoneStatusSet",
2282
2371
  FormHomeUtmCampaignSet = "FormHomeUtmCampaignSet",
2283
2372
  FormHomeUtmSourceSet = "FormHomeUtmSourceSet",
2284
2373
  FormHomeUtmProducerSet = "FormHomeUtmProducerSet",
@@ -2290,6 +2379,7 @@ interface QuoterInfoInterface {
2290
2379
  firstName: string;
2291
2380
  lastName: string;
2292
2381
  phone: string;
2382
+ phoneStatus: ValidationStatusTypes;
2293
2383
  recalculate: boolean;
2294
2384
  utmSource?: string;
2295
2385
  utmCampaign?: string;
@@ -2359,6 +2449,13 @@ type FormHomeDiscountStateActionType = {
2359
2449
  phone: string;
2360
2450
  };
2361
2451
  localIndex?: string;
2452
+ } | {
2453
+ type: StoreFormHomeDiscountActionTypes.FormHomeQuoterPhoneStatusSet;
2454
+ payload: {
2455
+ phone: string;
2456
+ phoneStatus: ValidationStatusTypes;
2457
+ };
2458
+ localIndex?: string;
2362
2459
  } | {
2363
2460
  type: StoreFormHomeDiscountActionTypes.FormHomeUtmCampaignSet;
2364
2461
  payload: {
@@ -2638,6 +2735,7 @@ declare enum StoreFormLifeApplicantActionTypes {
2638
2735
  FormLifeQuoterFirstNameSet = "FormLifeQuoterFirstNameSet",
2639
2736
  FormLifeQuoterLastNameSet = "FormLifeQuoterLastNameSet",
2640
2737
  FormLifeQuoterPhoneSet = "FormLifeQuoterPhoneSet",
2738
+ FormLifeQuoterPhoneStatusSet = "FormLifeQuoterPhoneStatusSet",
2641
2739
  FormLifeUtmCampaignSet = "FormLifeUtmCampaignSet",
2642
2740
  FormLifeUtmSourceSet = "FormLifeUtmSourceSet",
2643
2741
  FormLifeUtmProducerSet = "FormLifeUtmProducerSet"
@@ -2657,6 +2755,7 @@ interface FormLifeApplicantStateInterface extends StateBaseInterface {
2657
2755
  firstName: string;
2658
2756
  lastName: string;
2659
2757
  phone: string;
2758
+ phoneStatus: ValidationStatusTypes;
2660
2759
  recalculate: boolean;
2661
2760
  utmSource?: string;
2662
2761
  utmCampaign?: string;
@@ -2733,6 +2832,13 @@ type FormLifeApplicantStateActionType = {
2733
2832
  phone: string;
2734
2833
  };
2735
2834
  localIndex?: string;
2835
+ } | {
2836
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterPhoneStatusSet;
2837
+ payload: {
2838
+ phone: string;
2839
+ phoneStatus: ValidationStatusTypes;
2840
+ };
2841
+ localIndex?: string;
2736
2842
  } | {
2737
2843
  type: StoreFormLifeApplicantActionTypes.FormLifeUtmCampaignSet;
2738
2844
  payload: {
@@ -2995,6 +3101,14 @@ declare const useHandlerCarQuoterEmail: () => UseHandlerQuoterEmailInterface;
2995
3101
  declare const useHandlerHomeQuoterEmail: () => UseHandlerQuoterEmailInterface;
2996
3102
  declare const useHandlerLifeQuoterEmail: () => UseHandlerQuoterEmailInterface;
2997
3103
 
3104
+ type UseHandlerQuoterPhoneInterface = DataHandlerRequestState & {
3105
+ validatePhone: (phone: string) => void;
3106
+ };
3107
+
3108
+ declare const useHandlerCarQuoterPhone: () => UseHandlerQuoterPhoneInterface;
3109
+ declare const useHandlerHomeQuoterPhone: () => UseHandlerQuoterPhoneInterface;
3110
+ declare const useHandlerLifeQuoterPhone: () => UseHandlerQuoterPhoneInterface;
3111
+
2998
3112
  type UseHandlerQuoteInterface = DataHandlerRequestState & {
2999
3113
  postRequestQuoteOnliaUrl: (isLoader: boolean, redirectUrl: string) => void;
3000
3114
  postRequestQuote: (isRecalc: boolean, hasToBeConfirmed?: boolean) => void;
@@ -3337,4 +3451,4 @@ interface AutofillOptions {
3337
3451
  */
3338
3452
  declare const useAutofillLifeForm: (options?: AutofillOptions) => void;
3339
3453
 
3340
- export { AccidentItemInterface, AppConfigStateInterface, AppLoaderStateInterface, AppModalStateInterface, ApplicantCancellationItemInterface, ApplicantClaimItemInterface, ApplicantInsuredInterface, AutofillData, AutofillDriver, AutofillVehLink, AutofillVehicle, AutofillVehicleCoverage, BirthDatePayloadType, CarBrokerIntegrationInterface, CarBrokerTypeEnum, CarQuoteCoverageInterface, CarQuoteDataHandler, CarQuoteItemInterface, ClearFormDataHandler, ClientStateInterface, DiscountQuoterInfoInterface, DiscountVehLinkInterface, DriverCancellationItemInterface, DriverItemInterface, DriverLicenceInterface, DriverMinMaxDates, FormCarConfigStateInterface, FormCarDiscountStateInterface, FormCarDriverStateInterface, FormCarPostalStateInterface, FormCarQuoteStateInterface, FormCarQuoteStateReducerInterface, FormCarVehicleStateInterface, FormHomeApplicantStateInterface, FormHomeDiscountStateInterface, FormHomeDwellingStateInterface, FormHomePostalStateInterface, FormHomeQuoteStateInterface, FormHomeQuoteStateReducerInterface, FormLifeApplicantStateInterface, FormLifeCoverageStateInterface, FormLifePostalStateInterface, FormLifeQuoteStateInterface, FormLifeQuoteStateReducerInterface, HomeBrokerIntegrationInterface, HomeBrokerTypeEnum, HomeQuoteDataHandler, HomeQuoteItemInterface, LicenceAgePayloadType, LicenceConfigInterface, LifeAutofillData, LifeAutofillQuoterInfo, LifeBrokerIntegrationInterface, LifeQuoteDataHandler, LifeQuoteItemInterface, MappedAutofillData, PartnerStateInterface, ProvinceHookInterface, QuoterInfoInterface, 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, SuspensionItemInterface, TicketItemInterface, addDayToDate, configStateReducer, differenceInHoursFromNow, formCarReducer, formCondoDwellingInitialState, formHomeDwellingInitialState, formHomeReducer, formLifeReducer, formTenantDwellingInitialState, getDwellingInitialState, getProvinceCodeFromState, getProvinceName, globalStateReducer, initHttpResponse, mapToConfigState, mapToDriverState, mapToLifeApplicantState, mapToLifeCoverageState, mapToLifePostalState, mapToPostalState, mapToVehicleState, parseAutofillParam, parseLifeAutofillParam, reducers, export_default as token, useAbReform, 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 };
3454
+ export { AccidentItemInterface, AppConfigStateInterface, AppLoaderStateInterface, AppModalStateInterface, ApplicantCancellationItemInterface, ApplicantClaimItemInterface, ApplicantInsuredInterface, AutofillData, AutofillDriver, AutofillVehLink, AutofillVehicle, AutofillVehicleCoverage, BirthDatePayloadType, CarBrokerIntegrationInterface, CarBrokerTypeEnum, CarQuoteCoverageInterface, CarQuoteDataHandler, CarQuoteItemInterface, ClearFormDataHandler, ClientStateInterface, DiscountQuoterInfoInterface, DiscountVehLinkInterface, DriverCancellationItemInterface, DriverItemInterface, DriverLicenceInterface, DriverMinMaxDates, FormCarConfigStateInterface, FormCarDiscountStateInterface, FormCarDriverStateInterface, FormCarPostalStateInterface, FormCarQuoteStateInterface, FormCarQuoteStateReducerInterface, FormCarVehicleStateInterface, FormHomeApplicantStateInterface, FormHomeDiscountStateInterface, FormHomeDwellingStateInterface, FormHomePostalStateInterface, FormHomeQuoteStateInterface, FormHomeQuoteStateReducerInterface, FormLifeApplicantStateInterface, FormLifeCoverageStateInterface, FormLifePostalStateInterface, FormLifeQuoteStateInterface, FormLifeQuoteStateReducerInterface, HomeBrokerIntegrationInterface, HomeBrokerTypeEnum, HomeQuoteDataHandler, HomeQuoteItemInterface, LicenceAgePayloadType, LicenceConfigInterface, LifeAutofillData, LifeAutofillQuoterInfo, LifeBrokerIntegrationInterface, LifeQuoteDataHandler, LifeQuoteItemInterface, MappedAutofillData, PartnerStateInterface, ProvinceHookInterface, QuoterInfoInterface, 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, SuspensionItemInterface, TicketItemInterface, addDayToDate, configStateReducer, differenceInHoursFromNow, formCarReducer, formCondoDwellingInitialState, formHomeDwellingInitialState, formHomeReducer, formLifeReducer, formTenantDwellingInitialState, getDwellingInitialState, getProvinceCodeFromState, getProvinceName, globalStateReducer, initHttpResponse, mapToConfigState, mapToDriverState, mapToLifeApplicantState, mapToLifeCoverageState, mapToLifePostalState, mapToPostalState, mapToVehicleState, parseAutofillParam, parseLifeAutofillParam, reducers, export_default as token, useAbReform, useAutofillCarForm, useAutofillLifeForm, useHandlerAuth, useHandlerCarMake, useHandlerCarModel, useHandlerCarQuoterEmail, useHandlerCarQuoterPhone, useHandlerHomeQuoterEmail, useHandlerHomeQuoterPhone, useHandlerLifeQuoterEmail, useHandlerLifeQuoterPhone, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mychoice/mychoice-sdk-store",
3
- "version": "2.2.23",
3
+ "version": "2.2.25",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "https://github.com/hexdivision/mychoice-sdk#readme",
6
6
  "author": "GogMes",
@@ -29,7 +29,7 @@
29
29
  "url": "https://github.com/hexdivision/mychoice-sdk/issues"
30
30
  },
31
31
  "dependencies": {
32
- "@mychoice/mychoice-sdk-components": "^2.2.23",
32
+ "@mychoice/mychoice-sdk-components": "^2.2.25",
33
33
  "@redux-devtools/extension": "^3.2.2",
34
34
  "axios": "^0.27.2",
35
35
  "humps": "^2.0.1",
@@ -37,5 +37,5 @@
37
37
  "redux": "^4.2.0",
38
38
  "redux-thunk": "^2.4.1"
39
39
  },
40
- "gitHead": "be8fd6198800a39c5ccf734a332f234e57e0b192"
40
+ "gitHead": "887e4bfc4cf4c6849ce8306c43d5e55b20813411"
41
41
  }