automation-lib 6.6.179 → 6.6.181
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/commit.bat +5 -5
- package/dist/index.d.mts +19 -11
- package/dist/index.d.ts +19 -11
- package/package.json +1 -1
package/commit.bat
CHANGED
|
@@ -7,10 +7,10 @@ git add .
|
|
|
7
7
|
echo Committing changes...
|
|
8
8
|
set /p commit_message="Enter commit message: "
|
|
9
9
|
git commit -m "%commit_message%"
|
|
10
|
-
|
|
10
|
+
sleep 2
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
13
|
+
git pull origin toan
|
|
14
14
|
|
|
15
15
|
:: Read the current version from package.json
|
|
16
16
|
for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
|
|
@@ -41,10 +41,10 @@ echo New version: %newVersion%
|
|
|
41
41
|
call npm run pub
|
|
42
42
|
|
|
43
43
|
git add .
|
|
44
|
-
|
|
44
|
+
sleep 1
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
sleep 2
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push origin toan
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -12865,8 +12865,8 @@ interface UpdateChildCategorySystemDto {
|
|
|
12865
12865
|
}
|
|
12866
12866
|
interface UpdateChildCategoryOrderSystemDto {
|
|
12867
12867
|
childCategoryId: string;
|
|
12868
|
-
|
|
12869
|
-
|
|
12868
|
+
preCatChild: string;
|
|
12869
|
+
nextCatChild: string;
|
|
12870
12870
|
}
|
|
12871
12871
|
interface IViewChildBlogCategorySystemDto {
|
|
12872
12872
|
id: string;
|
|
@@ -12879,10 +12879,13 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
|
|
|
12879
12879
|
name: string;
|
|
12880
12880
|
hexColor: string;
|
|
12881
12881
|
description: string;
|
|
12882
|
+
parentCategory: {
|
|
12883
|
+
id: string;
|
|
12884
|
+
name: string;
|
|
12885
|
+
};
|
|
12882
12886
|
state: EBlogCategoryState;
|
|
12883
|
-
parentCategoryName: string;
|
|
12884
12887
|
viewable: string;
|
|
12885
|
-
|
|
12888
|
+
childCategories: IViewChildBlogCategorySystemDto[];
|
|
12886
12889
|
countPost: number;
|
|
12887
12890
|
pin: EYesNo;
|
|
12888
12891
|
order: string;
|
|
@@ -12893,13 +12896,17 @@ interface BlogCategoryDetailSystemDto extends IFindBaseDto {
|
|
|
12893
12896
|
hexColor: string;
|
|
12894
12897
|
description: string;
|
|
12895
12898
|
state: EBlogCategoryState;
|
|
12896
|
-
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
|
|
12900
|
-
|
|
12899
|
+
viewable: {
|
|
12900
|
+
department: {
|
|
12901
|
+
id: string;
|
|
12902
|
+
name: string;
|
|
12903
|
+
};
|
|
12904
|
+
team: {
|
|
12905
|
+
id: string;
|
|
12906
|
+
name: string;
|
|
12907
|
+
};
|
|
12908
|
+
};
|
|
12901
12909
|
childCategory: IViewChildBlogCategorySystemDto[];
|
|
12902
|
-
countPost: number;
|
|
12903
12910
|
pin: EYesNo;
|
|
12904
12911
|
order: string;
|
|
12905
12912
|
}
|
|
@@ -12917,7 +12924,8 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12917
12924
|
parentId: string | IBlogCategorySystem;
|
|
12918
12925
|
viewableTeam: string | ITeam;
|
|
12919
12926
|
pin: EYesNo;
|
|
12920
|
-
|
|
12927
|
+
preCatChild: string | IBlogCategorySystem;
|
|
12928
|
+
nextCatChild: string | IBlogCategorySystem;
|
|
12921
12929
|
}
|
|
12922
12930
|
|
|
12923
12931
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -12865,8 +12865,8 @@ interface UpdateChildCategorySystemDto {
|
|
|
12865
12865
|
}
|
|
12866
12866
|
interface UpdateChildCategoryOrderSystemDto {
|
|
12867
12867
|
childCategoryId: string;
|
|
12868
|
-
|
|
12869
|
-
|
|
12868
|
+
preCatChild: string;
|
|
12869
|
+
nextCatChild: string;
|
|
12870
12870
|
}
|
|
12871
12871
|
interface IViewChildBlogCategorySystemDto {
|
|
12872
12872
|
id: string;
|
|
@@ -12879,10 +12879,13 @@ interface FindBlogCategorySystemDto extends IFindBaseDto {
|
|
|
12879
12879
|
name: string;
|
|
12880
12880
|
hexColor: string;
|
|
12881
12881
|
description: string;
|
|
12882
|
+
parentCategory: {
|
|
12883
|
+
id: string;
|
|
12884
|
+
name: string;
|
|
12885
|
+
};
|
|
12882
12886
|
state: EBlogCategoryState;
|
|
12883
|
-
parentCategoryName: string;
|
|
12884
12887
|
viewable: string;
|
|
12885
|
-
|
|
12888
|
+
childCategories: IViewChildBlogCategorySystemDto[];
|
|
12886
12889
|
countPost: number;
|
|
12887
12890
|
pin: EYesNo;
|
|
12888
12891
|
order: string;
|
|
@@ -12893,13 +12896,17 @@ interface BlogCategoryDetailSystemDto extends IFindBaseDto {
|
|
|
12893
12896
|
hexColor: string;
|
|
12894
12897
|
description: string;
|
|
12895
12898
|
state: EBlogCategoryState;
|
|
12896
|
-
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
|
|
12900
|
-
|
|
12899
|
+
viewable: {
|
|
12900
|
+
department: {
|
|
12901
|
+
id: string;
|
|
12902
|
+
name: string;
|
|
12903
|
+
};
|
|
12904
|
+
team: {
|
|
12905
|
+
id: string;
|
|
12906
|
+
name: string;
|
|
12907
|
+
};
|
|
12908
|
+
};
|
|
12901
12909
|
childCategory: IViewChildBlogCategorySystemDto[];
|
|
12902
|
-
countPost: number;
|
|
12903
12910
|
pin: EYesNo;
|
|
12904
12911
|
order: string;
|
|
12905
12912
|
}
|
|
@@ -12917,7 +12924,8 @@ interface IBlogCategorySystem extends IBaseModel, ITrackingModel {
|
|
|
12917
12924
|
parentId: string | IBlogCategorySystem;
|
|
12918
12925
|
viewableTeam: string | ITeam;
|
|
12919
12926
|
pin: EYesNo;
|
|
12920
|
-
|
|
12927
|
+
preCatChild: string | IBlogCategorySystem;
|
|
12928
|
+
nextCatChild: string | IBlogCategorySystem;
|
|
12921
12929
|
}
|
|
12922
12930
|
|
|
12923
12931
|
interface IBlogPost extends IBaseModel, ITrackingModel {
|