automation-lib 6.6.268 → 6.6.270

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
@@ -82,6 +82,7 @@ declare const CONST_API_CONTROLLERS: {
82
82
  REPORT_MANAGER: string;
83
83
  BLOG_CATEGORY: string;
84
84
  BLOG_POST: string;
85
+ BLOG_VIEW_HISTORY: string;
85
86
  PC_PHONE: string;
86
87
  PC_PHONE_LOG: string;
87
88
  PATTERN_CANVA_AVATAR: string;
@@ -715,7 +716,8 @@ declare enum EObjectName {
715
716
  TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
716
717
  ReportManager = "ReportManager",
717
718
  BlogCategory = "BlogCategory",
718
- BlogPost = "BlogPost"
719
+ BlogPost = "BlogPost",
720
+ BlogViewHistory = "BlogViewHistory"
719
721
  }
720
722
 
721
723
  declare enum EHaveData {
@@ -13172,8 +13174,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
13172
13174
  }
13173
13175
 
13174
13176
  interface IBlogComment extends IBaseModel, ITrackingModel {
13175
- postId: string;
13176
- parentId: string;
13177
+ post: string | IBlogPost;
13178
+ parent: string | IBlogPost;
13177
13179
  content: string;
13178
13180
  }
13179
13181
 
package/dist/index.d.ts CHANGED
@@ -82,6 +82,7 @@ declare const CONST_API_CONTROLLERS: {
82
82
  REPORT_MANAGER: string;
83
83
  BLOG_CATEGORY: string;
84
84
  BLOG_POST: string;
85
+ BLOG_VIEW_HISTORY: string;
85
86
  PC_PHONE: string;
86
87
  PC_PHONE_LOG: string;
87
88
  PATTERN_CANVA_AVATAR: string;
@@ -715,7 +716,8 @@ declare enum EObjectName {
715
716
  TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
716
717
  ReportManager = "ReportManager",
717
718
  BlogCategory = "BlogCategory",
718
- BlogPost = "BlogPost"
719
+ BlogPost = "BlogPost",
720
+ BlogViewHistory = "BlogViewHistory"
719
721
  }
720
722
 
721
723
  declare enum EHaveData {
@@ -13172,8 +13174,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
13172
13174
  }
13173
13175
 
13174
13176
  interface IBlogComment extends IBaseModel, ITrackingModel {
13175
- postId: string;
13176
- parentId: string;
13177
+ post: string | IBlogPost;
13178
+ parent: string | IBlogPost;
13177
13179
  content: string;
13178
13180
  }
13179
13181
 
package/dist/index.js CHANGED
@@ -369,6 +369,7 @@ var CONST_API_CONTROLLERS = {
369
369
  REPORT_MANAGER: "report-manager",
370
370
  BLOG_CATEGORY: "blog-category",
371
371
  BLOG_POST: "blog-post",
372
+ BLOG_VIEW_HISTORY: "blog-view-history",
372
373
  PC_PHONE: "pc-phone",
373
374
  PC_PHONE_LOG: "pc-phone-log",
374
375
  PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
@@ -1187,6 +1188,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
1187
1188
  _EObjectName["ReportManager"] = "ReportManager";
1188
1189
  _EObjectName["BlogCategory"] = "BlogCategory";
1189
1190
  _EObjectName["BlogPost"] = "BlogPost";
1191
+ _EObjectName["BlogViewHistory"] = "BlogViewHistory";
1190
1192
  return _EObjectName;
1191
1193
  })(EObjectName || {});
1192
1194
 
package/dist/index.mjs CHANGED
@@ -108,6 +108,7 @@ var CONST_API_CONTROLLERS = {
108
108
  REPORT_MANAGER: "report-manager",
109
109
  BLOG_CATEGORY: "blog-category",
110
110
  BLOG_POST: "blog-post",
111
+ BLOG_VIEW_HISTORY: "blog-view-history",
111
112
  PC_PHONE: "pc-phone",
112
113
  PC_PHONE_LOG: "pc-phone-log",
113
114
  PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
@@ -926,6 +927,7 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
926
927
  _EObjectName["ReportManager"] = "ReportManager";
927
928
  _EObjectName["BlogCategory"] = "BlogCategory";
928
929
  _EObjectName["BlogPost"] = "BlogPost";
930
+ _EObjectName["BlogViewHistory"] = "BlogViewHistory";
929
931
  return _EObjectName;
930
932
  })(EObjectName || {});
931
933
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.268",
3
+ "version": "6.6.270",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",