@alba-cars/common-modules 2.10.2 → 2.10.4

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.
@@ -4,6 +4,9 @@ export declare class BankValuationRequestCreateDto {
4
4
  name: string;
5
5
  email?: string;
6
6
  phone: string;
7
+ clientName?: string | null;
8
+ clientEmail?: string | null;
9
+ clientPhone?: string | null;
7
10
  bankName: string;
8
11
  bankerEmail?: string;
9
12
  makeDealDriveId?: string;
@@ -16,6 +16,9 @@ export declare class BankValuationRequest {
16
16
  name: string;
17
17
  email: string;
18
18
  phone: string;
19
+ clientName?: string | null;
20
+ clientEmail?: string | null;
21
+ clientPhone?: string | null;
19
22
  bankName: string;
20
23
  bankerEmail?: string;
21
24
  makeDealDriveId?: string;
@@ -214,6 +214,7 @@ export declare class VehicleFilter extends BaseFilter {
214
214
  warranty?: string;
215
215
  compareCarId?: string;
216
216
  specialDeals?: boolean;
217
+ isPostedOnDubiCars?: boolean | "true" | "false";
217
218
  soldAt?: DateFilter;
218
219
  interiorColor?: string;
219
220
  validate?(): string[];