automation-lib 5.0.61 → 5.0.63
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 -18
- package/dist/index.d.ts +29 -18
- package/dist/index.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -262,8 +262,9 @@ declare enum ETypeProxyNewIP {
|
|
|
262
262
|
declare enum ETypeProxyChecked {
|
|
263
263
|
Dead = "Dead",
|
|
264
264
|
Unknown = "Unknown",
|
|
265
|
-
|
|
266
|
-
|
|
265
|
+
Working = "Working",
|
|
266
|
+
Expired = "Expired",
|
|
267
|
+
ErrorChecker = "ErrorChecker"
|
|
267
268
|
}
|
|
268
269
|
|
|
269
270
|
declare enum ETypeAccountVPN {
|
|
@@ -1422,6 +1423,8 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
1422
1423
|
status: EStatusCommon;
|
|
1423
1424
|
city: string;
|
|
1424
1425
|
country: string;
|
|
1426
|
+
startDate: Date;
|
|
1427
|
+
enbDate: Date;
|
|
1425
1428
|
lastUsed: Date;
|
|
1426
1429
|
lastUserUsed: string | IUser;
|
|
1427
1430
|
}
|
|
@@ -1497,6 +1500,26 @@ interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
1497
1500
|
note: string;
|
|
1498
1501
|
}
|
|
1499
1502
|
|
|
1503
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1504
|
+
deviceKey: string;
|
|
1505
|
+
typeSocial: ETypeSocial;
|
|
1506
|
+
maximumAccountApply: number;
|
|
1507
|
+
isFulled: boolean;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
interface IDeviceSettingForAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1511
|
+
deviceKey: string;
|
|
1512
|
+
deviceSetting: string | IDeviceSetting;
|
|
1513
|
+
typeSocial: ETypeSocial;
|
|
1514
|
+
accountSocial: IAccount | string;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
interface IProxyAttachedForDevice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1518
|
+
proxy: IProxy | string;
|
|
1519
|
+
device: string | IDevice;
|
|
1520
|
+
pc: string | IPC;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1500
1523
|
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1501
1524
|
pt_url: string;
|
|
1502
1525
|
pt_name: string;
|
|
@@ -1683,20 +1706,6 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1683
1706
|
status: EStatusActive;
|
|
1684
1707
|
}
|
|
1685
1708
|
|
|
1686
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1687
|
-
deviceKey: string;
|
|
1688
|
-
typeSocial: ETypeSocial;
|
|
1689
|
-
maximumAccountApply: number;
|
|
1690
|
-
isFulled: boolean;
|
|
1691
|
-
}
|
|
1692
|
-
|
|
1693
|
-
interface IDeviceSettingForAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1694
|
-
deviceKey: string;
|
|
1695
|
-
deviceSetting: string | IDeviceSetting;
|
|
1696
|
-
typeSocial: ETypeSocial;
|
|
1697
|
-
accountSocial: IAccount | string;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
1709
|
interface ITaskToolInstagramThreads extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1701
1710
|
data: TTaskDataInstagramThreads;
|
|
1702
1711
|
}
|
|
@@ -1907,6 +1916,7 @@ type index$6_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
|
1907
1916
|
type index$6_IManagerSheetGroup = IManagerSheetGroup;
|
|
1908
1917
|
type index$6_IPC = IPC;
|
|
1909
1918
|
type index$6_IProxy = IProxy;
|
|
1919
|
+
type index$6_IProxyAttachedForDevice = IProxyAttachedForDevice;
|
|
1910
1920
|
type index$6_IProxySetting = IProxySetting;
|
|
1911
1921
|
type index$6_IProxySettingForAccount = IProxySettingForAccount;
|
|
1912
1922
|
type index$6_IProxyTracking = IProxyTracking;
|
|
@@ -1916,7 +1926,7 @@ type index$6_IVoiceLanguage = IVoiceLanguage;
|
|
|
1916
1926
|
type index$6_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1917
1927
|
type index$6_IVoiceStores = IVoiceStores;
|
|
1918
1928
|
declare namespace index$6 {
|
|
1919
|
-
export { type index$6_IAccount as IAccount, type index$6_IAccountAI as IAccountAI, type index$6_IAccountAIChannel as IAccountAIChannel, type index$6_IAccountAIGroup as IAccountAIGroup, type index$6_IAccountAIImage as IAccountAIImage, type index$6_IAccountAIImageChannel as IAccountAIImageChannel, type index$6_IAccountAIImageGroup as IAccountAIImageGroup, type index$6_IAccountAIImageInfo as IAccountAIImageInfo, type index$6_IAccountAIImageTag as IAccountAIImageTag, type index$6_IAccountAIInfo as IAccountAIInfo, type index$6_IAccountAITag as IAccountAITag, type index$6_IAccountAIVoice as IAccountAIVoice, type index$6_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$6_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$6_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$6_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDraft as IAccountDraft, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountsGroup as IAccountsGroup, type index$6_IDevice as IDevice, type index$6_IDeviceAllowPermission as IDeviceAllowPermission, type index$6_IDeviceInfoEmail as IDeviceInfoEmail, type index$6_IDeviceSetting as IDeviceSetting, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IPC as IPC, type index$6_IProxy as IProxy, type index$6_IProxySetting as IProxySetting, type index$6_IProxySettingForAccount as IProxySettingForAccount, type index$6_IProxyTracking as IProxyTracking, type index$6_ISheetsTool as ISheetsTool, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, index$7 as TaskBrowsers, index$8 as TaskPhones };
|
|
1929
|
+
export { type index$6_IAccount as IAccount, type index$6_IAccountAI as IAccountAI, type index$6_IAccountAIChannel as IAccountAIChannel, type index$6_IAccountAIGroup as IAccountAIGroup, type index$6_IAccountAIImage as IAccountAIImage, type index$6_IAccountAIImageChannel as IAccountAIImageChannel, type index$6_IAccountAIImageGroup as IAccountAIImageGroup, type index$6_IAccountAIImageInfo as IAccountAIImageInfo, type index$6_IAccountAIImageTag as IAccountAIImageTag, type index$6_IAccountAIInfo as IAccountAIInfo, type index$6_IAccountAITag as IAccountAITag, type index$6_IAccountAIVoice as IAccountAIVoice, type index$6_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$6_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$6_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$6_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDraft as IAccountDraft, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountsGroup as IAccountsGroup, type index$6_IDevice as IDevice, type index$6_IDeviceAllowPermission as IDeviceAllowPermission, type index$6_IDeviceInfoEmail as IDeviceInfoEmail, type index$6_IDeviceSetting as IDeviceSetting, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IPC as IPC, type index$6_IProxy as IProxy, type index$6_IProxyAttachedForDevice as IProxyAttachedForDevice, type index$6_IProxySetting as IProxySetting, type index$6_IProxySettingForAccount as IProxySettingForAccount, type index$6_IProxyTracking as IProxyTracking, type index$6_ISheetsTool as ISheetsTool, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, index$7 as TaskBrowsers, index$8 as TaskPhones };
|
|
1920
1930
|
}
|
|
1921
1931
|
|
|
1922
1932
|
interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -2709,6 +2719,7 @@ type index$1_IOtpCreateSession = IOtpCreateSession;
|
|
|
2709
2719
|
type index$1_IOtpSend = IOtpSend;
|
|
2710
2720
|
type index$1_IPC = IPC;
|
|
2711
2721
|
type index$1_IProxy = IProxy;
|
|
2722
|
+
type index$1_IProxyAttachedForDevice = IProxyAttachedForDevice;
|
|
2712
2723
|
type index$1_IProxySetting = IProxySetting;
|
|
2713
2724
|
type index$1_IProxySettingForAccount = IProxySettingForAccount;
|
|
2714
2725
|
type index$1_IProxyTracking = IProxyTracking;
|
|
@@ -2747,7 +2758,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
|
|
|
2747
2758
|
type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2748
2759
|
type index$1_IVoiceStores = IVoiceStores;
|
|
2749
2760
|
declare namespace index$1 {
|
|
2750
|
-
export { index$b as Auth, index$9 as Common, index$4 as Device, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDraft as IAccountDraft, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDevice as IDevice, type index$1_IDeviceAllowPermission as IDeviceAllowPermission, type index$1_IDeviceCHPlay as IDeviceCHPlay, type index$1_IDeviceEmail as IDeviceEmail, type index$1_IDeviceInfoEmail as IDeviceInfoEmail, type index$1_IDeviceSetting as IDeviceSetting, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IFreepikSetting as IFreepikSetting, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IProxySetting as IProxySetting, type index$1_IProxySettingForAccount as IProxySettingForAccount, type index$1_IProxyTracking as IProxyTracking, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$5 as Logs, index$3 as Settings, index$2 as Socials, index$7 as TaskBrowsers, index$8 as TaskPhones, index$6 as Tool, index$a as Web };
|
|
2761
|
+
export { index$b as Auth, index$9 as Common, index$4 as Device, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDraft as IAccountDraft, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDevice as IDevice, type index$1_IDeviceAllowPermission as IDeviceAllowPermission, type index$1_IDeviceCHPlay as IDeviceCHPlay, type index$1_IDeviceEmail as IDeviceEmail, type index$1_IDeviceInfoEmail as IDeviceInfoEmail, type index$1_IDeviceSetting as IDeviceSetting, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IFreepikSetting as IFreepikSetting, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IProxyAttachedForDevice as IProxyAttachedForDevice, type index$1_IProxySetting as IProxySetting, type index$1_IProxySettingForAccount as IProxySettingForAccount, type index$1_IProxyTracking as IProxyTracking, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$5 as Logs, index$3 as Settings, index$2 as Socials, index$7 as TaskBrowsers, index$8 as TaskPhones, index$6 as Tool, index$a as Web };
|
|
2751
2762
|
}
|
|
2752
2763
|
|
|
2753
2764
|
interface IDataUser {
|
package/dist/index.d.ts
CHANGED
|
@@ -262,8 +262,9 @@ declare enum ETypeProxyNewIP {
|
|
|
262
262
|
declare enum ETypeProxyChecked {
|
|
263
263
|
Dead = "Dead",
|
|
264
264
|
Unknown = "Unknown",
|
|
265
|
-
|
|
266
|
-
|
|
265
|
+
Working = "Working",
|
|
266
|
+
Expired = "Expired",
|
|
267
|
+
ErrorChecker = "ErrorChecker"
|
|
267
268
|
}
|
|
268
269
|
|
|
269
270
|
declare enum ETypeAccountVPN {
|
|
@@ -1422,6 +1423,8 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
1422
1423
|
status: EStatusCommon;
|
|
1423
1424
|
city: string;
|
|
1424
1425
|
country: string;
|
|
1426
|
+
startDate: Date;
|
|
1427
|
+
enbDate: Date;
|
|
1425
1428
|
lastUsed: Date;
|
|
1426
1429
|
lastUserUsed: string | IUser;
|
|
1427
1430
|
}
|
|
@@ -1497,6 +1500,26 @@ interface IAccountDrive extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceM
|
|
|
1497
1500
|
note: string;
|
|
1498
1501
|
}
|
|
1499
1502
|
|
|
1503
|
+
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1504
|
+
deviceKey: string;
|
|
1505
|
+
typeSocial: ETypeSocial;
|
|
1506
|
+
maximumAccountApply: number;
|
|
1507
|
+
isFulled: boolean;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
interface IDeviceSettingForAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1511
|
+
deviceKey: string;
|
|
1512
|
+
deviceSetting: string | IDeviceSetting;
|
|
1513
|
+
typeSocial: ETypeSocial;
|
|
1514
|
+
accountSocial: IAccount | string;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
interface IProxyAttachedForDevice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1518
|
+
proxy: IProxy | string;
|
|
1519
|
+
device: string | IDevice;
|
|
1520
|
+
pc: string | IPC;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1500
1523
|
interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1501
1524
|
pt_url: string;
|
|
1502
1525
|
pt_name: string;
|
|
@@ -1683,20 +1706,6 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
1683
1706
|
status: EStatusActive;
|
|
1684
1707
|
}
|
|
1685
1708
|
|
|
1686
|
-
interface IDeviceSetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1687
|
-
deviceKey: string;
|
|
1688
|
-
typeSocial: ETypeSocial;
|
|
1689
|
-
maximumAccountApply: number;
|
|
1690
|
-
isFulled: boolean;
|
|
1691
|
-
}
|
|
1692
|
-
|
|
1693
|
-
interface IDeviceSettingForAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1694
|
-
deviceKey: string;
|
|
1695
|
-
deviceSetting: string | IDeviceSetting;
|
|
1696
|
-
typeSocial: ETypeSocial;
|
|
1697
|
-
accountSocial: IAccount | string;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
1709
|
interface ITaskToolInstagramThreads extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1701
1710
|
data: TTaskDataInstagramThreads;
|
|
1702
1711
|
}
|
|
@@ -1907,6 +1916,7 @@ type index$6_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
|
1907
1916
|
type index$6_IManagerSheetGroup = IManagerSheetGroup;
|
|
1908
1917
|
type index$6_IPC = IPC;
|
|
1909
1918
|
type index$6_IProxy = IProxy;
|
|
1919
|
+
type index$6_IProxyAttachedForDevice = IProxyAttachedForDevice;
|
|
1910
1920
|
type index$6_IProxySetting = IProxySetting;
|
|
1911
1921
|
type index$6_IProxySettingForAccount = IProxySettingForAccount;
|
|
1912
1922
|
type index$6_IProxyTracking = IProxyTracking;
|
|
@@ -1916,7 +1926,7 @@ type index$6_IVoiceLanguage = IVoiceLanguage;
|
|
|
1916
1926
|
type index$6_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1917
1927
|
type index$6_IVoiceStores = IVoiceStores;
|
|
1918
1928
|
declare namespace index$6 {
|
|
1919
|
-
export { type index$6_IAccount as IAccount, type index$6_IAccountAI as IAccountAI, type index$6_IAccountAIChannel as IAccountAIChannel, type index$6_IAccountAIGroup as IAccountAIGroup, type index$6_IAccountAIImage as IAccountAIImage, type index$6_IAccountAIImageChannel as IAccountAIImageChannel, type index$6_IAccountAIImageGroup as IAccountAIImageGroup, type index$6_IAccountAIImageInfo as IAccountAIImageInfo, type index$6_IAccountAIImageTag as IAccountAIImageTag, type index$6_IAccountAIInfo as IAccountAIInfo, type index$6_IAccountAITag as IAccountAITag, type index$6_IAccountAIVoice as IAccountAIVoice, type index$6_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$6_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$6_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$6_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDraft as IAccountDraft, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountsGroup as IAccountsGroup, type index$6_IDevice as IDevice, type index$6_IDeviceAllowPermission as IDeviceAllowPermission, type index$6_IDeviceInfoEmail as IDeviceInfoEmail, type index$6_IDeviceSetting as IDeviceSetting, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IPC as IPC, type index$6_IProxy as IProxy, type index$6_IProxySetting as IProxySetting, type index$6_IProxySettingForAccount as IProxySettingForAccount, type index$6_IProxyTracking as IProxyTracking, type index$6_ISheetsTool as ISheetsTool, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, index$7 as TaskBrowsers, index$8 as TaskPhones };
|
|
1929
|
+
export { type index$6_IAccount as IAccount, type index$6_IAccountAI as IAccountAI, type index$6_IAccountAIChannel as IAccountAIChannel, type index$6_IAccountAIGroup as IAccountAIGroup, type index$6_IAccountAIImage as IAccountAIImage, type index$6_IAccountAIImageChannel as IAccountAIImageChannel, type index$6_IAccountAIImageGroup as IAccountAIImageGroup, type index$6_IAccountAIImageInfo as IAccountAIImageInfo, type index$6_IAccountAIImageTag as IAccountAIImageTag, type index$6_IAccountAIInfo as IAccountAIInfo, type index$6_IAccountAITag as IAccountAITag, type index$6_IAccountAIVoice as IAccountAIVoice, type index$6_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$6_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$6_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$6_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDraft as IAccountDraft, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountsGroup as IAccountsGroup, type index$6_IDevice as IDevice, type index$6_IDeviceAllowPermission as IDeviceAllowPermission, type index$6_IDeviceInfoEmail as IDeviceInfoEmail, type index$6_IDeviceSetting as IDeviceSetting, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IPC as IPC, type index$6_IProxy as IProxy, type index$6_IProxyAttachedForDevice as IProxyAttachedForDevice, type index$6_IProxySetting as IProxySetting, type index$6_IProxySettingForAccount as IProxySettingForAccount, type index$6_IProxyTracking as IProxyTracking, type index$6_ISheetsTool as ISheetsTool, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, index$7 as TaskBrowsers, index$8 as TaskPhones };
|
|
1920
1930
|
}
|
|
1921
1931
|
|
|
1922
1932
|
interface ILogTaskAIImageVoiceCanva extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -2709,6 +2719,7 @@ type index$1_IOtpCreateSession = IOtpCreateSession;
|
|
|
2709
2719
|
type index$1_IOtpSend = IOtpSend;
|
|
2710
2720
|
type index$1_IPC = IPC;
|
|
2711
2721
|
type index$1_IProxy = IProxy;
|
|
2722
|
+
type index$1_IProxyAttachedForDevice = IProxyAttachedForDevice;
|
|
2712
2723
|
type index$1_IProxySetting = IProxySetting;
|
|
2713
2724
|
type index$1_IProxySettingForAccount = IProxySettingForAccount;
|
|
2714
2725
|
type index$1_IProxyTracking = IProxyTracking;
|
|
@@ -2747,7 +2758,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
|
|
|
2747
2758
|
type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
2748
2759
|
type index$1_IVoiceStores = IVoiceStores;
|
|
2749
2760
|
declare namespace index$1 {
|
|
2750
|
-
export { index$b as Auth, index$9 as Common, index$4 as Device, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDraft as IAccountDraft, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDevice as IDevice, type index$1_IDeviceAllowPermission as IDeviceAllowPermission, type index$1_IDeviceCHPlay as IDeviceCHPlay, type index$1_IDeviceEmail as IDeviceEmail, type index$1_IDeviceInfoEmail as IDeviceInfoEmail, type index$1_IDeviceSetting as IDeviceSetting, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IFreepikSetting as IFreepikSetting, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IProxySetting as IProxySetting, type index$1_IProxySettingForAccount as IProxySettingForAccount, type index$1_IProxyTracking as IProxyTracking, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$5 as Logs, index$3 as Settings, index$2 as Socials, index$7 as TaskBrowsers, index$8 as TaskPhones, index$6 as Tool, index$a as Web };
|
|
2761
|
+
export { index$b as Auth, index$9 as Common, index$4 as Device, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDraft as IAccountDraft, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDevice as IDevice, type index$1_IDeviceAllowPermission as IDeviceAllowPermission, type index$1_IDeviceCHPlay as IDeviceCHPlay, type index$1_IDeviceEmail as IDeviceEmail, type index$1_IDeviceInfoEmail as IDeviceInfoEmail, type index$1_IDeviceSetting as IDeviceSetting, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IFreepikSetting as IFreepikSetting, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IProxyAttachedForDevice as IProxyAttachedForDevice, type index$1_IProxySetting as IProxySetting, type index$1_IProxySettingForAccount as IProxySettingForAccount, type index$1_IProxyTracking as IProxyTracking, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$5 as Logs, index$3 as Settings, index$2 as Socials, index$7 as TaskBrowsers, index$8 as TaskPhones, index$6 as Tool, index$a as Web };
|
|
2751
2762
|
}
|
|
2752
2763
|
|
|
2753
2764
|
interface IDataUser {
|
package/dist/index.js
CHANGED
|
@@ -343,8 +343,9 @@ var ETypeProxyNewIP = /* @__PURE__ */ ((ETypeProxyNewIP2) => {
|
|
|
343
343
|
var ETypeProxyChecked = /* @__PURE__ */ ((ETypeProxyChecked2) => {
|
|
344
344
|
ETypeProxyChecked2["Dead"] = "Dead";
|
|
345
345
|
ETypeProxyChecked2["Unknown"] = "Unknown";
|
|
346
|
-
ETypeProxyChecked2["
|
|
347
|
-
ETypeProxyChecked2["
|
|
346
|
+
ETypeProxyChecked2["Working"] = "Working";
|
|
347
|
+
ETypeProxyChecked2["Expired"] = "Expired";
|
|
348
|
+
ETypeProxyChecked2["ErrorChecker"] = "ErrorChecker";
|
|
348
349
|
return ETypeProxyChecked2;
|
|
349
350
|
})(ETypeProxyChecked || {});
|
|
350
351
|
|
package/dist/index.mjs
CHANGED
|
@@ -319,8 +319,9 @@ var ETypeProxyNewIP = /* @__PURE__ */ ((ETypeProxyNewIP2) => {
|
|
|
319
319
|
var ETypeProxyChecked = /* @__PURE__ */ ((ETypeProxyChecked2) => {
|
|
320
320
|
ETypeProxyChecked2["Dead"] = "Dead";
|
|
321
321
|
ETypeProxyChecked2["Unknown"] = "Unknown";
|
|
322
|
-
ETypeProxyChecked2["
|
|
323
|
-
ETypeProxyChecked2["
|
|
322
|
+
ETypeProxyChecked2["Working"] = "Working";
|
|
323
|
+
ETypeProxyChecked2["Expired"] = "Expired";
|
|
324
|
+
ETypeProxyChecked2["ErrorChecker"] = "ErrorChecker";
|
|
324
325
|
return ETypeProxyChecked2;
|
|
325
326
|
})(ETypeProxyChecked || {});
|
|
326
327
|
|