automation-lib 5.1.131 → 5.1.133

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 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;
@@ -1949,7 +1950,6 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
1949
1950
  pc: IPC | string;
1950
1951
  deviceKey: string;
1951
1952
  device: IDevice | string;
1952
- isCanSync: boolean;
1953
1953
  timeImport: Date;
1954
1954
  statusImport: EStatusAccountSocialImport;
1955
1955
  statusSyncAccount: EStatusAccountSocialSync;
@@ -2221,6 +2221,7 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
2221
2221
  sheetName: string;
2222
2222
  group: IAccountSocialGroup | string;
2223
2223
  accountID: string;
2224
+ packageApp: string;
2224
2225
  nameAppCloneSocial: string;
2225
2226
  accountDeviceTypeAppClone: string;
2226
2227
  accountDeviceNameAppClone: string;
@@ -2265,8 +2266,6 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
2265
2266
  email2FA: string;
2266
2267
  emailRecover: string;
2267
2268
  statusLoginEmail: EStatusAccountSocialLoginEmail;
2268
- nameAppClone: string;
2269
- packageApp: string;
2270
2269
  note: string;
2271
2270
  timeLastUsed: Date;
2272
2271
  lastUserUsed: string | IUser;
@@ -2467,10 +2466,9 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
2467
2466
  status: EStatusTaskToolSocials;
2468
2467
  dayOfWeekUS: string;
2469
2468
  timeExecuteUS: Date;
2470
- typeChange: 'block' | 'hidden' | 'restrict';
2471
- blockUserNameIg: string;
2472
- restrictUserNameIg: string;
2473
- hiddenUserNameIg: string;
2469
+ listBlockUserName: string[];
2470
+ listRestrictUserName: string[];
2471
+ listHiddenUserName: string[];
2474
2472
  }
2475
2473
 
2476
2474
  interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
@@ -3346,6 +3344,22 @@ interface IInstagramHistoryAutoPost extends IBaseModel, ITrackingModel<IUser> {
3346
3344
  noteFix: string;
3347
3345
  }
3348
3346
 
3347
+ interface IInstagramHistoryBlockUser extends IBaseModel, ITrackingModel<IUser> {
3348
+ sheetName: string;
3349
+ sheetURL: string;
3350
+ account: IAccountSocialBase | string;
3351
+ userBlock: string;
3352
+ userRestrict: string;
3353
+ userHidden: string;
3354
+ }
3355
+
3356
+ interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel<IUser> {
3357
+ account: IAccountSocialBase | string;
3358
+ listRunTimes: Array<string>;
3359
+ dayOfWeeks: Array<string>;
3360
+ isTimeUs: boolean;
3361
+ }
3362
+
3349
3363
  interface IInstagramSettingInteractExplore extends IBaseModel, ITrackingModel<IUser> {
3350
3364
  account: IAccountSocialBase | string;
3351
3365
  dayOfWeeks: Array<string>;
@@ -3673,8 +3687,17 @@ interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript
3673
3687
  status: EStatusTaskScript;
3674
3688
  }
3675
3689
 
3690
+ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
3691
+ account: IAccountSocialBase | string;
3692
+ listUserBlock: string[];
3693
+ listUserRestrict: string[];
3694
+ listUserHidden: string[];
3695
+ }
3696
+
3676
3697
  type index$3_IIdea = IIdea;
3677
3698
  type index$3_IInstagramHistoryAutoPost = IInstagramHistoryAutoPost;
3699
+ type index$3_IInstagramHistoryBlockUser = IInstagramHistoryBlockUser;
3700
+ type index$3_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
3678
3701
  type index$3_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
3679
3702
  type index$3_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
3680
3703
  type index$3_IInstagramReportInteractReel = IInstagramReportInteractReel;
@@ -3686,6 +3709,7 @@ type index$3_IInstagramReportPostNew = IInstagramReportPostNew;
3686
3709
  type index$3_IInstagramReportPostReel = IInstagramReportPostReel;
3687
3710
  type index$3_IInstagramReportPostSquare = IInstagramReportPostSquare;
3688
3711
  type index$3_IInstagramReportPostStory = IInstagramReportPostStory;
3712
+ type index$3_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
3689
3713
  type index$3_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
3690
3714
  type index$3_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
3691
3715
  type index$3_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
@@ -3706,7 +3730,7 @@ type index$3_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
3706
3730
  type index$3_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
3707
3731
  type index$3_IThreadsSettingPost = IThreadsSettingPost;
3708
3732
  declare namespace index$3 {
3709
- 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 };
3733
+ 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 };
3710
3734
  }
3711
3735
 
3712
3736
  type index$2_IAccountAIContent = IAccountAIContent;
