automation-lib 6.3.23 → 6.3.25

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
@@ -5459,6 +5459,8 @@ declare enum EStatusImapApp {
5459
5459
 
5460
5460
  interface IEmailRawManager extends IBaseModel, ITrackingModel {
5461
5461
  accountSocialId: string;
5462
+ urlSheet: string;
5463
+ nameSheet: string;
5462
5464
  status: EStatusEmailManager;
5463
5465
  timeStatus: Date;
5464
5466
  vps: string | IAccountVPS;
@@ -5745,9 +5747,9 @@ interface FindEmailRawAddToVPS extends IFindBaseDto {
5745
5747
  newUsername: string;
5746
5748
  statusAccountSocial: EStatusAccountSocialRaw;
5747
5749
  statusLoginAppClone: EStatusAccountSocialLogin;
5748
- urlFileImport: string;
5750
+ urlSheet: string;
5749
5751
  nameSheet: string;
5750
- dataImport: Date;
5752
+ dateImport: Date;
5751
5753
  }
5752
5754
  interface FindProxySelectionForEmail {
5753
5755
  typeProxy: ETypeProxy;
@@ -5833,7 +5835,7 @@ interface ResultImportEmailRawManagerDto {
5833
5835
  interface ImportEmailRawManagerDto {
5834
5836
  sheetUrl: string;
5835
5837
  sheetName: string;
5836
- listEmailID: string[];
5838
+ listEmail: string[];
5837
5839
  }
5838
5840
  interface DataImportEmailRawManagerDto {
5839
5841
  emailType: ETypeEmailManager;
package/dist/index.d.ts CHANGED
@@ -5459,6 +5459,8 @@ declare enum EStatusImapApp {
5459
5459
 
5460
5460
  interface IEmailRawManager extends IBaseModel, ITrackingModel {
5461
5461
  accountSocialId: string;
5462
+ urlSheet: string;
5463
+ nameSheet: string;
5462
5464
  status: EStatusEmailManager;
5463
5465
  timeStatus: Date;
5464
5466
  vps: string | IAccountVPS;
@@ -5745,9 +5747,9 @@ interface FindEmailRawAddToVPS extends IFindBaseDto {
5745
5747
  newUsername: string;
5746
5748
  statusAccountSocial: EStatusAccountSocialRaw;
5747
5749
  statusLoginAppClone: EStatusAccountSocialLogin;
5748
- urlFileImport: string;
5750
+ urlSheet: string;
5749
5751
  nameSheet: string;
5750
- dataImport: Date;
5752
+ dateImport: Date;
5751
5753
  }
5752
5754
  interface FindProxySelectionForEmail {
5753
5755
  typeProxy: ETypeProxy;
@@ -5833,7 +5835,7 @@ interface ResultImportEmailRawManagerDto {
5833
5835
  interface ImportEmailRawManagerDto {
5834
5836
  sheetUrl: string;
5835
5837
  sheetName: string;
5836
- listEmailID: string[];
5838
+ listEmail: string[];
5837
5839
  }
5838
5840
  interface DataImportEmailRawManagerDto {
5839
5841
  emailType: ETypeEmailManager;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.3.23",
3
+ "version": "6.3.25",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",