@omniumretail/shared-resources 0.1.29 → 0.1.30
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.
|
@@ -1,3 +1,47 @@
|
|
|
1
|
+
interface JobTitle2 {
|
|
2
|
+
Id: string;
|
|
3
|
+
Name: string;
|
|
4
|
+
}
|
|
5
|
+
interface ContractState2 {
|
|
6
|
+
Id: string;
|
|
7
|
+
Name: string;
|
|
8
|
+
}
|
|
9
|
+
interface Roles2 {
|
|
10
|
+
Id: string;
|
|
11
|
+
Name: string;
|
|
12
|
+
}
|
|
1
13
|
export interface VerifyImage {
|
|
2
|
-
|
|
14
|
+
UserId: string;
|
|
15
|
+
FullName: string;
|
|
16
|
+
Email: string;
|
|
17
|
+
DisplayName: string;
|
|
18
|
+
PhoneNumber: number;
|
|
19
|
+
Code: string;
|
|
20
|
+
Birthday: number;
|
|
21
|
+
AdmissionData: number;
|
|
22
|
+
ResignDate: number;
|
|
23
|
+
Address: string;
|
|
24
|
+
ZipCode: string;
|
|
25
|
+
City: string;
|
|
26
|
+
CountryIso02: string;
|
|
27
|
+
JobTitle: JobTitle2;
|
|
28
|
+
ContractState: ContractState2;
|
|
29
|
+
Stores: string[];
|
|
30
|
+
SupervisorId: string;
|
|
31
|
+
ImageUrl: string;
|
|
32
|
+
Tags: string[];
|
|
33
|
+
Roles: Roles2;
|
|
34
|
+
IdentityCardNumber: number | string;
|
|
35
|
+
IdentityCardExpirationDate: number | string;
|
|
36
|
+
PlaceOfBirth: string;
|
|
37
|
+
MaritalStatus: string;
|
|
38
|
+
NumberOfChildren: number;
|
|
39
|
+
Qualifications: string;
|
|
40
|
+
TaxNumber: string;
|
|
41
|
+
SocialSecurityNumber: string;
|
|
42
|
+
IBAN: string;
|
|
43
|
+
CreateDate: number;
|
|
44
|
+
UpdateDate: string;
|
|
45
|
+
ContractStatusId: string;
|
|
3
46
|
}
|
|
47
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,4 +1,49 @@
|
|
|
1
|
+
interface JobTitle2 {
|
|
2
|
+
Id: string;
|
|
3
|
+
Name: string;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
interface ContractState2 {
|
|
7
|
+
Id: string;
|
|
8
|
+
Name: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
interface Roles2 {
|
|
12
|
+
Id: string;
|
|
13
|
+
Name: string;
|
|
14
|
+
}
|
|
1
15
|
|
|
2
16
|
export interface VerifyImage {
|
|
3
|
-
|
|
4
|
-
|
|
17
|
+
UserId: string;
|
|
18
|
+
FullName: string;
|
|
19
|
+
Email: string;
|
|
20
|
+
DisplayName: string;
|
|
21
|
+
PhoneNumber: number;
|
|
22
|
+
Code: string;
|
|
23
|
+
Birthday: number;
|
|
24
|
+
AdmissionData: number;
|
|
25
|
+
ResignDate: number;
|
|
26
|
+
Address: string;
|
|
27
|
+
ZipCode: string;
|
|
28
|
+
City: string;
|
|
29
|
+
CountryIso02: string;
|
|
30
|
+
JobTitle: JobTitle2;
|
|
31
|
+
ContractState: ContractState2;
|
|
32
|
+
Stores: string[];
|
|
33
|
+
SupervisorId: string;
|
|
34
|
+
ImageUrl: string;
|
|
35
|
+
Tags: string[];
|
|
36
|
+
Roles: Roles2;
|
|
37
|
+
IdentityCardNumber: number | string;
|
|
38
|
+
IdentityCardExpirationDate: number | string;
|
|
39
|
+
PlaceOfBirth: string;
|
|
40
|
+
MaritalStatus: string;
|
|
41
|
+
NumberOfChildren: number;
|
|
42
|
+
Qualifications: string;
|
|
43
|
+
TaxNumber: string;
|
|
44
|
+
SocialSecurityNumber: string;
|
|
45
|
+
IBAN: string;
|
|
46
|
+
CreateDate: number;
|
|
47
|
+
UpdateDate: string
|
|
48
|
+
ContractStatusId: string;
|
|
49
|
+
}
|