automation-lib 6.6.87 → 6.6.90

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",
@@ -5110,6 +5112,7 @@ interface CreateReportManagerDto {
5110
5112
  }
5111
5113
  interface UpdateReportManagerDto {
5112
5114
  status: EReportManagerStatus;
5115
+ description: string;
5113
5116
  listFiles: any;
5114
5117
  }
5115
5118
  interface AddCommentReportManagerDto {
@@ -5129,8 +5132,10 @@ interface FindReportManagerDto extends IFindBaseDto {
5129
5132
  }
5130
5133
  interface IViewCountNumberStatusReportManager {
5131
5134
  total: number;
5132
- [EReportManagerStatus.Open]: number;
5133
- [EReportManagerStatus.Closed]: number;
5135
+ [EReportManagerStatus.New]: number;
5136
+ [EReportManagerStatus.Approved]: number;
5137
+ [EReportManagerStatus.Backlog]: number;
5138
+ [EReportManagerStatus.Urgent]: number;
5134
5139
  [EReportManagerStatus.Draft]: number;
5135
5140
  [EReportManagerStatus.InProgress]: number;
5136
5141
  [EReportManagerStatus.Rejected]: number;
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",
@@ -5110,6 +5112,7 @@ interface CreateReportManagerDto {
5110
5112
  }
5111
5113
  interface UpdateReportManagerDto {
5112
5114
  status: EReportManagerStatus;
5115
+ description: string;
5113
5116
  listFiles: any;
5114
5117
  }
5115
5118
  interface AddCommentReportManagerDto {
@@ -5129,8 +5132,10 @@ interface FindReportManagerDto extends IFindBaseDto {
5129
5132
  }
5130
5133
  interface IViewCountNumberStatusReportManager {
5131
5134
  total: number;
5132
- [EReportManagerStatus.Open]: number;
5133
- [EReportManagerStatus.Closed]: number;
5135
+ [EReportManagerStatus.New]: number;
5136
+ [EReportManagerStatus.Approved]: number;
5137
+ [EReportManagerStatus.Backlog]: number;
5138
+ [EReportManagerStatus.Urgent]: number;
5134
5139
  [EReportManagerStatus.Draft]: number;
5135
5140
  [EReportManagerStatus.InProgress]: number;
5136
5141
  [EReportManagerStatus.Rejected]: number;
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.87",
3
+ "version": "6.6.90",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",