@mychoice/mychoice-sdk-store 2.2.27 → 2.2.28

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.
@@ -8,7 +8,7 @@ export declare const createDriverItem: (state: FormCarDriverStateInterface) => F
8
8
  export declare const createDriverListItem: (state: FormCarDriverStateInterface, listKey: string) => FormCarDriverStateInterface;
9
9
  export declare const setDriverItemProperty: (state: FormCarDriverStateInterface, key: string, value: string | number | boolean | SelectDateInterface) => FormCarDriverStateInterface;
10
10
  export declare const setDriverListItemProperty: (state: FormCarDriverStateInterface, listKey: string, itemIndex: number, itemKey: string, value: string | number | boolean) => FormCarDriverStateInterface;
11
- export declare const setDriverLicenceInfo: (state: FormCarDriverStateInterface, key: string, value: string | number | boolean) => FormCarDriverStateInterface;
11
+ export declare const setDriverLicenceInfo: (state: FormCarDriverStateInterface, key: string, value: string | number | boolean | null) => FormCarDriverStateInterface;
12
12
  export declare const setDriverLicenceInfoDate: (state: FormCarDriverStateInterface, type: DateTypes, payload: LicenceDatePayloadType) => FormCarDriverStateInterface;
13
13
  export declare const setDriverLicenceType: (state: FormCarDriverStateInterface, payload: LicenceTypePayloadType) => FormCarDriverStateInterface;
14
14
  export declare const setDriverBirthDate: (state: FormCarDriverStateInterface, key: string, payload: BirthDatePayloadType) => FormCarDriverStateInterface;
@@ -13,11 +13,11 @@ export interface DriverLicenceInterface {
13
13
  gLicenceDate?: string;
14
14
  gLicenceYear?: string;
15
15
  gLicenceMonth?: string;
16
- passedDriverTraining?: boolean;
17
- previousLicence?: boolean;
16
+ passedDriverTraining?: boolean | null;
17
+ previousLicence?: boolean | null;
18
18
  outsideExp?: boolean;
19
- receivedG2?: boolean;
20
- receivedG?: boolean;
19
+ receivedG2?: boolean | null;
20
+ receivedG?: boolean | null;
21
21
  }
22
22
  export interface DriverCancellationItemInterface {
23
23
  reason: string;