@alba-cars/common-modules 2.13.2 → 2.14.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.
@@ -66,6 +66,7 @@ export declare class Vehicle extends BaseModel {
66
66
  soldAt?: Date;
67
67
  isBrandNew: boolean;
68
68
  isPinned: boolean;
69
+ isOnSale: boolean;
69
70
  static fromPlain(plain: Record<string, unknown>): Vehicle;
70
71
  toPlain(): Record<string, unknown>;
71
72
  }
@@ -20,7 +20,8 @@ export declare enum Designation {
20
20
  SALES_CONTROLLER = "Sales Controller",
21
21
  LOGISTICS_MANAGER = "Logistics Manager",
22
22
  MARKETING_OPERATIONS_MANAGER = "Marketing Operations Manager",
23
- CALL_CENTER_MANAGER = "Call Center Manager"
23
+ CALL_CENTER_MANAGER = "Call Center Manager",
24
+ TEAM_LEADER = "Team Leader"
24
25
  }
25
26
  export declare enum TeamCategory {
26
27
  SALES = "sales",
@@ -77,6 +77,7 @@ export declare class VehicleCreateDTO extends BaseCreateDTO {
77
77
  isDraft?: boolean;
78
78
  isBrandNew?: boolean;
79
79
  isPinned?: boolean;
80
+ isOnSale?: boolean;
80
81
  pageNo?: number;
81
82
  draft?: VehicleDraft;
82
83
  validate(): string[];
@@ -130,6 +131,7 @@ export declare class VehicleUpdateDTO extends BaseUpdateDTO {
130
131
  interiorColor?: string;
131
132
  isBrandNew?: boolean;
132
133
  isPinned?: boolean;
134
+ isOnSale?: boolean;
133
135
  features: VehicleFeaturesUpdateDTO;
134
136
  metaData: VehicleMetaDataDTO;
135
137
  validate(): string[];