asv-hlps-market 1.0.29 → 1.0.30

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.
@@ -0,0 +1,3 @@
1
+ import NaCoAc from "asv-hlps/lib/cjs/shared/models/NaCoAc";
2
+ export interface Status extends NaCoAc {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
+ import { Status } from "../../shared/models/Status";
1
2
  import { VehicleBrand } from "./VehicleBrand";
2
3
  import { VehicleCat } from "./VehicleCat";
3
4
  import { VehicleColor } from "./VehicleColor";
@@ -11,6 +12,7 @@ export interface Vehicle {
11
12
  id: number;
12
13
  isActive: boolean;
13
14
  name: string;
15
+ status: Status;
14
16
  cat: VehicleCat;
15
17
  brand: VehicleBrand;
16
18
  model: VehicleModel;
@@ -0,0 +1,3 @@
1
+ import NaCoAc from "asv-hlps/lib/cjs/shared/models/NaCoAc";
2
+ export interface Status extends NaCoAc {
3
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -1,3 +1,4 @@
1
+ import { Status } from "../../shared/models/Status";
1
2
  import { VehicleBrand } from "./VehicleBrand";
2
3
  import { VehicleCat } from "./VehicleCat";
3
4
  import { VehicleColor } from "./VehicleColor";
@@ -11,6 +12,7 @@ export interface Vehicle {
11
12
  id: number;
12
13
  isActive: boolean;
13
14
  name: string;
15
+ status: Status;
14
16
  cat: VehicleCat;
15
17
  brand: VehicleBrand;
16
18
  model: VehicleModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps-market",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",