automation-lib 6.6.560 → 6.6.562

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 CHANGED
@@ -1,62 +1,50 @@
1
- @echo off
2
- setlocal enabledelayedexpansion
3
- chcp 65001 >nul
4
-
5
- echo ===========================================
6
- echo GIT AUTO PUSH - LIBRARY
7
- echo ===========================================
8
-
9
- set /p commit_message="Enter commit message: "
10
- if "%commit_message%"=="" (
11
- echo [LOI] Commit message khong duoc de trong!
12
- pause
13
- exit /b
14
- )
15
-
16
- :: GIT ADD & COMMIT
17
- git add .
18
- git commit -m "%commit_message%"
19
- timeout /t 2 /nobreak >nul
20
-
21
- :: ===========================================
22
- :: PULL & PUSH HS (nhann6304 only)
23
- :: ===========================================
24
- echo.
25
- echo --- Switch to nhann6304 for [hs] remote ---
26
- gh auth switch --user nhann6304
27
-
28
- echo --- Pull from hs main ---
29
- git pull hs main
30
-
31
- :: Version bump
32
- for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
33
- set currentVersion=%currentVersion:"=%
34
- for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
35
- set major=%%a
36
- set minor=%%b
37
- set patch=%%c
38
- )
39
- set /a patch+=1
40
- set newVersion=%major%.%minor%.%patch%
41
-
42
- powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
43
- echo New version: %newVersion%
44
-
45
- :: Publish
46
- call npm run pub
47
-
48
- :: Commit version bump & push
49
- git add .
50
- timeout /t 1 /nobreak >nul
51
- git commit -m "v%newVersion% - %commit_message%"
52
- timeout /t 2 /nobreak >nul
53
-
54
- echo --- Push to hs main ---
55
- git push hs main && echo [OK] Push hs main xong. || echo [LOI] Push hs main that bai.
56
-
57
- echo.
58
- echo ===========================================
59
- echo HOAN TAT! Version: %newVersion%
60
- echo ===========================================
61
- pause
62
- endlocal
1
+ @echo off
2
+
3
+ :: Add all changes to git
4
+ git add .
5
+
6
+ :: Commit changes with a message
7
+ echo Committing changes...
8
+ set /p commit_message="Enter commit message: "
9
+ git commit -m "%commit_message%"
10
+ sleep 2
11
+
12
+ :: Push changes to the 'main' branch of the 'cp' remote
13
+ git pull origin toan
14
+
15
+ :: Read the current version from package.json
16
+ for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
17
+
18
+ :: Remove quotes from the version string
19
+ set currentVersion=%currentVersion:"=%
20
+
21
+ :: Split version into its components
22
+ for /f "tokens=1,2,3 delims=." %%a in ("%currentVersion%") do (
23
+ set major=%%a
24
+ set minor=%%b
25
+ set patch=%%c
26
+ )
27
+
28
+ :: Increment the patch version
29
+ set /a patch+=1
30
+
31
+ :: Create the new version string
32
+ set newVersion=%major%.%minor%.%patch%
33
+
34
+ :: Update the version in package.json
35
+ powershell -Command "(Get-Content package.json) -replace '\"version\": \"%currentVersion%\"', '\"version\": \"%newVersion%\"' | Set-Content package.json"
36
+
37
+ :: Display the new version
38
+ echo New version: %newVersion%
39
+
40
+ :: Run npm publish using call
41
+ call npm run pub
42
+
43
+ git add .
44
+ sleep 1
45
+ git commit -m "%commit_message%"
46
+ sleep 2
47
+
48
+ git push origin toan
49
+
50
+
package/dist/index.d.mts CHANGED
@@ -14132,6 +14132,7 @@ interface CreateBlogPostDto {
14132
14132
  url: string;
14133
14133
  type: EMediaTypeLibraryPost;
14134
14134
  }>;
14135
+ countMediaInPost: number;
14135
14136
  }
14136
14137
  interface UpdateBlogPostDto extends Partial<CreateBlogPostDto> {
14137
14138
  }
@@ -14169,6 +14170,7 @@ interface FindBlogPostDto extends IFindBaseDto {
14169
14170
  pathBlogCategory: string;
14170
14171
  viewable: IViewViewableBlogPostDto[];
14171
14172
  tags: string[];
14173
+ countMediaInPost: number;
14172
14174
  tagUsers: Array<{
14173
14175
  id: string;
14174
14176
  name: string;
@@ -14264,6 +14266,7 @@ interface FindViewBySlugBlogPostDto extends IFindBaseDto {
14264
14266
  id: string;
14265
14267
  url: string;
14266
14268
  };
14269
+ countMediaInPost: number;
14267
14270
  }
14268
14271
  interface FindCommentBlogPostDto {
14269
14272
  id: string;
@@ -14434,6 +14437,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
14434
14437
  tags: string[];
14435
14438
  tagUsers: string[] | IUser;
14436
14439
  isPublished: EYesNo;
14440
+ countMediaInPost: number;
14437
14441
  blogCategory: string | IBlogCategorySystem;
14438
14442
  isSendLark: EYesNo;
14439
14443
  sendLarkStatus: ESendNotiStatusBlogPost;
package/dist/index.d.ts CHANGED
@@ -14132,6 +14132,7 @@ interface CreateBlogPostDto {
14132
14132
  url: string;
14133
14133
  type: EMediaTypeLibraryPost;
14134
14134
  }>;
14135
+ countMediaInPost: number;
14135
14136
  }
14136
14137
  interface UpdateBlogPostDto extends Partial<CreateBlogPostDto> {
14137
14138
  }
@@ -14169,6 +14170,7 @@ interface FindBlogPostDto extends IFindBaseDto {
14169
14170
  pathBlogCategory: string;
14170
14171
  viewable: IViewViewableBlogPostDto[];
14171
14172
  tags: string[];
14173
+ countMediaInPost: number;
14172
14174
  tagUsers: Array<{
14173
14175
  id: string;
14174
14176
  name: string;
@@ -14264,6 +14266,7 @@ interface FindViewBySlugBlogPostDto extends IFindBaseDto {
14264
14266
  id: string;
14265
14267
  url: string;
14266
14268
  };
14269
+ countMediaInPost: number;
14267
14270
  }
14268
14271
  interface FindCommentBlogPostDto {
14269
14272
  id: string;
@@ -14434,6 +14437,7 @@ interface IBlogPost extends IBaseModel, ITrackingModel {
14434
14437
  tags: string[];
14435
14438
  tagUsers: string[] | IUser;
14436
14439
  isPublished: EYesNo;
14440
+ countMediaInPost: number;
14437
14441
  blogCategory: string | IBlogCategorySystem;
14438
14442
  isSendLark: EYesNo;
14439
14443
  sendLarkStatus: ESendNotiStatusBlogPost;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.560",
3
+ "version": "6.6.562",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",