automation-lib 5.1.132 → 5.1.134
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 +177 -70
- package/dist/index.d.ts +177 -70
- package/dist/index.js +19 -16
- package/dist/index.mjs +19 -16
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -52,6 +52,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
52
52
|
HISTORY_INTERACT_COMMENTS: string;
|
53
53
|
HISTORY_INTERACT_REPLY_COMMENTS: string;
|
54
54
|
HISTORY_INTERACT_REPLY_MESSAGES: string;
|
55
|
+
HISTORY_INTERACT_BLOCK_USER: string;
|
55
56
|
SETTING_POSTS: string;
|
56
57
|
SETTING_INTERACT_FOLLOWS: string;
|
57
58
|
SETTING_INTERACT_UN_FOLLOWS: string;
|
@@ -89,6 +90,8 @@ declare const CONST_API_CONTROLLERS: {
|
|
89
90
|
ACCOUNTS_CHPLAY_ICLOUD: string;
|
90
91
|
ACCOUNTS_CANVA: string;
|
91
92
|
ACCOUNTS_DRIVE: string;
|
93
|
+
INSTAGRAM_HISTORY_AUTO_SYNC: string;
|
94
|
+
INSTAGRAM_HISTORY_BLOCK_USER: string;
|
92
95
|
INSTAGRAM: {
|
93
96
|
ACCOUNTS_SOCIALS_RUN: string;
|
94
97
|
ACCOUNTS_SOCIALS_RAW: string;
|
@@ -2220,6 +2223,7 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
2220
2223
|
sheetName: string;
|
2221
2224
|
group: IAccountSocialGroup | string;
|
2222
2225
|
accountID: string;
|
2226
|
+
packageApp: string;
|
2223
2227
|
nameAppCloneSocial: string;
|
2224
2228
|
accountDeviceTypeAppClone: string;
|
2225
2229
|
accountDeviceNameAppClone: string;
|
@@ -2264,8 +2268,6 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
2264
2268
|
email2FA: string;
|
2265
2269
|
emailRecover: string;
|
2266
2270
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
2267
|
-
nameAppClone: string;
|
2268
|
-
packageApp: string;
|
2269
2271
|
note: string;
|
2270
2272
|
timeLastUsed: Date;
|
2271
2273
|
lastUserUsed: string | IUser;
|
@@ -2466,10 +2468,9 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2466
2468
|
status: EStatusTaskToolSocials;
|
2467
2469
|
dayOfWeekUS: string;
|
2468
2470
|
timeExecuteUS: Date;
|
2469
|
-
|
2470
|
-
|
2471
|
-
|
2472
|
-
hiddenUserNameIg: string;
|
2471
|
+
listBlockUserName: string[];
|
2472
|
+
listRestrictUserName: string[];
|
2473
|
+
listHiddenUserName: string[];
|
2473
2474
|
}
|
2474
2475
|
|
2475
2476
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
@@ -3345,6 +3346,22 @@ interface IInstagramHistoryAutoPost extends IBaseModel, ITrackingModel<IUser> {
|
|
3345
3346
|
noteFix: string;
|
3346
3347
|
}
|
3347
3348
|
|
3349
|
+
interface IInstagramHistoryBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
3350
|
+
sheetName: string;
|
3351
|
+
sheetURL: string;
|
3352
|
+
account: IAccountSocialBase | string;
|
3353
|
+
userBlock: string;
|
3354
|
+
userRestrict: string;
|
3355
|
+
userHidden: string;
|
3356
|
+
}
|
3357
|
+
|
3358
|
+
interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
3359
|
+
account: IAccountSocialBase | string;
|
3360
|
+
listRunTimes: Array<string>;
|
3361
|
+
dayOfWeeks: Array<string>;
|
3362
|
+
isTimeUs: boolean;
|
3363
|
+
}
|
3364
|
+
|
3348
3365
|
interface IInstagramSettingInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
3349
3366
|
account: IAccountSocialBase | string;
|
3350
3367
|
dayOfWeeks: Array<string>;
|
@@ -3672,8 +3689,17 @@ interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript
|
|
3672
3689
|
status: EStatusTaskScript;
|
3673
3690
|
}
|
3674
3691
|
|
3692
|
+
interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
3693
|
+
account: IAccountSocialBase | string;
|
3694
|
+
listUserBlock: string[];
|
3695
|
+
listUserRestrict: string[];
|
3696
|
+
listUserHidden: string[];
|
3697
|
+
}
|
3698
|
+
|
3675
3699
|
type index$3_IIdea = IIdea;
|
3676
3700
|
type index$3_IInstagramHistoryAutoPost = IInstagramHistoryAutoPost;
|
3701
|
+
type index$3_IInstagramHistoryBlockUser = IInstagramHistoryBlockUser;
|
3702
|
+
type index$3_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
|
3677
3703
|
type index$3_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
3678
3704
|
type index$3_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
3679
3705
|
type index$3_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
@@ -3685,6 +3711,7 @@ type index$3_IInstagramReportPostNew = IInstagramReportPostNew;
|
|
3685
3711
|
type index$3_IInstagramReportPostReel = IInstagramReportPostReel;
|
3686
3712
|
type index$3_IInstagramReportPostSquare = IInstagramReportPostSquare;
|
3687
3713
|
type index$3_IInstagramReportPostStory = IInstagramReportPostStory;
|
3714
|
+
type index$3_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
|
3688
3715
|
type index$3_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
3689
3716
|
type index$3_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
3690
3717
|
type index$3_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
|
@@ -3705,7 +3732,7 @@ type index$3_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
|
|
3705
3732
|
type index$3_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
3706
3733
|
type index$3_IThreadsSettingPost = IThreadsSettingPost;
|
3707
3734
|
declare namespace index$3 {
|
3708
|
-
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$3_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$3_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$3_IInstagramReportInteractReel as IInstagramReportInteractReel, index$3_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$3_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$3_IInstagramReportInteractStory as IInstagramReportInteractStory, index$3_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$3_IInstagramReportPostNew as IInstagramReportPostNew, index$3_IInstagramReportPostReel as IInstagramReportPostReel, index$3_IInstagramReportPostSquare as IInstagramReportPostSquare, index$3_IInstagramReportPostStory as IInstagramReportPostStory, index$3_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$3_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$3_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$3_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$3_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$3_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$3_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$3_IInstagramSettingPost as IInstagramSettingPost, index$3_INiche as INiche, index$3_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, index$3_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$3_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$3_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$3_IThreadsReportPost as IThreadsReportPost, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$3_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
3735
|
+
export type { index$3_IIdea as IIdea, index$3_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$3_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, index$3_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$3_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$3_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$3_IInstagramReportInteractReel as IInstagramReportInteractReel, index$3_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$3_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$3_IInstagramReportInteractStory as IInstagramReportInteractStory, index$3_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$3_IInstagramReportPostNew as IInstagramReportPostNew, index$3_IInstagramReportPostReel as IInstagramReportPostReel, index$3_IInstagramReportPostSquare as IInstagramReportPostSquare, index$3_IInstagramReportPostStory as IInstagramReportPostStory, index$3_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$3_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$3_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$3_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$3_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$3_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$3_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$3_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$3_IInstagramSettingPost as IInstagramSettingPost, index$3_INiche as INiche, index$3_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, index$3_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$3_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$3_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$3_IThreadsReportPost as IThreadsReportPost, index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$3_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$3_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$3_IThreadsSettingPost as IThreadsSettingPost };
|
3709
3736
|
}
|
3710
3737
|
|
3711
3738
|
type index$2_IAccountAIContent = IAccountAIContent;
|
@@ -3761,9 +3788,11 @@ type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
3761
3788
|
type index$2_IInstagramAccountRun = IInstagramAccountRun;
|
3762
3789
|
type index$2_IInstagramHistoryAutoPost = IInstagramHistoryAutoPost;
|
3763
3790
|
type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
3791
|
+
type index$2_IInstagramHistoryBlockUser = IInstagramHistoryBlockUser;
|
3764
3792
|
type index$2_IInstagramHistoryChange = IInstagramHistoryChange;
|
3765
3793
|
type index$2_IInstagramHistoryCreate = IInstagramHistoryCreate;
|
3766
3794
|
type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
3795
|
+
type index$2_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
|
3767
3796
|
type index$2_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
3768
3797
|
type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
3769
3798
|
type index$2_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
@@ -3775,6 +3804,7 @@ type index$2_IInstagramReportPostNew = IInstagramReportPostNew;
|
|
3775
3804
|
type index$2_IInstagramReportPostReel = IInstagramReportPostReel;
|
3776
3805
|
type index$2_IInstagramReportPostSquare = IInstagramReportPostSquare;
|
3777
3806
|
type index$2_IInstagramReportPostStory = IInstagramReportPostStory;
|
3807
|
+
type index$2_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
|
3778
3808
|
type index$2_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
3779
3809
|
type index$2_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
3780
3810
|
type index$2_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
|
@@ -3849,7 +3879,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
|
|
3849
3879
|
type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
|
3850
3880
|
type index$2_IVoiceStores = IVoiceStores;
|
3851
3881
|
declare namespace index$2 {
|
3852
|
-
export { index$b as Auth, index$c as Common, index$4 as History, type index$2_IAccountAIContent as IAccountAIContent, type index$2_IAccountAIContentChannel as IAccountAIContentChannel, type index$2_IAccountAIContentGroup as IAccountAIContentGroup, type index$2_IAccountAIContentInfo as IAccountAIContentInfo, type index$2_IAccountAIContentTag as IAccountAIContentTag, type index$2_IAccountAIImage as IAccountAIImage, type index$2_IAccountAIImageChannel as IAccountAIImageChannel, type index$2_IAccountAIImageGroup as IAccountAIImageGroup, type index$2_IAccountAIImageInfo as IAccountAIImageInfo, type index$2_IAccountAIImageTag as IAccountAIImageTag, type index$2_IAccountAIVoice as IAccountAIVoice, type index$2_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$2_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$2_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$2_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$2_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$2_IAccountCanva as IAccountCanva, type index$2_IAccountDrive as IAccountDrive, type index$2_IAccountEmail as IAccountEmail, type index$2_IAccountEmailProxy as IAccountEmailProxy, type index$2_IAccountEmailTag as IAccountEmailTag, type index$2_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$2_IAccountSocialBase as IAccountSocialBase, type index$2_IAccountSocialGroup as IAccountSocialGroup, type index$2_IAccountVPN as IAccountVPN, type index$2_IAccountVPS as IAccountVPS, type index$2_IAccountVPSGroup as IAccountVPSGroup, type index$2_IAuthLogin as IAuthLogin, type index$2_IAuthResetPassword as IAuthResetPassword, type index$2_IBaseModel as IBaseModel, type index$2_IBlog as IBlog, type index$2_IBlogCategory as IBlogCategory, type index$2_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$2_IBlogTeamPermission as IBlogTeamPermission, type index$2_IBlogUserPermission as IBlogUserPermission, type index$2_IDepartment as IDepartment, type index$2_IDepartmentRole as IDepartmentRole, type index$2_IDevice as IDevice, type index$2_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$2_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$2_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$2_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$2_IDomain as IDomain, type index$2_IFile as IFile, type index$2_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$2_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$2_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$2_IHistoryTaskCanva as IHistoryTaskCanva, type index$2_IIdea as IIdea, type index$2_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramAccountRun as IInstagramAccountRun, type index$2_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$2_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$2_IInstagramHistoryChange as IInstagramHistoryChange, type index$2_IInstagramHistoryCreate as IInstagramHistoryCreate, type index$2_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$2_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$2_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$2_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$2_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$2_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$2_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$2_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$2_IInstagramReportPostNew as IInstagramReportPostNew, type index$2_IInstagramReportPostReel as IInstagramReportPostReel, type index$2_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$2_IInstagramReportPostStory as IInstagramReportPostStory, type index$2_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$2_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$2_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$2_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$2_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$2_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$2_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$2_IInstagramSettingPost as IInstagramSettingPost, type index$2_ILark as ILark, type index$2_ILarkTeam as ILarkTeam, type index$2_IManagerImageAI as IManagerImageAI, type index$2_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$2_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$2_IManagerSheet as IManagerSheet, type index$2_IManagerSheetChildren as IManagerSheetChildren, type index$2_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$2_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$2_IManagerSheetGroup as IManagerSheetGroup, type index$2_IManagerWork as IManagerWork, type index$2_INiche as INiche, type index$2_IOtpConfirm as IOtpConfirm, type index$2_IOtpCreateSession as IOtpCreateSession, type index$2_IOtpSend as IOtpSend, type index$2_IPC as IPC, type index$2_IProxy as IProxy, type index$2_IRole as IRole, type index$2_IRoleFeature as IRoleFeature, type index$2_ISheetImport as ISheetImport, type index$2_ISheetWork as ISheetWork, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ITag as ITag, type index$2_ITaskJob as ITaskJob, type index$2_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$2_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$2_ITaskJobCheckList as ITaskJobCheckList, type index$2_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$2_ITaskJobDiscuss as ITaskJobDiscuss, type index$2_ITaskJobLabel as ITaskJobLabel, type index$2_ITaskJobPermission as ITaskJobPermission, type index$2_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$2_ITaskJobUserPermission as ITaskJobUserPermission, type index$2_ITaskJobsGroup as ITaskJobsGroup, type index$2_ITeam as ITeam, type index$2_ITeamMember as ITeamMember, type index$2_ITeamRole as ITeamRole, type index$2_IThreadsAccountRaw as IThreadsAccountRaw, type index$2_IThreadsAccountRun as IThreadsAccountRun, type index$2_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$2_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$2_IThreadsHistoryChange as IThreadsHistoryChange, type index$2_IThreadsHistoryCreate as IThreadsHistoryCreate, type index$2_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$2_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$2_IThreadsReportPost as IThreadsReportPost, type index$2_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$2_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$2_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$2_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$2_IThreadsSettingPost as IThreadsSettingPost, type index$2_IToken as IToken, type index$2_ITrackingModel as ITrackingModel, type index$2_ITrackingTimeScript as ITrackingTimeScript, type index$2_ITrackingUserAction as ITrackingUserAction, type index$2_IUser as IUser, type index$2_IUserRole as IUserRole, type index$2_IVoiceGenerated as IVoiceGenerated, type index$2_IVoiceLanguage as IVoiceLanguage, type index$2_IVoiceSettingDelay as IVoiceSettingDelay, type index$2_IVoiceStores as IVoiceStores, index$3 as Socials, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
3882
|
+
export { index$b as Auth, index$c as Common, index$4 as History, type index$2_IAccountAIContent as IAccountAIContent, type index$2_IAccountAIContentChannel as IAccountAIContentChannel, type index$2_IAccountAIContentGroup as IAccountAIContentGroup, type index$2_IAccountAIContentInfo as IAccountAIContentInfo, type index$2_IAccountAIContentTag as IAccountAIContentTag, type index$2_IAccountAIImage as IAccountAIImage, type index$2_IAccountAIImageChannel as IAccountAIImageChannel, type index$2_IAccountAIImageGroup as IAccountAIImageGroup, type index$2_IAccountAIImageInfo as IAccountAIImageInfo, type index$2_IAccountAIImageTag as IAccountAIImageTag, type index$2_IAccountAIVoice as IAccountAIVoice, type index$2_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$2_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$2_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$2_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$2_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$2_IAccountCanva as IAccountCanva, type index$2_IAccountDrive as IAccountDrive, type index$2_IAccountEmail as IAccountEmail, type index$2_IAccountEmailProxy as IAccountEmailProxy, type index$2_IAccountEmailTag as IAccountEmailTag, type index$2_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$2_IAccountSocialBase as IAccountSocialBase, type index$2_IAccountSocialGroup as IAccountSocialGroup, type index$2_IAccountVPN as IAccountVPN, type index$2_IAccountVPS as IAccountVPS, type index$2_IAccountVPSGroup as IAccountVPSGroup, type index$2_IAuthLogin as IAuthLogin, type index$2_IAuthResetPassword as IAuthResetPassword, type index$2_IBaseModel as IBaseModel, type index$2_IBlog as IBlog, type index$2_IBlogCategory as IBlogCategory, type index$2_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$2_IBlogTeamPermission as IBlogTeamPermission, type index$2_IBlogUserPermission as IBlogUserPermission, type index$2_IDepartment as IDepartment, type index$2_IDepartmentRole as IDepartmentRole, type index$2_IDevice as IDevice, type index$2_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$2_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$2_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$2_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$2_IDomain as IDomain, type index$2_IFile as IFile, type index$2_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$2_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$2_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$2_IHistoryTaskCanva as IHistoryTaskCanva, type index$2_IIdea as IIdea, type index$2_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramAccountRun as IInstagramAccountRun, type index$2_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$2_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$2_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$2_IInstagramHistoryChange as IInstagramHistoryChange, type index$2_IInstagramHistoryCreate as IInstagramHistoryCreate, type index$2_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$2_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$2_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$2_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$2_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$2_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$2_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$2_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$2_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$2_IInstagramReportPostNew as IInstagramReportPostNew, type index$2_IInstagramReportPostReel as IInstagramReportPostReel, type index$2_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$2_IInstagramReportPostStory as IInstagramReportPostStory, type index$2_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$2_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$2_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$2_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$2_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$2_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$2_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$2_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$2_IInstagramSettingPost as IInstagramSettingPost, type index$2_ILark as ILark, type index$2_ILarkTeam as ILarkTeam, type index$2_IManagerImageAI as IManagerImageAI, type index$2_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$2_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$2_IManagerSheet as IManagerSheet, type index$2_IManagerSheetChildren as IManagerSheetChildren, type index$2_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$2_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$2_IManagerSheetGroup as IManagerSheetGroup, type index$2_IManagerWork as IManagerWork, type index$2_INiche as INiche, type index$2_IOtpConfirm as IOtpConfirm, type index$2_IOtpCreateSession as IOtpCreateSession, type index$2_IOtpSend as IOtpSend, type index$2_IPC as IPC, type index$2_IProxy as IProxy, type index$2_IRole as IRole, type index$2_IRoleFeature as IRoleFeature, type index$2_ISheetImport as ISheetImport, type index$2_ISheetWork as ISheetWork, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ITag as ITag, type index$2_ITaskJob as ITaskJob, type index$2_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$2_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$2_ITaskJobCheckList as ITaskJobCheckList, type index$2_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$2_ITaskJobDiscuss as ITaskJobDiscuss, type index$2_ITaskJobLabel as ITaskJobLabel, type index$2_ITaskJobPermission as ITaskJobPermission, type index$2_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$2_ITaskJobUserPermission as ITaskJobUserPermission, type index$2_ITaskJobsGroup as ITaskJobsGroup, type index$2_ITeam as ITeam, type index$2_ITeamMember as ITeamMember, type index$2_ITeamRole as ITeamRole, type index$2_IThreadsAccountRaw as IThreadsAccountRaw, type index$2_IThreadsAccountRun as IThreadsAccountRun, type index$2_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$2_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$2_IThreadsHistoryChange as IThreadsHistoryChange, type index$2_IThreadsHistoryCreate as IThreadsHistoryCreate, type index$2_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$2_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$2_IThreadsReportPost as IThreadsReportPost, type index$2_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$2_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$2_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$2_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$2_IThreadsSettingPost as IThreadsSettingPost, type index$2_IToken as IToken, type index$2_ITrackingModel as ITrackingModel, type index$2_ITrackingTimeScript as ITrackingTimeScript, type index$2_ITrackingUserAction as ITrackingUserAction, type index$2_IUser as IUser, type index$2_IUserRole as IUserRole, type index$2_IVoiceGenerated as IVoiceGenerated, type index$2_IVoiceLanguage as IVoiceLanguage, type index$2_IVoiceSettingDelay as IVoiceSettingDelay, type index$2_IVoiceStores as IVoiceStores, index$3 as Socials, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
3853
3883
|
}
|
3854
3884
|
|
3855
3885
|
interface IDataUser {
|
@@ -4364,7 +4394,6 @@ interface FindThreadsHistoryAutoPostDto extends IFindBaseDto, IThreadsHistoryAut
|
|
4364
4394
|
device: string;
|
4365
4395
|
accountGroup: string;
|
4366
4396
|
account: string;
|
4367
|
-
accountID: string;
|
4368
4397
|
typeSocial: ETypeSocial;
|
4369
4398
|
}
|
4370
4399
|
interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoPost, TOmitFilterDto> {
|
@@ -4375,7 +4404,6 @@ interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsH
|
|
4375
4404
|
device: string;
|
4376
4405
|
accountGroup: string;
|
4377
4406
|
account: string;
|
4378
|
-
accountID: string;
|
4379
4407
|
typeSocial: ETypeSocial;
|
4380
4408
|
}
|
4381
4409
|
|
@@ -4411,7 +4439,6 @@ interface FindThreadsReportPostDto extends IFindBaseDto, IThreadsReportPost {
|
|
4411
4439
|
device: string;
|
4412
4440
|
accountGroup: string;
|
4413
4441
|
account: string;
|
4414
|
-
accountID: string;
|
4415
4442
|
typeSocial: ETypeSocial;
|
4416
4443
|
}
|
4417
4444
|
interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReportPost, TOmitFilterDto> {
|
@@ -4422,7 +4449,6 @@ interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReport
|
|
4422
4449
|
device: string;
|
4423
4450
|
accountGroup: string;
|
4424
4451
|
account: string;
|
4425
|
-
accountID: string;
|
4426
4452
|
typeSocial: ETypeSocial;
|
4427
4453
|
}
|
4428
4454
|
|
@@ -4458,7 +4484,6 @@ interface FindThreadsReportInteractFollowDto extends IFindBaseDto, IThreadsRepor
|
|
4458
4484
|
device: string;
|
4459
4485
|
accountGroup: string;
|
4460
4486
|
account: string;
|
4461
|
-
accountID: string;
|
4462
4487
|
typeSocial: ETypeSocial;
|
4463
4488
|
}
|
4464
4489
|
interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThreadsReportInteractFollow, TOmitFilterDto> {
|
@@ -4469,7 +4494,6 @@ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThr
|
|
4469
4494
|
device: string;
|
4470
4495
|
accountGroup: string;
|
4471
4496
|
account: string;
|
4472
|
-
accountID: string;
|
4473
4497
|
typeSocial: ETypeSocial;
|
4474
4498
|
}
|
4475
4499
|
|
@@ -4505,7 +4529,6 @@ interface FindThreadsReportInteractReplyCommentDto extends IFindBaseDto, IThread
|
|
4505
4529
|
device: string;
|
4506
4530
|
accountGroup: string;
|
4507
4531
|
account: string;
|
4508
|
-
accountID: string;
|
4509
4532
|
typeSocial: ETypeSocial;
|
4510
4533
|
}
|
4511
4534
|
interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyComment, TOmitFilterDto> {
|
@@ -4516,7 +4539,6 @@ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omi
|
|
4516
4539
|
device: string;
|
4517
4540
|
accountGroup: string;
|
4518
4541
|
account: string;
|
4519
|
-
accountID: string;
|
4520
4542
|
typeSocial: ETypeSocial;
|
4521
4543
|
}
|
4522
4544
|
|
@@ -4552,7 +4574,6 @@ interface FindThreadsReportInteractReplyMessageDto extends IFindBaseDto, IThread
|
|
4552
4574
|
device: string;
|
4553
4575
|
accountGroup: string;
|
4554
4576
|
account: string;
|
4555
|
-
accountID: string;
|
4556
4577
|
typeSocial: ETypeSocial;
|
4557
4578
|
}
|
4558
4579
|
interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyMessage, TOmitFilterDto> {
|
@@ -4563,7 +4584,6 @@ interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, Omi
|
|
4563
4584
|
device: string;
|
4564
4585
|
accountGroup: string;
|
4565
4586
|
account: string;
|
4566
|
-
accountID: string;
|
4567
4587
|
typeSocial: ETypeSocial;
|
4568
4588
|
}
|
4569
4589
|
|
@@ -4575,7 +4595,6 @@ interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
|
|
4575
4595
|
device: string;
|
4576
4596
|
accountGroup: string;
|
4577
4597
|
account: string;
|
4578
|
-
accountID: string;
|
4579
4598
|
typeSocial: ETypeSocial;
|
4580
4599
|
}
|
4581
4600
|
interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSettingPost, TOmitFilterDto> {
|
@@ -4586,7 +4605,6 @@ interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSetti
|
|
4586
4605
|
device: string;
|
4587
4606
|
accountGroup: string;
|
4588
4607
|
account: string;
|
4589
|
-
accountID: string;
|
4590
4608
|
typeSocial: ETypeSocial;
|
4591
4609
|
}
|
4592
4610
|
|
@@ -4598,7 +4616,6 @@ interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSett
|
|
4598
4616
|
device: string;
|
4599
4617
|
accountGroup: string;
|
4600
4618
|
account: string;
|
4601
|
-
accountID: string;
|
4602
4619
|
typeSocial: ETypeSocial;
|
4603
4620
|
}
|
4604
4621
|
interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractFollow, TOmitFilterDto> {
|
@@ -4609,7 +4626,6 @@ interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<ITh
|
|
4609
4626
|
device: string;
|
4610
4627
|
accountGroup: string;
|
4611
4628
|
account: string;
|
4612
|
-
accountID: string;
|
4613
4629
|
typeSocial: ETypeSocial;
|
4614
4630
|
}
|
4615
4631
|
|
@@ -4621,7 +4637,6 @@ interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSe
|
|
4621
4637
|
device: string;
|
4622
4638
|
accountGroup: string;
|
4623
4639
|
account: string;
|
4624
|
-
accountID: string;
|
4625
4640
|
typeSocial: ETypeSocial;
|
4626
4641
|
}
|
4627
4642
|
interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractUnFollow, TOmitFilterDto> {
|
@@ -4632,7 +4647,6 @@ interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, Omit<I
|
|
4632
4647
|
device: string;
|
4633
4648
|
accountGroup: string;
|
4634
4649
|
account: string;
|
4635
|
-
accountID: string;
|
4636
4650
|
typeSocial: ETypeSocial;
|
4637
4651
|
}
|
4638
4652
|
|
@@ -4644,7 +4658,6 @@ interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThrea
|
|
4644
4658
|
device: string;
|
4645
4659
|
accountGroup: string;
|
4646
4660
|
account: string;
|
4647
|
-
accountID: string;
|
4648
4661
|
typeSocial: ETypeSocial;
|
4649
4662
|
}
|
4650
4663
|
interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyComment, TOmitFilterDto> {
|
@@ -4655,7 +4668,6 @@ interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Om
|
|
4655
4668
|
device: string;
|
4656
4669
|
accountGroup: string;
|
4657
4670
|
account: string;
|
4658
|
-
accountID: string;
|
4659
4671
|
typeSocial: ETypeSocial;
|
4660
4672
|
}
|
4661
4673
|
|
@@ -4667,7 +4679,6 @@ interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThrea
|
|
4667
4679
|
device: string;
|
4668
4680
|
accountGroup: string;
|
4669
4681
|
account: string;
|
4670
|
-
accountID: string;
|
4671
4682
|
typeSocial: ETypeSocial;
|
4672
4683
|
}
|
4673
4684
|
interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyMessage, TOmitFilterDto> {
|
@@ -4678,7 +4689,6 @@ interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, Om
|
|
4678
4689
|
device: string;
|
4679
4690
|
accountGroup: string;
|
4680
4691
|
account: string;
|
4681
|
-
accountID: string;
|
4682
4692
|
typeSocial: ETypeSocial;
|
4683
4693
|
}
|
4684
4694
|
|
@@ -5281,7 +5291,6 @@ interface FindInstagramHistoryAutoPostDto extends IFindBaseDto, IInstagramHistor
|
|
5281
5291
|
device: string;
|
5282
5292
|
accountGroup: string;
|
5283
5293
|
account: string;
|
5284
|
-
accountID: string;
|
5285
5294
|
typeSocial: ETypeSocial;
|
5286
5295
|
status: EStatusTaskScript;
|
5287
5296
|
}
|
@@ -5293,7 +5302,69 @@ interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, Omit<IInstag
|
|
5293
5302
|
device: string;
|
5294
5303
|
accountGroup: string;
|
5295
5304
|
account: string;
|
5296
|
-
|
5305
|
+
typeSocial: ETypeSocial;
|
5306
|
+
}
|
5307
|
+
|
5308
|
+
interface FindOverviewInstagramHistoryBlockUserDto {
|
5309
|
+
totalAccounts: number;
|
5310
|
+
totalPC: number;
|
5311
|
+
totalLeader: number;
|
5312
|
+
totalMembers: number;
|
5313
|
+
totalAccountGroups: number;
|
5314
|
+
totalIdea: number;
|
5315
|
+
totalNiche: number;
|
5316
|
+
totalType: {
|
5317
|
+
total: number;
|
5318
|
+
TM: number;
|
5319
|
+
NTM: number;
|
5320
|
+
};
|
5321
|
+
totalDevice: {
|
5322
|
+
total: number;
|
5323
|
+
android: number;
|
5324
|
+
ios: number;
|
5325
|
+
};
|
5326
|
+
totalTypePost: {
|
5327
|
+
square: number;
|
5328
|
+
news: number;
|
5329
|
+
reel: number;
|
5330
|
+
story_highlight: number;
|
5331
|
+
};
|
5332
|
+
totalStylePost: {
|
5333
|
+
video: number;
|
5334
|
+
video_image: number;
|
5335
|
+
link_video_image: number;
|
5336
|
+
product_video_image: number;
|
5337
|
+
};
|
5338
|
+
}
|
5339
|
+
interface FindInstagramHistoryBlockUserDto extends IFindBaseDto, IInstagramHistoryBlockUser {
|
5340
|
+
deviceInfo: {
|
5341
|
+
deviceKey: string;
|
5342
|
+
deviceName: string;
|
5343
|
+
deviceType: string;
|
5344
|
+
deviceTypeAppClone: string;
|
5345
|
+
deviceNameAppClone: string;
|
5346
|
+
nameAppClone: string;
|
5347
|
+
};
|
5348
|
+
accountUsername: string;
|
5349
|
+
accountFullName: string;
|
5350
|
+
idea: string;
|
5351
|
+
niche: string;
|
5352
|
+
type: ETypeManagerWorkClassify;
|
5353
|
+
pc: string;
|
5354
|
+
device: string;
|
5355
|
+
accountGroup: string;
|
5356
|
+
account: string;
|
5357
|
+
typeSocial: ETypeSocial;
|
5358
|
+
status: EStatusTaskScript;
|
5359
|
+
}
|
5360
|
+
interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, Omit<IInstagramHistoryBlockUser, TOmitFilterDto> {
|
5361
|
+
idea: string;
|
5362
|
+
niche: string;
|
5363
|
+
type: ETypeManagerWorkClassify;
|
5364
|
+
pc: string;
|
5365
|
+
device: string;
|
5366
|
+
accountGroup: string;
|
5367
|
+
account: string;
|
5297
5368
|
typeSocial: ETypeSocial;
|
5298
5369
|
}
|
5299
5370
|
|
@@ -5329,7 +5400,6 @@ interface FindInstagramReportPostHighLightDto extends IFindBaseDto, IInstagramRe
|
|
5329
5400
|
device: string;
|
5330
5401
|
accountGroup: string;
|
5331
5402
|
account: string;
|
5332
|
-
accountID: string;
|
5333
5403
|
typeSocial: ETypeSocial;
|
5334
5404
|
}
|
5335
5405
|
interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IInstagramReportPostHighLight, TOmitFilterDto> {
|
@@ -5340,7 +5410,6 @@ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IIn
|
|
5340
5410
|
device: string;
|
5341
5411
|
accountGroup: string;
|
5342
5412
|
account: string;
|
5343
|
-
accountID: string;
|
5344
5413
|
typeSocial: ETypeSocial;
|
5345
5414
|
}
|
5346
5415
|
|
@@ -5376,7 +5445,6 @@ interface FindInstagramReportPostNewDto extends IFindBaseDto, IInstagramReportPo
|
|
5376
5445
|
device: string;
|
5377
5446
|
accountGroup: string;
|
5378
5447
|
account: string;
|
5379
|
-
accountID: string;
|
5380
5448
|
typeSocial: ETypeSocial;
|
5381
5449
|
}
|
5382
5450
|
interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagramReportPostNew, TOmitFilterDto> {
|
@@ -5387,7 +5455,6 @@ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagra
|
|
5387
5455
|
device: string;
|
5388
5456
|
accountGroup: string;
|
5389
5457
|
account: string;
|
5390
|
-
accountID: string;
|
5391
5458
|
typeSocial: ETypeSocial;
|
5392
5459
|
}
|
5393
5460
|
|
@@ -5423,7 +5490,6 @@ interface FindInstagramReportPostReelDto extends IFindBaseDto, IInstagramReportP
|
|
5423
5490
|
device: string;
|
5424
5491
|
accountGroup: string;
|
5425
5492
|
account: string;
|
5426
|
-
accountID: string;
|
5427
5493
|
typeSocial: ETypeSocial;
|
5428
5494
|
}
|
5429
5495
|
interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagramReportPostReel, TOmitFilterDto> {
|
@@ -5434,7 +5500,6 @@ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagr
|
|
5434
5500
|
device: string;
|
5435
5501
|
accountGroup: string;
|
5436
5502
|
account: string;
|
5437
|
-
accountID: string;
|
5438
5503
|
typeSocial: ETypeSocial;
|
5439
5504
|
}
|
5440
5505
|
|
@@ -5470,7 +5535,6 @@ interface FindInstagramReportPostStoryDto extends IFindBaseDto, IInstagramReport
|
|
5470
5535
|
device: string;
|
5471
5536
|
accountGroup: string;
|
5472
5537
|
account: string;
|
5473
|
-
accountID: string;
|
5474
5538
|
typeSocial: ETypeSocial;
|
5475
5539
|
}
|
5476
5540
|
interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstagramReportPostStory, TOmitFilterDto> {
|
@@ -5481,7 +5545,6 @@ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstag
|
|
5481
5545
|
device: string;
|
5482
5546
|
accountGroup: string;
|
5483
5547
|
account: string;
|
5484
|
-
accountID: string;
|
5485
5548
|
typeSocial: ETypeSocial;
|
5486
5549
|
}
|
5487
5550
|
|
@@ -5517,7 +5580,6 @@ interface FindInstagramReportPostSquareDto extends IFindBaseDto, IInstagramRepor
|
|
5517
5580
|
device: string;
|
5518
5581
|
accountGroup: string;
|
5519
5582
|
account: string;
|
5520
|
-
accountID: string;
|
5521
5583
|
typeSocial: ETypeSocial;
|
5522
5584
|
}
|
5523
5585
|
interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInstagramReportPostSquare, TOmitFilterDto> {
|
@@ -5528,7 +5590,6 @@ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInsta
|
|
5528
5590
|
device: string;
|
5529
5591
|
accountGroup: string;
|
5530
5592
|
account: string;
|
5531
|
-
accountID: string;
|
5532
5593
|
typeSocial: ETypeSocial;
|
5533
5594
|
}
|
5534
5595
|
|
@@ -5564,7 +5625,6 @@ interface FindInstagramReportInteractReplyCommentDto extends IFindBaseDto, IInst
|
|
5564
5625
|
device: string;
|
5565
5626
|
accountGroup: string;
|
5566
5627
|
account: string;
|
5567
|
-
accountID: string;
|
5568
5628
|
typeSocial: ETypeSocial;
|
5569
5629
|
}
|
5570
5630
|
interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyComment, TOmitFilterDto> {
|
@@ -5575,7 +5635,6 @@ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, O
|
|
5575
5635
|
device: string;
|
5576
5636
|
accountGroup: string;
|
5577
5637
|
account: string;
|
5578
|
-
accountID: string;
|
5579
5638
|
typeSocial: ETypeSocial;
|
5580
5639
|
}
|
5581
5640
|
|
@@ -5611,7 +5670,6 @@ interface FindInstagramReportInteractReelDto extends IFindBaseDto, IInstagramRep
|
|
5611
5670
|
device: string;
|
5612
5671
|
accountGroup: string;
|
5613
5672
|
account: string;
|
5614
|
-
accountID: string;
|
5615
5673
|
typeSocial: ETypeSocial;
|
5616
5674
|
}
|
5617
5675
|
interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IInstagramReportInteractReel, TOmitFilterDto> {
|
@@ -5622,7 +5680,6 @@ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IIns
|
|
5622
5680
|
device: string;
|
5623
5681
|
accountGroup: string;
|
5624
5682
|
account: string;
|
5625
|
-
accountID: string;
|
5626
5683
|
typeSocial: ETypeSocial;
|
5627
5684
|
}
|
5628
5685
|
|
@@ -5658,7 +5715,6 @@ interface FindInstagramReportInteractStoryDto extends IFindBaseDto, IInstagramRe
|
|
5658
5715
|
device: string;
|
5659
5716
|
accountGroup: string;
|
5660
5717
|
account: string;
|
5661
|
-
accountID: string;
|
5662
5718
|
typeSocial: ETypeSocial;
|
5663
5719
|
}
|
5664
5720
|
interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
|
@@ -5669,7 +5725,6 @@ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IIn
|
|
5669
5725
|
device: string;
|
5670
5726
|
accountGroup: string;
|
5671
5727
|
account: string;
|
5672
|
-
accountID: string;
|
5673
5728
|
typeSocial: ETypeSocial;
|
5674
5729
|
}
|
5675
5730
|
|
@@ -5705,7 +5760,6 @@ interface FindInstagramReportInteractExploreDto extends IFindBaseDto, IInstagram
|
|
5705
5760
|
device: string;
|
5706
5761
|
accountGroup: string;
|
5707
5762
|
account: string;
|
5708
|
-
accountID: string;
|
5709
5763
|
typeSocial: ETypeSocial;
|
5710
5764
|
}
|
5711
5765
|
interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<IInstagramReportInteractExplore, TOmitFilterDto> {
|
@@ -5716,7 +5770,6 @@ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<I
|
|
5716
5770
|
device: string;
|
5717
5771
|
accountGroup: string;
|
5718
5772
|
account: string;
|
5719
|
-
accountID: string;
|
5720
5773
|
typeSocial: ETypeSocial;
|
5721
5774
|
}
|
5722
5775
|
|
@@ -5752,7 +5805,6 @@ interface FindInstagramReportInteractReplyMessageDto extends IFindBaseDto, IInst
|
|
5752
5805
|
device: string;
|
5753
5806
|
accountGroup: string;
|
5754
5807
|
account: string;
|
5755
|
-
accountID: string;
|
5756
5808
|
typeSocial: ETypeSocial;
|
5757
5809
|
}
|
5758
5810
|
interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyMessage, TOmitFilterDto> {
|
@@ -5763,7 +5815,6 @@ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, O
|
|
5763
5815
|
device: string;
|
5764
5816
|
accountGroup: string;
|
5765
5817
|
account: string;
|
5766
|
-
accountID: string;
|
5767
5818
|
typeSocial: ETypeSocial;
|
5768
5819
|
}
|
5769
5820
|
|
@@ -5799,7 +5850,6 @@ interface FindInstagramReportInteractFollowDto extends IFindBaseDto, IInstagramR
|
|
5799
5850
|
device: string;
|
5800
5851
|
accountGroup: string;
|
5801
5852
|
account: string;
|
5802
|
-
accountID: string;
|
5803
5853
|
typeSocial: ETypeSocial;
|
5804
5854
|
}
|
5805
5855
|
interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<IInstagramReportInteractFollow, TOmitFilterDto> {
|
@@ -5810,7 +5860,72 @@ interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<II
|
|
5810
5860
|
device: string;
|
5811
5861
|
accountGroup: string;
|
5812
5862
|
account: string;
|
5813
|
-
|
5863
|
+
typeSocial: ETypeSocial;
|
5864
|
+
}
|
5865
|
+
|
5866
|
+
interface FindOverViewInstagramReportInteractBlockUserDto {
|
5867
|
+
totalAccounts: number;
|
5868
|
+
totalPC: number;
|
5869
|
+
totalLeader: number;
|
5870
|
+
totalMembers: number;
|
5871
|
+
totalAccountGroups: number;
|
5872
|
+
totalIdea: number;
|
5873
|
+
totalNiche: number;
|
5874
|
+
totalType: {
|
5875
|
+
total: number;
|
5876
|
+
TM: number;
|
5877
|
+
NTM: number;
|
5878
|
+
};
|
5879
|
+
totalDevice: {
|
5880
|
+
total: number;
|
5881
|
+
android: number;
|
5882
|
+
ios: number;
|
5883
|
+
};
|
5884
|
+
totalInteract: {
|
5885
|
+
done: number;
|
5886
|
+
error: number;
|
5887
|
+
unknown: number;
|
5888
|
+
};
|
5889
|
+
}
|
5890
|
+
interface FindInstagramReportInteractBlockUserDto extends IFindBaseDto, IInstagramReportInteractBlockUser {
|
5891
|
+
idea: string;
|
5892
|
+
niche: string;
|
5893
|
+
type: ETypeManagerWorkClassify;
|
5894
|
+
pc: string;
|
5895
|
+
device: string;
|
5896
|
+
accountGroup: string;
|
5897
|
+
account: string;
|
5898
|
+
typeSocial: ETypeSocial;
|
5899
|
+
}
|
5900
|
+
interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, Omit<IInstagramReportInteractBlockUser, TOmitFilterDto> {
|
5901
|
+
idea: string;
|
5902
|
+
niche: string;
|
5903
|
+
type: ETypeManagerWorkClassify;
|
5904
|
+
pc: string;
|
5905
|
+
device: string;
|
5906
|
+
accountGroup: string;
|
5907
|
+
account: string;
|
5908
|
+
typeSocial: ETypeSocial;
|
5909
|
+
}
|
5910
|
+
|
5911
|
+
interface FindInstagramSettingInteractBlockUser extends IFindBaseDto, IInstagramSettingInteractBlockUser {
|
5912
|
+
idea: string;
|
5913
|
+
niche: string;
|
5914
|
+
type: ETypeManagerWorkClassify;
|
5915
|
+
pc: string;
|
5916
|
+
device: string;
|
5917
|
+
accountGroup: string;
|
5918
|
+
account: string;
|
5919
|
+
typeSocial: ETypeSocial;
|
5920
|
+
}
|
5921
|
+
interface FilterInstagramSettingInteractBlockUser extends IFilterBaseDto, Omit<IInstagramSettingInteractBlockUser, TOmitFilterDto> {
|
5922
|
+
idea: string;
|
5923
|
+
niche: string;
|
5924
|
+
type: ETypeManagerWorkClassify;
|
5925
|
+
pc: string;
|
5926
|
+
device: string;
|
5927
|
+
accountGroup: string;
|
5928
|
+
account: string;
|
5814
5929
|
typeSocial: ETypeSocial;
|
5815
5930
|
}
|
5816
5931
|
|
@@ -5822,7 +5937,6 @@ interface FindInstagramSettingInteractExploreDto extends IFindBaseDto, IInstagra
|
|
5822
5937
|
device: string;
|
5823
5938
|
accountGroup: string;
|
5824
5939
|
account: string;
|
5825
|
-
accountID: string;
|
5826
5940
|
typeSocial: ETypeSocial;
|
5827
5941
|
}
|
5828
5942
|
interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<IInstagramSettingInteractExplore, TOmitFilterDto> {
|
@@ -5833,7 +5947,6 @@ interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<
|
|
5833
5947
|
device: string;
|
5834
5948
|
accountGroup: string;
|
5835
5949
|
account: string;
|
5836
|
-
accountID: string;
|
5837
5950
|
typeSocial: ETypeSocial;
|
5838
5951
|
}
|
5839
5952
|
|
@@ -5845,7 +5958,6 @@ interface FindInstagramSettingInteractFollowDto extends IFindBaseDto, IInstagram
|
|
5845
5958
|
device: string;
|
5846
5959
|
accountGroup: string;
|
5847
5960
|
account: string;
|
5848
|
-
accountID: string;
|
5849
5961
|
typeSocial: ETypeSocial;
|
5850
5962
|
}
|
5851
5963
|
interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractFollow, TOmitFilterDto> {
|
@@ -5856,7 +5968,6 @@ interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<I
|
|
5856
5968
|
device: string;
|
5857
5969
|
accountGroup: string;
|
5858
5970
|
account: string;
|
5859
|
-
accountID: string;
|
5860
5971
|
typeSocial: ETypeSocial;
|
5861
5972
|
}
|
5862
5973
|
|
@@ -5868,7 +5979,6 @@ interface FindInstagramSettingInteractReelDto extends IFindBaseDto, IInstagramSe
|
|
5868
5979
|
device: string;
|
5869
5980
|
accountGroup: string;
|
5870
5981
|
account: string;
|
5871
|
-
accountID: string;
|
5872
5982
|
typeSocial: ETypeSocial;
|
5873
5983
|
}
|
5874
5984
|
interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReel, TOmitFilterDto> {
|
@@ -5879,7 +5989,6 @@ interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IIn
|
|
5879
5989
|
device: string;
|
5880
5990
|
accountGroup: string;
|
5881
5991
|
account: string;
|
5882
|
-
accountID: string;
|
5883
5992
|
typeSocial: ETypeSocial;
|
5884
5993
|
}
|
5885
5994
|
|
@@ -5891,7 +6000,6 @@ interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto, IIns
|
|
5891
6000
|
device: string;
|
5892
6001
|
accountGroup: string;
|
5893
6002
|
account: string;
|
5894
|
-
accountID: string;
|
5895
6003
|
typeSocial: ETypeSocial;
|
5896
6004
|
}
|
5897
6005
|
interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyComment, TOmitFilterDto> {
|
@@ -5902,7 +6010,6 @@ interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto,
|
|
5902
6010
|
device: string;
|
5903
6011
|
accountGroup: string;
|
5904
6012
|
account: string;
|
5905
|
-
accountID: string;
|
5906
6013
|
typeSocial: ETypeSocial;
|
5907
6014
|
}
|
5908
6015
|
|
@@ -5914,7 +6021,6 @@ interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto, IIns
|
|
5914
6021
|
device: string;
|
5915
6022
|
accountGroup: string;
|
5916
6023
|
account: string;
|
5917
|
-
accountID: string;
|
5918
6024
|
typeSocial: ETypeSocial;
|
5919
6025
|
}
|
5920
6026
|
interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyMessage, TOmitFilterDto> {
|
@@ -5925,7 +6031,6 @@ interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto,
|
|
5925
6031
|
device: string;
|
5926
6032
|
accountGroup: string;
|
5927
6033
|
account: string;
|
5928
|
-
accountID: string;
|
5929
6034
|
typeSocial: ETypeSocial;
|
5930
6035
|
}
|
5931
6036
|
|
@@ -5937,7 +6042,6 @@ interface FindInstagramSettingInteractStoryDto extends IFindBaseDto, IInstagramS
|
|
5937
6042
|
device: string;
|
5938
6043
|
accountGroup: string;
|
5939
6044
|
account: string;
|
5940
|
-
accountID: string;
|
5941
6045
|
typeSocial: ETypeSocial;
|
5942
6046
|
}
|
5943
6047
|
interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, Omit<IInstagramSettingInteractStory, TOmitFilterDto> {
|
@@ -5948,7 +6052,6 @@ interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, Omit<II
|
|
5948
6052
|
device: string;
|
5949
6053
|
accountGroup: string;
|
5950
6054
|
account: string;
|
5951
|
-
accountID: string;
|
5952
6055
|
typeSocial: ETypeSocial;
|
5953
6056
|
}
|
5954
6057
|
|
@@ -5960,7 +6063,6 @@ interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto, IInstagr
|
|
5960
6063
|
device: string;
|
5961
6064
|
accountGroup: string;
|
5962
6065
|
account: string;
|
5963
|
-
accountID: string;
|
5964
6066
|
typeSocial: ETypeSocial;
|
5965
6067
|
}
|
5966
6068
|
interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractUnFollow, TOmitFilterDto> {
|
@@ -5971,7 +6073,6 @@ interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, Omit
|
|
5971
6073
|
device: string;
|
5972
6074
|
accountGroup: string;
|
5973
6075
|
account: string;
|
5974
|
-
accountID: string;
|
5975
6076
|
typeSocial: ETypeSocial;
|
5976
6077
|
}
|
5977
6078
|
|
@@ -5983,7 +6084,6 @@ interface FindInstagramSettingPostDto extends IFindBaseDto, IInstagramSettingPos
|
|
5983
6084
|
device: string;
|
5984
6085
|
accountGroup: string;
|
5985
6086
|
account: string;
|
5986
|
-
accountID: string;
|
5987
6087
|
typeSocial: ETypeSocial;
|
5988
6088
|
}
|
5989
6089
|
interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramSettingPost, TOmitFilterDto> {
|
@@ -5994,7 +6094,6 @@ interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramS
|
|
5994
6094
|
device: string;
|
5995
6095
|
accountGroup: string;
|
5996
6096
|
account: string;
|
5997
|
-
accountID: string;
|
5998
6097
|
typeSocial: ETypeSocial;
|
5999
6098
|
}
|
6000
6099
|
|
@@ -7372,9 +7471,11 @@ type index_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
|
|
7372
7471
|
type index_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
|
7373
7472
|
type index_FilterInstagramHistoryAutoPostDto = FilterInstagramHistoryAutoPostDto;
|
7374
7473
|
type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
|
7474
|
+
type index_FilterInstagramHistoryBlockUserDto = FilterInstagramHistoryBlockUserDto;
|
7375
7475
|
type index_FilterInstagramHistoryChangeDto = FilterInstagramHistoryChangeDto;
|
7376
7476
|
type index_FilterInstagramHistoryCreateDto = FilterInstagramHistoryCreateDto;
|
7377
7477
|
type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
|
7478
|
+
type index_FilterInstagramReportInteractBlockUserDto = FilterInstagramReportInteractBlockUserDto;
|
7378
7479
|
type index_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
|
7379
7480
|
type index_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
|
7380
7481
|
type index_FilterInstagramReportInteractReelDto = FilterInstagramReportInteractReelDto;
|
@@ -7386,6 +7487,7 @@ type index_FilterInstagramReportPostNewDto = FilterInstagramReportPostNewDto;
|
|
7386
7487
|
type index_FilterInstagramReportPostReelDto = FilterInstagramReportPostReelDto;
|
7387
7488
|
type index_FilterInstagramReportPostSquareDto = FilterInstagramReportPostSquareDto;
|
7388
7489
|
type index_FilterInstagramReportPostStoryDto = FilterInstagramReportPostStoryDto;
|
7490
|
+
type index_FilterInstagramSettingInteractBlockUser = FilterInstagramSettingInteractBlockUser;
|
7389
7491
|
type index_FilterInstagramSettingInteractExploreDto = FilterInstagramSettingInteractExploreDto;
|
7390
7492
|
type index_FilterInstagramSettingInteractFollowDto = FilterInstagramSettingInteractFollowDto;
|
7391
7493
|
type index_FilterInstagramSettingInteractReelDto = FilterInstagramSettingInteractReelDto;
|
@@ -7473,9 +7575,11 @@ type index_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
|
|
7473
7575
|
type index_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
|
7474
7576
|
type index_FindInstagramHistoryAutoPostDto = FindInstagramHistoryAutoPostDto;
|
7475
7577
|
type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
|
7578
|
+
type index_FindInstagramHistoryBlockUserDto = FindInstagramHistoryBlockUserDto;
|
7476
7579
|
type index_FindInstagramHistoryChangeDto = FindInstagramHistoryChangeDto;
|
7477
7580
|
type index_FindInstagramHistoryCreateDto = FindInstagramHistoryCreateDto;
|
7478
7581
|
type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
|
7582
|
+
type index_FindInstagramReportInteractBlockUserDto = FindInstagramReportInteractBlockUserDto;
|
7479
7583
|
type index_FindInstagramReportInteractExploreDto = FindInstagramReportInteractExploreDto;
|
7480
7584
|
type index_FindInstagramReportInteractFollowDto = FindInstagramReportInteractFollowDto;
|
7481
7585
|
type index_FindInstagramReportInteractReelDto = FindInstagramReportInteractReelDto;
|
@@ -7487,6 +7591,7 @@ type index_FindInstagramReportPostNewDto = FindInstagramReportPostNewDto;
|
|
7487
7591
|
type index_FindInstagramReportPostReelDto = FindInstagramReportPostReelDto;
|
7488
7592
|
type index_FindInstagramReportPostSquareDto = FindInstagramReportPostSquareDto;
|
7489
7593
|
type index_FindInstagramReportPostStoryDto = FindInstagramReportPostStoryDto;
|
7594
|
+
type index_FindInstagramSettingInteractBlockUser = FindInstagramSettingInteractBlockUser;
|
7490
7595
|
type index_FindInstagramSettingInteractExploreDto = FindInstagramSettingInteractExploreDto;
|
7491
7596
|
type index_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
|
7492
7597
|
type index_FindInstagramSettingInteractReelDto = FindInstagramSettingInteractReelDto;
|
@@ -7503,6 +7608,7 @@ type index_FindOverViewDepartmentDto = FindOverViewDepartmentDto;
|
|
7503
7608
|
type index_FindOverViewDeviceDto = FindOverViewDeviceDto;
|
7504
7609
|
type index_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
|
7505
7610
|
type index_FindOverViewInstagramAccountRunDto = FindOverViewInstagramAccountRunDto;
|
7611
|
+
type index_FindOverViewInstagramReportInteractBlockUserDto = FindOverViewInstagramReportInteractBlockUserDto;
|
7506
7612
|
type index_FindOverViewInstagramReportInteractExploreDto = FindOverViewInstagramReportInteractExploreDto;
|
7507
7613
|
type index_FindOverViewInstagramReportInteractFollowDto = FindOverViewInstagramReportInteractFollowDto;
|
7508
7614
|
type index_FindOverViewInstagramReportInteractReelDto = FindOverViewInstagramReportInteractReelDto;
|
@@ -7545,6 +7651,7 @@ type index_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
|
|
7545
7651
|
type index_FindOverviewAccountVPNDto = FindOverviewAccountVPNDto;
|
7546
7652
|
type index_FindOverviewInstagramHistoryAutoPostDto = FindOverviewInstagramHistoryAutoPostDto;
|
7547
7653
|
type index_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
|
7654
|
+
type index_FindOverviewInstagramHistoryBlockUserDto = FindOverviewInstagramHistoryBlockUserDto;
|
7548
7655
|
type index_FindOverviewInstagramHistoryChangeDto = FindOverviewInstagramHistoryChangeDto;
|
7549
7656
|
type index_FindOverviewInstagramHistoryCreateDto = FindOverviewInstagramHistoryCreateDto;
|
7550
7657
|
type index_FindOverviewInstagramHistoryGroupDto = FindOverviewInstagramHistoryGroupDto;
|
@@ -7628,7 +7735,7 @@ type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
|
|
7628
7735
|
type index_UpdateTeamDto = UpdateTeamDto;
|
7629
7736
|
type index_UpdateUserDto = UpdateUserDto;
|
7630
7737
|
declare namespace index {
|
7631
|
-
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolDto as CreateSheetsToolDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolDto as UpdateSheetsToolDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
7738
|
+
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolDto as CreateSheetsToolDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractBlockUser as FilterInstagramSettingInteractBlockUser, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractBlockUserDto as FindInstagramReportInteractBlockUserDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractBlockUser as FindInstagramSettingInteractBlockUser, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolDto as UpdateSheetsToolDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
7632
7739
|
}
|
7633
7740
|
|
7634
|
-
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|
7741
|
+
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractBlockUser, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractBlockUserDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractBlockUser, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryBlockUser, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractBlockUser, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|