asv-hlps-market 1.0.24 → 1.0.26

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,20 @@
1
+ import Estate from "../../estates/models/Estate";
2
+ import User from "../../users/models/User";
3
+ export interface Booking {
4
+ id: number;
5
+ booker: User;
6
+ cancelled: Date;
7
+ createdAt: Date;
8
+ endDate: Date;
9
+ estate: Estate;
10
+ flightArrivalTime: string;
11
+ flightCompagny: string;
12
+ flightNumber: string;
13
+ isActive: boolean;
14
+ isCarReserved: boolean;
15
+ isReservedDriver: boolean;
16
+ isValided: boolean;
17
+ ref: string;
18
+ startDate: Date;
19
+ updatedAt: Date;
20
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,6 @@
1
1
  import Ste from "asv-hlps/lib/cjs/users/models/Ste";
2
2
  import ProductIn from "../../products/models/ProductIn";
3
+ import { Shop } from "../../shops/models";
3
4
  import User from "../../users/models/User";
4
5
  import { BuyProduct } from "./BuyProduct";
5
6
  export interface Buy {
@@ -29,5 +30,6 @@ export interface Buy {
29
30
  updatedAt: Date;
30
31
  directReceived: boolean;
31
32
  pvdBillNumber: string;
33
+ shop: Shop;
32
34
  }
33
35
  export default Buy;
@@ -0,0 +1,20 @@
1
+ import Estate from "../../estates/models/Estate";
2
+ import User from "../../users/models/User";
3
+ export interface Booking {
4
+ id: number;
5
+ booker: User;
6
+ cancelled: Date;
7
+ createdAt: Date;
8
+ endDate: Date;
9
+ estate: Estate;
10
+ flightArrivalTime: string;
11
+ flightCompagny: string;
12
+ flightNumber: string;
13
+ isActive: boolean;
14
+ isCarReserved: boolean;
15
+ isReservedDriver: boolean;
16
+ isValided: boolean;
17
+ ref: string;
18
+ startDate: Date;
19
+ updatedAt: Date;
20
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -1,5 +1,6 @@
1
1
  import Ste from "asv-hlps/lib/cjs/users/models/Ste";
2
2
  import ProductIn from "../../products/models/ProductIn";
3
+ import { Shop } from "../../shops/models";
3
4
  import User from "../../users/models/User";
4
5
  import { BuyProduct } from "./BuyProduct";
5
6
  export interface Buy {
@@ -29,5 +30,6 @@ export interface Buy {
29
30
  updatedAt: Date;
30
31
  directReceived: boolean;
31
32
  pvdBillNumber: string;
33
+ shop: Shop;
32
34
  }
33
35
  export default Buy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps-market",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",