@@ -3762,9 +3786,11 @@ type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
3762
3786
  type index$2_IInstagramAccountRun = IInstagramAccountRun;
3763
3787
  type index$2_IInstagramHistoryAutoPost = IInstagramHistoryAutoPost;
3764
3788
  type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
3789
+ type index$2_IInstagramHistoryBlockUser = IInstagramHistoryBlockUser;
3765
3790
  type index$2_IInstagramHistoryChange = IInstagramHistoryChange;
3766
3791
  type index$2_IInstagramHistoryCreate = IInstagramHistoryCreate;
3767
3792
  type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
3793
+ type index$2_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
3768
3794
  type index$2_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
3769
3795
  type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
3770
3796
  type index$2_IInstagramReportInteractReel = IInstagramReportInteractReel;
@@ -3776,6 +3802,7 @@ type index$2_IInstagramReportPostNew = IInstagramReportPostNew;
3776
3802
  type index$2_IInstagramReportPostReel = IInstagramReportPostReel;
3777
3803
  type index$2_IInstagramReportPostSquare = IInstagramReportPostSquare;
3778
3804
  type index$2_IInstagramReportPostStory = IInstagramReportPostStory;
3805
+ type index$2_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
3779
3806
  type index$2_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
3780
3807
  type index$2_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
3781
3808
  type index$2_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
@@ -3850,7 +3877,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
3850
3877
  type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
3851
3878
  type index$2_IVoiceStores = IVoiceStores;
3852
3879
  declare namespace index$2 {
3853
- 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 };
3880
+ 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 };
3854
3881
  }
3855
3882
 
3856
3883
  interface IDataUser {
@@ -4365,7 +4392,6 @@ interface FindThreadsHistoryAutoPostDto extends IFindBaseDto, IThreadsHistoryAut
4365
4392
  device: string;
4366
4393
  accountGroup: string;
4367
4394
  account: string;
4368
- accountID: string;
4369
4395
  typeSocial: ETypeSocial;
4370
4396
  }
4371
4397
  interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoPost, TOmitFilterDto> {
@@ -4376,7 +4402,6 @@ interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsH
4376
4402
  device: string;
4377
4403
  accountGroup: string;
4378
4404
  account: string;
4379
- accountID: string;
4380
4405
  typeSocial: ETypeSocial;
4381
4406
  }
4382
4407
 
@@ -4412,7 +4437,6 @@ interface FindThreadsReportPostDto extends IFindBaseDto, IThreadsReportPost {
4412
4437
  device: string;
4413
4438
  accountGroup: string;
4414
4439
  account: string;
4415
- accountID: string;
4416
4440
  typeSocial: ETypeSocial;
4417
4441
  }
4418
4442
  interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReportPost, TOmitFilterDto> {
@@ -4423,7 +4447,6 @@ interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReport
4423
4447
  device: string;
4424
4448
  accountGroup: string;
4425
4449
  account: string;
4426
- accountID: string;
4427
4450
  typeSocial: ETypeSocial;
4428
4451
  }
4429
4452
 
@@ -4459,7 +4482,6 @@ interface FindThreadsReportInteractFollowDto extends IFindBaseDto, IThreadsRepor
4459
4482
  device: string;
4460
4483
  accountGroup: string;
4461
4484
  account: string;
4462
- accountID: string;
4463
4485
  typeSocial: ETypeSocial;
4464
4486
  }
4465
4487
  interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThreadsReportInteractFollow, TOmitFilterDto> {
@@ -4470,7 +4492,6 @@ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThr
4470
4492
  device: string;
4471
4493
  accountGroup: string;
4472
4494
  account: string;
4473
- accountID: string;
4474
4495
  typeSocial: ETypeSocial;
4475
4496
  }
4476
4497
 
@@ -4506,7 +4527,6 @@ interface FindThreadsReportInteractReplyCommentDto extends IFindBaseDto, IThread
4506
4527
  device: string;
4507
4528
  accountGroup: string;
4508
4529
  account: string;
4509
- accountID: string;
4510
4530
  typeSocial: ETypeSocial;
4511
4531
  }
4512
4532
  interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyComment, TOmitFilterDto> {
@@ -4517,7 +4537,6 @@ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omi
4517
4537
  device: string;
4518
4538
  accountGroup: string;
4519
4539
  account: string;
4520
- accountID: string;
4521
4540
  typeSocial: ETypeSocial;
4522
4541
  }
4523
4542
 
@@ -4553,7 +4572,6 @@ interface FindThreadsReportInteractReplyMessageDto extends IFindBaseDto, IThread
4553
4572
  device: string;
4554
4573
  accountGroup: string;
