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