automation-lib 6.3.26 → 6.3.28
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 +5 -5
- package/dist/index.d.mts +25 -8
- package/dist/index.d.ts +25 -8
- package/package.json +1 -1
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
|
-
|
|
10
|
+
timeout /t 2 /nobreak >nul
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
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
|
-
|
|
44
|
+
timeout /t 1 /nobreak >nul
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
timeout /t 2 /nobreak >nul
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push hs main
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -5250,7 +5250,8 @@ interface FindAccountVPSDto extends IFindBaseDto {
|
|
|
5250
5250
|
};
|
|
5251
5251
|
statusRestart: {
|
|
5252
5252
|
value: EVPSStatusRestart;
|
|
5253
|
-
|
|
5253
|
+
timeRestart: EVPSTimeRestart;
|
|
5254
|
+
timeChange: Date;
|
|
5254
5255
|
count: number;
|
|
5255
5256
|
};
|
|
5256
5257
|
statusReplace: {
|
|
@@ -5308,6 +5309,7 @@ interface FindOverviewAccountVPSDto {
|
|
|
5308
5309
|
totalGroups: number;
|
|
5309
5310
|
totalVPS: number;
|
|
5310
5311
|
totalPrice: number;
|
|
5312
|
+
totalListJob: number;
|
|
5311
5313
|
statusVPS: {
|
|
5312
5314
|
[EVPSStatus.Active]: number;
|
|
5313
5315
|
[EVPSStatus.Error]: number;
|
|
@@ -5333,7 +5335,7 @@ interface FindOverviewAccountVPSDto {
|
|
|
5333
5335
|
[EVPSStatusRestart.NA]: number;
|
|
5334
5336
|
total: number;
|
|
5335
5337
|
};
|
|
5336
|
-
|
|
5338
|
+
typeStatusVps: {
|
|
5337
5339
|
[EVPSExtension.Cancelled]: number;
|
|
5338
5340
|
[EVPSExtension.Expired]: number;
|
|
5339
5341
|
[EVPSExtension.Renewed]: number;
|
|
@@ -5459,8 +5461,6 @@ declare enum EStatusImapApp {
|
|
|
5459
5461
|
|
|
5460
5462
|
interface IEmailRawManager extends IBaseModel, ITrackingModel {
|
|
5461
5463
|
accountSocialId: string;
|
|
5462
|
-
urlSheet: string;
|
|
5463
|
-
nameSheet: string;
|
|
5464
5464
|
status: EStatusEmailManager;
|
|
5465
5465
|
timeStatus: Date;
|
|
5466
5466
|
vps: string | IAccountVPS;
|
|
@@ -5632,7 +5632,15 @@ interface FindEmailRawManagerDto extends IFindBaseDto {
|
|
|
5632
5632
|
timeLoginCode2FABackup: Date;
|
|
5633
5633
|
timeChangeCode2FABackup: Date;
|
|
5634
5634
|
}
|
|
5635
|
-
interface FindDetailEmailRawManagerDto extends
|
|
5635
|
+
interface FindDetailEmailRawManagerDto extends IFindBaseDto {
|
|
5636
|
+
newEmail: string;
|
|
5637
|
+
typeEmail: ETypeEmailManager;
|
|
5638
|
+
urlLoginEmail: string;
|
|
5639
|
+
newPassword: string;
|
|
5640
|
+
newEmailRecover: string;
|
|
5641
|
+
newCode2FA: string;
|
|
5642
|
+
newCode2FABackup: string;
|
|
5643
|
+
status: EStatusEmailManager;
|
|
5636
5644
|
typeSocial: ETypeSocial[];
|
|
5637
5645
|
accountSocial: {
|
|
5638
5646
|
newUsername: string;
|
|
@@ -5640,6 +5648,15 @@ interface FindDetailEmailRawManagerDto extends IEmailRawManager {
|
|
|
5640
5648
|
accountGroup: string;
|
|
5641
5649
|
statusAccountSocial: EStatusAccountSocialRaw;
|
|
5642
5650
|
};
|
|
5651
|
+
name_app: string;
|
|
5652
|
+
app_password: string;
|
|
5653
|
+
imap_server: string;
|
|
5654
|
+
imap_port: string;
|
|
5655
|
+
ssl: EYesNo;
|
|
5656
|
+
imap_from_email: string;
|
|
5657
|
+
title_opt: string;
|
|
5658
|
+
title_inbox: string;
|
|
5659
|
+
status_imap_app: EStatusImapApp;
|
|
5643
5660
|
}
|
|
5644
5661
|
interface FindListVPSForEmailRawManager {
|
|
5645
5662
|
statusExtension: {
|
|
@@ -5730,9 +5747,9 @@ interface FindEmailRawAddToVPS extends IFindBaseDto {
|
|
|
5730
5747
|
newUsername: string;
|
|
5731
5748
|
statusAccountSocial: EStatusAccountSocialRaw;
|
|
5732
5749
|
statusLoginAppClone: EStatusAccountSocialLogin;
|
|
5733
|
-
|
|
5750
|
+
urlFileImport: string;
|
|
5734
5751
|
nameSheet: string;
|
|
5735
|
-
|
|
5752
|
+
dataImport: Date;
|
|
5736
5753
|
}
|
|
5737
5754
|
interface FindProxySelectionForEmail {
|
|
5738
5755
|
typeProxy: ETypeProxy;
|
|
@@ -5818,7 +5835,7 @@ interface ResultImportEmailRawManagerDto {
|
|
|
5818
5835
|
interface ImportEmailRawManagerDto {
|
|
5819
5836
|
sheetUrl: string;
|
|
5820
5837
|
sheetName: string;
|
|
5821
|
-
|
|
5838
|
+
listEmailID: string[];
|
|
5822
5839
|
}
|
|
5823
5840
|
interface DataImportEmailRawManagerDto {
|
|
5824
5841
|
emailType: ETypeEmailManager;
|
package/dist/index.d.ts
CHANGED
|
@@ -5250,7 +5250,8 @@ interface FindAccountVPSDto extends IFindBaseDto {
|
|
|
5250
5250
|
};
|
|
5251
5251
|
statusRestart: {
|
|
5252
5252
|
value: EVPSStatusRestart;
|
|
5253
|
-
|
|
5253
|
+
timeRestart: EVPSTimeRestart;
|
|
5254
|
+
timeChange: Date;
|
|
5254
5255
|
count: number;
|
|
5255
5256
|
};
|
|
5256
5257
|
statusReplace: {
|
|
@@ -5308,6 +5309,7 @@ interface FindOverviewAccountVPSDto {
|
|
|
5308
5309
|
totalGroups: number;
|
|
5309
5310
|
totalVPS: number;
|
|
5310
5311
|
totalPrice: number;
|
|
5312
|
+
totalListJob: number;
|
|
5311
5313
|
statusVPS: {
|
|
5312
5314
|
[EVPSStatus.Active]: number;
|
|
5313
5315
|
[EVPSStatus.Error]: number;
|
|
@@ -5333,7 +5335,7 @@ interface FindOverviewAccountVPSDto {
|
|
|
5333
5335
|
[EVPSStatusRestart.NA]: number;
|
|
5334
5336
|
total: number;
|
|
5335
5337
|
};
|
|
5336
|
-
|
|
5338
|
+
typeStatusVps: {
|
|
5337
5339
|
[EVPSExtension.Cancelled]: number;
|
|
5338
5340
|
[EVPSExtension.Expired]: number;
|
|
5339
5341
|
[EVPSExtension.Renewed]: number;
|
|
@@ -5459,8 +5461,6 @@ declare enum EStatusImapApp {
|
|
|
5459
5461
|
|
|
5460
5462
|
interface IEmailRawManager extends IBaseModel, ITrackingModel {
|
|
5461
5463
|
accountSocialId: string;
|
|
5462
|
-
urlSheet: string;
|
|
5463
|
-
nameSheet: string;
|
|
5464
5464
|
status: EStatusEmailManager;
|
|
5465
5465
|
timeStatus: Date;
|
|
5466
5466
|
vps: string | IAccountVPS;
|
|
@@ -5632,7 +5632,15 @@ interface FindEmailRawManagerDto extends IFindBaseDto {
|
|
|
5632
5632
|
timeLoginCode2FABackup: Date;
|
|
5633
5633
|
timeChangeCode2FABackup: Date;
|
|
5634
5634
|
}
|
|
5635
|
-
interface FindDetailEmailRawManagerDto extends
|
|
5635
|
+
interface FindDetailEmailRawManagerDto extends IFindBaseDto {
|
|
5636
|
+
newEmail: string;
|
|
5637
|
+
typeEmail: ETypeEmailManager;
|
|
5638
|
+
urlLoginEmail: string;
|
|
5639
|
+
newPassword: string;
|
|
5640
|
+
newEmailRecover: string;
|
|
5641
|
+
newCode2FA: string;
|
|
5642
|
+
newCode2FABackup: string;
|
|
5643
|
+
status: EStatusEmailManager;
|
|
5636
5644
|
typeSocial: ETypeSocial[];
|
|
5637
5645
|
accountSocial: {
|
|
5638
5646
|
newUsername: string;
|
|
@@ -5640,6 +5648,15 @@ interface FindDetailEmailRawManagerDto extends IEmailRawManager {
|
|
|
5640
5648
|
accountGroup: string;
|
|
5641
5649
|
statusAccountSocial: EStatusAccountSocialRaw;
|
|
5642
5650
|
};
|
|
5651
|
+
name_app: string;
|
|
5652
|
+
app_password: string;
|
|
5653
|
+
imap_server: string;
|
|
5654
|
+
imap_port: string;
|
|
5655
|
+
ssl: EYesNo;
|
|
5656
|
+
imap_from_email: string;
|
|
5657
|
+
title_opt: string;
|
|
5658
|
+
title_inbox: string;
|
|
5659
|
+
status_imap_app: EStatusImapApp;
|
|
5643
5660
|
}
|
|
5644
5661
|
interface FindListVPSForEmailRawManager {
|
|
5645
5662
|
statusExtension: {
|
|
@@ -5730,9 +5747,9 @@ interface FindEmailRawAddToVPS extends IFindBaseDto {
|
|
|
5730
5747
|
newUsername: string;
|
|
5731
5748
|
statusAccountSocial: EStatusAccountSocialRaw;
|
|
5732
5749
|
statusLoginAppClone: EStatusAccountSocialLogin;
|
|
5733
|
-
|
|
5750
|
+
urlFileImport: string;
|
|
5734
5751
|
nameSheet: string;
|
|
5735
|
-
|
|
5752
|
+
dataImport: Date;
|
|
5736
5753
|
}
|
|
5737
5754
|
interface FindProxySelectionForEmail {
|
|
5738
5755
|
typeProxy: ETypeProxy;
|
|
@@ -5818,7 +5835,7 @@ interface ResultImportEmailRawManagerDto {
|
|
|
5818
5835
|
interface ImportEmailRawManagerDto {
|
|
5819
5836
|
sheetUrl: string;
|
|
5820
5837
|
sheetName: string;
|
|
5821
|
-
|
|
5838
|
+
listEmailID: string[];
|
|
5822
5839
|
}
|
|
5823
5840
|
interface DataImportEmailRawManagerDto {
|
|
5824
5841
|
emailType: ETypeEmailManager;
|