4555
4574
  account: string;
4556
- accountID: string;
4557
4575
  typeSocial: ETypeSocial;
4558
4576
  }
4559
4577
  interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyMessage, TOmitFilterDto> {
@@ -4564,7 +4582,6 @@ interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, Omi
4564
4582
  device: string;
4565
4583
  accountGroup: string;
4566
4584
  account: string;
4567
- accountID: string;
4568
4585
  typeSocial: ETypeSocial;
4569
4586
  }
4570
4587
 
@@ -4576,7 +4593,6 @@ interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
4576
4593
  device: string;
4577
4594
  accountGroup: string;
4578
4595
  account: string;
4579
- accountID: string;
4580
4596
  typeSocial: ETypeSocial;
4581
4597
  }
4582
4598
  interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSettingPost, TOmitFilterDto> {
@@ -4587,7 +4603,6 @@ interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSetti
4587
4603
  device: string;
4588
4604
  accountGroup: string;
4589
4605
  account: string;
4590
- accountID: string;
4591
4606
  typeSocial: ETypeSocial;
4592
4607
  }
4593
4608
 
@@ -4599,7 +4614,6 @@ interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSett
4599
4614
  device: string;
4600
4615
  accountGroup: string;
4601
4616
  account: string;
4602
- accountID: string;
4603
4617
  typeSocial: ETypeSocial;
4604
4618
  }
4605
4619
  interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractFollow, TOmitFilterDto> {
@@ -4610,7 +4624,6 @@ interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<ITh
4610
4624
  device: string;
4611
4625
  accountGroup: string;
4612
4626
  account: string;
4613
- accountID: string;
4614
4627
  typeSocial: ETypeSocial;
4615
4628
  }
4616
4629
 
@@ -4622,7 +4635,6 @@ interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSe
4622
4635
  device: string;
4623
4636
  accountGroup: string;
4624
4637
  account: string;
4625
- accountID: string;
4626
4638
  typeSocial: ETypeSocial;
4627
4639
  }
4628
4640
  interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractUnFollow, TOmitFilterDto> {
@@ -4633,7 +4645,6 @@ interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, Omit<I
4633
4645
  device: string;
4634
4646
  accountGroup: string;
4635
4647
  account: string;
4636
- accountID: string;
4637
4648
  typeSocial: ETypeSocial;
4638
4649
  }
4639
4650
 
@@ -4645,7 +4656,6 @@ interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThrea
4645
4656
  device: string;
4646
4657
  accountGroup: string;
4647
4658
  account: string;
4648
- accountID: string;
4649
4659
  typeSocial: ETypeSocial;
4650
4660
  }
4651
4661
  interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyComment, TOmitFilterDto> {
@@ -4656,7 +4666,6 @@ interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Om
4656
4666
  device: string;
4657
4667
  accountGroup: string;
4658
4668
  account: string;
4659
- accountID: string;
4660
4669
  typeSocial: ETypeSocial;
4661
4670
  }
4662
4671
 
@@ -4668,7 +4677,6 @@ interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThrea
4668
4677
  device: string;
4669
4678
  accountGroup: string;
4670
4679
  account: string;
4671
- accountID: string;
4672
4680
  typeSocial: ETypeSocial;
4673
4681
  }
4674
4682
  interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyMessage, TOmitFilterDto> {
@@ -4679,7 +4687,6 @@ interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, Om
4679
4687
  device: string;
4680
4688
  accountGroup: string;
4681
4689
  account: string;
4682
- accountID: string;
4683
4690
  typeSocial: ETypeSocial;
4684
4691
  }
4685
4692
 
@@ -5282,7 +5289,6 @@ interface FindInstagramHistoryAutoPostDto extends IFindBaseDto, IInstagramHistor
5282
5289
  device: string;
5283
5290
  accountGroup: string;
5284
5291
  account: string;
5285
- accountID: string;
5286
5292
  typeSocial: ETypeSocial;
5287
5293
  status: EStatusTaskScript;
5288
5294
  }
@@ -5294,7 +5300,69 @@ interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, Omit<IInstag
5294
5300
  device: string;
5295
5301
  accountGroup: string;
5296
5302
  account: string;
