automation-lib 6.6.273 → 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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -13093,6 +13093,10 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
|
|
|
13093
13093
|
name: string;
|
|
13094
13094
|
hexColor: string;
|
|
13095
13095
|
description: string;
|
|
13096
|
+
firstParent: {
|
|
13097
|
+
id: string;
|
|
13098
|
+
name: string;
|
|
13099
|
+
};
|
|
13096
13100
|
parentCategory: {
|
|
13097
13101
|
id: string;
|
|
13098
13102
|
name: string;
|
|
@@ -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,6 +13093,10 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
|
|
|
13093
13093
|
name: string;
|
|
13094
13094
|
hexColor: string;
|
|
13095
13095
|
description: string;
|
|
13096
|
+
firstParent: {
|
|
13097
|
+
id: string;
|
|
13098
|
+
name: string;
|
|
13099
|
+
};
|
|
13096
13100
|
parentCategory: {
|
|
13097
13101
|
id: string;
|
|
13098
13102
|
name: string;
|
|
@@ -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;
|