automation-lib 6.6.405 → 6.6.407

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
@@ -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
- timeout /t 2 /nobreak >nul
10
+ sleep 2
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull hs main
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
- timeout /t 1 /nobreak >nul
44
+ sleep 1
45
45
  git commit -m "%commit_message%"
46
- timeout /t 2 /nobreak >nul
46
+ sleep 2
47
47
 
48
- git push hs main
48
+ git push origin toan
49
49
 
50
50
 
package/dist/index.d.mts CHANGED
@@ -7850,10 +7850,13 @@ interface FindInstagramAccountRawDto extends IFindBaseDto {
7850
7850
  sheetName: string;
7851
7851
  type: string;
7852
7852
  status: string;
7853
+ timeStartStopChange: Date;
7853
7854
  departmentCreator: string;
7854
7855
  leaderCreator: string;
7855
7856
  teamCreator: string;
7856
7857
  createdBy: string;
7858
+ updatedBy: string;
7859
+ updatedAt: string;
7857
7860
  }>;
7858
7861
  listTypeChangeInfo: Array<{
7859
7862
  id: string;
@@ -7877,6 +7880,8 @@ interface FindInstagramAccountRawDto extends IFindBaseDto {
7877
7880
  teamCreator: string;
7878
7881
  createdBy: string;
7879
7882
  createAt: string;
7883
+ updatedBy: string;
7884
+ updatedAt: string;
7880
7885
  }>;
7881
7886
  }
7882
7887
  interface FilterInstagramAccountRawDto extends IFilterBaseDto {
package/dist/index.d.ts CHANGED
@@ -7850,10 +7850,13 @@ interface FindInstagramAccountRawDto extends IFindBaseDto {
7850
7850
  sheetName: string;
7851
7851
  type: string;
7852
7852
  status: string;
7853
+ timeStartStopChange: Date;
7853
7854
  departmentCreator: string;
7854
7855
  leaderCreator: string;
7855
7856
  teamCreator: string;
7856
7857
  createdBy: string;
7858
+ updatedBy: string;
7859
+ updatedAt: string;
7857
7860
  }>;
7858
7861
  listTypeChangeInfo: Array<{
7859
7862
  id: string;
@@ -7877,6 +7880,8 @@ interface FindInstagramAccountRawDto extends IFindBaseDto {
7877
7880
  teamCreator: string;
7878
7881
  createdBy: string;
7879
7882
  createAt: string;
7883
+ updatedBy: string;
7884
+ updatedAt: string;
7880
7885
  }>;
7881
7886
  }
7882
7887
  interface FilterInstagramAccountRawDto extends IFilterBaseDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.405",
3
+ "version": "6.6.407",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",