automation-lib 5.1.490 → 5.1.491

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
@@ -9879,6 +9879,11 @@ interface FilterRoleDto extends IFilterBaseDto {
9879
9879
  users: string[];
9880
9880
  }
9881
9881
 
9882
+ declare enum EHaveData {
9883
+ Has = "Has",
9884
+ No = "No"
9885
+ }
9886
+
9882
9887
  interface CreateUserDto extends Partial<IUser> {
9883
9888
  user_fullName: string;
9884
9889
  user_email: string;
@@ -9922,6 +9927,7 @@ interface FilterUserDto extends IFilterBaseDto {
9922
9927
  departmentOfUser: string[];
9923
9928
  teamOfUser: string[];
9924
9929
  status: EStatusUser[];
9930
+ hasPermission: EHaveData[];
9925
9931
  }
9926
9932
  interface FindOverviewUserDto {
9927
9933
  totalDepartments: number;
package/dist/index.d.ts CHANGED
@@ -9879,6 +9879,11 @@ interface FilterRoleDto extends IFilterBaseDto {
9879
9879
  users: string[];
9880
9880
  }
9881
9881
 
9882
+ declare enum EHaveData {
9883
+ Has = "Has",
9884
+ No = "No"
9885
+ }
9886
+
9882
9887
  interface CreateUserDto extends Partial<IUser> {
9883
9888
  user_fullName: string;
9884
9889
  user_email: string;
@@ -9922,6 +9927,7 @@ interface FilterUserDto extends IFilterBaseDto {
9922
9927
  departmentOfUser: string[];
9923
9928
  teamOfUser: string[];
9924
9929
  status: EStatusUser[];
9930
+ hasPermission: EHaveData[];
9925
9931
  }
9926
9932
  interface FindOverviewUserDto {
9927
9933
  totalDepartments: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.490",
3
+ "version": "5.1.491",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",