asv-hlps 1.3.15 → 1.3.16
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/models/entities/users/UserBase.d.ts +31 -0
- package/lib/cjs/models/entities/users/UserBase.js +2 -0
- package/lib/cjs/models/entities/users/index.d.ts +2 -1
- package/lib/esm/models/entities/users/UserBase.d.ts +31 -0
- package/lib/esm/models/entities/users/UserBase.js +1 -0
- package/lib/esm/models/entities/users/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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 UserBase 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
|
+
isValided?: boolean;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
isBadPayer?: boolean;
|
|
21
|
+
foto?: string;
|
|
22
|
+
clp?: string;
|
|
23
|
+
gender?: Gender;
|
|
24
|
+
titr?: UserTitr;
|
|
25
|
+
grp?: UserGrp;
|
|
26
|
+
tags?: AuthTag[];
|
|
27
|
+
role?: UserRole;
|
|
28
|
+
roles?: UserRole[];
|
|
29
|
+
ste?: Ste;
|
|
30
|
+
fullname?: string;
|
|
31
|
+
}
|
|
@@ -5,6 +5,7 @@ import { Leave } from "./Leave";
|
|
|
5
5
|
import { Ste } from "./Ste";
|
|
6
6
|
import { SteGrp } from "./SteGrp";
|
|
7
7
|
import { User } from "./User";
|
|
8
|
+
import { UserBase } from "./UserBase";
|
|
8
9
|
import { UserCredit } from "./UserCredit";
|
|
9
10
|
import { UserGrp } from "./UserGrp";
|
|
10
11
|
import { UserNotarial } from "./UserNotatial";
|
|
@@ -13,4 +14,4 @@ import { UserOnline } from "./UserOnline";
|
|
|
13
14
|
import { UserRole } from "./UserRole";
|
|
14
15
|
import { UserTitr } from "./UserTitr";
|
|
15
16
|
import { Zone } from "./Zone";
|
|
16
|
-
export {
|
|
17
|
+
export { Address, DutyPhcie, Gender, Leave, Ste, SteGrp, User, UserCredit, UserGrp, UserNotarial, UserNote, UserOnline, UserRole, UserTitr, UserBase, Zone, };
|
|
@@ -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 UserBase 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
|
+
isValided?: boolean;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
isBadPayer?: boolean;
|
|
21
|
+
foto?: string;
|
|
22
|
+
clp?: string;
|
|
23
|
+
gender?: Gender;
|
|
24
|
+
titr?: UserTitr;
|
|
25
|
+
grp?: UserGrp;
|
|
26
|
+
tags?: AuthTag[];
|
|
27
|
+
role?: UserRole;
|
|
28
|
+
roles?: UserRole[];
|
|
29
|
+
ste?: Ste;
|
|
30
|
+
fullname?: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,6 +5,7 @@ import { Leave } from "./Leave";
|
|
|
5
5
|
import { Ste } from "./Ste";
|
|
6
6
|
import { SteGrp } from "./SteGrp";
|
|
7
7
|
import { User } from "./User";
|
|
8
|
+
import { UserBase } from "./UserBase";
|
|
8
9
|
import { UserCredit } from "./UserCredit";
|
|
9
10
|
import { UserGrp } from "./UserGrp";
|
|
10
11
|
import { UserNotarial } from "./UserNotatial";
|
|
@@ -13,4 +14,4 @@ import { UserOnline } from "./UserOnline";
|
|
|
13
14
|
import { UserRole } from "./UserRole";
|
|
14
15
|
import { UserTitr } from "./UserTitr";
|
|
15
16
|
import { Zone } from "./Zone";
|
|
16
|
-
export {
|
|
17
|
+
export { Address, DutyPhcie, Gender, Leave, Ste, SteGrp, User, UserCredit, UserGrp, UserNotarial, UserNote, UserOnline, UserRole, UserTitr, UserBase, Zone, };
|