automation-lib 6.6.261 → 6.6.262

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
@@ -12939,7 +12939,7 @@ declare enum EVisibleTeamBlogCategory {
12939
12939
 
12940
12940
  interface CreateBlogPostDto {
12941
12941
  title: string;
12942
- slug: string;
12942
+ description: string;
12943
12943
  content: string;
12944
12944
  thumbnail: {
12945
12945
  id: string;
@@ -12985,6 +12985,7 @@ interface IViewViewableBlogPostDto {
12985
12985
  interface FindBlogPostDto extends IFindBaseDto {
12986
12986
  sttPost: number;
12987
12987
  title: string;
12988
+ description: string;
12988
12989
  slug: string;
12989
12990
  content: string;
12990
12991
  thumbnail: {
@@ -13014,6 +13015,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13014
13015
  interface FindDetailBlogPostDto {
13015
13016
  sttPost: number;
13016
13017
  title: string;
13018
+ description: string;
13017
13019
  slug: string;
13018
13020
  content: string;
13019
13021
  thumbnail: {
@@ -13144,6 +13146,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13144
13146
  interface IBlogPost extends IBaseModel, ITrackingModel {
13145
13147
  sttPost: number;
13146
13148
  title: string;
13149
+ description: string;
13147
13150
  slug: string;
13148
13151
  content: string;
13149
13152
  thumbnail: {
package/dist/index.d.ts CHANGED
@@ -12939,7 +12939,7 @@ declare enum EVisibleTeamBlogCategory {
12939
12939
 
12940
12940
  interface CreateBlogPostDto {
12941
12941
  title: string;
12942
- slug: string;
12942
+ description: string;
12943
12943
  content: string;
12944
12944
  thumbnail: {
12945
12945
  id: string;
@@ -12985,6 +12985,7 @@ interface IViewViewableBlogPostDto {
12985
12985
  interface FindBlogPostDto extends IFindBaseDto {
12986
12986
  sttPost: number;
12987
12987
  title: string;
12988
+ description: string;
12988
12989
  slug: string;
12989
12990
  content: string;
12990
12991
  thumbnail: {
@@ -13014,6 +13015,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13014
13015
  interface FindDetailBlogPostDto {
13015
13016
  sttPost: number;
13016
13017
  title: string;
13018
+ description: string;
13017
13019
  slug: string;
13018
13020
  content: string;
13019
13021
  thumbnail: {
@@ -13144,6 +13146,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13144
13146
  interface IBlogPost extends IBaseModel, ITrackingModel {
13145
13147
  sttPost: number;
13146
13148
  title: string;
13149
+ description: string;
13147
13150
  slug: string;
13148
13151
  content: string;
13149
13152
  thumbnail: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.261",
3
+ "version": "6.6.262",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",