@alba-cars/common-modules 2.4.1 → 2.4.3
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.
|
@@ -32,6 +32,7 @@ export declare class SellCarRequestDTO {
|
|
|
32
32
|
isDeleted?: boolean;
|
|
33
33
|
createdAt?: Date;
|
|
34
34
|
updatedAt?: Date;
|
|
35
|
+
inspectionBookingDate?: Date;
|
|
35
36
|
validate(): string[];
|
|
36
37
|
static fromPlain(plain: Record<string, unknown>): SellCarRequestDTO;
|
|
37
38
|
toPlain(): Record<string, unknown>;
|
|
@@ -108,6 +109,7 @@ export declare class SellCarRequestUpdateDTO {
|
|
|
108
109
|
fuelType?: string;
|
|
109
110
|
engineCapacity?: string;
|
|
110
111
|
description?: string;
|
|
112
|
+
inspectionBookingDate?: Date;
|
|
111
113
|
status?: "pending" | "inspection_scheduled" | "inspected" | "valued" | "approved" | "rejected" | "completed";
|
|
112
114
|
additionalDetails?: {
|
|
113
115
|
serviceHistory?: boolean;
|
|
@@ -151,6 +153,7 @@ export declare class SellCarRequestResponseDTO {
|
|
|
151
153
|
isActive: boolean;
|
|
152
154
|
images: string[];
|
|
153
155
|
media?: VehicleMediaCreateDTO[];
|
|
156
|
+
inspectionBookingDate?: Date;
|
|
154
157
|
createdById?: string | null;
|
|
155
158
|
updatedById?: string | null;
|
|
156
159
|
deletedById?: string | null;
|
|
@@ -171,7 +174,7 @@ export declare class SellCarFilterDTO {
|
|
|
171
174
|
export declare class SellCarOptionsDTO extends PaginationOptions {
|
|
172
175
|
sort?: {
|
|
173
176
|
field: string;
|
|
174
|
-
direction:
|
|
177
|
+
direction: "asc" | "desc";
|
|
175
178
|
};
|
|
176
179
|
static fromPlain(plain: Record<string, unknown>): SellCarOptionsDTO;
|
|
177
180
|
toPlain(): Record<string, unknown>;
|