automation-lib 6.6.86 → 6.6.87

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
+ userAssignIds: string[];
5105
5105
  listFiles: Array<{
5106
5106
  id: string;
5107
5107
  url: string;
@@ -5124,6 +5124,8 @@ interface FindReportManagerDto extends IFindBaseDto {
5124
5124
  description: string;
5125
5125
  mainModule: string;
5126
5126
  subModules: string[];
5127
+ timeUserAssign: Date;
5128
+ userAssignsName: string[];
5127
5129
  }
5128
5130
  interface IViewCountNumberStatusReportManager {
5129
5131
  total: number;
@@ -5143,6 +5145,8 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
5143
5145
  description: string;
5144
5146
  mainModule: string;
5145
5147
  subModules: string[];
5148
+ timeUserAssign: Date;
5149
+ userAssignsName: string[];
5146
5150
  listFiles: Array<{
5147
5151
  id: string;
5148
5152
  url: string;
@@ -5171,7 +5175,7 @@ interface IReportManager extends IBaseModel, ITrackingModel {
5171
5175
  title: string;
5172
5176
  description: string;
5173
5177
  timeUserAssign: Date;
5174
- userAssign: string[] | IUser[];
5178
+ userAssigns: string[] | IUser[];
5175
5179
  mainModule: string;
5176
5180
  subModules: string[];
5177
5181
  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
+ userAssignIds: string[];
5105
5105
  listFiles: Array<{
5106
5106
  id: string;
5107
5107
  url: string;
@@ -5124,6 +5124,8 @@ interface FindReportManagerDto extends IFindBaseDto {
5124
5124
  description: string;
5125
5125
  mainModule: string;
5126
5126
  subModules: string[];
5127
+ timeUserAssign: Date;
5128
+ userAssignsName: string[];
5127
5129
  }
5128
5130
  interface IViewCountNumberStatusReportManager {
5129
5131
  total: number;
@@ -5143,6 +5145,8 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
5143
5145
  description: string;
5144
5146
  mainModule: string;
5145
5147
  subModules: string[];
5148
+ timeUserAssign: Date;
5149
+ userAssignsName: string[];
5146
5150
  listFiles: Array<{
5147
5151
  id: string;
5148
5152
  url: string;
@@ -5171,7 +5175,7 @@ interface IReportManager extends IBaseModel, ITrackingModel {
5171
5175
  title: string;
5172
5176
  description: string;
5173
5177
  timeUserAssign: Date;
5174
- userAssign: string[] | IUser[];
5178
+ userAssigns: string[] | IUser[];
5175
5179
  mainModule: string;
5176
5180
  subModules: string[];
5177
5181
  listFiles: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.86",
3
+ "version": "6.6.87",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",