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.
@@ -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 * from "./Estate";
2
+ export * from "./EstateAsset";
3
+ export * from "./EstateCat";
4
+ export * from "./EstateImage";
5
+ export * from "./EstateOption";
6
+ export * from "./EstatePlus";
7
+ export * from "./EstateRented";
@@ -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,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 * from "./Estate";
2
+ export * from "./EstateAsset";
3
+ export * from "./EstateCat";
4
+ export * from "./EstateImage";
5
+ export * from "./EstateOption";
6
+ export * from "./EstatePlus";
7
+ export * from "./EstateRented";
@@ -0,0 +1,7 @@
1
+ export * from "./Estate";
2
+ export * from "./EstateAsset";
3
+ export * from "./EstateCat";
4
+ export * from "./EstateImage";
5
+ export * from "./EstateOption";
6
+ export * from "./EstatePlus";
7
+ export * from "./EstateRented";
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.23",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",