@ieeesa-npm/groups 0.9.7 → 0.9.8
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/esm2022/lib/models/user.model.mjs +1 -1
- package/esm2022/lib/services/groups.service.mjs +2 -2
- package/fesm2022/ieeesa-npm-groups.mjs +1 -1
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/models/user.model.d.ts +5 -1
- package/lib/services/groups.service.d.ts +0 -6
- package/package.json +1 -1
|
@@ -13,6 +13,10 @@ export interface User {
|
|
|
13
13
|
employer: string | null;
|
|
14
14
|
checked?: boolean;
|
|
15
15
|
}
|
|
16
|
+
export interface Employer {
|
|
17
|
+
orgId: string | null;
|
|
18
|
+
orgName: string | null;
|
|
19
|
+
}
|
|
16
20
|
export interface GetGroupUsersResponse {
|
|
17
21
|
status: boolean;
|
|
18
22
|
message: string;
|
|
@@ -24,7 +28,7 @@ export interface GetGroupUsersResponse {
|
|
|
24
28
|
classification: Classification | null;
|
|
25
29
|
memberStatus: MemberType | null;
|
|
26
30
|
organization: Organization | null;
|
|
27
|
-
employer:
|
|
31
|
+
employer: Employer | null;
|
|
28
32
|
}[];
|
|
29
33
|
}
|
|
30
34
|
export interface FilterUsersPayload {
|
|
@@ -97,12 +97,6 @@ export declare class GroupsService {
|
|
|
97
97
|
"2016": string;
|
|
98
98
|
"2017": string;
|
|
99
99
|
"2018": string;
|
|
100
|
-
/**
|
|
101
|
-
* Gets the group users based on searched name or email
|
|
102
|
-
* @param {SearchUsersPayload} payload
|
|
103
|
-
* @return {Observable<GetGroupUsersResponse>}
|
|
104
|
-
* @memberof GroupsService
|
|
105
|
-
*/
|
|
106
100
|
"2019": string;
|
|
107
101
|
"2020": string;
|
|
108
102
|
"2021": string;
|