automation-lib 6.6.308 → 6.6.309
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 -12
- package/dist/index.d.ts +5 -12
- 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
|
+
blogChildCategory: 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
|
+
blogChildCategory: string;
|
|
13062
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13063
13056
|
tags: string[];
|
|
13064
13057
|
tagUsers: Array<{
|
|
@@ -13092,7 +13085,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13092
13085
|
status: EBlogPostStatus;
|
|
13093
13086
|
pin: EYesNo;
|
|
13094
13087
|
blogRootCategories: string[];
|
|
13095
|
-
|
|
13088
|
+
blogChildCategory: string[];
|
|
13096
13089
|
viewableDepartments: string[];
|
|
13097
13090
|
viewableTeams: string[];
|
|
13098
13091
|
tags: string[];
|
|
@@ -13264,7 +13257,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
13264
13257
|
status: EBlogPostStatus;
|
|
13265
13258
|
tags: string[];
|
|
13266
13259
|
tagUsers: string[] | IUser;
|
|
13267
|
-
|
|
13260
|
+
blogChildCategory: string | IBlogCategorySystem;
|
|
13268
13261
|
viewableTeams: string[] | ITeam[];
|
|
13269
13262
|
isSendLark: EYesNo;
|
|
13270
13263
|
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
|
+
blogChildCategory: 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
|
+
blogChildCategory: string;
|
|
13062
13055
|
viewable: IViewViewableBlogPostDto[];
|
|
13063
13056
|
tags: string[];
|
|
13064
13057
|
tagUsers: Array<{
|
|
@@ -13092,7 +13085,7 @@ interface FindDetailBySlugBlogPostDto extends IFindBaseDto {
|
|
|
13092
13085
|
status: EBlogPostStatus;
|
|
13093
13086
|
pin: EYesNo;
|
|
13094
13087
|
blogRootCategories: string[];
|
|
13095
|
-
|
|
13088
|
+
blogChildCategory: string[];
|
|
13096
13089
|
viewableDepartments: string[];
|
|
13097
13090
|
viewableTeams: string[];
|
|
13098
13091
|
tags: string[];
|
|
@@ -13264,7 +13257,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
|
|
|
13264
13257
|
status: EBlogPostStatus;
|
|
13265
13258
|
tags: string[];
|
|
13266
13259
|
tagUsers: string[] | IUser;
|
|
13267
|
-
|
|
13260
|
+
blogChildCategory: string | IBlogCategorySystem;
|
|
13268
13261
|
viewableTeams: string[] | ITeam[];
|
|
13269
13262
|
isSendLark: EYesNo;
|
|
13270
13263
|
sendLarkStatus: ESendNotiStatusBlogPost;
|