@ieeesa-npm/groups 0.10.5 → 0.10.7

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.
@@ -73,6 +73,11 @@ export declare class AddUserRosterComponent implements OnInit, OnDestroy {
73
73
  * @memberof AddUserRosterComponent
74
74
  */
75
75
  validateUserExistence(): void;
76
+ /**
77
+ * Initialize form group based on email search
78
+ * @memberof AddUserRosterComponent
79
+ */
80
+ initializeAddUserFormGroup(): void;
76
81
  /**
77
82
  * Creates add user form group and updates it with prev form values.
78
83
  * @param {string} stringifiedAddUserFormPrevValues
@@ -2,7 +2,7 @@ export interface SearchUserByEmailResponse {
2
2
  status: boolean;
3
3
  message: string;
4
4
  body: {
5
- userId: string;
5
+ userId: string | null;
6
6
  email: string;
7
7
  name: string;
8
8
  };
@@ -7,7 +7,7 @@ export interface AddOrEditGroupUserDetailsResponse {
7
7
  }
8
8
  export interface AddOrEditUserRolePayload {
9
9
  groupId: string;
10
- userId?: string;
10
+ userId?: string | null;
11
11
  roles: string[];
12
12
  email: string;
13
13
  firstName?: string;
@@ -1,5 +1,5 @@
1
1
  export interface UserInfo {
2
2
  email: string;
3
3
  name: string;
4
- userId: string;
4
+ userId: string | null;
5
5
  }
@@ -96,6 +96,13 @@ export declare class GroupsService {
96
96
  "2021": string;
97
97
  "2022": string;
98
98
  "2023": string;
99
+ "2024": 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
+ */
99
106
  "3004": string;
100
107
  };
101
108
  apiBaseUrl: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ieeesa-npm/groups",
3
- "version": "0.10.5",
3
+ "version": "0.10.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0",