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 +4 -2
- package/dist/index.d.ts +4 -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
|
-
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
|
|
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
|
|
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<{
|