@alba-cars/common-modules 2.8.8 → 2.9.0

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.
@@ -20,6 +20,7 @@ export declare class BankValuationRequestCreateDto {
20
20
  engineType?: string;
21
21
  mileage: number;
22
22
  specs: string;
23
+ specification?: string;
23
24
  value: number;
24
25
  comments?: string;
25
26
  images?: string[];
@@ -60,6 +60,7 @@ export declare class Vehicle extends BaseModel {
60
60
  deposits?: Deposit[];
61
61
  inspection?: VehicleInspectionDTO;
62
62
  dubiCarsAdId?: string;
63
+ marketingTitle?: string;
63
64
  soldAt?: Date;
64
65
  static fromPlain(plain: Record<string, unknown>): Vehicle;
65
66
  toPlain(): Record<string, unknown>;
@@ -71,6 +71,7 @@ export declare class VehicleCreateDTO extends BaseCreateDTO {
71
71
  status: string;
72
72
  features?: string[];
73
73
  metaData?: VehicleMetaDataDTO;
74
+ marketingTitle?: string;
74
75
  isDraft?: boolean;
75
76
  pageNo?: number;
76
77
  draft?: VehicleDraft;
@@ -120,6 +121,7 @@ export declare class VehicleUpdateDTO extends BaseUpdateDTO {
120
121
  status: string;
121
122
  isDraft?: boolean;
122
123
  pageNo?: number;
124
+ marketingTitle?: string;
123
125
  features: VehicleFeaturesUpdateDTO;
124
126
  metaData: VehicleMetaDataDTO;
125
127
  validate(): string[];