automation-lib 6.6.308 → 6.6.310
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 -13
- package/dist/index.d.ts +5 -13
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12977,7 +12977,7 @@ interface CreateBlogPostDto {
|
|
|
12977
12977
|
};
|
|
12978
12978
|
status: EBlogPostStatus;
|
|
12979
12979
|
pin: EYesNo;
|
|
12980
|
-
|
|
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
|
-
|
|
13026
|
-
id: string;
|
|
13027
|
-
name: string;
|
|
13028
|
-
children: Array<{
|
|
13029
|
-
id: string;
|
|
13030
|
-
name: string;
|
|
13031
|
-
}>;
|
|
13032
|
-
}>;
|
|
13025
|
+
pathBlogCategory: string;
|
|
13033
13026
|
viewable: IViewViewableBlogPostDto[];
|
|
13034
13027
|
tags: string[];
|
|
13035
13028
|
tagUsers: Array<{
|
|
@@ -13058,7 +13051,7 @@ interface FindDetailBlogPostDto {
|
|
|
13058
13051
|
};
|
|
13059
13052
|
status: EBlogPostStatus;
|
|
13060
13053
|
pin: EYesNo;
|
|
13061
|
-
|
|
13054
|
+
pathBlogCategory: string;
|
|
13062
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13063
13056
|
tags: string[];
|
|
13064
13057
|
tagUsers: Array<{
|
|
@@ -13091,8 +13084,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13091
13084
|
};
|
|
13092
13085
|
status: EBlogPostStatus;
|
|
13093
13086
|
pin: EYesNo;
|
|
13094
|
-
|
|
13095
|
-
blogChildCategories: string[];
|
|
13087
|
+
pathBlogCategory: string[];
|
|
13096
13088
|
viewableDepartments: string[];
|
|
13097
13089
|
viewableTeams: string[];
|
|
13098
13090
|
tags: string[];
|
|
@@ -13264,7 +13256,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
13264
13256
|
status: EBlogPostStatus;
|
|
13265
13257
|
tags: string[];
|
|
13266
13258
|
tagUsers: string[] | IUser;
|
|
13267
|
-
|
|
13259
|
+
blogChildCategory: string | IBlogCategorySystem;
|
|
13268
13260
|
viewableTeams: string[] | ITeam[];
|
|
13269
13261
|
isSendLark: EYesNo;
|
|
13270
13262
|
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
|
-
|
|
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
|
-
|
|
13026
|
-
id: string;
|
|
13027
|
-
name: string;
|
|
13028
|
-
children: Array<{
|
|
13029
|
-
id: string;
|
|
13030
|
-
name: string;
|
|
13031
|
-
}>;
|
|
13032
|
-
}>;
|
|
13025
|
+
pathBlogCategory: string;
|
|
13033
13026
|
viewable: IViewViewableBlogPostDto[];
|
|
13034
13027
|
tags: string[];
|
|
13035
13028
|
tagUsers: Array<{
|
|
@@ -13058,7 +13051,7 @@ interface FindDetailBlogPostDto {
|
|
|
13058
13051
|
};
|
|
13059
13052
|
status: EBlogPostStatus;
|
|
13060
13053
|
pin: EYesNo;
|
|
13061
|
-
|
|
13054
|
+
pathBlogCategory: string;
|
|
13062
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13063
13056
|
tags: string[];
|
|
13064
13057
|
tagUsers: Array<{
|
|
@@ -13091,8 +13084,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13091
13084
|
};
|
|
13092
13085
|
status: EBlogPostStatus;
|
|
13093
13086
|
pin: EYesNo;
|
|
13094
|
-
|
|
13095
|
-
blogChildCategories: string[];
|
|
13087
|
+
pathBlogCategory: string[];
|
|
13096
13088
|
viewableDepartments: string[];
|
|
13097
13089
|
viewableTeams: string[];
|
|
13098
13090
|
tags: string[];
|
|
@@ -13264,7 +13256,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
13264
13256
|
status: EBlogPostStatus;
|
|
13265
13257
|
tags: string[];
|
|
13266
13258
|
tagUsers: string[] | IUser;
|
|
13267
|
-
|
|
13259
|
+
blogChildCategory: string | IBlogCategorySystem;
|
|
13268
13260
|
viewableTeams: string[] | ITeam[];
|
|
13269
13261
|
isSendLark: EYesNo;
|
|
13270
13262
|
sendLarkStatus: ESendNotiStatusBlogPost;
|