automation-lib 5.0.21 → 5.0.24
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 +59 -8
- package/dist/index.d.ts +59 -8
- package/dist/index.js +22 -0
- package/dist/index.mjs +22 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -387,6 +387,22 @@ declare enum EStatusExecuteCommon {
|
|
|
387
387
|
Error = "Error"
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
declare enum EStatusAccountCanva {
|
|
391
|
+
Nothing = "InActive",
|
|
392
|
+
Installing = "Active",
|
|
393
|
+
WrongPassword = "WrongPassword",
|
|
394
|
+
Wrong2FA = "Wrong2FA",
|
|
395
|
+
Error = "Error"
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
declare enum EStatusAccountDrive {
|
|
399
|
+
Nothing = "InActive",
|
|
400
|
+
Installing = "Active",
|
|
401
|
+
WrongPassword = "WrongPassword",
|
|
402
|
+
Wrong2FA = "Wrong2FA",
|
|
403
|
+
Error = "Error"
|
|
404
|
+
}
|
|
405
|
+
|
|
390
406
|
declare enum EStatusLoginAccountEmail {
|
|
391
407
|
LoginSuccess = "LoginSuccess",
|
|
392
408
|
LoginError = "LoginError"
|
|
@@ -464,6 +480,10 @@ declare enum EStatusTaskJobGroup {
|
|
|
464
480
|
Processing = "Processing"
|
|
465
481
|
}
|
|
466
482
|
|
|
483
|
+
type index$f_EStatusAccountCanva = EStatusAccountCanva;
|
|
484
|
+
declare const index$f_EStatusAccountCanva: typeof EStatusAccountCanva;
|
|
485
|
+
type index$f_EStatusAccountDrive = EStatusAccountDrive;
|
|
486
|
+
declare const index$f_EStatusAccountDrive: typeof EStatusAccountDrive;
|
|
467
487
|
type index$f_EStatusActive = EStatusActive;
|
|
468
488
|
declare const index$f_EStatusActive: typeof EStatusActive;
|
|
469
489
|
type index$f_EStatusBlog = EStatusBlog;
|
|
@@ -493,7 +513,7 @@ declare const index$f_EStatusTaskToolSocials: typeof EStatusTaskToolSocials;
|
|
|
493
513
|
type index$f_EStatusVPS = EStatusVPS;
|
|
494
514
|
declare const index$f_EStatusVPS: typeof EStatusVPS;
|
|
495
515
|
declare namespace index$f {
|
|
496
|
-
export { index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
516
|
+
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
497
517
|
}
|
|
498
518
|
|
|
499
519
|
declare enum EFolderImageAI {
|
|
@@ -1463,6 +1483,24 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1463
1483
|
status: EStatusActive;
|
|
1464
1484
|
}
|
|
1465
1485
|
|
|
1486
|
+
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1487
|
+
rowId: string;
|
|
1488
|
+
email: string;
|
|
1489
|
+
password: string;
|
|
1490
|
+
code2FA: string;
|
|
1491
|
+
status: EStatusAccountCanva;
|
|
1492
|
+
note: string;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1496
|
+
rowId: string;
|
|
1497
|
+
email: string;
|
|
1498
|
+
password: string;
|
|
1499
|
+
code2FA: string;
|
|
1500
|
+
status: EStatusAccountDrive;
|
|
1501
|
+
note: string;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1466
1504
|
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1467
1505
|
ps_proxy: IProxy | string;
|
|
1468
1506
|
ps_typeSocial: ETypeSocial;
|
|
@@ -1625,6 +1663,13 @@ interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1625
1663
|
bgRemoveBackground345: string;
|
|
1626
1664
|
fontText1: string;
|
|
1627
1665
|
fontText2: string;
|
|
1666
|
+
linkCanvaVideo: string;
|
|
1667
|
+
linkCanvaImageThumb: string;
|
|
1668
|
+
linkCanvaImage1: string;
|
|
1669
|
+
linkCanvaImage2: string;
|
|
1670
|
+
linkCanvaImage3: string;
|
|
1671
|
+
linkCanvaImage4: string;
|
|
1672
|
+
linkCanvaImage5: string;
|
|
1628
1673
|
status: EStatusTaskImageVoiceCanva;
|
|
1629
1674
|
}
|
|
1630
1675
|
|
|
@@ -1667,12 +1712,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1667
1712
|
vsd_timeDelay: number;
|
|
1668
1713
|
}
|
|
1669
1714
|
|
|
1670
|
-
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1671
|
-
email: string;
|
|
1672
|
-
password: string;
|
|
1673
|
-
code2FA: string;
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
1715
|
type index$5_IAccount = IAccount;
|
|
1677
1716
|
type index$5_IAccountAI = IAccountAI;
|
|
1678
1717
|
type index$5_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1692,6 +1731,7 @@ type index$5_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
|
1692
1731
|
type index$5_IAccountCanva = IAccountCanva;
|
|
1693
1732
|
type index$5_IAccountDetailEmail = IAccountDetailEmail;
|
|
1694
1733
|
type index$5_IAccountDetailSocial = IAccountDetailSocial;
|
|
1734
|
+
type index$5_IAccountDrive = IAccountDrive;
|
|
1695
1735
|
type index$5_IAccountEmail = IAccountEmail;
|
|
1696
1736
|
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
1697
1737
|
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
@@ -1724,7 +1764,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
|
1724
1764
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1725
1765
|
type index$5_IVoiceStores = IVoiceStores;
|
|
1726
1766
|
declare namespace index$5 {
|
|
1727
|
-
export { type index$5_IAccount as IAccount, type index$5_IAccountAI as IAccountAI, type index$5_IAccountAIChannel as IAccountAIChannel, type index$5_IAccountAIGroup as IAccountAIGroup, type index$5_IAccountAIImage as IAccountAIImage, type index$5_IAccountAIImageChannel as IAccountAIImageChannel, type index$5_IAccountAIImageGroup as IAccountAIImageGroup, type index$5_IAccountAIImageInfo as IAccountAIImageInfo, type index$5_IAccountAIImageTag as IAccountAIImageTag, type index$5_IAccountAIInfo as IAccountAIInfo, type index$5_IAccountAITag as IAccountAITag, type index$5_IAccountAIVoice as IAccountAIVoice, type index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$5_IAccountCanva as IAccountCanva, type index$5_IAccountDetailEmail as IAccountDetailEmail, type index$5_IAccountDetailSocial as IAccountDetailSocial, type index$5_IAccountEmail as IAccountEmail, type index$5_IAccountEmailProxy as IAccountEmailProxy, type index$5_IAccountEmailTag as IAccountEmailTag, type index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$5_IAccountHistory as IAccountHistory, type index$5_IAccountVPS as IAccountVPS, type index$5_IAccountVPSGroup as IAccountVPSGroup, type index$5_IAccountsGroup as IAccountsGroup, type index$5_IDevice as IDevice, type index$5_IDeviceAllowPermission as IDeviceAllowPermission, type index$5_IDeviceInfoEmail as IDeviceInfoEmail, type index$5_IDeviceSetting as IDeviceSetting, type index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$5_IManagerImageAI as IManagerImageAI, type index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$5_IManagerSheet as IManagerSheet, type index$5_IManagerSheetChildren as IManagerSheetChildren, type index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$5_IManagerSheetGroup as IManagerSheetGroup, type index$5_IPC as IPC, type index$5_IProxy as IProxy, type index$5_IProxySetting as IProxySetting, type index$5_IProxySettingForAccount as IProxySettingForAccount, type index$5_IProxyTracking as IProxyTracking, type index$5_ISheetsTool as ISheetsTool, type index$5_IVoiceGenerated as IVoiceGenerated, type index$5_IVoiceLanguage as IVoiceLanguage, type index$5_IVoiceSettingDelay as IVoiceSettingDelay, type index$5_IVoiceStores as IVoiceStores, index$6 as TaskBrowsers, index$7 as TaskPhones };
|
|
1767
|
+
export { type index$5_IAccount as IAccount, type index$5_IAccountAI as IAccountAI, type index$5_IAccountAIChannel as IAccountAIChannel, type index$5_IAccountAIGroup as IAccountAIGroup, type index$5_IAccountAIImage as IAccountAIImage, type index$5_IAccountAIImageChannel as IAccountAIImageChannel, type index$5_IAccountAIImageGroup as IAccountAIImageGroup, type index$5_IAccountAIImageInfo as IAccountAIImageInfo, type index$5_IAccountAIImageTag as IAccountAIImageTag, type index$5_IAccountAIInfo as IAccountAIInfo, type index$5_IAccountAITag as IAccountAITag, type index$5_IAccountAIVoice as IAccountAIVoice, type index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$5_IAccountCanva as IAccountCanva, type index$5_IAccountDetailEmail as IAccountDetailEmail, type index$5_IAccountDetailSocial as IAccountDetailSocial, type index$5_IAccountDrive as IAccountDrive, type index$5_IAccountEmail as IAccountEmail, type index$5_IAccountEmailProxy as IAccountEmailProxy, type index$5_IAccountEmailTag as IAccountEmailTag, type index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$5_IAccountHistory as IAccountHistory, type index$5_IAccountVPS as IAccountVPS, type index$5_IAccountVPSGroup as IAccountVPSGroup, type index$5_IAccountsGroup as IAccountsGroup, type index$5_IDevice as IDevice, type index$5_IDeviceAllowPermission as IDeviceAllowPermission, type index$5_IDeviceInfoEmail as IDeviceInfoEmail, type index$5_IDeviceSetting as IDeviceSetting, type index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$5_IManagerImageAI as IManagerImageAI, type index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$5_IManagerSheet as IManagerSheet, type index$5_IManagerSheetChildren as IManagerSheetChildren, type index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$5_IManagerSheetGroup as IManagerSheetGroup, type index$5_IPC as IPC, type index$5_IProxy as IProxy, type index$5_IProxySetting as IProxySetting, type index$5_IProxySettingForAccount as IProxySettingForAccount, type index$5_IProxyTracking as IProxyTracking, type index$5_ISheetsTool as ISheetsTool, type index$5_IVoiceGenerated as IVoiceGenerated, type index$5_IVoiceLanguage as IVoiceLanguage, type index$5_IVoiceSettingDelay as IVoiceSettingDelay, type index$5_IVoiceStores as IVoiceStores, index$6 as TaskBrowsers, index$7 as TaskPhones };
|
|
1728
1768
|
}
|
|
1729
1769
|
|
|
1730
1770
|
interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1750,6 +1790,7 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1750
1790
|
nichePage4OutputUrl: string;
|
|
1751
1791
|
promptNichePage5Input: string;
|
|
1752
1792
|
nichePage5OutputUrl: string;
|
|
1793
|
+
errorPromptImage: string;
|
|
1753
1794
|
channelVoice: string | IAccountAIVoiceChannel;
|
|
1754
1795
|
accountEmailVoice: string | IAccountEmail;
|
|
1755
1796
|
accountAIVoiceInfo: string | IAccountAIVoiceInfo;
|
|
@@ -1759,6 +1800,7 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1759
1800
|
voicePage3456OutputUrl: string;
|
|
1760
1801
|
billetCharacterVoiceSpeaker1: string;
|
|
1761
1802
|
billetCharacterVoiceSpeaker2: string;
|
|
1803
|
+
errorPromptVoice: string;
|
|
1762
1804
|
typePost: string;
|
|
1763
1805
|
titlePool: string;
|
|
1764
1806
|
pool1: string;
|
|
@@ -1779,7 +1821,16 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1779
1821
|
bgRemoveBackground345: string;
|
|
1780
1822
|
fontText1: string;
|
|
1781
1823
|
fontText2: string;
|
|
1824
|
+
linkCanvaScript: string;
|
|
1825
|
+
linkCanvaDriveVideo: string;
|
|
1826
|
+
linkCanvaDriveImageThumb: string;
|
|
1827
|
+
linkCanvaDriveImage1: string;
|
|
1828
|
+
linkCanvaDriveImage2: string;
|
|
1829
|
+
linkCanvaDriveImage3: string;
|
|
1830
|
+
linkCanvaDriveImage4: string;
|
|
1831
|
+
linkCanvaDriveImage5: string;
|
|
1782
1832
|
status: EStatusTaskImageVoiceCanva;
|
|
1833
|
+
note: string;
|
|
1783
1834
|
}
|
|
1784
1835
|
|
|
1785
1836
|
type index$4_ILogTaskAIContent = ILogTaskAIContent;
|
package/dist/index.d.ts
CHANGED
|
@@ -387,6 +387,22 @@ declare enum EStatusExecuteCommon {
|
|
|
387
387
|
Error = "Error"
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
declare enum EStatusAccountCanva {
|
|
391
|
+
Nothing = "InActive",
|
|
392
|
+
Installing = "Active",
|
|
393
|
+
WrongPassword = "WrongPassword",
|
|
394
|
+
Wrong2FA = "Wrong2FA",
|
|
395
|
+
Error = "Error"
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
declare enum EStatusAccountDrive {
|
|
399
|
+
Nothing = "InActive",
|
|
400
|
+
Installing = "Active",
|
|
401
|
+
WrongPassword = "WrongPassword",
|
|
402
|
+
Wrong2FA = "Wrong2FA",
|
|
403
|
+
Error = "Error"
|
|
404
|
+
}
|
|
405
|
+
|
|
390
406
|
declare enum EStatusLoginAccountEmail {
|
|
391
407
|
LoginSuccess = "LoginSuccess",
|
|
392
408
|
LoginError = "LoginError"
|
|
@@ -464,6 +480,10 @@ declare enum EStatusTaskJobGroup {
|
|
|
464
480
|
Processing = "Processing"
|
|
465
481
|
}
|
|
466
482
|
|
|
483
|
+
type index$f_EStatusAccountCanva = EStatusAccountCanva;
|
|
484
|
+
declare const index$f_EStatusAccountCanva: typeof EStatusAccountCanva;
|
|
485
|
+
type index$f_EStatusAccountDrive = EStatusAccountDrive;
|
|
486
|
+
declare const index$f_EStatusAccountDrive: typeof EStatusAccountDrive;
|
|
467
487
|
type index$f_EStatusActive = EStatusActive;
|
|
468
488
|
declare const index$f_EStatusActive: typeof EStatusActive;
|
|
469
489
|
type index$f_EStatusBlog = EStatusBlog;
|
|
@@ -493,7 +513,7 @@ declare const index$f_EStatusTaskToolSocials: typeof EStatusTaskToolSocials;
|
|
|
493
513
|
type index$f_EStatusVPS = EStatusVPS;
|
|
494
514
|
declare const index$f_EStatusVPS: typeof EStatusVPS;
|
|
495
515
|
declare namespace index$f {
|
|
496
|
-
export { index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
516
|
+
export { index$f_EStatusAccountCanva as EStatusAccountCanva, index$f_EStatusAccountDrive as EStatusAccountDrive, index$f_EStatusActive as EStatusActive, index$f_EStatusBlog as EStatusBlog, index$f_EStatusCommon as EStatusCommon, index$f_EStatusExecuteCommon as EStatusExecuteCommon, index$f_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$f_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$f_EStatusSheetWork as EStatusSheetWork, index$f_EStatusTaskAIContent as EStatusTaskAIContent, index$f_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$f_EStatusTaskImageVoiceCanva as EStatusTaskImageVoiceCanva, index$f_EStatusTaskJob as EStatusTaskJob, index$f_EStatusTaskJobGroup as EStatusTaskJobGroup, index$f_EStatusTaskToolSocials as EStatusTaskToolSocials, index$f_EStatusVPS as EStatusVPS };
|
|
497
517
|
}
|
|
498
518
|
|
|
499
519
|
declare enum EFolderImageAI {
|
|
@@ -1463,6 +1483,24 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1463
1483
|
status: EStatusActive;
|
|
1464
1484
|
}
|
|
1465
1485
|
|
|
1486
|
+
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1487
|
+
rowId: string;
|
|
1488
|
+
email: string;
|
|
1489
|
+
password: string;
|
|
1490
|
+
code2FA: string;
|
|
1491
|
+
status: EStatusAccountCanva;
|
|
1492
|
+
note: string;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1496
|
+
rowId: string;
|
|
1497
|
+
email: string;
|
|
1498
|
+
password: string;
|
|
1499
|
+
code2FA: string;
|
|
1500
|
+
status: EStatusAccountDrive;
|
|
1501
|
+
note: string;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1466
1504
|
interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1467
1505
|
ps_proxy: IProxy | string;
|
|
1468
1506
|
ps_typeSocial: ETypeSocial;
|
|
@@ -1625,6 +1663,13 @@ interface ITaskAIImageVoiceCanva extends BoInterfaceModelsCommon.IBaseModel, BoI
|
|
|
1625
1663
|
bgRemoveBackground345: string;
|
|
1626
1664
|
fontText1: string;
|
|
1627
1665
|
fontText2: string;
|
|
1666
|
+
linkCanvaVideo: string;
|
|
1667
|
+
linkCanvaImageThumb: string;
|
|
1668
|
+
linkCanvaImage1: string;
|
|
1669
|
+
linkCanvaImage2: string;
|
|
1670
|
+
linkCanvaImage3: string;
|
|
1671
|
+
linkCanvaImage4: string;
|
|
1672
|
+
linkCanvaImage5: string;
|
|
1628
1673
|
status: EStatusTaskImageVoiceCanva;
|
|
1629
1674
|
}
|
|
1630
1675
|
|
|
@@ -1667,12 +1712,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1667
1712
|
vsd_timeDelay: number;
|
|
1668
1713
|
}
|
|
1669
1714
|
|
|
1670
|
-
interface IAccountCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1671
|
-
email: string;
|
|
1672
|
-
password: string;
|
|
1673
|
-
code2FA: string;
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
1715
|
type index$5_IAccount = IAccount;
|
|
1677
1716
|
type index$5_IAccountAI = IAccountAI;
|
|
1678
1717
|
type index$5_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1692,6 +1731,7 @@ type index$5_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
|
1692
1731
|
type index$5_IAccountCanva = IAccountCanva;
|
|
1693
1732
|
type index$5_IAccountDetailEmail = IAccountDetailEmail;
|
|
1694
1733
|
type index$5_IAccountDetailSocial = IAccountDetailSocial;
|
|
1734
|
+
type index$5_IAccountDrive = IAccountDrive;
|
|
1695
1735
|
type index$5_IAccountEmail = IAccountEmail;
|
|
1696
1736
|
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
1697
1737
|
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
@@ -1724,7 +1764,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
|
1724
1764
|
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1725
1765
|
type index$5_IVoiceStores = IVoiceStores;
|
|
1726
1766
|
declare namespace index$5 {
|
|
1727
|
-
export { type index$5_IAccount as IAccount, type index$5_IAccountAI as IAccountAI, type index$5_IAccountAIChannel as IAccountAIChannel, type index$5_IAccountAIGroup as IAccountAIGroup, type index$5_IAccountAIImage as IAccountAIImage, type index$5_IAccountAIImageChannel as IAccountAIImageChannel, type index$5_IAccountAIImageGroup as IAccountAIImageGroup, type index$5_IAccountAIImageInfo as IAccountAIImageInfo, type index$5_IAccountAIImageTag as IAccountAIImageTag, type index$5_IAccountAIInfo as IAccountAIInfo, type index$5_IAccountAITag as IAccountAITag, type index$5_IAccountAIVoice as IAccountAIVoice, type index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$5_IAccountCanva as IAccountCanva, type index$5_IAccountDetailEmail as IAccountDetailEmail, type index$5_IAccountDetailSocial as IAccountDetailSocial, type index$5_IAccountEmail as IAccountEmail, type index$5_IAccountEmailProxy as IAccountEmailProxy, type index$5_IAccountEmailTag as IAccountEmailTag, type index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$5_IAccountHistory as IAccountHistory, type index$5_IAccountVPS as IAccountVPS, type index$5_IAccountVPSGroup as IAccountVPSGroup, type index$5_IAccountsGroup as IAccountsGroup, type index$5_IDevice as IDevice, type index$5_IDeviceAllowPermission as IDeviceAllowPermission, type index$5_IDeviceInfoEmail as IDeviceInfoEmail, type index$5_IDeviceSetting as IDeviceSetting, type index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$5_IManagerImageAI as IManagerImageAI, type index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$5_IManagerSheet as IManagerSheet, type index$5_IManagerSheetChildren as IManagerSheetChildren, type index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$5_IManagerSheetGroup as IManagerSheetGroup, type index$5_IPC as IPC, type index$5_IProxy as IProxy, type index$5_IProxySetting as IProxySetting, type index$5_IProxySettingForAccount as IProxySettingForAccount, type index$5_IProxyTracking as IProxyTracking, type index$5_ISheetsTool as ISheetsTool, type index$5_IVoiceGenerated as IVoiceGenerated, type index$5_IVoiceLanguage as IVoiceLanguage, type index$5_IVoiceSettingDelay as IVoiceSettingDelay, type index$5_IVoiceStores as IVoiceStores, index$6 as TaskBrowsers, index$7 as TaskPhones };
|
|
1767
|
+
export { type index$5_IAccount as IAccount, type index$5_IAccountAI as IAccountAI, type index$5_IAccountAIChannel as IAccountAIChannel, type index$5_IAccountAIGroup as IAccountAIGroup, type index$5_IAccountAIImage as IAccountAIImage, type index$5_IAccountAIImageChannel as IAccountAIImageChannel, type index$5_IAccountAIImageGroup as IAccountAIImageGroup, type index$5_IAccountAIImageInfo as IAccountAIImageInfo, type index$5_IAccountAIImageTag as IAccountAIImageTag, type index$5_IAccountAIInfo as IAccountAIInfo, type index$5_IAccountAITag as IAccountAITag, type index$5_IAccountAIVoice as IAccountAIVoice, type index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$5_IAccountCanva as IAccountCanva, type index$5_IAccountDetailEmail as IAccountDetailEmail, type index$5_IAccountDetailSocial as IAccountDetailSocial, type index$5_IAccountDrive as IAccountDrive, type index$5_IAccountEmail as IAccountEmail, type index$5_IAccountEmailProxy as IAccountEmailProxy, type index$5_IAccountEmailTag as IAccountEmailTag, type index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$5_IAccountHistory as IAccountHistory, type index$5_IAccountVPS as IAccountVPS, type index$5_IAccountVPSGroup as IAccountVPSGroup, type index$5_IAccountsGroup as IAccountsGroup, type index$5_IDevice as IDevice, type index$5_IDeviceAllowPermission as IDeviceAllowPermission, type index$5_IDeviceInfoEmail as IDeviceInfoEmail, type index$5_IDeviceSetting as IDeviceSetting, type index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$5_IManagerImageAI as IManagerImageAI, type index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$5_IManagerSheet as IManagerSheet, type index$5_IManagerSheetChildren as IManagerSheetChildren, type index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$5_IManagerSheetGroup as IManagerSheetGroup, type index$5_IPC as IPC, type index$5_IProxy as IProxy, type index$5_IProxySetting as IProxySetting, type index$5_IProxySettingForAccount as IProxySettingForAccount, type index$5_IProxyTracking as IProxyTracking, type index$5_ISheetsTool as ISheetsTool, type index$5_IVoiceGenerated as IVoiceGenerated, type index$5_IVoiceLanguage as IVoiceLanguage, type index$5_IVoiceSettingDelay as IVoiceSettingDelay, type index$5_IVoiceStores as IVoiceStores, index$6 as TaskBrowsers, index$7 as TaskPhones };
|
|
1728
1768
|
}
|
|
1729
1769
|
|
|
1730
1770
|
interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1750,6 +1790,7 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1750
1790
|
nichePage4OutputUrl: string;
|
|
1751
1791
|
promptNichePage5Input: string;
|
|
1752
1792
|
nichePage5OutputUrl: string;
|
|
1793
|
+
errorPromptImage: string;
|
|
1753
1794
|
channelVoice: string | IAccountAIVoiceChannel;
|
|
1754
1795
|
accountEmailVoice: string | IAccountEmail;
|
|
1755
1796
|
accountAIVoiceInfo: string | IAccountAIVoiceInfo;
|
|
@@ -1759,6 +1800,7 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1759
1800
|
voicePage3456OutputUrl: string;
|
|
1760
1801
|
billetCharacterVoiceSpeaker1: string;
|
|
1761
1802
|
billetCharacterVoiceSpeaker2: string;
|
|
1803
|
+
errorPromptVoice: string;
|
|
1762
1804
|
typePost: string;
|
|
1763
1805
|
titlePool: string;
|
|
1764
1806
|
pool1: string;
|
|
@@ -1779,7 +1821,16 @@ interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel
|
|
|
1779
1821
|
bgRemoveBackground345: string;
|
|
1780
1822
|
fontText1: string;
|
|
1781
1823
|
fontText2: string;
|
|
1824
|
+
linkCanvaScript: string;
|
|
1825
|
+
linkCanvaDriveVideo: string;
|
|
1826
|
+
linkCanvaDriveImageThumb: string;
|
|
1827
|
+
linkCanvaDriveImage1: string;
|
|
1828
|
+
linkCanvaDriveImage2: string;
|
|
1829
|
+
linkCanvaDriveImage3: string;
|
|
1830
|
+
linkCanvaDriveImage4: string;
|
|
1831
|
+
linkCanvaDriveImage5: string;
|
|
1782
1832
|
status: EStatusTaskImageVoiceCanva;
|
|
1833
|
+
note: string;
|
|
1783
1834
|
}
|
|
1784
1835
|
|
|
1785
1836
|
type index$4_ILogTaskAIContent = ILogTaskAIContent;
|
package/dist/index.js
CHANGED
|
@@ -431,6 +431,8 @@ var ETypeSheetWorkPin = /* @__PURE__ */ ((ETypeSheetWorkPin2) => {
|
|
|
431
431
|
// src/enums/status/index.ts
|
|
432
432
|
var status_exports = {};
|
|
433
433
|
__export(status_exports, {
|
|
434
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
435
|
+
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
434
436
|
EStatusActive: () => EStatusActive,
|
|
435
437
|
EStatusBlog: () => EStatusBlog,
|
|
436
438
|
EStatusCommon: () => EStatusCommon,
|
|
@@ -480,6 +482,26 @@ var EStatusExecuteCommon = /* @__PURE__ */ ((EStatusExecuteCommon2) => {
|
|
|
480
482
|
return EStatusExecuteCommon2;
|
|
481
483
|
})(EStatusExecuteCommon || {});
|
|
482
484
|
|
|
485
|
+
// src/enums/status/accounts/EStatusAccountCanva.enum.ts
|
|
486
|
+
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
487
|
+
EStatusAccountCanva2["Nothing"] = "InActive";
|
|
488
|
+
EStatusAccountCanva2["Installing"] = "Active";
|
|
489
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
490
|
+
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
491
|
+
EStatusAccountCanva2["Error"] = "Error";
|
|
492
|
+
return EStatusAccountCanva2;
|
|
493
|
+
})(EStatusAccountCanva || {});
|
|
494
|
+
|
|
495
|
+
// src/enums/status/accounts/EStatusAccountDrive.enum.ts
|
|
496
|
+
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
497
|
+
EStatusAccountDrive2["Nothing"] = "InActive";
|
|
498
|
+
EStatusAccountDrive2["Installing"] = "Active";
|
|
499
|
+
EStatusAccountDrive2["WrongPassword"] = "WrongPassword";
|
|
500
|
+
EStatusAccountDrive2["Wrong2FA"] = "Wrong2FA";
|
|
501
|
+
EStatusAccountDrive2["Error"] = "Error";
|
|
502
|
+
return EStatusAccountDrive2;
|
|
503
|
+
})(EStatusAccountDrive || {});
|
|
504
|
+
|
|
483
505
|
// src/enums/status/socials/EStatusLoginAccountEmail.enum.ts
|
|
484
506
|
var EStatusLoginAccountEmail = /* @__PURE__ */ ((EStatusLoginAccountEmail2) => {
|
|
485
507
|
EStatusLoginAccountEmail2["LoginSuccess"] = "LoginSuccess";
|
package/dist/index.mjs
CHANGED
|
@@ -407,6 +407,8 @@ var ETypeSheetWorkPin = /* @__PURE__ */ ((ETypeSheetWorkPin2) => {
|
|
|
407
407
|
// src/enums/status/index.ts
|
|
408
408
|
var status_exports = {};
|
|
409
409
|
__export(status_exports, {
|
|
410
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
411
|
+
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
410
412
|
EStatusActive: () => EStatusActive,
|
|
411
413
|
EStatusBlog: () => EStatusBlog,
|
|
412
414
|
EStatusCommon: () => EStatusCommon,
|
|
@@ -456,6 +458,26 @@ var EStatusExecuteCommon = /* @__PURE__ */ ((EStatusExecuteCommon2) => {
|
|
|
456
458
|
return EStatusExecuteCommon2;
|
|
457
459
|
})(EStatusExecuteCommon || {});
|
|
458
460
|
|
|
461
|
+
// src/enums/status/accounts/EStatusAccountCanva.enum.ts
|
|
462
|
+
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
463
|
+
EStatusAccountCanva2["Nothing"] = "InActive";
|
|
464
|
+
EStatusAccountCanva2["Installing"] = "Active";
|
|
465
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
466
|
+
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
467
|
+
EStatusAccountCanva2["Error"] = "Error";
|
|
468
|
+
return EStatusAccountCanva2;
|
|
469
|
+
})(EStatusAccountCanva || {});
|
|
470
|
+
|
|
471
|
+
// src/enums/status/accounts/EStatusAccountDrive.enum.ts
|
|
472
|
+
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
473
|
+
EStatusAccountDrive2["Nothing"] = "InActive";
|
|
474
|
+
EStatusAccountDrive2["Installing"] = "Active";
|
|
475
|
+
EStatusAccountDrive2["WrongPassword"] = "WrongPassword";
|
|
476
|
+
EStatusAccountDrive2["Wrong2FA"] = "Wrong2FA";
|
|
477
|
+
EStatusAccountDrive2["Error"] = "Error";
|
|
478
|
+
return EStatusAccountDrive2;
|
|
479
|
+
})(EStatusAccountDrive || {});
|
|
480
|
+
|
|
459
481
|
// src/enums/status/socials/EStatusLoginAccountEmail.enum.ts
|
|
460
482
|
var EStatusLoginAccountEmail = /* @__PURE__ */ ((EStatusLoginAccountEmail2) => {
|
|
461
483
|
EStatusLoginAccountEmail2["LoginSuccess"] = "LoginSuccess";
|