automation-lib 5.0.63 → 5.0.64
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/dist/index.d.mts +29 -28
- package/dist/index.d.ts +29 -28
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -526,6 +526,7 @@ declare enum EStatusAccountCanva {
|
|
|
526
526
|
New = "New",
|
|
527
527
|
InActive = "InActive",
|
|
528
528
|
Active = "Active",
|
|
529
|
+
Working = "Working",
|
|
529
530
|
AccountNotExist = "AccountNotExist",
|
|
530
531
|
WrongPassword = "WrongPassword",
|
|
531
532
|
Wrong2FA = "Wrong2FA",
|
|
@@ -536,6 +537,7 @@ declare enum EStatusAccountDrive {
|
|
|
536
537
|
New = "New",
|
|
537
538
|
InActive = "InActive",
|
|
538
539
|
Active = "Active",
|
|
540
|
+
Working = "Working",
|
|
539
541
|
AccountNotExist = "AccountNotExist",
|
|
540
542
|
WrongPassword = "WrongPassword",
|
|
541
543
|
Wrong2FA = "Wrong2FA",
|
|
@@ -546,6 +548,7 @@ declare enum EStatusAccountVPN {
|
|
|
546
548
|
New = "New",
|
|
547
549
|
InActive = "InActive",
|
|
548
550
|
Active = "Active",
|
|
551
|
+
Working = "Working",
|
|
549
552
|
AccountNotExist = "AccountNotExist",
|
|
550
553
|
WrongPassword = "WrongPassword",
|
|
551
554
|
Expired = "Expired",
|
|
@@ -1405,30 +1408,6 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1405
1408
|
device_note: string;
|
|
1406
1409
|
}
|
|
1407
1410
|
|
|
1408
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1409
|
-
sheetUrl: string;
|
|
1410
|
-
sheetName: string;
|
|
1411
|
-
typeNewIp: ETypeProxyNewIP;
|
|
1412
|
-
checked: ETypeProxyChecked;
|
|
1413
|
-
type: ETypeProxy;
|
|
1414
|
-
currentIP: string;
|
|
1415
|
-
currentPort: string;
|
|
1416
|
-
currentUsername: string;
|
|
1417
|
-
currentPassword: string;
|
|
1418
|
-
newIP: string;
|
|
1419
|
-
newPort: string;
|
|
1420
|
-
newUsername: string;
|
|
1421
|
-
newPassword: string;
|
|
1422
|
-
provider: string;
|
|
1423
|
-
status: EStatusCommon;
|
|
1424
|
-
city: string;
|
|
1425
|
-
country: string;
|
|
1426
|
-
startDate: Date;
|
|
1427
|
-
enbDate: Date;
|
|
1428
|
-
lastUsed: Date;
|
|
1429
|
-
lastUserUsed: string | IUser;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
1411
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1433
1412
|
ag_name: string;
|
|
1434
1413
|
ag_slug: string;
|
|
@@ -1454,7 +1433,6 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1454
1433
|
pc: IPC | string;
|
|
1455
1434
|
deviceKey: string;
|
|
1456
1435
|
device: IDevice | string;
|
|
1457
|
-
proxy: IProxy | string;
|
|
1458
1436
|
oldUsername: string;
|
|
1459
1437
|
newUsername: string;
|
|
1460
1438
|
statusChangeUsername: EStatusChangeInfo;
|
|
@@ -1471,11 +1449,10 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1471
1449
|
emailPassword: string;
|
|
1472
1450
|
email2FA: string;
|
|
1473
1451
|
emailReceiver: string;
|
|
1474
|
-
status: EStatusAccountSocial;
|
|
1475
1452
|
statusLogin: EStatusLoginAccountSocial;
|
|
1453
|
+
statusLoginEmail: EStatusLoginAccountSocial;
|
|
1476
1454
|
statusConnectDevice: EStatusConnectDevice;
|
|
1477
|
-
|
|
1478
|
-
statusChangeSetting: EStatusExecuteCommon;
|
|
1455
|
+
noteConnectDevice: string;
|
|
1479
1456
|
currentActiveTime: Date;
|
|
1480
1457
|
lastActiveTime: Date;
|
|
1481
1458
|
nameAppClone: string;
|
|
@@ -1500,6 +1477,30 @@ interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
1500
1477
|
note: string;
|
|
1501
1478
|
}
|
|
1502
1479
|
|
|
1480
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1481
|
+
sheetUrl: string;
|
|
1482
|
+
sheetName: string;
|
|
1483
|
+
typeNewIp: ETypeProxyNewIP;
|
|
1484
|
+
checked: ETypeProxyChecked;
|
|
1485
|
+
type: ETypeProxy;
|
|
1486
|
+
currentIP: string;
|
|
1487
|
+
currentPort: string;
|
|
1488
|
+
currentUsername: string;
|
|
1489
|
+
currentPassword: string;
|
|
1490
|
+
newIP: string;
|
|
1491
|
+
newPort: string;
|
|
1492
|
+
newUsername: string;
|
|
1493
|
+
newPassword: string;
|
|
1494
|
+
provider: string;
|
|
1495
|
+
status: EStatusCommon;
|
|
1496
|
+
city: string;
|
|
1497
|
+
country: string;
|
|
1498
|
+
startDate: Date;
|
|
1499
|
+
enbDate: Date;
|
|
1500
|
+
lastUsed: Date;
|
|
1501
|
+
lastUserUsed: string | IUser;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1503
1504
|
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1504
1505
|
deviceKey: string;
|
|
1505
1506
|
typeSocial: ETypeSocial;
|
package/dist/index.d.ts
CHANGED
|
@@ -526,6 +526,7 @@ declare enum EStatusAccountCanva {
|
|
|
526
526
|
New = "New",
|
|
527
527
|
InActive = "InActive",
|
|
528
528
|
Active = "Active",
|
|
529
|
+
Working = "Working",
|
|
529
530
|
AccountNotExist = "AccountNotExist",
|
|
530
531
|
WrongPassword = "WrongPassword",
|
|
531
532
|
Wrong2FA = "Wrong2FA",
|
|
@@ -536,6 +537,7 @@ declare enum EStatusAccountDrive {
|
|
|
536
537
|
New = "New",
|
|
537
538
|
InActive = "InActive",
|
|
538
539
|
Active = "Active",
|
|
540
|
+
Working = "Working",
|
|
539
541
|
AccountNotExist = "AccountNotExist",
|
|
540
542
|
WrongPassword = "WrongPassword",
|
|
541
543
|
Wrong2FA = "Wrong2FA",
|
|
@@ -546,6 +548,7 @@ declare enum EStatusAccountVPN {
|
|
|
546
548
|
New = "New",
|
|
547
549
|
InActive = "InActive",
|
|
548
550
|
Active = "Active",
|
|
551
|
+
Working = "Working",
|
|
549
552
|
AccountNotExist = "AccountNotExist",
|
|
550
553
|
WrongPassword = "WrongPassword",
|
|
551
554
|
Expired = "Expired",
|
|
@@ -1405,30 +1408,6 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
|
|
|
1405
1408
|
device_note: string;
|
|
1406
1409
|
}
|
|
1407
1410
|
|
|
1408
|
-
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1409
|
-
sheetUrl: string;
|
|
1410
|
-
sheetName: string;
|
|
1411
|
-
typeNewIp: ETypeProxyNewIP;
|
|
1412
|
-
checked: ETypeProxyChecked;
|
|
1413
|
-
type: ETypeProxy;
|
|
1414
|
-
currentIP: string;
|
|
1415
|
-
currentPort: string;
|
|
1416
|
-
currentUsername: string;
|
|
1417
|
-
currentPassword: string;
|
|
1418
|
-
newIP: string;
|
|
1419
|
-
newPort: string;
|
|
1420
|
-
newUsername: string;
|
|
1421
|
-
newPassword: string;
|
|
1422
|
-
provider: string;
|
|
1423
|
-
status: EStatusCommon;
|
|
1424
|
-
city: string;
|
|
1425
|
-
country: string;
|
|
1426
|
-
startDate: Date;
|
|
1427
|
-
enbDate: Date;
|
|
1428
|
-
lastUsed: Date;
|
|
1429
|
-
lastUserUsed: string | IUser;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
1411
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1433
1412
|
ag_name: string;
|
|
1434
1413
|
ag_slug: string;
|
|
@@ -1454,7 +1433,6 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1454
1433
|
pc: IPC | string;
|
|
1455
1434
|
deviceKey: string;
|
|
1456
1435
|
device: IDevice | string;
|
|
1457
|
-
proxy: IProxy | string;
|
|
1458
1436
|
oldUsername: string;
|
|
1459
1437
|
newUsername: string;
|
|
1460
1438
|
statusChangeUsername: EStatusChangeInfo;
|
|
@@ -1471,11 +1449,10 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1471
1449
|
emailPassword: string;
|
|
1472
1450
|
email2FA: string;
|
|
1473
1451
|
emailReceiver: string;
|
|
1474
|
-
status: EStatusAccountSocial;
|
|
1475
1452
|
statusLogin: EStatusLoginAccountSocial;
|
|
1453
|
+
statusLoginEmail: EStatusLoginAccountSocial;
|
|
1476
1454
|
statusConnectDevice: EStatusConnectDevice;
|
|
1477
|
-
|
|
1478
|
-
statusChangeSetting: EStatusExecuteCommon;
|
|
1455
|
+
noteConnectDevice: string;
|
|
1479
1456
|
currentActiveTime: Date;
|
|
1480
1457
|
lastActiveTime: Date;
|
|
1481
1458
|
nameAppClone: string;
|
|
@@ -1500,6 +1477,30 @@ interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
1500
1477
|
note: string;
|
|
1501
1478
|
}
|
|
1502
1479
|
|
|
1480
|
+
interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1481
|
+
sheetUrl: string;
|
|
1482
|
+
sheetName: string;
|
|
1483
|
+
typeNewIp: ETypeProxyNewIP;
|
|
1484
|
+
checked: ETypeProxyChecked;
|
|
1485
|
+
type: ETypeProxy;
|
|
1486
|
+
currentIP: string;
|
|
1487
|
+
currentPort: string;
|
|
1488
|
+
currentUsername: string;
|
|
1489
|
+
currentPassword: string;
|
|
1490
|
+
newIP: string;
|
|
1491
|
+
newPort: string;
|
|
1492
|
+
newUsername: string;
|
|
1493
|
+
newPassword: string;
|
|
1494
|
+
provider: string;
|
|
1495
|
+
status: EStatusCommon;
|
|
1496
|
+
city: string;
|
|
1497
|
+
country: string;
|
|
1498
|
+
startDate: Date;
|
|
1499
|
+
enbDate: Date;
|
|
1500
|
+
lastUsed: Date;
|
|
1501
|
+
lastUserUsed: string | IUser;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1503
1504
|
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1504
1505
|
deviceKey: string;
|
|
1505
1506
|
typeSocial: ETypeSocial;
|
package/dist/index.js
CHANGED
|
@@ -658,6 +658,7 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
658
658
|
EStatusAccountCanva2["New"] = "New";
|
|
659
659
|
EStatusAccountCanva2["InActive"] = "InActive";
|
|
660
660
|
EStatusAccountCanva2["Active"] = "Active";
|
|
661
|
+
EStatusAccountCanva2["Working"] = "Working";
|
|
661
662
|
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
662
663
|
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
663
664
|
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
@@ -670,6 +671,7 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
670
671
|
EStatusAccountDrive2["New"] = "New";
|
|
671
672
|
EStatusAccountDrive2["InActive"] = "InActive";
|
|
672
673
|
EStatusAccountDrive2["Active"] = "Active";
|
|
674
|
+
EStatusAccountDrive2["Working"] = "Working";
|
|
673
675
|
EStatusAccountDrive2["AccountNotExist"] = "AccountNotExist";
|
|
674
676
|
EStatusAccountDrive2["WrongPassword"] = "WrongPassword";
|
|
675
677
|
EStatusAccountDrive2["Wrong2FA"] = "Wrong2FA";
|
|
@@ -682,6 +684,7 @@ var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
|
682
684
|
EStatusAccountVPN2["New"] = "New";
|
|
683
685
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
684
686
|
EStatusAccountVPN2["Active"] = "Active";
|
|
687
|
+
EStatusAccountVPN2["Working"] = "Working";
|
|
685
688
|
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
686
689
|
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
687
690
|
EStatusAccountVPN2["Expired"] = "Expired";
|
package/dist/index.mjs
CHANGED
|
@@ -634,6 +634,7 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
634
634
|
EStatusAccountCanva2["New"] = "New";
|
|
635
635
|
EStatusAccountCanva2["InActive"] = "InActive";
|
|
636
636
|
EStatusAccountCanva2["Active"] = "Active";
|
|
637
|
+
EStatusAccountCanva2["Working"] = "Working";
|
|
637
638
|
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
638
639
|
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
639
640
|
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
@@ -646,6 +647,7 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
646
647
|
EStatusAccountDrive2["New"] = "New";
|
|
647
648
|
EStatusAccountDrive2["InActive"] = "InActive";
|
|
648
649
|
EStatusAccountDrive2["Active"] = "Active";
|
|
650
|
+
EStatusAccountDrive2["Working"] = "Working";
|
|
649
651
|
EStatusAccountDrive2["AccountNotExist"] = "AccountNotExist";
|
|
650
652
|
EStatusAccountDrive2["WrongPassword"] = "WrongPassword";
|
|
651
653
|
EStatusAccountDrive2["Wrong2FA"] = "Wrong2FA";
|
|
@@ -658,6 +660,7 @@ var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
|
658
660
|
EStatusAccountVPN2["New"] = "New";
|
|
659
661
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
660
662
|
EStatusAccountVPN2["Active"] = "Active";
|
|
663
|
+
EStatusAccountVPN2["Working"] = "Working";
|
|
661
664
|
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
662
665
|
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
663
666
|
EStatusAccountVPN2["Expired"] = "Expired";
|