@alba-cars/common-modules 2.5.1 → 2.5.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.
@@ -60,6 +60,7 @@ export declare class Vehicle extends BaseModel {
60
60
  deposits?: Deposit[];
61
61
  inspection?: VehicleInspectionDTO;
62
62
  dubiCarsAdId?: string;
63
+ soldAt?: Date;
63
64
  static fromPlain(plain: Record<string, unknown>): Vehicle;
64
65
  toPlain(): Record<string, unknown>;
65
66
  }
@@ -1,4 +1,4 @@
1
- import { BaseFilter, PaginationOptions, NumberRange } from "../../../../global";
1
+ import { BaseFilter, PaginationOptions, NumberRange, DateFilter } from "../../../../global";
2
2
  import { VehicleMake, VehicleModel, Vehicle, VehicleBodyType, VehicleFeature, VehicleFeatureCategory, VehicleMetaData, VehicleFinance } from "../../../models";
3
3
  import { VehicleCategory } from "../../../models/VehicleCategory";
4
4
  export type VehicleMakeSelectFields = keyof VehicleMake;
@@ -214,6 +214,7 @@ export declare class VehicleFilter extends BaseFilter {
214
214
  warranty?: string;
215
215
  compareCarId?: string;
216
216
  specialDeals?: boolean;
217
+ soldAt?: DateFilter;
217
218
  validate?(): string[];
218
219
  static fromPlain(plain: Record<string, unknown>): VehicleFilter;
219
220
  static toPlain(entity: any): Record<string, unknown>;