5297
- accountID: string;
5303
+ typeSocial: ETypeSocial;
5304
+ }
5305
+
5306
+ interface FindOverviewInstagramHistoryBlockUserDto {
5307
+ totalAccounts: number;
5308
+ totalPC: number;
5309
+ totalLeader: number;
5310
+ totalMembers: number;
5311
+ totalAccountGroups: number;
5312
+ totalIdea: number;
5313
+ totalNiche: number;
5314
+ totalType: {
5315
+ total: number;
5316
+ TM: number;
5317
+ NTM: number;
5318
+ };
5319
+ totalDevice: {
5320
+ total: number;
5321
+ android: number;
5322
+ ios: number;
5323
+ };
5324
+ totalTypePost: {
5325
+ square: number;
5326
+ news: number;
5327
+ reel: number;
5328
+ story_highlight: number;
5329
+ };
5330
+ totalStylePost: {
5331
+ video: number;
5332
+ video_image: number;
5333
+ link_video_image: number;
5334
+ product_video_image: number;
5335
+ };
5336
+ }
5337
+ interface FindInstagramHistoryBlockUserDto extends IFindBaseDto, IInstagramHistoryBlockUser {
5338
+ deviceInfo: {
5339
+ deviceKey: string;
5340
+ deviceName: string;
5341
+ deviceType: string;
5342
+ deviceTypeAppClone: string;
5343
+ deviceNameAppClone: string;
5344
+ nameAppClone: string;
5345
+ };
5346
+ accountUsername: string;
5347
+ accountFullName: string;
5348
+ idea: string;
5349
+ niche: string;
5350
+ type: ETypeManagerWorkClassify;
5351
+ pc: string;
5352
+ device: string;
5353
+ accountGroup: string;
5354
+ account: string;
5355
+ typeSocial: ETypeSocial;
5356
+ status: EStatusTaskScript;
5357
+ }
5358
+ interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, Omit<IInstagramHistoryBlockUser, TOmitFilterDto> {
5359
+ idea: string;
5360
+ niche: string;
5361
+ type: ETypeManagerWorkClassify;
5362
+ pc: string;
5363
+ device: string;
5364
+ accountGroup: string;
5365
+ account: string;
5298
5366
  typeSocial: ETypeSocial;
5299
5367
  }
5300
5368
 
@@ -5330,7 +5398,6 @@ interface FindInstagramReportPostHighLightDto extends IFindBaseDto, IInstagramRe
5330
5398
  device: string;
5331
5399
  accountGroup: string;
5332
5400
  account: string;
5333
- accountID: string;
5334
5401
  typeSocial: ETypeSocial;
5335
5402
  }
5336
5403
  interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IInstagramReportPostHighLight, TOmitFilterDto> {
@@ -5341,7 +5408,6 @@ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IIn
5341
5408
  device: string;
5342
5409
  accountGroup: string;
5343
5410
  account: string;
5344
- accountID: string;
5345
5411
  typeSocial: ETypeSocial;
5346
5412
  }
5347
5413
 
@@ -5377,7 +5443,6 @@ interface FindInstagramReportPostNewDto extends IFindBaseDto, IInstagramReportPo
5377
5443
  device: string;
5378
5444
  accountGroup: string;
5379
5445
  account: string;
5380
- accountID: string;
5381
5446
  typeSocial: ETypeSocial;
5382
5447
  }
5383
5448
  interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagramReportPostNew, TOmitFilterDto> {
@@ -5388,7 +5453,6 @@ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagra
5388
5453
  device: string;
5389
5454
  accountGroup: string;
5390
5455
  account: string;
5391
- accountID: string;
5392
5456
  typeSocial: ETypeSocial;
5393
5457
  }
5394
5458
 
@@ -5424,7 +5488,6 @@ interface FindInstagramReportPostReelDto extends IFindBaseDto, IInstagramReportP
5424
5488
  device: string;
5425
5489
  accountGroup: string;
5426
5490
  account: string;
5427
- accountID: string;
5428
5491
  typeSocial: ETypeSocial;
5429
5492
  }
5430
5493
  interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagramReportPostReel, TOmitFilterDto> {
@@ -5435,7 +5498,6 @@ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagr
5435
5498
  device: string;
5436
5499
  accountGroup: string;
5437
5500
  account: string;
5438
- accountID: string;
5439
5501
  typeSocial: ETypeSocial;
5440
5502
  }
5441
5503
 
@@ -5471,7 +5533,6 @@ interface FindInstagramReportPostStoryDto extends IFindBaseDto, IInstagramReport
5471
5533
  device: string;
5472
5534
  accountGroup: string;
5473
5535
  account: string;
5474
- accountID: string;
5475
5536
  typeSocial: ETypeSocial;
5476
5537
  }
5477
5538
  interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstagramReportPostStory, TOmitFilterDto> {
@@ -5482,7 +5543,6 @@ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstag
5482
5543
  device: string;
5483
5544
  accountGroup: string;
5484
5545
  account: string;
5485
- accountID: string;
5486
5546
  typeSocial: ETypeSocial;
5487
5547
  }
5488
5548
 
