@alba-cars/common-modules 2.9.0 → 2.10.1
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/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;
|
|
@@ -61,6 +61,7 @@ export declare class Vehicle extends BaseModel {
|
|
|
61
61
|
inspection?: VehicleInspectionDTO;
|
|
62
62
|
dubiCarsAdId?: string;
|
|
63
63
|
marketingTitle?: string;
|
|
64
|
+
batteryWarranty?: string;
|
|
64
65
|
soldAt?: Date;
|
|
65
66
|
static fromPlain(plain: Record<string, unknown>): Vehicle;
|
|
66
67
|
toPlain(): Record<string, unknown>;
|
|
@@ -72,6 +72,7 @@ export declare class VehicleCreateDTO extends BaseCreateDTO {
|
|
|
72
72
|
features?: string[];
|
|
73
73
|
metaData?: VehicleMetaDataDTO;
|
|
74
74
|
marketingTitle?: string;
|
|
75
|
+
batteryWarranty?: string;
|
|
75
76
|
isDraft?: boolean;
|
|
76
77
|
pageNo?: number;
|
|
77
78
|
draft?: VehicleDraft;
|
|
@@ -122,6 +123,7 @@ export declare class VehicleUpdateDTO extends BaseUpdateDTO {
|
|
|
122
123
|
isDraft?: boolean;
|
|
123
124
|
pageNo?: number;
|
|
124
125
|
marketingTitle?: string;
|
|
126
|
+
batteryWarranty?: string;
|
|
125
127
|
features: VehicleFeaturesUpdateDTO;
|
|
126
128
|
metaData: VehicleMetaDataDTO;
|
|
127
129
|
validate(): string[];
|