automation-lib 6.6.85 → 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 +8 -2
- package/dist/index.d.ts +8 -2
- package/package.json +1 -1
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
|
-
|
|
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;
|
|
@@ -5163,13 +5167,15 @@ interface FilterReportManagerDto extends IFilterBaseDto {
|
|
|
5163
5167
|
mainModule: string[];
|
|
5164
5168
|
}
|
|
5165
5169
|
|
|
5166
|
-
interface IReportManager extends IBaseModel, ITrackingModel
|
|
5170
|
+
interface IReportManager extends IBaseModel, ITrackingModel {
|
|
5167
5171
|
sttReport: string;
|
|
5168
5172
|
type: EReportManagerType;
|
|
5169
5173
|
priority: EReportManagerPriority;
|
|
5170
5174
|
status: EReportManagerStatus;
|
|
5171
5175
|
title: string;
|
|
5172
5176
|
description: string;
|
|
5177
|
+
timeUserAssign: Date;
|
|
5178
|
+
userAssigns: string[] | IUser[];
|
|
5173
5179
|
mainModule: string;
|
|
5174
5180
|
subModules: string[];
|
|
5175
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
|
-
|
|
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;
|
|
@@ -5163,13 +5167,15 @@ interface FilterReportManagerDto extends IFilterBaseDto {
|
|
|
5163
5167
|
mainModule: string[];
|
|
5164
5168
|
}
|
|
5165
5169
|
|
|
5166
|
-
interface IReportManager extends IBaseModel, ITrackingModel
|
|
5170
|
+
interface IReportManager extends IBaseModel, ITrackingModel {
|
|
5167
5171
|
sttReport: string;
|
|
5168
5172
|
type: EReportManagerType;
|
|
5169
5173
|
priority: EReportManagerPriority;
|
|
5170
5174
|
status: EReportManagerStatus;
|
|
5171
5175
|
title: string;
|
|
5172
5176
|
description: string;
|
|
5177
|
+
timeUserAssign: Date;
|
|
5178
|
+
userAssigns: string[] | IUser[];
|
|
5173
5179
|
mainModule: string;
|
|
5174
5180
|
subModules: string[];
|
|
5175
5181
|
listFiles: Array<{
|