automation-lib 6.6.307 → 6.6.309

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
@@ -12977,7 +12977,7 @@ interface CreateBlogPostDto {
12977
12977
  };
12978
12978
  status: EBlogPostStatus;
12979
12979
  pin: EYesNo;
12980
- blogChildCategories: string[];
12980
+ blogChildCategory: string;
12981
12981
  viewableTeams: string[];
12982
12982
  tags: string[];
12983
12983
  tagUsers: string[];
@@ -13022,14 +13022,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13022
13022
  };
13023
13023
  status: EBlogPostStatus;
13024
13024
  pin: EYesNo;
13025
- blogCategories: Array<{
13026
- id: string;
13027
- name: string;
13028
- children: Array<{
13029
- id: string;
13030
- name: string;
13031
- }>;
13032
- }>;
13025
+ blogChildCategory: string;
13033
13026
  viewable: IViewViewableBlogPostDto[];
13034
13027
  tags: string[];
13035
13028
  tagUsers: Array<{
@@ -13041,7 +13034,6 @@ interface FindBlogPostDto extends IFindBaseDto {
13041
13034
  url: string;
13042
13035
  type: EMediaTypeLibraryPost;
13043
13036
  }>;
13044
- countComment: number;
13045
13037
  isSendLark: EYesNo;
13046
13038
  sendLarkStatus: ESendNotiStatusBlogPost;
13047
13039
  isSendNotiSystem: EYesNo;
@@ -13059,7 +13051,7 @@ interface FindDetailBlogPostDto {
13059
13051
  };
13060
13052
  status: EBlogPostStatus;
13061
13053
  pin: EYesNo;
13062
- blogChildCategories: string[];
13054
+ blogChildCategory: string;
13063
13055
  viewable: IViewViewableBlogPostDto[];
13064
13056
  tags: string[];
13065
13057
  tagUsers: Array<{
@@ -13093,7 +13085,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13093
13085
  status: EBlogPostStatus;
13094
13086
  pin: EYesNo;
13095
13087
  blogRootCategories: string[];
13096
- blogChildCategories: string[];
13088
+ blogChildCategory: string[];
13097
13089
  viewableDepartments: string[];
13098
13090
  viewableTeams: string[];
13099
13091
  tags: string[];
@@ -13265,7 +13257,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
13265
13257
  status: EBlogPostStatus;
13266
13258
  tags: string[];
13267
13259
  tagUsers: string[] | IUser;
13268
- blogChildCategories: string[] | IBlogCategorySystem[];
13260
+ blogChildCategory: string | IBlogCategorySystem;
13269
13261
  viewableTeams: string[] | ITeam[];
13270
13262
  isSendLark: EYesNo;
13271
13263
  sendLarkStatus: ESendNotiStatusBlogPost;
package/dist/index.d.ts CHANGED
@@ -12977,7 +12977,7 @@ interface CreateBlogPostDto {
12977
12977
  };
12978
12978
  status: EBlogPostStatus;
12979
12979
  pin: EYesNo;
12980
- blogChildCategories: string[];
12980
+ blogChildCategory: string;
12981
12981
  viewableTeams: string[];
12982
12982
  tags: string[];
12983
12983
  tagUsers: string[];
@@ -13022,14 +13022,7 @@ interface FindBlogPostDto extends IFindBaseDto {
13022
13022
  };
13023
13023
  status: EBlogPostStatus;
13024
13024
  pin: EYesNo;
13025
- blogCategories: Array<{
13026
- id: string;
13027
- name: string;
13028
- children: Array<{
13029
- id: string;
13030
- name: string;
13031
- }>;
13032
- }>;
13025
+ blogChildCategory: string;
13033
13026
  viewable: IViewViewableBlogPostDto[];
13034
13027
  tags: string[];
13035
13028
  tagUsers: Array<{
@@ -13041,7 +13034,6 @@ interface FindBlogPostDto extends IFindBaseDto {
13041
13034
  url: string;
13042
13035
  type: EMediaTypeLibraryPost;
13043
13036
  }>;
13044
- countComment: number;
13045
13037
  isSendLark: EYesNo;
13046
13038
  sendLarkStatus: ESendNotiStatusBlogPost;
13047
13039
  isSendNotiSystem: EYesNo;
@@ -13059,7 +13051,7 @@ interface FindDetailBlogPostDto {
13059
13051
  };
13060
13052
  status: EBlogPostStatus;
13061
13053
  pin: EYesNo;
13062
- blogChildCategories: string[];
13054
+ blogChildCategory: string;
13063
13055
  viewable: IViewViewableBlogPostDto[];
13064
13056
  tags: string[];
13065
13057
  tagUsers: Array<{
@@ -13093,7 +13085,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
13093
13085
  status: EBlogPostStatus;
13094
13086
  pin: EYesNo;
13095
13087
  blogRootCategories: string[];
13096
- blogChildCategories: string[];
13088
+ blogChildCategory: string[];
13097
13089
  viewableDepartments: string[];
13098
13090
  viewableTeams: string[];
13099
13091
  tags: string[];
@@ -13265,7 +13257,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
13265
13257
  status: EBlogPostStatus;
13266
13258
  tags: string[];
13267
13259
  tagUsers: string[] | IUser;
13268
- blogChildCategories: string[] | IBlogCategorySystem[];
13260
+ blogChildCategory: string | IBlogCategorySystem;
13269
13261
  viewableTeams: string[] | ITeam[];
13270
13262
  isSendLark: EYesNo;
13271
13263
  sendLarkStatus: ESendNotiStatusBlogPost;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.307",
3
+ "version": "6.6.309",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",