automation-lib 6.6.85 → 6.6.86

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
@@ -5101,7 +5101,7 @@ interface CreateReportManagerDto {
5101
5101
  description: string;
5102
5102
  mainModule: string;
5103
5103
  subModule: string[];
5104
- userAssignId: string;
5104
+ userAssignId: string[];
5105
5105
  listFiles: Array<{
5106
5106
  id: string;
5107
5107
  url: string;
@@ -5163,13 +5163,15 @@ interface FilterReportManagerDto extends IFilterBaseDto {
5163
5163
  mainModule: string[];
5164
5164
  }
5165
5165
 
5166
- interface IReportManager extends IBaseModel, ITrackingModel, IAssignUser {
5166
+ interface IReportManager extends IBaseModel, ITrackingModel {
5167
5167
  sttReport: string;
5168
5168
  type: EReportManagerType;
5169
5169
  priority: EReportManagerPriority;
5170
5170
  status: EReportManagerStatus;
5171
5171
  title: string;
5172
5172
  description: string;
5173
+ timeUserAssign: Date;
5174
+ userAssign: string[] | IUser[];
5173
5175
  mainModule: string;
5174
5176
  subModules: string[];
5175
5177
  listFiles: Array<{
package/dist/index.d.ts CHANGED
@@ -5101,7 +5101,7 @@ interface CreateReportManagerDto {
5101
5101
  description: string;
5102
5102
  mainModule: string;
5103
5103
  subModule: string[];
5104
- userAssignId: string;
5104
+ userAssignId: string[];
5105
5105
  listFiles: Array<{
5106
5106
  id: string;
5107
5107
  url: string;
@@ -5163,13 +5163,15 @@ interface FilterReportManagerDto extends IFilterBaseDto {
5163
5163
  mainModule: string[];
5164
5164
  }
5165
5165
 
5166
- interface IReportManager extends IBaseModel, ITrackingModel, IAssignUser {
5166
+ interface IReportManager extends IBaseModel, ITrackingModel {
5167
5167
  sttReport: string;
5168
5168
  type: EReportManagerType;
5169
5169
  priority: EReportManagerPriority;
5170
5170
  status: EReportManagerStatus;
5171
5171
  title: string;
5172
5172
  description: string;
5173
+ timeUserAssign: Date;
5174
+ userAssign: string[] | IUser[];
5173
5175
  mainModule: string;
5174
5176
  subModules: string[];
5175
5177
  listFiles: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.85",
3
+ "version": "6.6.86",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",