automation-lib 6.6.172 → 6.6.173
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12791,7 +12791,7 @@ declare enum EVisibleTeamBlogCategory {
|
|
|
12791
12791
|
|
|
12792
12792
|
interface CreateBlogPostDto {
|
|
12793
12793
|
title: string;
|
|
12794
|
-
|
|
12794
|
+
content: string;
|
|
12795
12795
|
thumbnail: {
|
|
12796
12796
|
id: string;
|
|
12797
12797
|
url: string;
|
|
@@ -12819,7 +12819,7 @@ interface IViewCountNumberStatusBlogPostDto {
|
|
|
12819
12819
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
12820
12820
|
title: string;
|
|
12821
12821
|
slug: string;
|
|
12822
|
-
|
|
12822
|
+
content: string;
|
|
12823
12823
|
thumbnail: {
|
|
12824
12824
|
id: string;
|
|
12825
12825
|
url: string;
|
|
@@ -12923,7 +12923,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12923
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
12924
12924
|
title: string;
|
|
12925
12925
|
slug: string;
|
|
12926
|
-
|
|
12926
|
+
content: string;
|
|
12927
12927
|
thumbnail: {
|
|
12928
12928
|
id: string;
|
|
12929
12929
|
url: string;
|
|
@@ -12940,8 +12940,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
12940
12940
|
|
|
12941
12941
|
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
12942
12942
|
postId: string;
|
|
12943
|
-
parentId: string
|
|
12944
|
-
|
|
12943
|
+
parentId: string;
|
|
12944
|
+
content: string;
|
|
12945
12945
|
}
|
|
12946
12946
|
|
|
12947
12947
|
interface IBlogPostTracking extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -12791,7 +12791,7 @@ declare enum EVisibleTeamBlogCategory {
|
|
|
12791
12791
|
|
|
12792
12792
|
interface CreateBlogPostDto {
|
|
12793
12793
|
title: string;
|
|
12794
|
-
|
|
12794
|
+
content: string;
|
|
12795
12795
|
thumbnail: {
|
|
12796
12796
|
id: string;
|
|
12797
12797
|
url: string;
|
|
@@ -12819,7 +12819,7 @@ interface IViewCountNumberStatusBlogPostDto {
|
|
|
12819
12819
|
interface FindBlogPostDto extends IFindBaseDto {
|
|
12820
12820
|
title: string;
|
|
12821
12821
|
slug: string;
|
|
12822
|
-
|
|
12822
|
+
content: string;
|
|
12823
12823
|
thumbnail: {
|
|
12824
12824
|
id: string;
|
|
12825
12825
|
url: string;
|
|
@@ -12923,7 +12923,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12923
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
12924
12924
|
title: string;
|
|
12925
12925
|
slug: string;
|
|
12926
|
-
|
|
12926
|
+
content: string;
|
|
12927
12927
|
thumbnail: {
|
|
12928
12928
|
id: string;
|
|
12929
12929
|
url: string;
|
|
@@ -12940,8 +12940,8 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
12940
12940
|
|
|
12941
12941
|
interface IBlogComment extends IBaseModel, ITrackingModel {
|
|
12942
12942
|
postId: string;
|
|
12943
|
-
parentId: string
|
|
12944
|
-
|
|
12943
|
+
parentId: string;
|
|
12944
|
+
content: string;
|
|
12945
12945
|
}
|
|
12946
12946
|
|
|
12947
12947
|
interface IBlogPostTracking extends IBaseModel, ITrackingModel {
|