asv-hlps 1.2.12 → 1.2.15

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.
@@ -14,10 +14,11 @@ export interface Estate {
14
14
  salePrice: number;
15
15
  cat: EstateCat;
16
16
  por: EstatePor;
17
- region: Region;
18
- city: City;
19
- quarter: Quarter;
20
- prop: User;
21
- housings: Housing[];
22
- assets: EstateAsset[];
17
+ region?: Region;
18
+ city?: City;
19
+ quarter?: Quarter;
20
+ prop?: User;
21
+ isActive?: boolean;
22
+ housings?: Housing[];
23
+ assets?: EstateAsset[];
23
24
  }
@@ -0,0 +1,31 @@
1
+ import { AuthTag } from "../auth/AuthTag";
2
+ import { Address } from "./Address";
3
+ import { Gender } from "./Gender";
4
+ import { Ste } from "./Ste";
5
+ import { UserGrp } from "./UserGrp";
6
+ import { UserRole } from "./UserRole";
7
+ import { UserTitr } from "./UserTitr";
8
+ export interface UserAbs extends Address {
9
+ id: number;
10
+ codeCompta?: string | number;
11
+ firstname?: string;
12
+ lastname?: string;
13
+ username?: string;
14
+ birthday?: Date | string;
15
+ password?: string;
16
+ ip?: string;
17
+ isActive: boolean;
18
+ disabled?: boolean;
19
+ foto?: string;
20
+ clp?: string;
21
+ periodBill?: string;
22
+ gender?: Gender;
23
+ titr?: UserTitr;
24
+ clientId?: number;
25
+ grp?: UserGrp;
26
+ tags?: AuthTag[];
27
+ role?: UserRole;
28
+ roles?: UserRole[];
29
+ ste?: Ste;
30
+ fullname?: string;
31
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { Estate } from "../estates/Estate";
2
+ import { Housing } from "../estates/Housing";
3
+ import { UserAbs } from "./UserAbs";
4
+ export interface UserNotarial extends UserAbs {
5
+ estates?: Estate[];
6
+ entryYear?: string;
7
+ hasHousing?: boolean;
8
+ housing?: Housing;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -14,10 +14,11 @@ export interface Estate {
14
14
  salePrice: number;
15
15
  cat: EstateCat;
16
16
  por: EstatePor;
17
- region: Region;
18
- city: City;
19
- quarter: Quarter;
20
- prop: User;
21
- housings: Housing[];
22
- assets: EstateAsset[];
17
+ region?: Region;
18
+ city?: City;
19
+ quarter?: Quarter;
20
+ prop?: User;
21
+ isActive?: boolean;
22
+ housings?: Housing[];
23
+ assets?: EstateAsset[];
23
24
  }
@@ -0,0 +1,31 @@
1
+ import { AuthTag } from "../auth/AuthTag";
2
+ import { Address } from "./Address";
3
+ import { Gender } from "./Gender";
4
+ import { Ste } from "./Ste";
5
+ import { UserGrp } from "./UserGrp";
6
+ import { UserRole } from "./UserRole";
7
+ import { UserTitr } from "./UserTitr";
8
+ export interface UserAbs extends Address {
9
+ id: number;
10
+ codeCompta?: string | number;
11
+ firstname?: string;
12
+ lastname?: string;
13
+ username?: string;
14
+ birthday?: Date | string;
15
+ password?: string;
16
+ ip?: string;
17
+ isActive: boolean;
18
+ disabled?: boolean;
19
+ foto?: string;
20
+ clp?: string;
21
+ periodBill?: string;
22
+ gender?: Gender;
23
+ titr?: UserTitr;
24
+ clientId?: number;
25
+ grp?: UserGrp;
26
+ tags?: AuthTag[];
27
+ role?: UserRole;
28
+ roles?: UserRole[];
29
+ ste?: Ste;
30
+ fullname?: string;
31
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import { Estate } from "../estates/Estate";
2
+ import { Housing } from "../estates/Housing";
3
+ import { UserAbs } from "./UserAbs";
4
+ export interface UserNotarial extends UserAbs {
5
+ estates?: Estate[];
6
+ entryYear?: string;
7
+ hasHousing?: boolean;
8
+ housing?: Housing;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.2.12",
3
+ "version": "1.2.15",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",