@@ -5518,7 +5578,6 @@ interface FindInstagramReportPostSquareDto extends IFindBaseDto, IInstagramRepor
5518
5578
  device: string;
5519
5579
  accountGroup: string;
5520
5580
  account: string;
5521
- accountID: string;
5522
5581
  typeSocial: ETypeSocial;
5523
5582
  }
5524
5583
  interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInstagramReportPostSquare, TOmitFilterDto> {
@@ -5529,7 +5588,6 @@ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInsta
5529
5588
  device: string;
5530
5589
  accountGroup: string;
5531
5590
  account: string;
5532
- accountID: string;
5533
5591
  typeSocial: ETypeSocial;
5534
5592
  }
5535
5593
 
@@ -5565,7 +5623,6 @@ interface FindInstagramReportInteractReplyCommentDto extends IFindBaseDto, IInst
5565
5623
  device: string;
5566
5624
  accountGroup: string;
5567
5625
  account: string;
5568
- accountID: string;
5569
5626
  typeSocial: ETypeSocial;
5570
5627
  }
5571
5628
  interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyComment, TOmitFilterDto> {
@@ -5576,7 +5633,6 @@ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, O
5576
5633
  device: string;
5577
5634
  accountGroup: string;
5578
5635
  account: string;
5579
- accountID: string;
5580
5636
  typeSocial: ETypeSocial;
5581
5637
  }
5582
5638
 
@@ -5612,7 +5668,6 @@ interface FindInstagramReportInteractReelDto extends IFindBaseDto, IInstagramRep
5612
5668
  device: string;
5613
5669
  accountGroup: string;
5614
5670
  account: string;
5615
- accountID: string;
5616
5671
  typeSocial: ETypeSocial;
5617
5672
  }
5618
5673
  interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IInstagramReportInteractReel, TOmitFilterDto> {
@@ -5623,7 +5678,6 @@ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IIns
5623
5678
  device: string;
5624
5679
  accountGroup: string;
5625
5680
  account: string;
5626
- accountID: string;
5627
5681
  typeSocial: ETypeSocial;
5628
5682
  }
5629
5683
 
@@ -5659,7 +5713,6 @@ interface FindInstagramReportInteractStoryDto extends IFindBaseDto, IInstagramRe
5659
5713
  device: string;
5660
5714
  accountGroup: string;
5661
5715
  account: string;
5662
- accountID: string;
5663
5716
  typeSocial: ETypeSocial;
5664
5717
  }
5665
5718
  interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
@@ -5670,7 +5723,6 @@ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IIn
5670
5723
  device: string;
5671
5724
  accountGroup: string;
5672
5725
  account: string;
5673
- accountID: string;
5674
5726
  typeSocial: ETypeSocial;
5675
5727
  }
5676
5728
 
@@ -5706,7 +5758,6 @@ interface FindInstagramReportInteractExploreDto extends IFindBaseDto, IInstagram
5706
5758
  device: string;
5707
5759
  accountGroup: string;
5708
5760
  account: string;
5709
- accountID: string;
5710
5761
  typeSocial: ETypeSocial;
5711
5762
  }
5712
5763
  interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<IInstagramReportInteractExplore, TOmitFilterDto> {
@@ -5717,7 +5768,6 @@ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<I
5717
5768
  device: string;
5718
5769
  accountGroup: string;
5719
5770
  account: string;
5720
- accountID: string;
5721
5771
  typeSocial: ETypeSocial;
5722
5772
  }
5723
5773
 
@@ -5753,7 +5803,6 @@ interface FindInstagramReportInteractReplyMessageDto extends IFindBaseDto, IInst
5753
5803
  device: string;
5754
5804
  accountGroup: string;
5755
5805
  account: string;
5756
- accountID: string;
5757
5806
  typeSocial: ETypeSocial;
5758
5807
  }
5759
5808
  interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyMessage, TOmitFilterDto> {
@@ -5764,7 +5813,6 @@ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, O
5764
5813
  device: string;
5765
5814
  accountGroup: string;
5766
5815
  account: string;
5767
- accountID: string;
5768
5816
  typeSocial: ETypeSocial;
5769
5817
  }
5770
5818
 
@@ -5800,7 +5848,6 @@ interface FindInstagramReportInteractFollowDto extends IFindBaseDto, IInstagramR
5800
5848
  device: string;
5801
5849
  accountGroup: string;
5802
5850
  account: string;
5803
- accountID: string;
5804
5851
  typeSocial: ETypeSocial;
5805
5852
  }
