automation-lib 4.7.18 → 4.7.20

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,5 +1,14 @@
1
1
  @echo off
2
2
 
3
+ :: Add all changes to git
4
+ git add .
5
+
6
+ :: Commit changes with a message
7
+ git commit -m "update: Son update code"
8
+
9
+ :: Push changes to the 'main' branch of the 'cp' remote
10
+ git pull hs main
11
+
3
12
  :: Read the current version from package.json
4
13
  for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
5
14
 
@@ -28,14 +37,7 @@ echo New version: %newVersion%
28
37
  :: Run npm publish using call
29
38
  call npm run pub
30
39
 
31
- :: Add all changes to git
32
- git add .
33
-
34
- :: Commit changes with a message
35
- git commit -m "update: Liem update code"
36
40
 
37
- :: Push changes to the 'main' branch of the 'cp' remote
38
- git pull origin main
39
- git push origin main
41
+ git push hs main
40
42
 
41
43
 
package/dist/index.d.mts CHANGED
@@ -806,6 +806,7 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
806
806
  account_statusChangeSetting: EStatusExecuteCommon;
807
807
  account_statusLogin: EStatusLoginAccountSocial;
808
808
  account_isAllowPermissionApp: boolean;
809
+ account_packageApp: string;
809
810
  }
810
811
 
811
812
  interface ICanvaPosition {
package/dist/index.d.ts CHANGED
@@ -806,6 +806,7 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
806
806
  account_statusChangeSetting: EStatusExecuteCommon;
807
807
  account_statusLogin: EStatusLoginAccountSocial;
808
808
  account_isAllowPermissionApp: boolean;
809
+ account_packageApp: string;
809
810
  }
810
811
 
811
812
  interface ICanvaPosition {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.7.18",
3
+ "version": "4.7.20",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",