automation-lib 5.0.59 → 5.0.60
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 +106 -96
- package/dist/index.d.ts +106 -96
- package/dist/index.js +8 -3
- package/dist/index.mjs +8 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -251,7 +251,7 @@ declare namespace index$j {
|
|
|
251
251
|
|
|
252
252
|
declare enum ETypeAccountVPN {
|
|
253
253
|
Free = "Free",
|
|
254
|
-
|
|
254
|
+
Paid = "Paid"
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
declare enum ETypeCanva {
|
|
@@ -385,8 +385,8 @@ declare enum EStatusActive {
|
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
declare enum EStatusChangeInfo {
|
|
388
|
-
|
|
389
|
-
|
|
388
|
+
Done = "Done",
|
|
389
|
+
Failed = "Failed",
|
|
390
390
|
Pending = "Pending"
|
|
391
391
|
}
|
|
392
392
|
|
|
@@ -506,6 +506,7 @@ declare enum EStatusTaskJobGroup {
|
|
|
506
506
|
}
|
|
507
507
|
|
|
508
508
|
declare enum EStatusAccountCanva {
|
|
509
|
+
New = "New",
|
|
509
510
|
InActive = "InActive",
|
|
510
511
|
Active = "Active",
|
|
511
512
|
AccountNotExist = "AccountNotExist",
|
|
@@ -515,6 +516,7 @@ declare enum EStatusAccountCanva {
|
|
|
515
516
|
}
|
|
516
517
|
|
|
517
518
|
declare enum EStatusAccountDrive {
|
|
519
|
+
New = "New",
|
|
518
520
|
InActive = "InActive",
|
|
519
521
|
Active = "Active",
|
|
520
522
|
AccountNotExist = "AccountNotExist",
|
|
@@ -524,10 +526,13 @@ declare enum EStatusAccountDrive {
|
|
|
524
526
|
}
|
|
525
527
|
|
|
526
528
|
declare enum EStatusAccountVPN {
|
|
529
|
+
New = "New",
|
|
527
530
|
InActive = "InActive",
|
|
528
531
|
Active = "Active",
|
|
529
532
|
AccountNotExist = "AccountNotExist",
|
|
530
|
-
WrongPassword = "WrongPassword"
|
|
533
|
+
WrongPassword = "WrongPassword",
|
|
534
|
+
Expired = "Expired",
|
|
535
|
+
Error = "Error"
|
|
531
536
|
}
|
|
532
537
|
|
|
533
538
|
type index$h_EStatusAccountCanva = EStatusAccountCanva;
|
|
@@ -1336,6 +1341,21 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1336
1341
|
niches: IManagerWork[] | string[];
|
|
1337
1342
|
}
|
|
1338
1343
|
|
|
1344
|
+
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1345
|
+
name: string;
|
|
1346
|
+
path: string;
|
|
1347
|
+
size: number;
|
|
1348
|
+
type: string;
|
|
1349
|
+
md5: string;
|
|
1350
|
+
url: string;
|
|
1351
|
+
isDraft: boolean;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
type index$9_IFile = IFile;
|
|
1355
|
+
declare namespace index$9 {
|
|
1356
|
+
export type { index$9_IFile as IFile };
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1339
1359
|
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1340
1360
|
pc_name: string;
|
|
1341
1361
|
pc_user: IUser | string;
|
|
@@ -1400,28 +1420,15 @@ interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterface
|
|
|
1400
1420
|
ag_slug: string;
|
|
1401
1421
|
}
|
|
1402
1422
|
|
|
1403
|
-
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1404
|
-
name: string;
|
|
1405
|
-
path: string;
|
|
1406
|
-
size: number;
|
|
1407
|
-
type: string;
|
|
1408
|
-
md5: string;
|
|
1409
|
-
url: string;
|
|
1410
|
-
isDraft: boolean;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
type index$9_IFile = IFile;
|
|
1414
|
-
declare namespace index$9 {
|
|
1415
|
-
export type { index$9_IFile as IFile };
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
1423
|
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1419
1424
|
group: IAccountsGroup | string;
|
|
1420
1425
|
typeSocial: ETypeSocial;
|
|
1421
1426
|
promptAvatar: string;
|
|
1422
1427
|
avatar: string | IFile;
|
|
1428
|
+
statusChangeAvatar: EStatusChangeInfo;
|
|
1423
1429
|
promptCover: string;
|
|
1424
1430
|
cover: string | IFile;
|
|
1431
|
+
statusChangeCover: EStatusChangeInfo;
|
|
1425
1432
|
bio: string;
|
|
1426
1433
|
links: string[];
|
|
1427
1434
|
sheetUrl: string;
|
|
@@ -1461,10 +1468,89 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1461
1468
|
packageApp: string;
|
|
1462
1469
|
}
|
|
1463
1470
|
|
|
1471
|
+
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1472
|
+
rowId: string;
|
|
1473
|
+
email: string;
|
|
1474
|
+
password: string;
|
|
1475
|
+
code2FA: string;
|
|
1476
|
+
status: EStatusAccountCanva;
|
|
1477
|
+
note: string;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1481
|
+
rowId: string;
|
|
1482
|
+
email: string;
|
|
1483
|
+
password: string;
|
|
1484
|
+
code2FA: string;
|
|
1485
|
+
status: EStatusAccountDrive;
|
|
1486
|
+
note: string;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1490
|
+
ps_proxy: IProxy | string;
|
|
1491
|
+
ps_typeSocial: ETypeSocial;
|
|
1492
|
+
ps_maximumAccountApply: number;
|
|
1493
|
+
ps_isFulled: boolean;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
interface IAccountDraft extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1497
|
+
typeSocial: ETypeSocial;
|
|
1498
|
+
accountSocialSync: IAccount;
|
|
1499
|
+
sheetUrlImportAccount: string;
|
|
1500
|
+
sheetNameImportAccount: string;
|
|
1501
|
+
accountDeviceType: string;
|
|
1502
|
+
accountDeviceName: string;
|
|
1503
|
+
idea: string | IManagerWork;
|
|
1504
|
+
niche: string | IManagerWork;
|
|
1505
|
+
oldUsername: string;
|
|
1506
|
+
newUsername: string;
|
|
1507
|
+
password: string;
|
|
1508
|
+
code2FA: string;
|
|
1509
|
+
email: string;
|
|
1510
|
+
emailPassword: string;
|
|
1511
|
+
email2FA: string;
|
|
1512
|
+
emailReceiver: string;
|
|
1513
|
+
urlSheetPost: string;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1517
|
+
proxy: IProxy | string;
|
|
1518
|
+
proxySetting: IProxySetting | string;
|
|
1519
|
+
typeSocial: ETypeSocial;
|
|
1520
|
+
accountSocial: IAccount | string;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1524
|
+
name: string;
|
|
1525
|
+
slug: string;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1529
|
+
group: string | IAccountVPSGroup;
|
|
1530
|
+
ip: string;
|
|
1531
|
+
port: string;
|
|
1532
|
+
username: string;
|
|
1533
|
+
password: string;
|
|
1534
|
+
displayName: string;
|
|
1535
|
+
isActive: boolean;
|
|
1536
|
+
status: EStatusVPS;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
interface IAccountVPN extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1540
|
+
nameApp: ENameVPN;
|
|
1541
|
+
email: string;
|
|
1542
|
+
username: string;
|
|
1543
|
+
password: string;
|
|
1544
|
+
code2FA: string;
|
|
1545
|
+
typeAccount: ETypeAccountVPN;
|
|
1546
|
+
status: EStatusAccountVPN;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1464
1549
|
interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1550
|
+
accountSocial: string | IAccount;
|
|
1551
|
+
accountSocialDraft: string | IAccountDraft;
|
|
1465
1552
|
managerImageAI: string | IManagerImageAI;
|
|
1466
1553
|
typeSocial: ETypeSocial;
|
|
1467
|
-
accountSocial: string | IAccount;
|
|
1468
1554
|
}
|
|
1469
1555
|
|
|
1470
1556
|
interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1576,82 +1662,6 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1576
1662
|
status: EStatusActive;
|
|
1577
1663
|
}
|
|
1578
1664
|
|
|
1579
|
-
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1580
|
-
rowId: string;
|
|
1581
|
-
email: string;
|
|
1582
|
-
password: string;
|
|
1583
|
-
code2FA: string;
|
|
1584
|
-
status: EStatusAccountCanva;
|
|
1585
|
-
note: string;
|
|
1586
|
-
}
|
|
1587
|
-
|
|
1588
|
-
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1589
|
-
rowId: string;
|
|
1590
|
-
email: string;
|
|
1591
|
-
password: string;
|
|
1592
|
-
code2FA: string;
|
|
1593
|
-
status: EStatusAccountDrive;
|
|
1594
|
-
note: string;
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1598
|
-
ps_proxy: IProxy | string;
|
|
1599
|
-
ps_typeSocial: ETypeSocial;
|
|
1600
|
-
ps_maximumAccountApply: number;
|
|
1601
|
-
ps_isFulled: boolean;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
interface IAccountDraft extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1605
|
-
typeSocial: ETypeSocial;
|
|
1606
|
-
accountSocialSync: IAccount;
|
|
1607
|
-
sheetUrlImportAccount: string;
|
|
1608
|
-
sheetNameImportAccount: string;
|
|
1609
|
-
accountDeviceType: string;
|
|
1610
|
-
accountDeviceName: string;
|
|
1611
|
-
idea: string | IManagerWork;
|
|
1612
|
-
niche: string | IManagerWork;
|
|
1613
|
-
oldUsername: string;
|
|
1614
|
-
newUsername: string;
|
|
1615
|
-
password: string;
|
|
1616
|
-
code2FA: string;
|
|
1617
|
-
email: string;
|
|
1618
|
-
emailPassword: string;
|
|
1619
|
-
email2FA: string;
|
|
1620
|
-
emailReceiver: string;
|
|
1621
|
-
urlSheetPost: string;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1625
|
-
proxy: IProxy | string;
|
|
1626
|
-
proxySetting: IProxySetting | string;
|
|
1627
|
-
typeSocial: ETypeSocial;
|
|
1628
|
-
accountSocial: IAccount | string;
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1632
|
-
name: string;
|
|
1633
|
-
slug: string;
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1637
|
-
group: string | IAccountVPSGroup;
|
|
1638
|
-
ip: string;
|
|
1639
|
-
port: string;
|
|
1640
|
-
username: string;
|
|
1641
|
-
password: string;
|
|
1642
|
-
displayName: string;
|
|
1643
|
-
isActive: boolean;
|
|
1644
|
-
status: EStatusVPS;
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
interface IAccountVPN extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1648
|
-
nameApp: ENameVPN;
|
|
1649
|
-
username: string;
|
|
1650
|
-
password: string;
|
|
1651
|
-
typeAccount: ETypeAccountVPN;
|
|
1652
|
-
status: EStatusAccountVPN;
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
1665
|
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1656
1666
|
deviceKey: string;
|
|
1657
1667
|
typeSocial: ETypeSocial;
|
package/dist/index.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ declare namespace index$j {
|
|
|
251
251
|
|
|
252
252
|
declare enum ETypeAccountVPN {
|
|
253
253
|
Free = "Free",
|
|
254
|
-
|
|
254
|
+
Paid = "Paid"
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
declare enum ETypeCanva {
|
|
@@ -385,8 +385,8 @@ declare enum EStatusActive {
|
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
declare enum EStatusChangeInfo {
|
|
388
|
-
|
|
389
|
-
|
|
388
|
+
Done = "Done",
|
|
389
|
+
Failed = "Failed",
|
|
390
390
|
Pending = "Pending"
|
|
391
391
|
}
|
|
392
392
|
|
|
@@ -506,6 +506,7 @@ declare enum EStatusTaskJobGroup {
|
|
|
506
506
|
}
|
|
507
507
|
|
|
508
508
|
declare enum EStatusAccountCanva {
|
|
509
|
+
New = "New",
|
|
509
510
|
InActive = "InActive",
|
|
510
511
|
Active = "Active",
|
|
511
512
|
AccountNotExist = "AccountNotExist",
|
|
@@ -515,6 +516,7 @@ declare enum EStatusAccountCanva {
|
|
|
515
516
|
}
|
|
516
517
|
|
|
517
518
|
declare enum EStatusAccountDrive {
|
|
519
|
+
New = "New",
|
|
518
520
|
InActive = "InActive",
|
|
519
521
|
Active = "Active",
|
|
520
522
|
AccountNotExist = "AccountNotExist",
|
|
@@ -524,10 +526,13 @@ declare enum EStatusAccountDrive {
|
|
|
524
526
|
}
|
|
525
527
|
|
|
526
528
|
declare enum EStatusAccountVPN {
|
|
529
|
+
New = "New",
|
|
527
530
|
InActive = "InActive",
|
|
528
531
|
Active = "Active",
|
|
529
532
|
AccountNotExist = "AccountNotExist",
|
|
530
|
-
WrongPassword = "WrongPassword"
|
|
533
|
+
WrongPassword = "WrongPassword",
|
|
534
|
+
Expired = "Expired",
|
|
535
|
+
Error = "Error"
|
|
531
536
|
}
|
|
532
537
|
|
|
533
538
|
type index$h_EStatusAccountCanva = EStatusAccountCanva;
|
|
@@ -1336,6 +1341,21 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1336
1341
|
niches: IManagerWork[] | string[];
|
|
1337
1342
|
}
|
|
1338
1343
|
|
|
1344
|
+
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1345
|
+
name: string;
|
|
1346
|
+
path: string;
|
|
1347
|
+
size: number;
|
|
1348
|
+
type: string;
|
|
1349
|
+
md5: string;
|
|
1350
|
+
url: string;
|
|
1351
|
+
isDraft: boolean;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
type index$9_IFile = IFile;
|
|
1355
|
+
declare namespace index$9 {
|
|
1356
|
+
export type { index$9_IFile as IFile };
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1339
1359
|
interface IPC extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1340
1360
|
pc_name: string;
|
|
1341
1361
|
pc_user: IUser | string;
|
|
@@ -1400,28 +1420,15 @@ interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterface
|
|
|
1400
1420
|
ag_slug: string;
|
|
1401
1421
|
}
|
|
1402
1422
|
|
|
1403
|
-
interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1404
|
-
name: string;
|
|
1405
|
-
path: string;
|
|
1406
|
-
size: number;
|
|
1407
|
-
type: string;
|
|
1408
|
-
md5: string;
|
|
1409
|
-
url: string;
|
|
1410
|
-
isDraft: boolean;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
type index$9_IFile = IFile;
|
|
1414
|
-
declare namespace index$9 {
|
|
1415
|
-
export type { index$9_IFile as IFile };
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
1423
|
interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1419
1424
|
group: IAccountsGroup | string;
|
|
1420
1425
|
typeSocial: ETypeSocial;
|
|
1421
1426
|
promptAvatar: string;
|
|
1422
1427
|
avatar: string | IFile;
|
|
1428
|
+
statusChangeAvatar: EStatusChangeInfo;
|
|
1423
1429
|
promptCover: string;
|
|
1424
1430
|
cover: string | IFile;
|
|
1431
|
+
statusChangeCover: EStatusChangeInfo;
|
|
1425
1432
|
bio: string;
|
|
1426
1433
|
links: string[];
|
|
1427
1434
|
sheetUrl: string;
|
|
@@ -1461,10 +1468,89 @@ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModels
|
|
|
1461
1468
|
packageApp: string;
|
|
1462
1469
|
}
|
|
1463
1470
|
|
|
1471
|
+
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1472
|
+
rowId: string;
|
|
1473
|
+
email: string;
|
|
1474
|
+
password: string;
|
|
1475
|
+
code2FA: string;
|
|
1476
|
+
status: EStatusAccountCanva;
|
|
1477
|
+
note: string;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1481
|
+
rowId: string;
|
|
1482
|
+
email: string;
|
|
1483
|
+
password: string;
|
|
1484
|
+
code2FA: string;
|
|
1485
|
+
status: EStatusAccountDrive;
|
|
1486
|
+
note: string;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1490
|
+
ps_proxy: IProxy | string;
|
|
1491
|
+
ps_typeSocial: ETypeSocial;
|
|
1492
|
+
ps_maximumAccountApply: number;
|
|
1493
|
+
ps_isFulled: boolean;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
interface IAccountDraft extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1497
|
+
typeSocial: ETypeSocial;
|
|
1498
|
+
accountSocialSync: IAccount;
|
|
1499
|
+
sheetUrlImportAccount: string;
|
|
1500
|
+
sheetNameImportAccount: string;
|
|
1501
|
+
accountDeviceType: string;
|
|
1502
|
+
accountDeviceName: string;
|
|
1503
|
+
idea: string | IManagerWork;
|
|
1504
|
+
niche: string | IManagerWork;
|
|
1505
|
+
oldUsername: string;
|
|
1506
|
+
newUsername: string;
|
|
1507
|
+
password: string;
|
|
1508
|
+
code2FA: string;
|
|
1509
|
+
email: string;
|
|
1510
|
+
emailPassword: string;
|
|
1511
|
+
email2FA: string;
|
|
1512
|
+
emailReceiver: string;
|
|
1513
|
+
urlSheetPost: string;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1517
|
+
proxy: IProxy | string;
|
|
1518
|
+
proxySetting: IProxySetting | string;
|
|
1519
|
+
typeSocial: ETypeSocial;
|
|
1520
|
+
accountSocial: IAccount | string;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1524
|
+
name: string;
|
|
1525
|
+
slug: string;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1529
|
+
group: string | IAccountVPSGroup;
|
|
1530
|
+
ip: string;
|
|
1531
|
+
port: string;
|
|
1532
|
+
username: string;
|
|
1533
|
+
password: string;
|
|
1534
|
+
displayName: string;
|
|
1535
|
+
isActive: boolean;
|
|
1536
|
+
status: EStatusVPS;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
interface IAccountVPN extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1540
|
+
nameApp: ENameVPN;
|
|
1541
|
+
email: string;
|
|
1542
|
+
username: string;
|
|
1543
|
+
password: string;
|
|
1544
|
+
code2FA: string;
|
|
1545
|
+
typeAccount: ETypeAccountVPN;
|
|
1546
|
+
status: EStatusAccountVPN;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1464
1549
|
interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1550
|
+
accountSocial: string | IAccount;
|
|
1551
|
+
accountSocialDraft: string | IAccountDraft;
|
|
1465
1552
|
managerImageAI: string | IManagerImageAI;
|
|
1466
1553
|
typeSocial: ETypeSocial;
|
|
1467
|
-
accountSocial: string | IAccount;
|
|
1468
1554
|
}
|
|
1469
1555
|
|
|
1470
1556
|
interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1576,82 +1662,6 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1576
1662
|
status: EStatusActive;
|
|
1577
1663
|
}
|
|
1578
1664
|
|
|
1579
|
-
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1580
|
-
rowId: string;
|
|
1581
|
-
email: string;
|
|
1582
|
-
password: string;
|
|
1583
|
-
code2FA: string;
|
|
1584
|
-
status: EStatusAccountCanva;
|
|
1585
|
-
note: string;
|
|
1586
|
-
}
|
|
1587
|
-
|
|
1588
|
-
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1589
|
-
rowId: string;
|
|
1590
|
-
email: string;
|
|
1591
|
-
password: string;
|
|
1592
|
-
code2FA: string;
|
|
1593
|
-
status: EStatusAccountDrive;
|
|
1594
|
-
note: string;
|
|
1595
|
-
}
|
|
1596
|
-
|
|
1597
|
-
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1598
|
-
ps_proxy: IProxy | string;
|
|
1599
|
-
ps_typeSocial: ETypeSocial;
|
|
1600
|
-
ps_maximumAccountApply: number;
|
|
1601
|
-
ps_isFulled: boolean;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
interface IAccountDraft extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1605
|
-
typeSocial: ETypeSocial;
|
|
1606
|
-
accountSocialSync: IAccount;
|
|
1607
|
-
sheetUrlImportAccount: string;
|
|
1608
|
-
sheetNameImportAccount: string;
|
|
1609
|
-
accountDeviceType: string;
|
|
1610
|
-
accountDeviceName: string;
|
|
1611
|
-
idea: string | IManagerWork;
|
|
1612
|
-
niche: string | IManagerWork;
|
|
1613
|
-
oldUsername: string;
|
|
1614
|
-
newUsername: string;
|
|
1615
|
-
password: string;
|
|
1616
|
-
code2FA: string;
|
|
1617
|
-
email: string;
|
|
1618
|
-
emailPassword: string;
|
|
1619
|
-
email2FA: string;
|
|
1620
|
-
emailReceiver: string;
|
|
1621
|
-
urlSheetPost: string;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1625
|
-
proxy: IProxy | string;
|
|
1626
|
-
proxySetting: IProxySetting | string;
|
|
1627
|
-
typeSocial: ETypeSocial;
|
|
1628
|
-
accountSocial: IAccount | string;
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1632
|
-
name: string;
|
|
1633
|
-
slug: string;
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1637
|
-
group: string | IAccountVPSGroup;
|
|
1638
|
-
ip: string;
|
|
1639
|
-
port: string;
|
|
1640
|
-
username: string;
|
|
1641
|
-
password: string;
|
|
1642
|
-
displayName: string;
|
|
1643
|
-
isActive: boolean;
|
|
1644
|
-
status: EStatusVPS;
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
interface IAccountVPN extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1648
|
-
nameApp: ENameVPN;
|
|
1649
|
-
username: string;
|
|
1650
|
-
password: string;
|
|
1651
|
-
typeAccount: ETypeAccountVPN;
|
|
1652
|
-
status: EStatusAccountVPN;
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
1665
|
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1656
1666
|
deviceKey: string;
|
|
1657
1667
|
typeSocial: ETypeSocial;
|
package/dist/index.js
CHANGED
|
@@ -328,7 +328,7 @@ __export(types_exports, {
|
|
|
328
328
|
// src/enums/types/ETypeAccountVPN.enum.ts
|
|
329
329
|
var ETypeAccountVPN = /* @__PURE__ */ ((ETypeAccountVPN2) => {
|
|
330
330
|
ETypeAccountVPN2["Free"] = "Free";
|
|
331
|
-
ETypeAccountVPN2["
|
|
331
|
+
ETypeAccountVPN2["Paid"] = "Paid";
|
|
332
332
|
return ETypeAccountVPN2;
|
|
333
333
|
})(ETypeAccountVPN || {});
|
|
334
334
|
|
|
@@ -485,8 +485,8 @@ var EStatusActive = /* @__PURE__ */ ((EStatusActive2) => {
|
|
|
485
485
|
|
|
486
486
|
// src/enums/status/common/EStatusChangeInfo.enum.ts
|
|
487
487
|
var EStatusChangeInfo = /* @__PURE__ */ ((EStatusChangeInfo2) => {
|
|
488
|
-
EStatusChangeInfo2["
|
|
489
|
-
EStatusChangeInfo2["
|
|
488
|
+
EStatusChangeInfo2["Done"] = "Done";
|
|
489
|
+
EStatusChangeInfo2["Failed"] = "Failed";
|
|
490
490
|
EStatusChangeInfo2["Pending"] = "Pending";
|
|
491
491
|
return EStatusChangeInfo2;
|
|
492
492
|
})(EStatusChangeInfo || {});
|
|
@@ -638,6 +638,7 @@ var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
|
|
|
638
638
|
|
|
639
639
|
// src/enums/status/accounts/EStatusAccountCanva.enum.ts
|
|
640
640
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
641
|
+
EStatusAccountCanva2["New"] = "New";
|
|
641
642
|
EStatusAccountCanva2["InActive"] = "InActive";
|
|
642
643
|
EStatusAccountCanva2["Active"] = "Active";
|
|
643
644
|
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
@@ -649,6 +650,7 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
649
650
|
|
|
650
651
|
// src/enums/status/accounts/EStatusAccountDrive.enum.ts
|
|
651
652
|
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
653
|
+
EStatusAccountDrive2["New"] = "New";
|
|
652
654
|
EStatusAccountDrive2["InActive"] = "InActive";
|
|
653
655
|
EStatusAccountDrive2["Active"] = "Active";
|
|
654
656
|
EStatusAccountDrive2["AccountNotExist"] = "AccountNotExist";
|
|
@@ -660,10 +662,13 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
660
662
|
|
|
661
663
|
// src/enums/status/accounts/EStatusAccountVPN.enum.ts
|
|
662
664
|
var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
665
|
+
EStatusAccountVPN2["New"] = "New";
|
|
663
666
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
664
667
|
EStatusAccountVPN2["Active"] = "Active";
|
|
665
668
|
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
666
669
|
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
670
|
+
EStatusAccountVPN2["Expired"] = "Expired";
|
|
671
|
+
EStatusAccountVPN2["Error"] = "Error";
|
|
667
672
|
return EStatusAccountVPN2;
|
|
668
673
|
})(EStatusAccountVPN || {});
|
|
669
674
|
|
package/dist/index.mjs
CHANGED
|
@@ -304,7 +304,7 @@ __export(types_exports, {
|
|
|
304
304
|
// src/enums/types/ETypeAccountVPN.enum.ts
|
|
305
305
|
var ETypeAccountVPN = /* @__PURE__ */ ((ETypeAccountVPN2) => {
|
|
306
306
|
ETypeAccountVPN2["Free"] = "Free";
|
|
307
|
-
ETypeAccountVPN2["
|
|
307
|
+
ETypeAccountVPN2["Paid"] = "Paid";
|
|
308
308
|
return ETypeAccountVPN2;
|
|
309
309
|
})(ETypeAccountVPN || {});
|
|
310
310
|
|
|
@@ -461,8 +461,8 @@ var EStatusActive = /* @__PURE__ */ ((EStatusActive2) => {
|
|
|
461
461
|
|
|
462
462
|
// src/enums/status/common/EStatusChangeInfo.enum.ts
|
|
463
463
|
var EStatusChangeInfo = /* @__PURE__ */ ((EStatusChangeInfo2) => {
|
|
464
|
-
EStatusChangeInfo2["
|
|
465
|
-
EStatusChangeInfo2["
|
|
464
|
+
EStatusChangeInfo2["Done"] = "Done";
|
|
465
|
+
EStatusChangeInfo2["Failed"] = "Failed";
|
|
466
466
|
EStatusChangeInfo2["Pending"] = "Pending";
|
|
467
467
|
return EStatusChangeInfo2;
|
|
468
468
|
})(EStatusChangeInfo || {});
|
|
@@ -614,6 +614,7 @@ var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
|
|
|
614
614
|
|
|
615
615
|
// src/enums/status/accounts/EStatusAccountCanva.enum.ts
|
|
616
616
|
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
617
|
+
EStatusAccountCanva2["New"] = "New";
|
|
617
618
|
EStatusAccountCanva2["InActive"] = "InActive";
|
|
618
619
|
EStatusAccountCanva2["Active"] = "Active";
|
|
619
620
|
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
@@ -625,6 +626,7 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
625
626
|
|
|
626
627
|
// src/enums/status/accounts/EStatusAccountDrive.enum.ts
|
|
627
628
|
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
629
|
+
EStatusAccountDrive2["New"] = "New";
|
|
628
630
|
EStatusAccountDrive2["InActive"] = "InActive";
|
|
629
631
|
EStatusAccountDrive2["Active"] = "Active";
|
|
630
632
|
EStatusAccountDrive2["AccountNotExist"] = "AccountNotExist";
|
|
@@ -636,10 +638,13 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
636
638
|
|
|
637
639
|
// src/enums/status/accounts/EStatusAccountVPN.enum.ts
|
|
638
640
|
var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
641
|
+
EStatusAccountVPN2["New"] = "New";
|
|
639
642
|
EStatusAccountVPN2["InActive"] = "InActive";
|
|
640
643
|
EStatusAccountVPN2["Active"] = "Active";
|
|
641
644
|
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
642
645
|
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
646
|
+
EStatusAccountVPN2["Expired"] = "Expired";
|
|
647
|
+
EStatusAccountVPN2["Error"] = "Error";
|
|
643
648
|
return EStatusAccountVPN2;
|
|
644
649
|
})(EStatusAccountVPN || {});
|
|
645
650
|
|