5806
5853
  interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<IInstagramReportInteractFollow, TOmitFilterDto> {
@@ -5811,7 +5858,72 @@ interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<II
5811
5858
  device: string;
5812
5859
  accountGroup: string;
5813
5860
  account: string;
5814
- accountID: string;
5861
+ typeSocial: ETypeSocial;
5862
+ }
5863
+
5864
+ interface FindOverViewInstagramReportInteractBlockUserDto {
5865
+ totalAccounts: number;
5866
+ totalPC: number;
5867
+ totalLeader: number;
5868
+ totalMembers: number;
5869
+ totalAccountGroups: number;
5870
+ totalIdea: number;
5871
+ totalNiche: number;
5872
+ totalType: {
5873
+ total: number;
5874
+ TM: number;
5875
+ NTM: number;
5876
+ };
5877
+ totalDevice: {
5878
+ total: number;
5879
+ android: number;
5880
+ ios: number;
5881
+ };
5882
+ totalInteract: {
5883
+ done: number;
5884
+ error: number;
5885
+ unknown: number;
5886
+ };
5887
+ }
5888
+ interface FindInstagramReportInteractBlockUserDto extends IFindBaseDto, IInstagramReportInteractBlockUser {
5889
+ idea: string;
5890
+ niche: string;
5891
+ type: ETypeManagerWorkClassify;
5892
+ pc: string;
5893
+ device: string;
5894
+ accountGroup: string;
5895
+ account: string;
5896
+ typeSocial: ETypeSocial;
5897
+ }
5898
+ interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, Omit<IInstagramReportInteractBlockUser, TOmitFilterDto> {
5899
+ idea: string;
5900
+ niche: string;
5901
+ type: ETypeManagerWorkClassify;
5902
+ pc: string;
5903
+ device: string;
5904
+ accountGroup: string;
5905
+ account: string;
5906
+ typeSocial: ETypeSocial;
5907
+ }
5908
+
5909
+ interface FindInstagramSettingInteractBlockUser extends IFindBaseDto, IInstagramSettingInteractBlockUser {
5910
+ idea: string;
5911
+ niche: string;
5912
+ type: ETypeManagerWorkClassify;
5913
+ pc: string;
5914
+ device: string;
5915
+ accountGroup: string;
5916
+ account: string;
5917
+ typeSocial: ETypeSocial;
5918
+ }
5919
+ interface FilterInstagramSettingInteractBlockUser extends IFilterBaseDto, Omit<IInstagramSettingInteractBlockUser, TOmitFilterDto> {
5920
+ idea: string;
5921
+ niche: string;
5922
+ type: ETypeManagerWorkClassify;
5923
+ pc: string;
5924
+ device: string;
5925
+ accountGroup: string;
5926
+ account: string;
5815
5927
  typeSocial: ETypeSocial;
5816
5928
  }
5817
5929
 
@@ -5823,7 +5935,6 @@ interface FindInstagramSettingInteractExploreDto extends IFindBaseDto, IInstagra
5823
5935
  device: string;
5824
5936
  accountGroup: string;
5825
5937
  account: string;
5826
- accountID: string;
5827
5938
  typeSocial: ETypeSocial;
5828
5939
  }
5829
5940
  interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<IInstagramSettingInteractExplore, TOmitFilterDto> {
@@ -5834,7 +5945,6 @@ interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<
5834
5945
  device: string;
5835
5946
  accountGroup: string;
5836
5947
  account: string;
5837
- accountID: string;
5838
5948
  typeSocial: ETypeSocial;
5839
5949
  }
5840
5950
 
@@ -5846,7 +5956,6 @@ interface FindInstagramSettingInteractFollowDto extends IFindBaseDto, IInstagram
5846
5956
  device: string;
5847
5957
  accountGroup: string;
5848
5958
  account: string;
5849
- accountID: string;
5850
5959
  typeSocial: ETypeSocial;
5851
5960
  }
5852
5961
  interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractFollow, TOmitFilterDto> {
@@ -5857,7 +5966,6 @@ interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<I
5857
5966
  device: string;
5858
5967
  accountGroup: string;
5859
5968
  account: string;
5860
- accountID: string;
5861
5969
  typeSocial: ETypeSocial;
5862
5970
  }
5863
5971
 
@@ -5869,7 +5977,6 @@ interface FindInstagramSettingInteractReelDto extends IFindBaseDto, IInstagramSe
5869
5977
  device: string;
5870
5978
  accountGroup: string;
5871
5979
  account: string;
5872
- accountID: string;
5873
5980
  typeSocial: ETypeSocial;
5874
5981
  }
5875
5982
  interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReel, TOmitFilterDto> {
@@ -5880,7 +5987,6 @@ interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IIn
5880
5987
  device: string;
5881
5988
  accountGroup: string;
5882
5989
  account: string;
5883
- accountID: string;
5884
5990
  typeSocial: ETypeSocial;
5885
5991
  }
