automation-lib 6.6.326 → 6.6.328

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
- sleep 2
10
+ timeout /t 2 /nobreak >nul
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull origin toan
13
+ git pull hs main
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
- sleep 1
44
+ timeout /t 1 /nobreak >nul
45
45
  git commit -m "%commit_message%"
46
- sleep 2
46
+ timeout /t 2 /nobreak >nul
47
47
 
48
- git push origin toan
48
+ git push hs main
49
49
 
50
50
 
package/dist/index.d.mts CHANGED
@@ -4296,7 +4296,7 @@ interface FindOverviewAccountCanvaDto {
4296
4296
  percentage: number;
4297
4297
  };
4298
4298
  }
4299
- interface FilterAccountCanvaDto extends IFilterBaseDto {
4299
+ interface FilterAccountCanvaDto extends IFilterBaseDto, IFilterAssignDto {
4300
4300
  sheetName: string[];
4301
4301
  timeUserAssign: [Date, Date];
4302
4302
  userAssign: string[];
@@ -4444,7 +4444,7 @@ interface FindOverviewAccountCHPlayICloudDto {
4444
4444
  percentage: number;
4445
4445
  };
4446
4446
  }
4447
- interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
4447
+ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, IFilterAssignDto {
4448
4448
  sheetName: string[];
4449
4449
  pcName: string[];
4450
4450
  os: ETypeDeviceOS[];
@@ -4556,7 +4556,7 @@ interface FindOverviewAccountDriveDto {
4556
4556
  percentage: number;
4557
4557
  };
4558
4558
  }
4559
- interface FilterAccountDriveDto extends IFilterBaseDto {
4559
+ interface FilterAccountDriveDto extends IFilterBaseDto, IFilterAssignDto {
4560
4560
  driveType: EAccountDriveType[];
4561
4561
  sheetName: string[];
4562
4562
  timeUserAssign: [Date, Date];
@@ -5743,7 +5743,7 @@ interface FindDeviceAvailableForAddAccountVPNDto {
5743
5743
  isMax: boolean;
5744
5744
  isChecked: boolean;
5745
5745
  }
5746
- interface FilterAccountVPNDto extends IFilterBaseDto {
5746
+ interface FilterAccountVPNDto extends IFilterBaseDto, IFilterAssignDto {
5747
5747
  typeAccount: ETypeAccountVPN[];
5748
5748
  country: string[];
5749
5749
  sheetName: string[];
package/dist/index.d.ts CHANGED
@@ -4296,7 +4296,7 @@ interface FindOverviewAccountCanvaDto {
4296
4296
  percentage: number;
4297
4297
  };
4298
4298
  }
4299
- interface FilterAccountCanvaDto extends IFilterBaseDto {
4299
+ interface FilterAccountCanvaDto extends IFilterBaseDto, IFilterAssignDto {
4300
4300
  sheetName: string[];
4301
4301
  timeUserAssign: [Date, Date];
4302
4302
  userAssign: string[];
@@ -4444,7 +4444,7 @@ interface FindOverviewAccountCHPlayICloudDto {
4444
4444
  percentage: number;
4445
4445
  };
4446
4446
  }
4447
- interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
4447
+ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, IFilterAssignDto {
4448
4448
  sheetName: string[];
4449
4449
  pcName: string[];
4450
4450
  os: ETypeDeviceOS[];
@@ -4556,7 +4556,7 @@ interface FindOverviewAccountDriveDto {
4556
4556
  percentage: number;
4557
4557
  };
4558
4558
  }
4559
- interface FilterAccountDriveDto extends IFilterBaseDto {
4559
+ interface FilterAccountDriveDto extends IFilterBaseDto, IFilterAssignDto {
4560
4560
  driveType: EAccountDriveType[];
4561
4561
  sheetName: string[];
4562
4562
  timeUserAssign: [Date, Date];
@@ -5743,7 +5743,7 @@ interface FindDeviceAvailableForAddAccountVPNDto {
5743
5743
  isMax: boolean;
5744
5744
  isChecked: boolean;
5745
5745
  }
5746
- interface FilterAccountVPNDto extends IFilterBaseDto {
5746
+ interface FilterAccountVPNDto extends IFilterBaseDto, IFilterAssignDto {
5747
5747
  typeAccount: ETypeAccountVPN[];
5748
5748
  country: string[];
5749
5749
  sheetName: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.326",
3
+ "version": "6.6.328",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",