automation-lib 6.6.273 → 6.6.275

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
@@ -13093,7 +13093,11 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
13093
13093
  name: string;
13094
13094
  hexColor: string;
13095
13095
  description: string;
13096
- parentCategory: {
13096
+ firstParentCategory: {
13097
+ id: string;
13098
+ name: string;
13099
+ };
13100
+ currentParentCategory: {
13097
13101
  id: string;
13098
13102
  name: string;
13099
13103
  };
@@ -13155,6 +13159,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13155
13159
  description: string;
13156
13160
  state: EBlogCategoryState;
13157
13161
  parentId: string | IBlogCategorySystem;
13162
+ firstParent: string | IBlogCategorySystem;
13158
13163
  viewableTeams: string[] | ITeam[];
13159
13164
  pin: EYesNo;
13160
13165
  order: number;
package/dist/index.d.ts CHANGED
@@ -13093,7 +13093,11 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
13093
13093
  name: string;
13094
13094
  hexColor: string;
13095
13095
  description: string;
13096
- parentCategory: {
13096
+ firstParentCategory: {
13097
+ id: string;
13098
+ name: string;
13099
+ };
13100
+ currentParentCategory: {
13097
13101
  id: string;
13098
13102
  name: string;
13099
13103
  };
@@ -13155,6 +13159,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
13155
13159
  description: string;
13156
13160
  state: EBlogCategoryState;
13157
13161
  parentId: string | IBlogCategorySystem;
13162
+ firstParent: string | IBlogCategorySystem;
13158
13163
  viewableTeams: string[] | ITeam[];
13159
13164
  pin: EYesNo;
13160
13165
  order: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.273",
3
+ "version": "6.6.275",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",