5886
5992
 
@@ -5892,7 +5998,6 @@ interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto, IIns
5892
5998
  device: string;
5893
5999
  accountGroup: string;
5894
6000
  account: string;
5895
- accountID: string;
5896
6001
  typeSocial: ETypeSocial;
5897
6002
  }
5898
6003
  interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyComment, TOmitFilterDto> {
@@ -5903,7 +6008,6 @@ interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto,
5903
6008
  device: string;
5904
6009
  accountGroup: string;
5905
6010
  account: string;
5906
- accountID: string;
5907
6011
  typeSocial: ETypeSocial;
5908
6012
  }
5909
6013
 
@@ -5915,7 +6019,6 @@ interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto, IIns
5915
6019
  device: string;
5916
6020
  accountGroup: string;
5917
6021
  account: string;
5918
- accountID: string;
5919
6022
  typeSocial: ETypeSocial;
5920
6023
  }
5921
6024
  interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyMessage, TOmitFilterDto> {
@@ -5926,7 +6029,6 @@ interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto,
5926
6029
  device: string;
5927
6030
  accountGroup: string;
5928
6031
  account: string;
5929
- accountID: string;
5930
6032
  typeSocial: ETypeSocial;
5931
6033
  }
5932
6034
 
@@ -5938,7 +6040,6 @@ interface FindInstagramSettingInteractStoryDto extends IFindBaseDto, IInstagramS
5938
6040
  device: string;
5939
6041
  accountGroup: string;
5940
6042
  account: string;
5941
- accountID: string;
5942
6043
  typeSocial: ETypeSocial;
5943
6044
  }
5944
6045
  interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, Omit<IInstagramSettingInteractStory, TOmitFilterDto> {
@@ -5949,7 +6050,6 @@ interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, Omit<II
5949
6050
  device: string;
5950
6051
  accountGroup: string;
5951
6052
  account: string;
5952
- accountID: string;
5953
6053
  typeSocial: ETypeSocial;
5954
6054
  }
5955
6055
 
@@ -5961,7 +6061,6 @@ interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto, IInstagr
5961
6061
  device: string;
5962
6062
  accountGroup: string;
5963
6063
  account: string;
5964
- accountID: string;
5965
6064
  typeSocial: ETypeSocial;
5966
6065
  }
5967
6066
  interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractUnFollow, TOmitFilterDto> {
@@ -5972,7 +6071,6 @@ interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, Omit
5972
6071
  device: string;
5973
6072
  accountGroup: string;
5974
6073
  account: string;
5975
- accountID: string;
5976
6074
  typeSocial: ETypeSocial;
5977
6075
  }
5978
6076
 
@@ -5984,7 +6082,6 @@ interface FindInstagramSettingPostDto extends IFindBaseDto, IInstagramSettingPos
5984
6082
  device: string;
5985
6083
  accountGroup: string;
5986
6084
  account: string;
5987
- accountID: string;
5988
6085
  typeSocial: ETypeSocial;
5989
6086
  }
5990
6087
  interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramSettingPost, TOmitFilterDto> {
@@ -5995,7 +6092,6 @@ interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramS
5995
6092
  device: string;
5996
6093
  accountGroup: string;
5997
6094
  account: string;
5998
- accountID: string;
5999
6095
  typeSocial: ETypeSocial;
6000
6096
  }
6001
6097
 
@@ -7373,9 +7469,11 @@ type index_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
7373
7469
  type index_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
7374
7470
  type index_FilterInstagramHistoryAutoPostDto = FilterInstagramHistoryAutoPostDto;
7375
7471
  type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
7472
+ type index_FilterInstagramHistoryBlockUserDto = FilterInstagramHistoryBlockUserDto;
7376
7473
  type index_FilterInstagramHistoryChangeDto = FilterInstagramHistoryChangeDto;
7377
7474
  type index_FilterInstagramHistoryCreateDto = FilterInstagramHistoryCreateDto;
7378
7475
  type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
7476
+ type index_FilterInstagramReportInteractBlockUserDto = FilterInstagramReportInteractBlockUserDto;
7379
7477
  type index_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
7380
7478
  type index_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
7381
7479
  type index_FilterInstagramReportInteractReelDto = FilterInstagramReportInteractReelDto;
@@ -7387,6 +7485,7 @@ type index_FilterInstagramReportPostNewDto = FilterInstagramReportPostNewDto;
7387
7485
  type index_FilterInstagramReportPostReelDto = FilterInstagramReportPostReelDto;
