automation-lib 5.1.531 → 5.1.533

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,7 +9841,14 @@ interface FindDepartmentDto extends IFindBaseDto, IDepartment {
9841
9841
  department_leader: string[];
9842
9842
  department_teams: string[];
9843
9843
  department_members: string[];
9844
- department_roles: string[];
9844
+ department_rolesTeams: Array<{
9845
+ team: string;
9846
+ roles: string[];
9847
+ }>;
9848
+ department_rolesUser: Array<{
9849
+ user: string;
9850
+ roles: string[];
9851
+ }>;
9845
9852
  }
9846
9853
  interface FilterDepartmentDto extends IFilterBaseDto {
9847
9854
  departmentName: string[];
@@ -10113,7 +10120,7 @@ interface FilterSheetWorkDto extends IFilterBaseDto {
10113
10120
  }
10114
10121
 
10115
10122
  interface FindSheetWorkCategoryDto extends IFindBaseDto, ISheetWorksCategory {
10116
- listSheetWorkNames: string[];
10123
+ listSheetWorks: ISheetWork[];
10117
10124
  listSheetWorkLinks: string[];
10118
10125
  listSheetWorkTypeSocials: ETypeSocial[];
10119
10126
  }
package/dist/index.d.ts CHANGED
@@ -9841,7 +9841,14 @@ interface FindDepartmentDto extends IFindBaseDto, IDepartment {
9841
9841
  department_leader: string[];
9842
9842
  department_teams: string[];
9843
9843
  department_members: string[];
9844
- department_roles: string[];
9844
+ department_rolesTeams: Array<{
9845
+ team: string;
9846
+ roles: string[];
9847
+ }>;
9848
+ department_rolesUser: Array<{
9849
+ user: string;
9850
+ roles: string[];
9851
+ }>;
9845
9852
  }
9846
9853
  interface FilterDepartmentDto extends IFilterBaseDto {
9847
9854
  departmentName: string[];
@@ -10113,7 +10120,7 @@ interface FilterSheetWorkDto extends IFilterBaseDto {
10113
10120
  }
10114
10121
 
10115
10122
  interface FindSheetWorkCategoryDto extends IFindBaseDto, ISheetWorksCategory {
10116
- listSheetWorkNames: string[];
10123
+ listSheetWorks: ISheetWork[];
10117
10124
  listSheetWorkLinks: string[];
10118
10125
  listSheetWorkTypeSocials: ETypeSocial[];
10119
10126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.531",
3
+ "version": "5.1.533",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",