asv-hlps 1.2.52 → 1.2.53
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/core/estates/hlpEstate.d.ts +2 -2
- package/lib/cjs/core/estates/index.d.ts +1 -1
- package/lib/cjs/core/estates/index.js +1 -1
- package/lib/cjs/core/estates/pipes/estate-pipe.d.ts +1 -1
- package/lib/cjs/core/estates/pipes/list-estate-pipe.d.ts +1 -1
- package/lib/cjs/models/entities/bills/Bill.d.ts +1 -1
- package/lib/cjs/models/entities/estates/Estate.d.ts +24 -0
- package/lib/cjs/models/entities/estates/Estate.js +2 -0
- package/lib/cjs/models/entities/estates/EstateAsset.d.ts +7 -0
- package/lib/cjs/models/entities/estates/EstateAsset.js +2 -0
- package/lib/cjs/models/entities/estates/EstateCat.d.ts +3 -0
- package/lib/cjs/models/entities/estates/EstateCat.js +2 -0
- package/lib/cjs/models/entities/estates/EstateElt.d.ts +3 -0
- package/lib/cjs/models/entities/estates/EstateElt.js +2 -0
- package/lib/cjs/models/entities/estates/EstateLevel.d.ts +3 -0
- package/lib/cjs/models/entities/estates/EstateLevel.js +2 -0
- package/lib/cjs/models/entities/estates/EstatePor.d.ts +3 -0
- package/lib/cjs/models/entities/estates/EstatePor.js +2 -0
- package/lib/cjs/models/entities/estates/Housing.d.ts +17 -0
- package/lib/cjs/models/entities/estates/Housing.js +2 -0
- package/lib/cjs/models/entities/estates/HousingRented.d.ts +15 -0
- package/lib/cjs/models/entities/estates/HousingRented.js +2 -0
- package/lib/cjs/models/entities/estates/index.d.ts +9 -0
- package/lib/cjs/models/entities/estates/index.js +2 -0
- package/lib/cjs/models/entities/users/UserNotatial.d.ts +2 -2
- package/lib/cjs/services/authService.d.ts +4 -4
- package/lib/esm/core/estates/hlpEstate.d.ts +2 -2
- package/lib/esm/core/estates/index.d.ts +1 -1
- package/lib/esm/core/estates/index.js +1 -1
- package/lib/esm/core/estates/pipes/estate-pipe.d.ts +1 -1
- package/lib/esm/core/estates/pipes/list-estate-pipe.d.ts +1 -1
- package/lib/esm/models/entities/bills/Bill.d.ts +1 -1
- package/lib/esm/models/entities/estates/Estate.d.ts +24 -0
- package/lib/esm/models/entities/estates/Estate.js +1 -0
- package/lib/esm/models/entities/estates/EstateAsset.d.ts +7 -0
- package/lib/esm/models/entities/estates/EstateAsset.js +1 -0
- package/lib/esm/models/entities/estates/EstateCat.d.ts +3 -0
- package/lib/esm/models/entities/estates/EstateCat.js +1 -0
- package/lib/esm/models/entities/estates/EstateElt.d.ts +3 -0
- package/lib/esm/models/entities/estates/EstateElt.js +1 -0
- package/lib/esm/models/entities/estates/EstateLevel.d.ts +3 -0
- package/lib/esm/models/entities/estates/EstateLevel.js +1 -0
- package/lib/esm/models/entities/estates/EstatePor.d.ts +3 -0
- package/lib/esm/models/entities/estates/EstatePor.js +1 -0
- package/lib/esm/models/entities/estates/Housing.d.ts +17 -0
- package/lib/esm/models/entities/estates/Housing.js +1 -0
- package/lib/esm/models/entities/estates/HousingRented.d.ts +15 -0
- package/lib/esm/models/entities/estates/HousingRented.js +1 -0
- package/lib/esm/models/entities/estates/index.d.ts +9 -0
- package/lib/esm/models/entities/estates/index.js +1 -0
- package/lib/esm/models/entities/users/UserNotatial.d.ts +2 -2
- package/lib/esm/services/authService.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Estate } from "
|
|
2
|
-
import { Housing } from "
|
|
1
|
+
import { Estate } from "../../models/entities/estates/Estate";
|
|
2
|
+
import { Housing } from "../../models/entities/estates/Housing";
|
|
3
3
|
declare class HlpEstate {
|
|
4
4
|
nbHousings(estate: Estate): number;
|
|
5
5
|
totalHousings(estates: Estate[]): number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import HlpEstate from "./hlpEstate";
|
|
2
2
|
import EstatePipe from "./pipes/estate-pipe";
|
|
3
3
|
import ListEstatePipe from "./pipes/estate-pipe";
|
|
4
|
-
export * from "
|
|
4
|
+
export * from "../../models/entities/estates/index";
|
|
5
5
|
export { HlpEstate, EstatePipe, ListEstatePipe };
|
|
@@ -24,4 +24,4 @@ const estate_pipe_1 = __importDefault(require("./pipes/estate-pipe"));
|
|
|
24
24
|
exports.EstatePipe = estate_pipe_1.default;
|
|
25
25
|
const estate_pipe_2 = __importDefault(require("./pipes/estate-pipe"));
|
|
26
26
|
exports.ListEstatePipe = estate_pipe_2.default;
|
|
27
|
-
__exportStar(require("
|
|
27
|
+
__exportStar(require("../../models/entities/estates/index"), exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { City } from "../world/City";
|
|
3
|
+
import { Quarter } from "../world/Quarter";
|
|
4
|
+
import { Region } from "../world/Region";
|
|
5
|
+
import { EstateAsset } from "./EstateAsset";
|
|
6
|
+
import { EstateCat } from "./EstateCat";
|
|
7
|
+
import { EstatePor } from "./EstatePor";
|
|
8
|
+
import { Housing } from "./Housing";
|
|
9
|
+
export interface Estate {
|
|
10
|
+
id: number;
|
|
11
|
+
ref: string;
|
|
12
|
+
createdAt: Date;
|
|
13
|
+
description: string;
|
|
14
|
+
salePrice?: number | string;
|
|
15
|
+
cat?: EstateCat;
|
|
16
|
+
por?: EstatePor;
|
|
17
|
+
region?: Region;
|
|
18
|
+
city?: City;
|
|
19
|
+
quarter?: Quarter;
|
|
20
|
+
prop?: User;
|
|
21
|
+
isActive?: boolean;
|
|
22
|
+
housings?: Housing[];
|
|
23
|
+
assets?: EstateAsset[];
|
|
24
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { Estate } from "./Estate";
|
|
3
|
+
import { HousingRented } from "./HousingRented";
|
|
4
|
+
export interface Housing {
|
|
5
|
+
id: number;
|
|
6
|
+
createdAt: Date;
|
|
7
|
+
description: string;
|
|
8
|
+
ref: string;
|
|
9
|
+
price: number;
|
|
10
|
+
deposit: number;
|
|
11
|
+
chargesPrice: number;
|
|
12
|
+
isActive: boolean;
|
|
13
|
+
estate: Estate;
|
|
14
|
+
lodger: User;
|
|
15
|
+
encoder: User;
|
|
16
|
+
rented: HousingRented;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { Housing } from "./Housing";
|
|
3
|
+
export interface HousingRented {
|
|
4
|
+
id: number;
|
|
5
|
+
dateIn: Date;
|
|
6
|
+
dateOut: Date;
|
|
7
|
+
price: number;
|
|
8
|
+
deposit: number;
|
|
9
|
+
prepaid: number;
|
|
10
|
+
lodger?: User;
|
|
11
|
+
lodgerId?: number;
|
|
12
|
+
housingId?: number;
|
|
13
|
+
housing?: Housing;
|
|
14
|
+
encoder?: User;
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Estate } from "./Estate";
|
|
2
|
+
import { EstateAsset } from "./EstateAsset";
|
|
3
|
+
import { EstateCat } from "./EstateCat";
|
|
4
|
+
import { EstateElt } from "./EstateElt";
|
|
5
|
+
import { EstateLevel } from "./EstateLevel";
|
|
6
|
+
import { EstatePor } from "./EstatePor";
|
|
7
|
+
import { Housing } from "./Housing";
|
|
8
|
+
import { HousingRented } from "./HousingRented";
|
|
9
|
+
export { Estate, EstateAsset, EstateCat, EstateElt, EstateLevel, EstatePor, Housing, HousingRented };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Estate } from "
|
|
2
|
-
import { Housing } from "
|
|
1
|
+
import { Estate } from "../estates/Estate";
|
|
2
|
+
import { Housing } from "../estates/Housing";
|
|
3
3
|
import { UserAbs } from "./UserAbs";
|
|
4
4
|
export interface UserNotarial extends UserAbs {
|
|
5
5
|
estates?: Estate[];
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { AuthParam } from "../auth";
|
|
2
|
+
declare type LoginType = {
|
|
3
|
+
username: string;
|
|
4
|
+
password: string;
|
|
5
|
+
};
|
|
2
6
|
export declare class AuthService {
|
|
3
7
|
tokenKey: string;
|
|
4
8
|
authStes: string[];
|
|
@@ -13,8 +17,4 @@ export declare class AuthService {
|
|
|
13
17
|
authUser: () => unknown;
|
|
14
18
|
getAuth: (param?: AuthParam) => boolean;
|
|
15
19
|
}
|
|
16
|
-
declare type LoginType = {
|
|
17
|
-
username: string;
|
|
18
|
-
password: string;
|
|
19
|
-
};
|
|
20
20
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Estate } from "
|
|
2
|
-
import { Housing } from "
|
|
1
|
+
import { Estate } from "../../models/entities/estates/Estate";
|
|
2
|
+
import { Housing } from "../../models/entities/estates/Housing";
|
|
3
3
|
declare class HlpEstate {
|
|
4
4
|
nbHousings(estate: Estate): number;
|
|
5
5
|
totalHousings(estates: Estate[]): number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import HlpEstate from "./hlpEstate";
|
|
2
2
|
import EstatePipe from "./pipes/estate-pipe";
|
|
3
3
|
import ListEstatePipe from "./pipes/estate-pipe";
|
|
4
|
-
export * from "
|
|
4
|
+
export * from "../../models/entities/estates/index";
|
|
5
5
|
export { HlpEstate, EstatePipe, ListEstatePipe };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import HlpEstate from "./hlpEstate";
|
|
2
2
|
import EstatePipe from "./pipes/estate-pipe";
|
|
3
3
|
import ListEstatePipe from "./pipes/estate-pipe";
|
|
4
|
-
export * from "
|
|
4
|
+
export * from "../../models/entities/estates/index";
|
|
5
5
|
export { HlpEstate, EstatePipe, ListEstatePipe };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { City } from "../world/City";
|
|
3
|
+
import { Quarter } from "../world/Quarter";
|
|
4
|
+
import { Region } from "../world/Region";
|
|
5
|
+
import { EstateAsset } from "./EstateAsset";
|
|
6
|
+
import { EstateCat } from "./EstateCat";
|
|
7
|
+
import { EstatePor } from "./EstatePor";
|
|
8
|
+
import { Housing } from "./Housing";
|
|
9
|
+
export interface Estate {
|
|
10
|
+
id: number;
|
|
11
|
+
ref: string;
|
|
12
|
+
createdAt: Date;
|
|
13
|
+
description: string;
|
|
14
|
+
salePrice?: number | string;
|
|
15
|
+
cat?: EstateCat;
|
|
16
|
+
por?: EstatePor;
|
|
17
|
+
region?: Region;
|
|
18
|
+
city?: City;
|
|
19
|
+
quarter?: Quarter;
|
|
20
|
+
prop?: User;
|
|
21
|
+
isActive?: boolean;
|
|
22
|
+
housings?: Housing[];
|
|
23
|
+
assets?: EstateAsset[];
|
|
24
|
+
}
|
|
@@ -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,17 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { Estate } from "./Estate";
|
|
3
|
+
import { HousingRented } from "./HousingRented";
|
|
4
|
+
export interface Housing {
|
|
5
|
+
id: number;
|
|
6
|
+
createdAt: Date;
|
|
7
|
+
description: string;
|
|
8
|
+
ref: string;
|
|
9
|
+
price: number;
|
|
10
|
+
deposit: number;
|
|
11
|
+
chargesPrice: number;
|
|
12
|
+
isActive: boolean;
|
|
13
|
+
estate: Estate;
|
|
14
|
+
lodger: User;
|
|
15
|
+
encoder: User;
|
|
16
|
+
rented: HousingRented;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { User } from "../users/User";
|
|
2
|
+
import { Housing } from "./Housing";
|
|
3
|
+
export interface HousingRented {
|
|
4
|
+
id: number;
|
|
5
|
+
dateIn: Date;
|
|
6
|
+
dateOut: Date;
|
|
7
|
+
price: number;
|
|
8
|
+
deposit: number;
|
|
9
|
+
prepaid: number;
|
|
10
|
+
lodger?: User;
|
|
11
|
+
lodgerId?: number;
|
|
12
|
+
housingId?: number;
|
|
13
|
+
housing?: Housing;
|
|
14
|
+
encoder?: User;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Estate } from "./Estate";
|
|
2
|
+
import { EstateAsset } from "./EstateAsset";
|
|
3
|
+
import { EstateCat } from "./EstateCat";
|
|
4
|
+
import { EstateElt } from "./EstateElt";
|
|
5
|
+
import { EstateLevel } from "./EstateLevel";
|
|
6
|
+
import { EstatePor } from "./EstatePor";
|
|
7
|
+
import { Housing } from "./Housing";
|
|
8
|
+
import { HousingRented } from "./HousingRented";
|
|
9
|
+
export { Estate, EstateAsset, EstateCat, EstateElt, EstateLevel, EstatePor, Housing, HousingRented };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Estate } from "
|
|
2
|
-
import { Housing } from "
|
|
1
|
+
import { Estate } from "../estates/Estate";
|
|
2
|
+
import { Housing } from "../estates/Housing";
|
|
3
3
|
import { UserAbs } from "./UserAbs";
|
|
4
4
|
export interface UserNotarial extends UserAbs {
|
|
5
5
|
estates?: Estate[];
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { AuthParam } from "../auth";
|
|
2
|
+
declare type LoginType = {
|
|
3
|
+
username: string;
|
|
4
|
+
password: string;
|
|
5
|
+
};
|
|
2
6
|
export declare class AuthService {
|
|
3
7
|
tokenKey: string;
|
|
4
8
|
authStes: string[];
|
|
@@ -13,8 +17,4 @@ export declare class AuthService {
|
|
|
13
17
|
authUser: () => unknown;
|
|
14
18
|
getAuth: (param?: AuthParam) => boolean;
|
|
15
19
|
}
|
|
16
|
-
declare type LoginType = {
|
|
17
|
-
username: string;
|
|
18
|
-
password: string;
|
|
19
|
-
};
|
|
20
20
|
export {};
|