@mychoice/mychoice-sdk-store 2.2.24 → 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 (28) 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 +274 -29
  6. package/dist/cjs/index.js.map +1 -1
  7. package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +1 -0
  8. package/dist/cjs/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +8 -0
  9. package/dist/cjs/states/reducers/states/formStates/FormCarState/VehicleState/interfaces.d.ts +1 -1
  10. package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
  11. package/dist/cjs/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +8 -0
  12. package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +1 -0
  13. package/dist/cjs/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +8 -0
  14. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/QuoterPhoneDataHandler.d.ts +4 -0
  15. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/index.d.ts +1 -0
  16. package/dist/esm/handlers/dataHandlers/QuoterPhoneDataHandler/interfaces.d.ts +4 -0
  17. package/dist/esm/handlers/dataHandlers/index.d.ts +1 -0
  18. package/dist/esm/index.js +273 -31
  19. package/dist/esm/index.js.map +1 -1
  20. package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/actions.d.ts +1 -0
  21. package/dist/esm/states/reducers/states/formStates/FormCarState/DiscountState/interfaces.d.ts +8 -0
  22. package/dist/esm/states/reducers/states/formStates/FormCarState/VehicleState/interfaces.d.ts +1 -1
  23. package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/actions.d.ts +1 -0
  24. package/dist/esm/states/reducers/states/formStates/FormHomeState/DiscountState/interfaces.d.ts +8 -0
  25. package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/actions.d.ts +1 -0
  26. package/dist/esm/states/reducers/states/formStates/FormLifeState/ApplicantState/interfaces.d.ts +8 -0
  27. package/dist/index.d.ts +38 -3
  28. package/package.json +3 -3
@@ -10,6 +10,7 @@ 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",
@@ -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;
@@ -125,6 +126,13 @@ export type FormCarDiscountStateActionType = {
125
126
  phone: string;
126
127
  };
127
128
  localIndex?: string;
