automation-lib 6.6.309 → 6.6.311
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 -4
- package/dist/index.d.ts +5 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -13022,7 +13022,7 @@ interface FindBlogPostDto extends IFindBaseDto {
|
|
|
13022
13022
|
};
|
|
13023
13023
|
status: EBlogPostStatus;
|
|
13024
13024
|
pin: EYesNo;
|
|
13025
|
-
|
|
13025
|
+
pathBlogCategory: string;
|
|
13026
13026
|
viewable: IViewViewableBlogPostDto[];
|
|
13027
13027
|
tags: string[];
|
|
13028
13028
|
tagUsers: Array<{
|
|
@@ -13051,7 +13051,7 @@ interface FindDetailBlogPostDto {
|
|
|
13051
13051
|
};
|
|
13052
13052
|
status: EBlogPostStatus;
|
|
13053
13053
|
pin: EYesNo;
|
|
13054
|
-
|
|
13054
|
+
pathBlogCategory: string;
|
|
13055
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13056
13056
|
tags: string[];
|
|
13057
13057
|
tagUsers: Array<{
|
|
@@ -13084,8 +13084,9 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13084
|
};
|
|
13085
13085
|
status: EBlogPostStatus;
|
|
13086
13086
|
pin: EYesNo;
|
|
13087
|
-
|
|
13088
|
-
|
|
13087
|
+
pathBlogCategory: string[];
|
|
13088
|
+
blogRootCategory: string;
|
|
13089
|
+
blogChildCategory: string;
|
|
13089
13090
|
viewableDepartments: string[];
|
|
13090
13091
|
viewableTeams: string[];
|
|
13091
13092
|
tags: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -13022,7 +13022,7 @@ interface FindBlogPostDto extends IFindBaseDto {
|
|
|
13022
13022
|
};
|
|
13023
13023
|
status: EBlogPostStatus;
|
|
13024
13024
|
pin: EYesNo;
|
|
13025
|
-
|
|
13025
|
+
pathBlogCategory: string;
|
|
13026
13026
|
viewable: IViewViewableBlogPostDto[];
|
|
13027
13027
|
tags: string[];
|
|
13028
13028
|
tagUsers: Array<{
|
|
@@ -13051,7 +13051,7 @@ interface FindDetailBlogPostDto {
|
|
|
13051
13051
|
};
|
|
13052
13052
|
status: EBlogPostStatus;
|
|
13053
13053
|
pin: EYesNo;
|
|
13054
|
-
|
|
13054
|
+
pathBlogCategory: string;
|
|
13055
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13056
13056
|
tags: string[];
|
|
13057
13057
|
tagUsers: Array<{
|
|
@@ -13084,8 +13084,9 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13084
13084
|
};
|
|
13085
13085
|
status: EBlogPostStatus;
|
|
13086
13086
|
pin: EYesNo;
|
|
13087
|
-
|
|
13088
|
-
|
|
13087
|
+
pathBlogCategory: string[];
|
|
13088
|
+
blogRootCategory: string;
|
|
13089
|
+
blogChildCategory: string;
|
|
13089
13090
|
viewableDepartments: string[];
|
|
13090
13091
|
viewableTeams: string[];
|
|
13091
13092
|
tags: string[];
|