automation-lib 6.6.272 → 6.6.274

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
@@ -13074,6 +13074,8 @@ interface UpdateBlogCategorySystemDto {
13074
13074
  }
13075
13075
  interface UpdateChildCategorySystemDto {
13076
13076
  parentId: string;
13077
+ icon: string;
13078
+ name: string;
13077
13079
  }
13078
13080
  interface UpdateChildCategoryOrderSystemDto {
13079
13081
  childCategoryId: string;
@@ -13091,6 +13093,10 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
13091
13093
  name: string;
13092
13094
  hexColor: string;
13093
13095
  description: string;
13096
+ firstParent: {
13097
+ id: string;
13098
+ name: string;
13099
+ };
13094
13100
  parentCategory: {
13095
13101
  id: string;
13096
13102
  name: string;
@@ -13153,6 +13159,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13153
13159
  description: string;
13154
13160
  state: EBlogCategoryState;
13155
13161
  parentId: string | IBlogCategorySystem;
13162
+ firstParent: string | IBlogCategorySystem;
13156
13163
  viewableTeams: string[] | ITeam[];
13157
13164
  pin: EYesNo;
13158
13165
  order: number;
package/dist/index.d.ts CHANGED
@@ -13074,6 +13074,8 @@ interface UpdateBlogCategorySystemDto {
13074
13074
  }
13075
13075
  interface UpdateChildCategorySystemDto {
13076
13076
  parentId: string;
13077
+ icon: string;
13078
+ name: string;
13077
13079
  }
13078
13080
  interface UpdateChildCategoryOrderSystemDto {
13079
13081
  childCategoryId: string;
@@ -13091,6 +13093,10 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
13091
13093
  name: string;
13092
13094
  hexColor: string;
13093
13095
  description: string;
13096
+ firstParent: {
13097
+ id: string;
13098
+ name: string;
13099
+ };
13094
13100
  parentCategory: {
13095
13101
  id: string;
13096
13102
  name: string;
@@ -13153,6 +13159,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13153
13159
  description: string;
13154
13160
  state: EBlogCategoryState;
13155
13161
  parentId: string | IBlogCategorySystem;
13162
+ firstParent: string | IBlogCategorySystem;
13156
13163
  viewableTeams: string[] | ITeam[];
13157
13164
  pin: EYesNo;
13158
13165
  order: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.272",
3
+ "version": "6.6.274",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",