7388
7486
  type index_FilterInstagramReportPostSquareDto = FilterInstagramReportPostSquareDto;
7389
7487
  type index_FilterInstagramReportPostStoryDto = FilterInstagramReportPostStoryDto;
7488
+ type index_FilterInstagramSettingInteractBlockUser = FilterInstagramSettingInteractBlockUser;
7390
7489
  type index_FilterInstagramSettingInteractExploreDto = FilterInstagramSettingInteractExploreDto;
7391
7490
  type index_FilterInstagramSettingInteractFollowDto = FilterInstagramSettingInteractFollowDto;
7392
7491
  type index_FilterInstagramSettingInteractReelDto = FilterInstagramSettingInteractReelDto;
@@ -7474,9 +7573,11 @@ type index_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
7474
7573
  type index_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
7475
7574
  type index_FindInstagramHistoryAutoPostDto = FindInstagramHistoryAutoPostDto;
7476
7575
  type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
7576
+ type index_FindInstagramHistoryBlockUserDto = FindInstagramHistoryBlockUserDto;
7477
7577
  type index_FindInstagramHistoryChangeDto = FindInstagramHistoryChangeDto;
7478
7578
  type index_FindInstagramHistoryCreateDto = FindInstagramHistoryCreateDto;
7479
7579
  type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
7580
+ type index_FindInstagramReportInteractBlockUserDto = FindInstagramReportInteractBlockUserDto;
7480
7581
  type index_FindInstagramReportInteractExploreDto = FindInstagramReportInteractExploreDto;
7481
7582
  type index_FindInstagramReportInteractFollowDto = FindInstagramReportInteractFollowDto;
7482
7583
  type index_FindInstagramReportInteractReelDto = FindInstagramReportInteractReelDto;
@@ -7488,6 +7589,7 @@ type index_FindInstagramReportPostNewDto = FindInstagramReportPostNewDto;
7488
7589
  type index_FindInstagramReportPostReelDto = FindInstagramReportPostReelDto;
7489
7590
  type index_FindInstagramReportPostSquareDto = FindInstagramReportPostSquareDto;
7490
7591
  type index_FindInstagramReportPostStoryDto = FindInstagramReportPostStoryDto;
7592
+ type index_FindInstagramSettingInteractBlockUser = FindInstagramSettingInteractBlockUser;
7491
7593
  type index_FindInstagramSettingInteractExploreDto = FindInstagramSettingInteractExploreDto;
7492
7594
  type index_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
7493
7595
  type index_FindInstagramSettingInteractReelDto = FindInstagramSettingInteractReelDto;
@@ -7504,6 +7606,7 @@ type index_FindOverViewDepartmentDto = FindOverViewDepartmentDto;
7504
7606
  type index_FindOverViewDeviceDto = FindOverViewDeviceDto;
7505
7607
  type index_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
7506
7608
  type index_FindOverViewInstagramAccountRunDto = FindOverViewInstagramAccountRunDto;
7609
+ type index_FindOverViewInstagramReportInteractBlockUserDto = FindOverViewInstagramReportInteractBlockUserDto;
7507
7610
  type index_FindOverViewInstagramReportInteractExploreDto = FindOverViewInstagramReportInteractExploreDto;
7508
7611
  type index_FindOverViewInstagramReportInteractFollowDto = FindOverViewInstagramReportInteractFollowDto;
7509
7612
  type index_FindOverViewInstagramReportInteractReelDto = FindOverViewInstagramReportInteractReelDto;
@@ -7546,6 +7649,7 @@ type index_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
7546
7649
  type index_FindOverviewAccountVPNDto = FindOverviewAccountVPNDto;
7547
7650
  type index_FindOverviewInstagramHistoryAutoPostDto = FindOverviewInstagramHistoryAutoPostDto;
7548
7651
  type index_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
7652
+ type index_FindOverviewInstagramHistoryBlockUserDto = FindOverviewInstagramHistoryBlockUserDto;
7549
7653
  type index_FindOverviewInstagramHistoryChangeDto = FindOverviewInstagramHistoryChangeDto;
7550
7654
  type index_FindOverviewInstagramHistoryCreateDto = FindOverviewInstagramHistoryCreateDto;
7551
7655
  type index_FindOverviewInstagramHistoryGroupDto = FindOverviewInstagramHistoryGroupDto;
@@ -7629,7 +7733,7 @@ type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
7629
7733
  type index_UpdateTeamDto = UpdateTeamDto;
7630
7734
  type index_UpdateUserDto = UpdateUserDto;
7631
7735
  declare namespace index {
7632
- 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 };
7736
+ 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 };
7633
7737
  }
7634
7738
 
7635
- 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 };
7739
+ 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 };