@mychoice/mychoice-sdk-store 2.1.82 → 2.1.83
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.
- package/dist/cjs/handlers/dataHandlers/VehicleDataHandlers/interfaces.d.ts +2 -1
- package/dist/cjs/index.js +28 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/handlers/dataHandlers/VehicleDataHandlers/interfaces.d.ts +2 -1
- package/dist/esm/index.js +28 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +2 -2
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 } from '@mychoice/mychoice-sdk-components';
|
|
1
|
+
import { SdkFC, ModalTypes, AppTypes, InsuranceTypes, DeviceTypes, ScreenBPTypes, VehicleConditionTypes, DriverLicenceTypes, GenderTypes, OccupationTypes, DriverPriorityTypes, ValidationStatusTypes, RequestStatusTypes, SelectOptionInterface, SelectOptionGroupInterface } from '@mychoice/mychoice-sdk-components';
|
|
2
2
|
import * as redux from 'redux';
|
|
3
3
|
|
|
4
4
|
declare const initHttpResponse: () => void;
|
|
@@ -2915,6 +2915,7 @@ declare const useHandlerPostal: (insuranceType: InsuranceTypes) => UseHandlerPos
|
|
|
2915
2915
|
type UseHandlerVehicleMakeInterface = DataHandlerRequestState & {
|
|
2916
2916
|
getVehicleMake: (year: string) => void;
|
|
2917
2917
|
vehicleMakeList: SelectOptionInterface[];
|
|
2918
|
+
vehicleMakeGroupList: SelectOptionGroupInterface[];
|
|
2918
2919
|
};
|
|
2919
2920
|
type UseHandlerVehicleModelInterface = DataHandlerRequestState & {
|
|
2920
2921
|
getVehicleModel: (year: string, make: string) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mychoice/mychoice-sdk-store",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.83",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/hexdivision/mychoice-sdk#readme",
|
|
6
6
|
"author": "GogMes",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"redux": "^4.2.0",
|
|
38
38
|
"redux-thunk": "^2.4.1"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "93ef07e604aa3bd4fa1d6e2d7b2fa167863123f4"
|
|
41
41
|
}
|