automation-lib 6.6.172 → 6.6.174
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 +10 -6
- package/dist/index.d.ts +10 -6
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -80,6 +80,8 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
80
80
|
TASKS_MANUAL_CONTENT_THREADS_CHILDREN_ITEM_POST: string;
|
|
81
81
|
TASKS_MANUAL_CONTENT_THREADS_RUNTIME: string;
|
|
82
82
|
REPORT_MANAGER: string;
|
|
83
|
+
BLOG_CATEGORY: string;
|
|
84
|
+
BLOG_POST: string;
|
|
83
85
|
PC_PHONE: string;
|
|
84
86
|
PC_PHONE_LOG: string;
|
|
85
87
|
PATTERN_CANVA_AVATAR: string;
|
|
@@ -655,7 +657,9 @@ declare enum EObjectName {
|
|
|
655
657
|
TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
|
|
656
658
|
TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
|
|
657
659
|
TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
|
|
658
|
-
ReportManager = "ReportManager"
|
|
660
|
+
ReportManager = "ReportManager",
|
|
661
|
+
BlogCategory = "BlogCategory",
|
|
662
|
+
BlogPost = "BlogPost"
|
|
659
663
|
}
|
|
660
664
|
|
|
661
665
|
declare enum EHaveData {
|
|
@@ -12791,7 +12795,7 @@ declare enum EVisibleTeamBlogCategory {
|
|
|
12791
12795
|
|
|
12792
12796
|
interface CreateBlogPostDto {
|
|
12793
12797
|
title: string;
|
|
12794
|
-
|
|
12798
|
+
content: string;
|
|
12795
12799
|
thumbnail: {
|
|
12796
12800
|
id: string;
|
|
12797
12801
|
url: string;
|
|
@@ -12819,7 +12823,7 @@ interface IViewCountNumberStatusBlogPostDto {
|
|
|
12819
12823
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
12820
12824
|
title: string;
|
|
12821
12825
|
slug: string;
|
|
12822
|
-
|
|
12826
|
+
content: string;
|
|
12823
12827
|
thumbnail: {
|
|
12824
12828
|
id: string;
|
|
12825
12829
|
url: string;
|
|
@@ -12923,7 +12927,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12927
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
12924
12928
|
title: string;
|
|
12925
12929
|
slug: string;
|
|
12926
|
-
|
|
12930
|
+
content: string;
|
|
12927
12931
|
thumbnail: {
|
|
12928
12932
|
id: string;
|
|
12929
12933
|
url: string;
|
|
@@ -12940,8 +12944,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
12940
12944
|
|
|
12941
12945
|
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
12942
12946
|
postId: string;
|
|
12943
|
-
parentId: string
|
|
12944
|
-
|
|
12947
|
+
parentId: string;
|
|
12948
|
+
content: string;
|
|
12945
12949
|
}
|
|
12946
12950
|
|
|
12947
12951
|
interface IBlogPostTracking extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
80
80
|
TASKS_MANUAL_CONTENT_THREADS_CHILDREN_ITEM_POST: string;
|
|
81
81
|
TASKS_MANUAL_CONTENT_THREADS_RUNTIME: string;
|
|
82
82
|
REPORT_MANAGER: string;
|
|
83
|
+
BLOG_CATEGORY: string;
|
|
84
|
+
BLOG_POST: string;
|
|
83
85
|
PC_PHONE: string;
|
|
84
86
|
PC_PHONE_LOG: string;
|
|
85
87
|
PATTERN_CANVA_AVATAR: string;
|
|
@@ -655,7 +657,9 @@ declare enum EObjectName {
|
|
|
655
657
|
TaskWorkflowLogNodeDetail = "TaskWorkflowLogNodeDetail",
|
|
656
658
|
TaskWorkflowNodeInstagram = "TaskWorkflowNodeInstagram",
|
|
657
659
|
TaskWorkflowNodeThreads = "TaskWorkflowNodeThreads",
|
|
658
|
-
ReportManager = "ReportManager"
|
|
660
|
+
ReportManager = "ReportManager",
|
|
661
|
+
BlogCategory = "BlogCategory",
|
|
662
|
+
BlogPost = "BlogPost"
|
|
659
663
|
}
|
|
660
664
|
|
|
661
665
|
declare enum EHaveData {
|
|
@@ -12791,7 +12795,7 @@ declare enum EVisibleTeamBlogCategory {
|
|
|
12791
12795
|
|
|
12792
12796
|
interface CreateBlogPostDto {
|
|
12793
12797
|
title: string;
|
|
12794
|
-
|
|
12798
|
+
content: string;
|
|
12795
12799
|
thumbnail: {
|
|
12796
12800
|
id: string;
|
|
12797
12801
|
url: string;
|
|
@@ -12819,7 +12823,7 @@ interface IViewCountNumberStatusBlogPostDto {
|
|
|
12819
12823
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
12820
12824
|
title: string;
|
|
12821
12825
|
slug: string;
|
|
12822
|
-
|
|
12826
|
+
content: string;
|
|
12823
12827
|
thumbnail: {
|
|
12824
12828
|
id: string;
|
|
12825
12829
|
url: string;
|
|
@@ -12923,7 +12927,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12927
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
12924
12928
|
title: string;
|
|
12925
12929
|
slug: string;
|
|
12926
|
-
|
|
12930
|
+
content: string;
|
|
12927
12931
|
thumbnail: {
|
|
12928
12932
|
id: string;
|
|
12929
12933
|
url: string;
|
|
@@ -12940,8 +12944,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
12940
12944
|
|
|
12941
12945
|
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
12942
12946
|
postId: string;
|
|
12943
|
-
parentId: string
|
|
12944
|
-
|
|
12947
|
+
parentId: string;
|
|
12948
|
+
content: string;
|
|
12945
12949
|
}
|
|
12946
12950
|
|
|
12947
12951
|
interface IBlogPostTracking extends IBaseModel, ITrackingModel {
|
package/dist/index.js
CHANGED
|
@@ -365,6 +365,8 @@ var CONST_API_CONTROLLERS = {
|
|
|
365
365
|
TASKS_MANUAL_CONTENT_THREADS_CHILDREN_ITEM_POST: "tasks-manual-content-threads-children-item-post",
|
|
366
366
|
TASKS_MANUAL_CONTENT_THREADS_RUNTIME: "tasks-manual-content-threads-runtime",
|
|
367
367
|
REPORT_MANAGER: "report-manager",
|
|
368
|
+
BLOG_CATEGORY: "blog-category",
|
|
369
|
+
BLOG_POST: "blog-post",
|
|
368
370
|
PC_PHONE: "pc-phone",
|
|
369
371
|
PC_PHONE_LOG: "pc-phone-log",
|
|
370
372
|
PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
|
|
@@ -1091,6 +1093,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
1091
1093
|
_EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
|
|
1092
1094
|
_EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
|
|
1093
1095
|
_EObjectName["ReportManager"] = "ReportManager";
|
|
1096
|
+
_EObjectName["BlogCategory"] = "BlogCategory";
|
|
1097
|
+
_EObjectName["BlogPost"] = "BlogPost";
|
|
1094
1098
|
return _EObjectName;
|
|
1095
1099
|
})(EObjectName || {});
|
|
1096
1100
|
|
package/dist/index.mjs
CHANGED
|
@@ -106,6 +106,8 @@ var CONST_API_CONTROLLERS = {
|
|
|
106
106
|
TASKS_MANUAL_CONTENT_THREADS_CHILDREN_ITEM_POST: "tasks-manual-content-threads-children-item-post",
|
|
107
107
|
TASKS_MANUAL_CONTENT_THREADS_RUNTIME: "tasks-manual-content-threads-runtime",
|
|
108
108
|
REPORT_MANAGER: "report-manager",
|
|
109
|
+
BLOG_CATEGORY: "blog-category",
|
|
110
|
+
BLOG_POST: "blog-post",
|
|
109
111
|
PC_PHONE: "pc-phone",
|
|
110
112
|
PC_PHONE_LOG: "pc-phone-log",
|
|
111
113
|
PATTERN_CANVA_AVATAR: "pattern-canva-avatar",
|
|
@@ -832,6 +834,8 @@ var EObjectName = /* @__PURE__ */ ((_EObjectName) => {
|
|
|
832
834
|
_EObjectName["TaskWorkflowNodeInstagram"] = "TaskWorkflowNodeInstagram";
|
|
833
835
|
_EObjectName["TaskWorkflowNodeThreads"] = "TaskWorkflowNodeThreads";
|
|
834
836
|
_EObjectName["ReportManager"] = "ReportManager";
|
|
837
|
+
_EObjectName["BlogCategory"] = "BlogCategory";
|
|
838
|
+
_EObjectName["BlogPost"] = "BlogPost";
|
|
835
839
|
return _EObjectName;
|
|
836
840
|
})(EObjectName || {});
|
|
837
841
|
|