automation-lib 5.1.537 → 5.1.538

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/dist/index.d.mts CHANGED
@@ -9841,6 +9841,14 @@ interface FindDepartmentDto extends IFindBaseDto, IDepartment {
9841
9841
  department_leader: string[];
9842
9842
  department_teams: string[];
9843
9843
  department_members: string[];
9844
+ rolesTeam: Array<{
9845
+ team: string;
9846
+ roles: string[];
9847
+ }>;
9848
+ rolesUser: Array<{
9849
+ user: string;
9850
+ roles: string[];
9851
+ }>;
9844
9852
  }
9845
9853
  interface FilterDepartmentDto extends IFilterBaseDto {
9846
9854
  departmentName: string[];
package/dist/index.d.ts CHANGED
@@ -9841,6 +9841,14 @@ interface FindDepartmentDto extends IFindBaseDto, IDepartment {
9841
9841
  department_leader: string[];
9842
9842
  department_teams: string[];
9843
9843
  department_members: string[];
9844
+ rolesTeam: Array<{
9845
+ team: string;
9846
+ roles: string[];
9847
+ }>;
9848
+ rolesUser: Array<{
9849
+ user: string;
9850
+ roles: string[];
9851
+ }>;
9844
9852
  }
9845
9853
  interface FilterDepartmentDto extends IFilterBaseDto {
9846
9854
  departmentName: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.537",
3
+ "version": "5.1.538",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",