automation-lib 6.4.11 → 6.4.16

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
@@ -5574,6 +5574,7 @@ interface IEmailRawManager extends IBaseModel, ITrackingModel {
5574
5574
  timeAddProcessChangeEmail: Date;
5575
5575
  timeRunProcessChangeEmail: Date;
5576
5576
  typeChangeInfo: ETypeEmailChangeInfo[];
5577
+ timeSchedule: Date;
5577
5578
  processAccountSocialOtp: EProcessingEmailManager;
5578
5579
  processChangeAccountSocialEmail: EProcessingEmailManager;
5579
5580
  timeAddProcessAccountSocialOtp: Date;
@@ -5762,6 +5763,7 @@ interface FindProcessChangeEmailDto extends IFindBaseDto {
5762
5763
  newEmail: string;
5763
5764
  processChangeEmail: EProcessingEmailManager;
5764
5765
  typeInfoChange: ETypeEmailChangeInfo[];
5766
+ timeSchedule: Date;
5765
5767
  errorMessage: string;
5766
5768
  noteFix: string;
5767
5769
  }
@@ -5803,6 +5805,7 @@ interface FindProxySelectionForEmailDto {
5803
5805
  typeProxy: ETypeProxy;
5804
5806
  proxyFormat: string;
5805
5807
  typeNewIp: EStatusProxyNewIP;
5808
+ isAddedToEmail: boolean;
5806
5809
  }
5807
5810
  interface BulkUpdateStatusEmailManagerDto {
5808
5811
  ids: string[];
package/dist/index.d.ts CHANGED
@@ -5574,6 +5574,7 @@ interface IEmailRawManager extends IBaseModel, ITrackingModel {
5574
5574
  timeAddProcessChangeEmail: Date;
5575
5575
  timeRunProcessChangeEmail: Date;
5576
5576
  typeChangeInfo: ETypeEmailChangeInfo[];
5577
+ timeSchedule: Date;
5577
5578
  processAccountSocialOtp: EProcessingEmailManager;
5578
5579
  processChangeAccountSocialEmail: EProcessingEmailManager;
5579
5580
  timeAddProcessAccountSocialOtp: Date;
@@ -5762,6 +5763,7 @@ interface FindProcessChangeEmailDto extends IFindBaseDto {
5762
5763
  newEmail: string;
5763
5764
  processChangeEmail: EProcessingEmailManager;
5764
5765
  typeInfoChange: ETypeEmailChangeInfo[];
5766
+ timeSchedule: Date;
5765
5767
  errorMessage: string;
5766
5768
  noteFix: string;
5767
5769
  }
@@ -5803,6 +5805,7 @@ interface FindProxySelectionForEmailDto {
5803
5805
  typeProxy: ETypeProxy;
5804
5806
  proxyFormat: string;
5805
5807
  typeNewIp: EStatusProxyNewIP;
5808
+ isAddedToEmail: boolean;
5806
5809
  }
5807
5810
  interface BulkUpdateStatusEmailManagerDto {
5808
5811
  ids: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.4.11",
3
+ "version": "6.4.16",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",