@ieeesa-npm/groups 0.12.3 → 0.12.5

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.
@@ -102,12 +102,12 @@ export declare class GroupsComponent implements OnInit, OnDestroy {
102
102
  * Sets the dialog options for edit user roles and calls openModal method.
103
103
  * @memberof GroupsComponent
104
104
  */
105
- openEditUserRolesModal(): void;
105
+ openEditUserRolesModal(selectedGroupInfo: GroupInfo): void;
106
106
  /**
107
107
  * Sets the dialog options for add users modal and calls openModal method.
108
108
  * @memberof GroupsComponent
109
109
  */
110
- openAddUserRosterModal(): void;
110
+ openAddUserRosterModal(selectedGroupInfo: GroupInfo): void;
111
111
  /**
112
112
  * Sets the dialog options for users modal and calls openModal method.
113
113
  * @param {GroupInfo} group
@@ -61,16 +61,18 @@ export declare class GroupsService {
61
61
  "1022": string;
62
62
  "1023": string;
63
63
  "1024": string;
64
- "1025": string; /**
65
- * Returns group function type.
66
- * @return {GroupFunctionType} -group function type.
67
- * @memberof GroupsService
68
- */
64
+ "1025": string;
69
65
  "1026": string;
70
66
  "1027": string;
71
67
  "1028": string;
72
68
  "1029": string;
73
69
  "1030": string;
70
+ /**
71
+ * Gets the group users for the given group id.
72
+ * @param {string} groupId
73
+ * @return {Observable<GetGroupUsersResponse>}
74
+ * @memberof GroupsService
75
+ */
74
76
  "1031": string;
75
77
  "1032": string;
76
78
  "1033": string;
@@ -94,6 +96,12 @@ export declare class GroupsService {
94
96
  "2019": string;
95
97
  "2020": string;
96
98
  "2021": string;
99
+ /**
100
+ * Gets the group users based on searched name or email
101
+ * @param {SearchUsersPayload} payload
102
+ * @return {Observable<GetGroupUsersResponse>}
103
+ * @memberof GroupsService
104
+ */
97
105
  "2022": string;
98
106
  "2023": string;
99
107
  "2024": string;
@@ -329,7 +337,7 @@ export declare class GroupsService {
329
337
  * @return {Observable<GetGroupUsersResponse>}
330
338
  * @memberof GroupsService
331
339
  */
332
- groupsByNameAcronym(searchTerm: string): Observable<GetGroupResponse>;
340
+ groupsByNameAcronym(searchTerm: string, filteredGroupType?: number): Observable<GetGroupResponse>;
333
341
  /**
334
342
  * Sets the user group permissions
335
343
  * @param {GroupPermission[]} userGroupPermissions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ieeesa-npm/groups",
3
- "version": "0.12.3",
3
+ "version": "0.12.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"