asv-hlps-market 1.0.21 → 1.0.23
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.
- package/lib/cjs/estates/Estate.d.ts +33 -0
- package/lib/cjs/estates/Estate.js +2 -0
- package/lib/cjs/estates/EstateAsset.d.ts +9 -0
- package/lib/cjs/estates/EstateAsset.js +2 -0
- package/lib/cjs/estates/EstateCat.d.ts +9 -0
- package/lib/cjs/estates/EstateCat.js +2 -0
- package/lib/cjs/estates/EstateImage.d.ts +3 -0
- package/lib/cjs/estates/EstateImage.js +2 -0
- package/lib/cjs/estates/EstateOption.d.ts +7 -0
- package/lib/cjs/estates/EstateOption.js +2 -0
- package/lib/cjs/estates/EstatePlus.d.ts +7 -0
- package/lib/cjs/estates/EstatePlus.js +2 -0
- package/lib/cjs/estates/EstateRented.d.ts +16 -0
- package/lib/cjs/estates/EstateRented.js +2 -0
- package/lib/cjs/estates/index.d.ts +7 -0
- package/lib/cjs/estates/index.js +23 -0
- package/lib/esm/estates/Estate.d.ts +33 -0
- package/lib/esm/estates/Estate.js +1 -0
- package/lib/esm/estates/EstateAsset.d.ts +9 -0
- package/lib/esm/estates/EstateAsset.js +1 -0
- package/lib/esm/estates/EstateCat.d.ts +9 -0
- package/lib/esm/estates/EstateCat.js +1 -0
- package/lib/esm/estates/EstateImage.d.ts +3 -0
- package/lib/esm/estates/EstateImage.js +1 -0
- package/lib/esm/estates/EstateOption.d.ts +7 -0
- package/lib/esm/estates/EstateOption.js +1 -0
- package/lib/esm/estates/EstatePlus.d.ts +7 -0
- package/lib/esm/estates/EstatePlus.js +1 -0
- package/lib/esm/estates/EstateRented.d.ts +16 -0
- package/lib/esm/estates/EstateRented.js +1 -0
- package/lib/esm/estates/index.d.ts +7 -0
- package/lib/esm/estates/index.js +7 -0
- package/package.json +1 -1
@@ -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,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,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./Estate"), exports);
|
18
|
+
__exportStar(require("./EstateAsset"), exports);
|
19
|
+
__exportStar(require("./EstateCat"), exports);
|
20
|
+
__exportStar(require("./EstateImage"), exports);
|
21
|
+
__exportStar(require("./EstateOption"), exports);
|
22
|
+
__exportStar(require("./EstatePlus"), exports);
|
23
|
+
__exportStar(require("./EstateRented"), exports);
|
@@ -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 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -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 {};
|