automation-lib 6.6.187 → 6.6.189
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 +2 -4
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12865,8 +12865,7 @@ interface UpdateChildCategorySystemDto {
|
|
|
12865
12865
|
}
|
|
12866
12866
|
interface UpdateChildCategoryOrderSystemDto {
|
|
12867
12867
|
childCategoryId: string;
|
|
12868
|
-
|
|
12869
|
-
nextCatChildOrder: string;
|
|
12868
|
+
toCatChildOrder: number;
|
|
12870
12869
|
}
|
|
12871
12870
|
interface IViewChildBlogCategorySystemDto {
|
|
12872
12871
|
id: string;
|
|
@@ -12923,8 +12922,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12922
|
parentId: string | IBlogCategorySystem;
|
|
12924
12923
|
viewableTeams: string[] | ITeam[];
|
|
12925
12924
|
pin: EYesNo;
|
|
12926
|
-
|
|
12927
|
-
nextCatChild: string | IBlogCategorySystem;
|
|
12925
|
+
order: number;
|
|
12928
12926
|
}
|
|
12929
12927
|
|
|
12930
12928
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -12865,8 +12865,7 @@ interface UpdateChildCategorySystemDto {
|
|
|
12865
12865
|
}
|
|
12866
12866
|
interface UpdateChildCategoryOrderSystemDto {
|
|
12867
12867
|
childCategoryId: string;
|
|
12868
|
-
|
|
12869
|
-
nextCatChildOrder: string;
|
|
12868
|
+
toCatChildOrder: number;
|
|
12870
12869
|
}
|
|
12871
12870
|
interface IViewChildBlogCategorySystemDto {
|
|
12872
12871
|
id: string;
|
|
@@ -12923,8 +12922,7 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12923
12922
|
parentId: string | IBlogCategorySystem;
|
|
12924
12923
|
viewableTeams: string[] | ITeam[];
|
|
12925
12924
|
pin: EYesNo;
|
|
12926
|
-
|
|
12927
|
-
nextCatChild: string | IBlogCategorySystem;
|
|
12925
|
+
order: number;
|
|
12928
12926
|
}
|
|
12929
12927
|
|
|
12930
12928
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|