automation-lib 6.6.86 → 6.6.89

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
@@ -5068,23 +5068,25 @@ interface ITaskJobUserPermission extends IBaseModel, ITrackingModel {
5068
5068
  }
5069
5069
 
5070
5070
  declare enum EReportManagerType {
5071
- Bug = "bug",
5072
- Suggestion = "suggestion",
5073
- Feature = "feature"
5071
+ Bug = "Bug",
5072
+ Suggestion = "Suggestion",
5073
+ Feature = "Feature"
5074
5074
  }
5075
5075
  declare enum EReportManagerPriority {
5076
- Critical = "critical",
5077
- High = "high",
5078
- Medium = "medium",
5079
- Low = "low"
5076
+ Critical = "Critical",
5077
+ High = "High",
5078
+ Medium = "Medium",
5079
+ Low = "Low"
5080
5080
  }
5081
5081
  declare enum EReportManagerStatus {
5082
- Draft = "draft",
5083
- Open = "open",
5084
- InProgress = "in-progress",
5085
- Resolved = "resolved",
5086
- Closed = "closed",
5087
- Rejected = "rejected"
5082
+ Draft = "Draft",// Bản nháp
5083
+ New = "New",// Mới tạo
5084
+ InProgress = "InProgress",// Đang xử lý
5085
+ Urgent = "Urgent",// Cần xử lý gấp
5086
+ Backlog = "Backlog",// Tồn đọng
5087
+ Resolved = "Resolved",// Đã giải quyết
5088
+ Approved = "Approved",// Đã duyệt
5089
+ Rejected = "Rejected"
5088
5090
  }
