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 CHANGED
@@ -12791,7 +12791,7 @@ declare enum EVisibleTeamBlogCategory {
12791
12791
 
12792
12792
  interface CreateBlogPostDto {
12793
12793
  title: string;
12794
- contentHtml: string;
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
- contentHtml: string;
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
- contentHtml: string;
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 | null;
12944
- contentHtml: string;
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
- contentHtml: string;
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
- contentHtml: string;
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
- contentHtml: string;
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 | null;
12944
- contentHtml: string;
12943
+ parentId: string;
12944
+ content: string;
12945
12945
  }
12946
12946
 
12947
12947
  interface IBlogPostTracking extends IBaseModel, ITrackingModel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.172",
3
+ "version": "6.6.173",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",