@alba-cars/common-modules 1.3.6 → 1.3.7

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.
@@ -86,6 +86,7 @@ export declare class SellCarRequestResponseDTO {
86
86
  phone: string;
87
87
  email?: string;
88
88
  city: string;
89
+ marketPrice?: string;
89
90
  requestType: RequestType;
90
91
  make?: {
91
92
  id: string;
@@ -306,6 +306,11 @@ __decorate([
306
306
  (0, class_validator_1.IsString)(),
307
307
  __metadata("design:type", String)
308
308
  ], SellCarRequestResponseDTO.prototype, "city", void 0);
309
+ __decorate([
310
+ (0, class_validator_1.IsString)(),
311
+ (0, class_validator_1.IsOptional)(),
312
+ __metadata("design:type", String)
313
+ ], SellCarRequestResponseDTO.prototype, "marketPrice", void 0);
309
314
  __decorate([
310
315
  (0, class_validator_1.IsEnum)(RequestType),
311
316
  __metadata("design:type", String)
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.6",
6
+ "version": "1.3.7",
7
7
  "description": "A package containing DTOs, validation classes and common modules and interfaces for Alba Cars",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",