5089
5091
  declare enum ETypeFileReportManager {
5090
5092
  Image = "Image",
@@ -5101,7 +5103,7 @@ interface CreateReportManagerDto {
5101
5103
  description: string;
5102
5104
  mainModule: string;
5103
5105
  subModule: string[];
5104
- userAssignId: string[];
5106
+ userAssignIds: string[];
5105
5107
  listFiles: Array<{
5106
5108
  id: string;
5107
5109
  url: string;
@@ -5124,11 +5126,15 @@ interface FindReportManagerDto extends IFindBaseDto {
5124
5126
  description: string;
5125
5127
  mainModule: string;
5126
5128
  subModules: string[];
5129
+ timeUserAssign: Date;
5130
+ userAssignsName: string[];
5127
5131
  }
5128
5132
  interface IViewCountNumberStatusReportManager {
5129
5133
  total: number;
5130
- [EReportManagerStatus.Open]: number;
5131
- [EReportManagerStatus.Closed]: number;
5134
+ [EReportManagerStatus.New]: number;
5135
+ [EReportManagerStatus.Approved]: number;
5136
+ [EReportManagerStatus.Backlog]: number;
5137
+ [EReportManagerStatus.Urgent]: number;
5132
5138
  [EReportManagerStatus.Draft]: number;
5133
5139
  [EReportManagerStatus.InProgress]: number;
5134
5140
  [EReportManagerStatus.Rejected]: number;
@@ -5143,6 +5149,8 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
5143
5149
  description: string;
5144
5150
  mainModule: string;
5145
5151
  subModules: string[];
5152
+ timeUserAssign: Date;
5153
+ userAssignsName: string[];
5146
5154
  listFiles: Array<{
5147
5155
  id: string;
5148
5156
  url: string;
@@ -5171,7 +5179,7 @@ interface IReportManager extends IBaseModel, ITrackingModel {
5171
5179
  title: string;
5172
5180
  description: string;
5173
5181
  timeUserAssign: Date;
5174
- userAssign: string[] | IUser[];
5182
+ userAssigns: string[] | IUser[];
5175
5183
  mainModule: string;
5176
5184
  subModules: string[];
5177
5185
  listFiles: Array<{
package/dist/index.d.ts CHANGED
@@ -5068,23 +5068,25 @@ interface ITaskJobUserPermission extends IBaseModel, ITrackingModel {
5068
5068
  }
5069
5069
 
5070
5070
  declare enum EReportManagerType {
5071
- Bug = "bug",
5072
- Suggestion = "suggestion",
5073
- Feature = "feature"
5071
+ Bug = "Bug",
5072
+ Suggestion = "Suggestion",
5073
+ Feature = "Feature"
5074
5074
  }
5075
5075
  declare enum EReportManagerPriority {
5076
- Critical = "critical",
5077
- High = "high",
5078
- Medium = "medium",
5079
- Low = "low"
5076
+ Critical = "Critical",
5077
+ High = "High",
5078
+ Medium = "Medium",
5079
+ Low = "Low"
5080
5080
  }
5081
5081
  declare enum EReportManagerStatus {
5082
- Draft = "draft",
5083
- Open = "open",
5084
- InProgress = "in-progress",
5085
- Resolved = "resolved",
5086
- Closed = "closed",
5087
- Rejected = "rejected"
5082
+ Draft = "Draft",// Bản nháp
5083
+ New = "New",// Mới tạo
5084
+ InProgress = "InProgress",// Đang xử lý
5085
+ Urgent = "Urgent",// Cần xử lý gấp
5086
+ Backlog = "Backlog",// Tồn đọng
5087
+ Resolved = "Resolved",// Đã giải quyết
5088
+ Approved = "Approved",// Đã duyệt
5089
+ Rejected = "Rejected"
5088
5090
  }
5089
5091
  declare enum ETypeFileReportManager {
5090
5092
  Image = "Image",
@@ -5101,7 +5103,7 @@ interface CreateReportManagerDto {
5101
5103
  description: string;
5102
5104
  mainModule: string;
5103
5105
  subModule: string[];
5104
- userAssignId: string[];
5106
+ userAssignIds: string[];
5105
5107
  listFiles: Array<{
5106
5108
  id: string;
5107
5109
  url: string;
@@ -5124,11 +5126,15 @@ interface FindReportManagerDto extends IFindBaseDto {
5124
5126
  description: string;
5125
5127
  mainModule: string;
5126
5128
  subModules: string[];
5129
+ timeUserAssign: Date;
5130
+ userAssignsName: string[];
5127
5131
  }
5128
5132
  interface IViewCountNumberStatusReportManager {
5129
5133
  total: number;
5130
- [EReportManagerStatus.Open]: number;
5131
- [EReportManagerStatus.Closed]: number;
5134
+ [EReportManagerStatus.New]: number;
5135
+ [EReportManagerStatus.Approved]: number;
5136
+ [EReportManagerStatus.Backlog]: number;
5137
+ [EReportManagerStatus.Urgent]: number;
5132
5138
  [EReportManagerStatus.Draft]: number;
5133
5139
  [EReportManagerStatus.InProgress]: number;
5134
5140
  [EReportManagerStatus.Rejected]: number;
@@ -5143,6 +5149,8 @@ interface FindDetailReportManagerDto extends IFindBaseDto {
5143
5149
  description: string;
5144
5150
  mainModule: string;
5145
5151
  subModules: string[];
5152
+ timeUserAssign: Date;
5153
+ userAssignsName: string[];
5146
5154
  listFiles: Array<{
5147
5155
  id: string;
5148
5156
  url: string;
@@ -5171,7 +5179,7 @@ interface IReportManager extends IBaseModel, ITrackingModel {
5171
5179
  title: string;
5172
5180
  description: string;
5173
5181
  timeUserAssign: Date;
5174
- userAssign: string[] | IUser[];
5182
+ userAssigns: string[] | IUser[];
5175
5183
  mainModule: string;
5176
5184
  subModules: string[];
5177
5185
  listFiles: Array<{
package/dist/index.js CHANGED
@@ -3173,25 +3173,27 @@ __export(workspace_exports, {
3173
3173
 
3174
3174
  // src/interfaces/models/workspace/report-manager/enum/EAllReportManager.enum.ts
3175
3175
  var EReportManagerType = /* @__PURE__ */ ((EReportManagerType2) => {
3176
- EReportManagerType2["Bug"] = "bug";
3177
- EReportManagerType2["Suggestion"] = "suggestion";
3178
- EReportManagerType2["Feature"] = "feature";
3176
+ EReportManagerType2["Bug"] = "Bug";
3177
+ EReportManagerType2["Suggestion"] = "Suggestion";
3178
+ EReportManagerType2["Feature"] = "Feature";
3179
3179
  return EReportManagerType2;
3180
3180
  })(EReportManagerType || {});
3181
3181
  var EReportManagerPriority = /* @__PURE__ */ ((EReportManagerPriority2) => {
3182
- EReportManagerPriority2["Critical"] = "critical";
3183
- EReportManagerPriority2["High"] = "high";
3184
- EReportManagerPriority2["Medium"] = "medium";
3185
- EReportManagerPriority2["Low"] = "low";
3182
+ EReportManagerPriority2["Critical"] = "Critical";
3183
+ EReportManagerPriority2["High"] = "High";
3184
+ EReportManagerPriority2["Medium"] = "Medium";
3185
+ EReportManagerPriority2["Low"] = "Low";
3186
3186
  return EReportManagerPriority2;
3187
3187
  })(EReportManagerPriority || {});
3188
3188
  var EReportManagerStatus = /* @__PURE__ */ ((EReportManagerStatus2) => {
3189
- EReportManagerStatus2["Draft"] = "draft";
3190
- EReportManagerStatus2["Open"] = "open";
3191
- EReportManagerStatus2["InProgress"] = "in-progress";
3192
- EReportManagerStatus2["Resolved"] = "resolved";
3193
- EReportManagerStatus2["Closed"] = "closed";
3194
- EReportManagerStatus2["Rejected"] = "rejected";
3189
+ EReportManagerStatus2["Draft"] = "Draft";
3190
+ EReportManagerStatus2["New"] = "New";
3191
+ EReportManagerStatus2["InProgress"] = "InProgress";
3192
+ EReportManagerStatus2["Urgent"] = "Urgent";
3193
+ EReportManagerStatus2["Backlog"] = "Backlog";
3194
+ EReportManagerStatus2["Resolved"] = "Resolved";
3195
+ EReportManagerStatus2["Approved"] = "Approved";
3196
+ EReportManagerStatus2["Rejected"] = "Rejected";
3195
3197
  return EReportManagerStatus2;
3196
3198
  })(EReportManagerStatus || {});
3197
3199
  var ETypeFileReportManager = /* @__PURE__ */ ((ETypeFileReportManager2) => {
package/dist/index.mjs CHANGED
@@ -2924,25 +2924,27 @@ __export(workspace_exports, {
2924
2924
 
2925
2925
  // src/interfaces/models/workspace/report-manager/enum/EAllReportManager.enum.ts
2926
2926
  var EReportManagerType = /* @__PURE__ */ ((EReportManagerType2) => {
2927
- EReportManagerType2["Bug"] = "bug";
2928
- EReportManagerType2["Suggestion"] = "suggestion";
2929
- EReportManagerType2["Feature"] = "feature";
2927
+ EReportManagerType2["Bug"] = "Bug";
2928
+ EReportManagerType2["Suggestion"] = "Suggestion";
2929
+ EReportManagerType2["Feature"] = "Feature";
2930
2930
  return EReportManagerType2;
2931
2931
  })(EReportManagerType || {});
2932
2932
  var EReportManagerPriority = /* @__PURE__ */ ((EReportManagerPriority2) => {
2933
- EReportManagerPriority2["Critical"] = "critical";
2934
- EReportManagerPriority2["High"] = "high";
2935
- EReportManagerPriority2["Medium"] = "medium";
2936
- EReportManagerPriority2["Low"] = "low";
2933
+ EReportManagerPriority2["Critical"] = "Critical";
2934
+ EReportManagerPriority2["High"] = "High";
2935
+ EReportManagerPriority2["Medium"] = "Medium";
2936
+ EReportManagerPriority2["Low"] = "Low";
2937
2937
  return EReportManagerPriority2;
2938
2938
  })(EReportManagerPriority || {});
2939
2939
  var EReportManagerStatus = /* @__PURE__ */ ((EReportManagerStatus2) => {
2940
- EReportManagerStatus2["Draft"] = "draft";
2941
- EReportManagerStatus2["Open"] = "open";
2942
- EReportManagerStatus2["InProgress"] = "in-progress";
2943
- EReportManagerStatus2["Resolved"] = "resolved";
2944
- EReportManagerStatus2["Closed"] = "closed";
2945
- EReportManagerStatus2["Rejected"] = "rejected";
2940
+ EReportManagerStatus2["Draft"] = "Draft";
2941
+ EReportManagerStatus2["New"] = "New";
2942
+ EReportManagerStatus2["InProgress"] = "InProgress";
2943
+ EReportManagerStatus2["Urgent"] = "Urgent";
2944
+ EReportManagerStatus2["Backlog"] = "Backlog";
2945
+ EReportManagerStatus2["Resolved"] = "Resolved";
2946
+ EReportManagerStatus2["Approved"] = "Approved";
2947
+ EReportManagerStatus2["Rejected"] = "Rejected";
2946
2948
  return EReportManagerStatus2;
2947
2949
  })(EReportManagerStatus || {});
2948
2950
  var ETypeFileReportManager = /* @__PURE__ */ ((ETypeFileReportManager2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.86",
3
+ "version": "6.6.89",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",