@alba-cars/common-modules 2.10.0 → 2.10.2
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/features/bank-valuation-request/data/dto/BankValuationRequestDTO.d.ts +2 -0
- package/dist/features/models/BankValuationRequest.d.ts +3 -0
- package/dist/features/models/Vehicle.d.ts +1 -0
- package/dist/features/vehicle/data/dto/VehicleDTO.d.ts +2 -0
- package/dist/features/vehicle/data/dto/VehicleFilterDTO.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,8 @@ export declare class BankValuationRequest {
|
|
|
24
24
|
model: string;
|
|
25
25
|
trimDealDriveId?: string;
|
|
26
26
|
trim?: string;
|
|
27
|
+
trimOptionDealDriveId?: string;
|
|
28
|
+
trimOption?: string;
|
|
27
29
|
year: number;
|
|
28
30
|
color?: string;
|
|
29
31
|
vin: string;
|
|
@@ -40,6 +42,7 @@ export declare class BankValuationRequest {
|
|
|
40
42
|
extraIssuedCertificates?: string[];
|
|
41
43
|
payment?: Payment | null;
|
|
42
44
|
dealDriveEstimatedPrice?: number;
|
|
45
|
+
dealDriveEstimateDate?: Date;
|
|
43
46
|
createdAt?: Date;
|
|
44
47
|
updatedAt?: Date;
|
|
45
48
|
sessionId?: string | null;
|
|
@@ -62,6 +62,7 @@ export declare class Vehicle extends BaseModel {
|
|
|
62
62
|
dubiCarsAdId?: string;
|
|
63
63
|
marketingTitle?: string;
|
|
64
64
|
batteryWarranty?: string;
|
|
65
|
+
interiorColor?: string;
|
|
65
66
|
soldAt?: Date;
|
|
66
67
|
static fromPlain(plain: Record<string, unknown>): Vehicle;
|
|
67
68
|
toPlain(): Record<string, unknown>;
|
|
@@ -73,6 +73,7 @@ export declare class VehicleCreateDTO extends BaseCreateDTO {
|
|
|
73
73
|
metaData?: VehicleMetaDataDTO;
|
|
74
74
|
marketingTitle?: string;
|
|
75
75
|
batteryWarranty?: string;
|
|
76
|
+
interiorColor?: string;
|
|
76
77
|
isDraft?: boolean;
|
|
77
78
|
pageNo?: number;
|
|
78
79
|
draft?: VehicleDraft;
|
|
@@ -124,6 +125,7 @@ export declare class VehicleUpdateDTO extends BaseUpdateDTO {
|
|
|
124
125
|
pageNo?: number;
|
|
125
126
|
marketingTitle?: string;
|
|
126
127
|
batteryWarranty?: string;
|
|
128
|
+
interiorColor?: string;
|
|
127
129
|
features: VehicleFeaturesUpdateDTO;
|
|
128
130
|
metaData: VehicleMetaDataDTO;
|
|
129
131
|
validate(): string[];
|
|
@@ -215,6 +215,7 @@ export declare class VehicleFilter extends BaseFilter {
|
|
|
215
215
|
compareCarId?: string;
|
|
216
216
|
specialDeals?: boolean;
|
|
217
217
|
soldAt?: DateFilter;
|
|
218
|
+
interiorColor?: string;
|
|
218
219
|
validate?(): string[];
|
|
219
220
|
static fromPlain(plain: Record<string, unknown>): VehicleFilter;
|
|
220
221
|
static toPlain(entity: any): Record<string, unknown>;
|