@ieeesa-npm/groups 0.11.2 → 0.11.3

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.
@@ -2,6 +2,11 @@ export interface Organization {
2
2
  orgId: string;
3
3
  orgName: string;
4
4
  }
5
+ export interface OrganizationRequestPayload {
6
+ payload: {
7
+ orgName: string;
8
+ };
9
+ }
5
10
  export interface OrganizationResponse {
6
11
  status: boolean;
7
12
  message: string;
@@ -14,7 +14,7 @@ import { GroupUserInfo } from '../models/group-user-info.model';
14
14
  import { AddOrEditUserPayload, AddOrEditGroupUserDetailsResponse, AddOrEditUserIndividualRosterPayload } from '../models/add-or-edit-user-group.model';
15
15
  import { DeleteUserGroupPayload } from '../models/delete-user-group.model';
16
16
  import { GetUserDetailsPayload, SearchUserByEmailResponse } from '../models/add-new-user.model';
17
- import { OrganizationResponse } from '../models/organization.model';
17
+ import { OrganizationRequestPayload, OrganizationResponse } from '../models/organization.model';
18
18
  import { MemberTypeResponse } from '../models/member-type.model';
19
19
  import { ClassificationResponse } from '../models/classification.model';
20
20
  import { GroupRosterType } from '../models/roster-type.model';
@@ -54,11 +54,7 @@ export declare class GroupsService {
54
54
  "1015": string;
55
55
  "1016": string;
56
56
  "1017": string;
57
- "1018": string; /**
58
- * Returns the selected group parent group info.
59
- * @return {(GroupInfo | undefined)} -group info.
60
- * @memberof GroupsService
61
- */
57
+ "1018": string;
62
58
  "1019": string;
63
59
  "1020": string;
64
60
  "1021": string;
@@ -70,17 +66,17 @@ export declare class GroupsService {
70
66
  "1027": string;
71
67
  "1028": string;
72
68
  "1029": string;
73
- /**
74
- * Returns group function type.
75
- * @return {GroupFunctionType} -group function type.
76
- * @memberof GroupsService
77
- */
78
69
  "1030": string;
79
70
  "1031": string;
80
71
  "1032": string;
81
72
  "1033": string;
82
73
  "1034": string;
83
- "1035": string;
74
+ "1035": string; /**
75
+ * Gets the group users for the given group id.
76
+ * @param {string} groupId
77
+ * @return {Observable<GetGroupUsersResponse>}
78
+ * @memberof GroupsService
79
+ */
84
80
  "1036": string;
85
81
  "1037": string;
86
82
  "1038": string;
@@ -387,11 +383,11 @@ export declare class GroupsService {
387
383
  getLoadedGroupTypes(): GroupTypeConfiguration[];
388
384
  /**
389
385
  *
390
- * @param {string} orgName
386
+ * @param {OrganizationRequestPayload} orgRequestPayload
391
387
  * @return {Observable<OrganizationResponse>}
392
388
  * @memberof GroupsService
393
389
  */
394
- getOrganizations(orgName: string): Observable<OrganizationResponse>;
390
+ getOrganizations(orgRequestPayload: OrganizationRequestPayload): Observable<OrganizationResponse>;
395
391
  /**
396
392
  * Returns the group type configuration Business rule for the selected group.
397
393
  * @return {(BusinessRule | undefined)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ieeesa-npm/groups",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"