automation-lib 6.6.91 → 6.6.94
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 +11 -3
- package/dist/index.d.ts +11 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5104,6 +5104,7 @@ interface CreateReportManagerDto {
|
|
|
5104
5104
|
mainModule: string;
|
|
5105
5105
|
subModule: string[];
|
|
5106
5106
|
userAssignIds: string[];
|
|
5107
|
+
tags: string[];
|
|
5107
5108
|
listFiles: Array<{
|
|
5108
5109
|
id: string;
|
|
5109
5110
|
url: string;
|
|
@@ -5129,6 +5130,7 @@ interface FindReportManagerDto extends IFindBaseDto {
|
|
|
5129
5130
|
subModules: string[];
|
|
5130
5131
|
timeUserAssign: Date;
|
|
5131
5132
|
userAssignsName: string[];
|
|
5133
|
+
tags: string[];
|
|
5132
5134
|
}
|
|
5133
5135
|
interface IViewCountNumberStatusReportManager {
|
|
5134
5136
|
total: number;
|
|
@@ -5152,6 +5154,7 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
|
|
|
5152
5154
|
subModules: string[];
|
|
5153
5155
|
timeUserAssign: Date;
|
|
5154
5156
|
userAssignsName: string[];
|
|
5157
|
+
tags: string[];
|
|
5155
5158
|
listFiles: Array<{
|
|
5156
5159
|
id: string;
|
|
5157
5160
|
url: string;
|
|
@@ -5163,7 +5166,6 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
|
|
|
5163
5166
|
comment: string;
|
|
5164
5167
|
createdAt: Date;
|
|
5165
5168
|
}>;
|
|
5166
|
-
totalComents: number;
|
|
5167
5169
|
}
|
|
5168
5170
|
interface FilterReportManagerDto extends IFilterBaseDto {
|
|
5169
5171
|
type: EReportManagerType[];
|
|
@@ -5172,6 +5174,11 @@ interface FilterReportManagerDto extends IFilterBaseDto {
|
|
|
5172
5174
|
mainModule: string[];
|
|
5173
5175
|
}
|
|
5174
5176
|
|
|
5177
|
+
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
5178
|
+
name: string;
|
|
5179
|
+
mainModule: string | IModuleWebSite;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5175
5182
|
interface IReportManager extends IBaseModel, ITrackingModel {
|
|
5176
5183
|
sttReport: string;
|
|
5177
5184
|
type: EReportManagerType;
|
|
@@ -5181,8 +5188,9 @@ interface IReportManager extends IBaseModel, ITrackingModel {
|
|
|
5181
5188
|
description: string;
|
|
5182
5189
|
timeUserAssign: Date;
|
|
5183
5190
|
userAssigns: string[] | IUser[];
|
|
5184
|
-
mainModule: string;
|
|
5185
|
-
subModules: string[];
|
|
5191
|
+
mainModule: string | IModuleWebSite;
|
|
5192
|
+
subModules: string[] | IModuleWebSite[];
|
|
5193
|
+
tags: string[];
|
|
5186
5194
|
listFiles: Array<{
|
|
5187
5195
|
id: string;
|
|
5188
5196
|
url: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -5104,6 +5104,7 @@ interface CreateReportManagerDto {
|
|
|
5104
5104
|
mainModule: string;
|
|
5105
5105
|
subModule: string[];
|
|
5106
5106
|
userAssignIds: string[];
|
|
5107
|
+
tags: string[];
|
|
5107
5108
|
listFiles: Array<{
|
|
5108
5109
|
id: string;
|
|
5109
5110
|
url: string;
|
|
@@ -5129,6 +5130,7 @@ interface FindReportManagerDto extends IFindBaseDto {
|
|
|
5129
5130
|
subModules: string[];
|
|
5130
5131
|
timeUserAssign: Date;
|
|
5131
5132
|
userAssignsName: string[];
|
|
5133
|
+
tags: string[];
|
|
5132
5134
|
}
|
|
5133
5135
|
interface IViewCountNumberStatusReportManager {
|
|
5134
5136
|
total: number;
|
|
@@ -5152,6 +5154,7 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
|
|
|
5152
5154
|
subModules: string[];
|
|
5153
5155
|
timeUserAssign: Date;
|
|
5154
5156
|
userAssignsName: string[];
|
|
5157
|
+
tags: string[];
|
|
5155
5158
|
listFiles: Array<{
|
|
5156
5159
|
id: string;
|
|
5157
5160
|
url: string;
|
|
@@ -5163,7 +5166,6 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
|
|
|
5163
5166
|
comment: string;
|
|
5164
5167
|
createdAt: Date;
|
|
5165
5168
|
}>;
|
|
5166
|
-
totalComents: number;
|
|
5167
5169
|
}
|
|
5168
5170
|
interface FilterReportManagerDto extends IFilterBaseDto {
|
|
5169
5171
|
type: EReportManagerType[];
|
|
@@ -5172,6 +5174,11 @@ interface FilterReportManagerDto extends IFilterBaseDto {
|
|
|
5172
5174
|
mainModule: string[];
|
|
5173
5175
|
}
|
|
5174
5176
|
|
|
5177
|
+
interface IModuleWebSite extends IBaseModel, ITrackingModel {
|
|
5178
|
+
name: string;
|
|
5179
|
+
mainModule: string | IModuleWebSite;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5175
5182
|
interface IReportManager extends IBaseModel, ITrackingModel {
|
|
5176
5183
|
sttReport: string;
|
|
5177
5184
|
type: EReportManagerType;
|
|
@@ -5181,8 +5188,9 @@ interface IReportManager extends IBaseModel, ITrackingModel {
|
|
|
5181
5188
|
description: string;
|
|
5182
5189
|
timeUserAssign: Date;
|
|
5183
5190
|
userAssigns: string[] | IUser[];
|
|
5184
|
-
mainModule: string;
|
|
5185
|
-
subModules: string[];
|
|
5191
|
+
mainModule: string | IModuleWebSite;
|
|
5192
|
+
subModules: string[] | IModuleWebSite[];
|
|
5193
|
+
tags: string[];
|
|
5186
5194
|
listFiles: Array<{
|
|
5187
5195
|
id: string;
|
|
5188
5196
|
url: string;
|