asv-hlps-market 1.0.21 → 1.0.22

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,33 @@
1
+ import Currency from "asv-hlps/lib/cjs/cashs/models/Currency";
2
+ import EstateCat from "asv-hlps/lib/cjs/estates/models/EstateCat";
3
+ import EstatePor from "asv-hlps/lib/cjs/estates/models/EstatePor";
4
+ import City from "asv-hlps/lib/cjs/world/models/City";
5
+ import Quarter from "asv-hlps/lib/cjs/world/models/Quarter";
6
+ import { Shop } from "../shops/models/Shop";
7
+ import EstateAsset from "./EstateAsset";
8
+ import EstateImage from "./EstateImage";
9
+ import EstatePlus from "./EstatePlus";
10
+ export default interface Estate {
11
+ id: number;
12
+ createdAt: Date;
13
+ ref: string;
14
+ title: string;
15
+ description: string;
16
+ registre: string;
17
+ address: string;
18
+ nbOfPieces: string;
19
+ price: string;
20
+ pricePeriod: string;
21
+ currency: Currency;
22
+ cp: number;
23
+ isActive: boolean;
24
+ cat: EstateCat;
25
+ status: EstatePor;
26
+ city: City;
27
+ quarter: Quarter;
28
+ assets: EstateAsset[];
29
+ images: EstateImage[];
30
+ plus: EstatePlus[];
31
+ shop: Shop;
32
+ views: number;
33
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import EstateElt from "asv-hlps/lib/cjs/estates/models/EstateElt";
2
+ export default interface EstateAsset {
3
+ id: number;
4
+ name: string;
5
+ code: string;
6
+ elt: EstateElt;
7
+ qtity: number;
8
+ size: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import Estate from "./Estate";
2
+ export default interface EstateCat {
3
+ id: number;
4
+ name: string;
5
+ code: string;
6
+ iconName: string;
7
+ iconPack: string;
8
+ estates: Estate[];
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ import { Image } from "asv-hlps/lib/cjs/shared/models/Image";
2
+ export default interface EstateImage extends Image {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export default interface EstateOption {
2
+ id: number;
3
+ name: string;
4
+ code: string;
5
+ iconName: string;
6
+ iconPack: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import Estate from "./Estate";
2
+ import EstateOption from "./EstateOption";
3
+ export default interface EstatePlus {
4
+ id: number;
5
+ estate: Estate;
6
+ option: EstateOption;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ import User from "../users/models/User";
2
+ import Estate from "./Estate";
3
+ export default interface EstateRented {
4
+ createdAt: Date;
5
+ dateIn: Date;
6
+ dateOut: Date;
7
+ deposit: number;
8
+ encoder: User;
9
+ estate: Estate;
10
+ id: number;
11
+ lodger: User;
12
+ paymentDay: number;
13
+ prepaid: number;
14
+ price: number;
15
+ restOnPrepaid: number;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export { default as Estate } from "./Estate";
2
+ export { default as EstateAsset } from "./EstateAsset";
3
+ export { default as EstateCat } from "./EstateCat";
4
+ export { default as EstateImage } from "./EstateImage";
5
+ export { default as EstateOption } from "./EstateOption";
6
+ export { default as EstatePlus } from "./EstatePlus";
7
+ export { default as EstateRented } from "./EstateRented";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
1
+ import Currency from "asv-hlps/lib/cjs/cashs/models/Currency";
2
+ import EstateCat from "asv-hlps/lib/cjs/estates/models/EstateCat";
3
+ import EstatePor from "asv-hlps/lib/cjs/estates/models/EstatePor";
4
+ import City from "asv-hlps/lib/cjs/world/models/City";
5
+ import Quarter from "asv-hlps/lib/cjs/world/models/Quarter";
6
+ import { Shop } from "../shops/models/Shop";
7
+ import EstateAsset from "./EstateAsset";
8
+ import EstateImage from "./EstateImage";
9
+ import EstatePlus from "./EstatePlus";
10
+ export default interface Estate {
11
+ id: number;
12
+ createdAt: Date;
13
+ ref: string;
14
+ title: string;
15
+ description: string;
16
+ registre: string;
17
+ address: string;
18
+ nbOfPieces: string;
19
+ price: string;
20
+ pricePeriod: string;
21
+ currency: Currency;
22
+ cp: number;
23
+ isActive: boolean;
24
+ cat: EstateCat;
25
+ status: EstatePor;
26
+ city: City;
27
+ quarter: Quarter;
28
+ assets: EstateAsset[];
29
+ images: EstateImage[];
30
+ plus: EstatePlus[];
31
+ shop: Shop;
32
+ views: number;
33
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import EstateElt from "asv-hlps/lib/cjs/estates/models/EstateElt";
2
+ export default interface EstateAsset {
3
+ id: number;
4
+ name: string;
5
+ code: string;
6
+ elt: EstateElt;
7
+ qtity: number;
8
+ size: string;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import Estate from "./Estate";
2
+ export default interface EstateCat {
3
+ id: number;
4
+ name: string;
5
+ code: string;
6
+ iconName: string;
7
+ iconPack: string;
8
+ estates: Estate[];
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import { Image } from "asv-hlps/lib/cjs/shared/models/Image";
2
+ export default interface EstateImage extends Image {
3
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ export default interface EstateOption {
2
+ id: number;
3
+ name: string;
4
+ code: string;
5
+ iconName: string;
6
+ iconPack: string;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import Estate from "./Estate";
2
+ import EstateOption from "./EstateOption";
3
+ export default interface EstatePlus {
4
+ id: number;
5
+ estate: Estate;
6
+ option: EstateOption;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,16 @@
1
+ import User from "../users/models/User";
2
+ import Estate from "./Estate";
3
+ export default interface EstateRented {
4
+ createdAt: Date;
5
+ dateIn: Date;
6
+ dateOut: Date;
7
+ deposit: number;
8
+ encoder: User;
9
+ estate: Estate;
10
+ id: number;
11
+ lodger: User;
12
+ paymentDay: number;
13
+ prepaid: number;
14
+ price: number;
15
+ restOnPrepaid: number;
16
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ export { default as Estate } from "./Estate";
2
+ export { default as EstateAsset } from "./EstateAsset";
3
+ export { default as EstateCat } from "./EstateCat";
4
+ export { default as EstateImage } from "./EstateImage";
5
+ export { default as EstateOption } from "./EstateOption";
6
+ export { default as EstatePlus } from "./EstatePlus";
7
+ export { default as EstateRented } from "./EstateRented";
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps-market",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",