129
+ } | {
130
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterPhoneStatusSet;
131
+ payload: {
132
+ phone: string;
133
+ phoneStatus: ValidationStatusTypes;
134
+ };
135
+ localIndex?: string;
128
136
  } | {
129
137
  type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterBrokerInfoSet;
130
138
  payload: {
@@ -42,7 +42,7 @@ 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
47
  businessUsePercent?: string;
48
48
  distanceYearly: number;
@@ -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;
@@ -382,7 +382,7 @@ interface VehicleItemInterface {
382
382
  winterTires: boolean;
383
383
  parkingLocation: string;
384
384
  primaryUse: string;
385
- distanceDaily: number;
385
+ distanceDaily: number | undefined;
386
386
  distanceBusiness?: number;
387
387
  businessUsePercent?: string;
388
388
  distanceYearly: number;
@@ -1363,6 +1363,7 @@ declare enum StoreFormCarDiscountActionTypes {
1363
1363
  FormCarDiscountQuoterFirstNameSet = "FormCarDiscountQuoterFirstNameSet",
1364
1364
  FormCarDiscountQuoterLastNameSet = "FormCarDiscountQuoterLastNameSet",
1365
1365
  FormCarDiscountQuoterPhoneSet = "FormCarDiscountQuoterPhoneSet",
1366
+ FormCarDiscountQuoterPhoneStatusSet = "FormCarDiscountQuoterPhoneStatusSet",
1366
1367
  FormCarDiscountVehlinkAdd = "FormCarDiscountVehlinkAdd",
1367
1368
  FormCarDiscountVehlinkSelect = "FormCarDiscountVehlinkSelect",
1368
1369
  FormCarDiscountVehlinkByVehicleDelete = "FormCarDiscountVehlinkByVehicleDelete",
@@ -1385,6 +1386,7 @@ interface DiscountQuoterInfoInterface {
1385
1386
  firstName: string;
1386
1387
  lastName: string;
1387
1388
  phone: string;
1389
+ phoneStatus: ValidationStatusTypes;
1388
1390
  recalculate: boolean;
1389
1391
  accidentBenefitsChanged?: boolean;
1390
1392
  utmSource?: string;
@@ -1505,6 +1507,13 @@ type FormCarDiscountStateActionType = {
1505
1507
  phone: string;
1506
1508
  };
1507
1509
  localIndex?: string;
1510
+ } | {
1511
+ type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterPhoneStatusSet;
1512
+ payload: {
1513
+ phone: string;
1514
+ phoneStatus: ValidationStatusTypes;
1515
+ };
1516
+ localIndex?: string;
1508
1517
  } | {
1509
1518
  type: StoreFormCarDiscountActionTypes.FormCarDiscountQuoterBrokerInfoSet;
1510
1519
  payload: {
@@ -2358,6 +2367,7 @@ declare enum StoreFormHomeDiscountActionTypes {
2358
2367
  FormHomeQuoterFirstNameSet = "FormHomeQuoterFirstNameSet",
2359
2368
  FormHomeQuoterLastNameSet = "FormHomeQuoterLastNameSet",
2360
2369
  FormHomeQuoterPhoneSet = "FormHomeQuoterPhoneSet",
2370
+ FormHomeQuoterPhoneStatusSet = "FormHomeQuoterPhoneStatusSet",
2361
2371
  FormHomeUtmCampaignSet = "FormHomeUtmCampaignSet",
2362
2372
  FormHomeUtmSourceSet = "FormHomeUtmSourceSet",
2363
2373
  FormHomeUtmProducerSet = "FormHomeUtmProducerSet",
@@ -2369,6 +2379,7 @@ interface QuoterInfoInterface {
2369
2379
  firstName: string;
2370
2380
  lastName: string;
2371
2381
  phone: string;
2382
+ phoneStatus: ValidationStatusTypes;
2372
2383
  recalculate: boolean;
2373
2384
  utmSource?: string;
2374
2385
  utmCampaign?: string;
@@ -2438,6 +2449,13 @@ type FormHomeDiscountStateActionType = {
2438
2449
  phone: string;
2439
2450
  };
2440
2451
  localIndex?: string;
2452
+ } | {
2453
+ type: StoreFormHomeDiscountActionTypes.FormHomeQuoterPhoneStatusSet;
2454
+ payload: {
2455
+ phone: string;
2456
+ phoneStatus: ValidationStatusTypes;
2457
+ };
2458
+ localIndex?: string;
2441
2459
  } | {
2442
2460
  type: StoreFormHomeDiscountActionTypes.FormHomeUtmCampaignSet;
2443
2461
  payload: {
@@ -2717,6 +2735,7 @@ declare enum StoreFormLifeApplicantActionTypes {
2717
2735
  FormLifeQuoterFirstNameSet = "FormLifeQuoterFirstNameSet",
2718
2736
  FormLifeQuoterLastNameSet = "FormLifeQuoterLastNameSet",
2719
2737
  FormLifeQuoterPhoneSet = "FormLifeQuoterPhoneSet",
2738
+ FormLifeQuoterPhoneStatusSet = "FormLifeQuoterPhoneStatusSet",
2720
2739
  FormLifeUtmCampaignSet = "FormLifeUtmCampaignSet",
2721
2740
  FormLifeUtmSourceSet = "FormLifeUtmSourceSet",
2722
2741
  FormLifeUtmProducerSet = "FormLifeUtmProducerSet"
@@ -2736,6 +2755,7 @@ interface FormLifeApplicantStateInterface extends StateBaseInterface {
2736
2755
  firstName: string;
2737
2756
  lastName: string;
2738
2757
  phone: string;
2758
+ phoneStatus: ValidationStatusTypes;
2739
2759
  recalculate: boolean;
2740
2760
  utmSource?: string;
2741
2761
  utmCampaign?: string;
@@ -2812,6 +2832,13 @@ type FormLifeApplicantStateActionType = {
2812
2832
  phone: string;
2813
2833
  };
2814
2834
  localIndex?: string;
2835
+ } | {
2836
+ type: StoreFormLifeApplicantActionTypes.FormLifeQuoterPhoneStatusSet;
2837
+ payload: {
2838
+ phone: string;
2839
+ phoneStatus: ValidationStatusTypes;
2840
+ };
2841
+ localIndex?: string;
2815
2842
  } | {
2816
2843
  type: StoreFormLifeApplicantActionTypes.FormLifeUtmCampaignSet;
2817
2844
  payload: {
@@ -3074,6 +3101,14 @@ declare const useHandlerCarQuoterEmail: () => UseHandlerQuoterEmailInterface;
3074
3101
  declare const useHandlerHomeQuoterEmail: () => UseHandlerQuoterEmailInterface;
3075
3102
  declare const useHandlerLifeQuoterEmail: () => UseHandlerQuoterEmailInterface;
3076
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
+
3077
3112
  type UseHandlerQuoteInterface = DataHandlerRequestState & {
3078
3113
  postRequestQuoteOnliaUrl: (isLoader: boolean, redirectUrl: string) => void;
3079
3114
  postRequestQuote: (isRecalc: boolean, hasToBeConfirmed?: boolean) => void;
@@ -3416,4 +3451,4 @@ interface AutofillOptions {
3416
3451
  */
3417
3452
  declare const useAutofillLifeForm: (options?: AutofillOptions) => void;
3418
3453
 
3419
- 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.24",
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.24",
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": "97cb29726d1311aebdd7e6f8c6256023e7d3edac"
40
+ "gitHead": "887e4bfc4cf4c6849ce8306c43d5e55b20813411"
41
41
  }