automation-lib 5.1.254 → 5.1.256

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +615 -318
  2. package/dist/index.d.ts +615 -318
  3. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -1777,12 +1777,17 @@ interface IAccountAIContentGroup extends IBaseModel, ITrackingModel<IUser> {
1777
1777
  }
1778
1778
 
1779
1779
  interface IAccountAIContentChannel extends IBaseModel, ITrackingModel<IUser> {
1780
- model: EAIModelContent;
1781
1780
  name: string;
1782
1781
  url: string;
1783
1782
  color: string;
1784
- status: EStatusChannel;
1785
1783
  note: string;
1784
+ model: EAIModelContent;
1785
+ status: EStatusChannel;
1786
+ }
1787
+
1788
+ interface IAccountAIContentMemberAssigned extends IBaseModel, ITrackingModel<IUser> {
1789
+ accountAI: string | IAccountAIContent;
1790
+ member: string | IUser;
1786
1791
  }
1787
1792
 
1788
1793
  interface IAccountAIImageTag extends IBaseModel, ITrackingModel<IUser> {
@@ -1828,6 +1833,11 @@ interface IAccountAIImage extends IBaseModel, ITrackingModel<IUser> {
1828
1833
  status: EStatusActive;
1829
1834
  }
1830
1835
 
1836
+ interface IAccountAIImageMemberAssigned extends IBaseModel, ITrackingModel<IUser> {
1837
+ accountAI: string | IAccountAIImage;
1838
+ member: string | IUser;
1839
+ }
1840
+
1831
1841
  interface IAccountAIVoiceTag extends IBaseModel, ITrackingModel<IUser> {
1832
1842
  name: string;
1833
1843
  color: string;
@@ -1871,6 +1881,11 @@ interface IAccountAIVoice extends IBaseModel, ITrackingModel<IUser> {
1871
1881
  status: EStatusActive;
1872
1882
  }
1873
1883
 
1884
+ interface IAccountAIVoiceMemberAssigned extends IBaseModel, ITrackingModel<IUser> {
1885
+ accountAI: string | IAccountAIVoice;
1886
+ member: string | IUser;
1887
+ }
1888
+
1874
1889
  interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<IUser> {
1875
1890
  sheetImport: string | ISheetImport;
1876
1891
  sheetUrl: string;
@@ -1966,7 +1981,7 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
1966
1981
 
1967
1982
  interface IAccountVPSGroup extends IBaseModel, ITrackingModel<IUser> {
1968
1983
  name: string;
1969
- slug: string;
1984
+ description: string;
1970
1985
  }
1971
1986
 
1972
1987
  interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
@@ -1978,9 +1993,9 @@ interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
1978
1993
  displayName: string;
1979
1994
  isActive: boolean;
1980
1995
  status: EStatusVPS;
1981
- note: string;
1982
1996
  timeLastUsed: Date;
1983
1997
  lastUserUsed: string | IUser;
1998
+ note: string;
1984
1999
  }
1985
2000
 
1986
2001
  interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
@@ -3647,8 +3662,7 @@ interface ITaskAIImageCanvaThreads extends IBaseModel, ITrackingModel<IUser> {
3647
3662
  sheetName: string;
3648
3663
  rowID: string;
3649
3664
  row: number;
3650
- typeSocial: ETypeSocial;
3651
- accountSocial: string | IAccountSocialBase;
3665
+ accountSocial: string | IThreadsAccountRun;
3652
3666
  typeRatioImage: ETypeRatioImage;
3653
3667
  channelImage: string | IAccountAIImageChannel;
3654
3668
  accountAIImageInfo: string | IAccountAIImageInfo;
@@ -3670,8 +3684,7 @@ interface ITaskAIImageCanvaInstagram extends IBaseModel, ITrackingModel<IUser> {
3670
3684
  sheetName: string;
3671
3685
  rowID: string;
3672
3686
  row: number;
3673
- typeSocial: ETypeSocial;
3674
- accountSocial: string | IAccountSocialBase;
3687
+ accountSocial: string | IInstagramAccountRun;
3675
3688
  typeRatioImage: ETypeRatioImage;
3676
3689
  channelImage: string | IAccountAIImageChannel;
3677
3690
  accountAIImageInfo: string | IAccountAIImageInfo;
@@ -3693,8 +3706,7 @@ interface ITaskAIImageVoiceCanvaThreads extends IBaseModel, ITrackingModel<IUser
3693
3706
  sheetName: string;
3694
3707
  rowID: string;
3695
3708
  row: number;
3696
- typeSocial: ETypeSocial;
3697
- accountSocial: string | IAccountSocialBase;
3709
+ accountSocial: string | IThreadsAccountRun;
3698
3710
  typeRatioImage: ETypeRatioImage;
3699
3711
  channelImage: string | IAccountAIImageChannel;
3700
3712
  accountAIImageInfo: string | IAccountAIImageInfo;
@@ -3759,8 +3771,7 @@ interface ITaskAIImageVoiceCanvaInstagram extends IBaseModel, ITrackingModel<IUs
3759
3771
  sheetName: string;
3760
3772
  rowID: string;
3761
3773
  row: number;
3762
- typeSocial: ETypeSocial;
3763
- accountSocial: string | IAccountSocialBase;
3774
+ accountSocial: string | IInstagramAccountRun;
3764
3775
  typeRatioImage: ETypeRatioImage;
3765
3776
  channelImage: string | IAccountAIImageChannel;
3766
3777
  accountAIImageInfo: string | IAccountAIImageInfo;
@@ -3863,16 +3874,19 @@ type index$5_IAccountAIContent = IAccountAIContent;
3863
3874
  type index$5_IAccountAIContentChannel = IAccountAIContentChannel;
3864
3875
  type index$5_IAccountAIContentGroup = IAccountAIContentGroup;
3865
3876
  type index$5_IAccountAIContentInfo = IAccountAIContentInfo;
3877
+ type index$5_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
3866
3878
  type index$5_IAccountAIContentTag = IAccountAIContentTag;
3867
3879
  type index$5_IAccountAIImage = IAccountAIImage;
3868
3880
  type index$5_IAccountAIImageChannel = IAccountAIImageChannel;
3869
3881
  type index$5_IAccountAIImageGroup = IAccountAIImageGroup;
3870
3882
  type index$5_IAccountAIImageInfo = IAccountAIImageInfo;
3883
+ type index$5_IAccountAIImageMemberAssigned = IAccountAIImageMemberAssigned;
3871
3884
  type index$5_IAccountAIImageTag = IAccountAIImageTag;
3872
3885
  type index$5_IAccountAIVoice = IAccountAIVoice;
3873
3886
  type index$5_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
3874
3887
  type index$5_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
3875
3888
  type index$5_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
3889
+ type index$5_IAccountAIVoiceMemberAssigned = IAccountAIVoiceMemberAssigned;
3876
3890
  type index$5_IAccountAIVoiceTag = IAccountAIVoiceTag;
3877
3891
  type index$5_IAccountCHPlayICloud = IAccountCHPlayICloud;
3878
3892
  type index$5_IAccountCanva = IAccountCanva;
@@ -3912,7 +3926,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
3912
3926
  type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
3913
3927
  type index$5_IVoiceStores = IVoiceStores;
3914
3928
  declare namespace index$5 {
3915
- export type { index$5_IAccountAIContent as IAccountAIContent, index$5_IAccountAIContentChannel as IAccountAIContentChannel, index$5_IAccountAIContentGroup as IAccountAIContentGroup, index$5_IAccountAIContentInfo as IAccountAIContentInfo, index$5_IAccountAIContentTag as IAccountAIContentTag, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountCHPlayICloud as IAccountCHPlayICloud, index$5_IAccountCanva as IAccountCanva, index$5_IAccountDrive as IAccountDrive, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountVPN as IAccountVPN, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IDevice as IDevice, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, index$5_IDeviceSettingForProxy as IDeviceSettingForProxy, index$5_IDeviceSettingForVPN as IDeviceSettingForVPN, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAIContent as ITaskAIContent, index$5_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, index$5_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, index$5_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, index$5_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
3929
+ export type { index$5_IAccountAIContent as IAccountAIContent, index$5_IAccountAIContentChannel as IAccountAIContentChannel, index$5_IAccountAIContentGroup as IAccountAIContentGroup, index$5_IAccountAIContentInfo as IAccountAIContentInfo, index$5_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, index$5_IAccountAIContentTag as IAccountAIContentTag, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountCHPlayICloud as IAccountCHPlayICloud, index$5_IAccountCanva as IAccountCanva, index$5_IAccountDrive as IAccountDrive, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountVPN as IAccountVPN, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IDevice as IDevice, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, index$5_IDeviceSettingForProxy as IDeviceSettingForProxy, index$5_IDeviceSettingForVPN as IDeviceSettingForVPN, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAIContent as ITaskAIContent, index$5_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, index$5_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, index$5_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, index$5_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
3916
3930
  }
3917
3931
 
3918
3932
  interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
@@ -4009,16 +4023,19 @@ type index$2_IAccountAIContent = IAccountAIContent;
4009
4023
  type index$2_IAccountAIContentChannel = IAccountAIContentChannel;
4010
4024
  type index$2_IAccountAIContentGroup = IAccountAIContentGroup;
4011
4025
  type index$2_IAccountAIContentInfo = IAccountAIContentInfo;
4026
+ type index$2_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
4012
4027
  type index$2_IAccountAIContentTag = IAccountAIContentTag;
4013
4028
  type index$2_IAccountAIImage = IAccountAIImage;
4014
4029
  type index$2_IAccountAIImageChannel = IAccountAIImageChannel;
4015
4030
  type index$2_IAccountAIImageGroup = IAccountAIImageGroup;
4016
4031
  type index$2_IAccountAIImageInfo = IAccountAIImageInfo;
4032
+ type index$2_IAccountAIImageMemberAssigned = IAccountAIImageMemberAssigned;
4017
4033
  type index$2_IAccountAIImageTag = IAccountAIImageTag;
4018
4034
  type index$2_IAccountAIVoice = IAccountAIVoice;
4019
4035
  type index$2_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
4020
4036
  type index$2_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
4021
4037
  type index$2_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
4038
+ type index$2_IAccountAIVoiceMemberAssigned = IAccountAIVoiceMemberAssigned;
4022
4039
  type index$2_IAccountAIVoiceTag = IAccountAIVoiceTag;
4023
4040
  type index$2_IAccountCHPlayICloud = IAccountCHPlayICloud;
4024
4041
  type index$2_IAccountCanva = IAccountCanva;
@@ -4171,7 +4188,7 @@ type index$2_IVoiceLanguage = IVoiceLanguage;
4171
4188
  type index$2_IVoiceSettingDelay = IVoiceSettingDelay;
4172
4189
  type index$2_IVoiceStores = IVoiceStores;
4173
4190
  declare namespace index$2 {
4174
- export { index$3 as Auth, index$9 as Common, index$8 as Forum, 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_IDepartmentMember as IDepartmentMember, 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_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_IInstagramHistoryFollow as IInstagramHistoryFollow, 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_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_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ISocialTaskManager as ISocialTaskManager, type index$2_ITag as ITag, type index$2_ITaskAIContent as ITaskAIContent, type index$2_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$2_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$2_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$2_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$2_ITaskAIItemAction as ITaskAIItemAction, type index$2_ITaskAIItemGroup as ITaskAIItemGroup, type index$2_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$2_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$2_ITaskInstagramFollow as ITaskInstagramFollow, type index$2_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$2_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$2_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$2_ITaskInstagramPost as ITaskInstagramPost, type index$2_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$2_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, 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_ITaskThreadsFollow as ITaskThreadsFollow, type index$2_ITaskThreadsPost as ITaskThreadsPost, type index$2_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$2_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, 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$a as Permission, index$6 as Socials, index$5 as Tool, index$7 as Workspace };
4191
+ export { index$3 as Auth, index$9 as Common, index$8 as Forum, 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_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, 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_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, 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_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, 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_IDepartmentMember as IDepartmentMember, 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_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_IInstagramHistoryFollow as IInstagramHistoryFollow, 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_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_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$2_ISheetWorkManager as ISheetWorkManager, type index$2_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$2_ISheetWorksCategory as ISheetWorksCategory, type index$2_ISheetsTool as ISheetsTool, type index$2_ISocialTaskManager as ISocialTaskManager, type index$2_ITag as ITag, type index$2_ITaskAIContent as ITaskAIContent, type index$2_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$2_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$2_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$2_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$2_ITaskAIItemAction as ITaskAIItemAction, type index$2_ITaskAIItemGroup as ITaskAIItemGroup, type index$2_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$2_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$2_ITaskInstagramFollow as ITaskInstagramFollow, type index$2_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$2_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$2_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$2_ITaskInstagramPost as ITaskInstagramPost, type index$2_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$2_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, 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_ITaskThreadsFollow as ITaskThreadsFollow, type index$2_ITaskThreadsPost as ITaskThreadsPost, type index$2_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$2_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, 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$a as Permission, index$6 as Socials, index$5 as Tool, index$7 as Workspace };
4175
4192
  }
4176
4193
 
4177
4194
  interface IDataUser {
@@ -4236,12 +4253,12 @@ interface IFindBaseDto {
4236
4253
  updatedByName: string;
4237
4254
  }
4238
4255
  interface IFilterBaseDto {
4239
- team: string | string[];
4240
- leader: string | string[];
4241
- department: string | string[];
4242
- user: string | string[];
4243
- createdBy: string | string[];
4244
- updatedBy: string | string[];
4256
+ team: string[];
4257
+ leader: string[];
4258
+ department: string[];
4259
+ user: string[];
4260
+ createdBy: string[];
4261
+ updatedBy: string[];
4245
4262
  createdAt: [Date, Date];
4246
4263
  updatedAt: [Date, Date];
4247
4264
  }
@@ -4318,6 +4335,14 @@ interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup
4318
4335
  emailRecover: string;
4319
4336
  }
4320
4337
  interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4338
+ team: string[];
4339
+ leader: string[];
4340
+ department: string[];
4341
+ user: string[];
4342
+ createdBy: string[];
4343
+ updatedBy: string[];
4344
+ createdAt: [Date, Date];
4345
+ updatedAt: [Date, Date];
4321
4346
  idea: string[];
4322
4347
  niche: string[];
4323
4348
  type: ETypeManagerWorkClassify[];
@@ -4348,12 +4373,12 @@ interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAut
4348
4373
  emailRecover: string;
4349
4374
  }
4350
4375
  interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4351
- team: string | string[];
4352
- leader: string | string[];
4353
- department: string | string[];
4354
- user: string | string[];
4355
- createdBy: string | string[];
4356
- updatedBy: string | string[];
4376
+ team: string[];
4377
+ leader: string[];
4378
+ department: string[];
4379
+ user: string[];
4380
+ createdBy: string[];
4381
+ updatedBy: string[];
4357
4382
  createdAt: [Date, Date];
4358
4383
  updatedAt: [Date, Date];
4359
4384
  idea: string[];
@@ -4386,6 +4411,14 @@ interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreat
4386
4411
  emailRecover: string;
4387
4412
  }
4388
4413
  interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4414
+ team: string[];
4415
+ leader: string[];
4416
+ department: string[];
4417
+ user: string[];
4418
+ createdBy: string[];
4419
+ updatedBy: string[];
4420
+ createdAt: [Date, Date];
4421
+ updatedAt: [Date, Date];
4389
4422
  idea: string[];
4390
4423
  niche: string[];
4391
4424
  type: ETypeManagerWorkClassify[];
@@ -4416,6 +4449,14 @@ interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChang
4416
4449
  emailRecover: string;
4417
4450
  }
4418
4451
  interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4452
+ team: string[];
4453
+ leader: string[];
4454
+ department: string[];
4455
+ user: string[];
4456
+ createdBy: string[];
4457
+ updatedBy: string[];
4458
+ createdAt: [Date, Date];
4459
+ updatedAt: [Date, Date];
4419
4460
  idea: string[];
4420
4461
  niche: string[];
4421
4462
  type: ETypeManagerWorkClassify[];
@@ -4746,12 +4787,12 @@ interface FindThreadsHistoryAutoPostDto extends IFindBaseDto, IThreadsHistoryAut
4746
4787
  account: string;
4747
4788
  }
4748
4789
  interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4749
- team: string | string[];
4750
- leader: string | string[];
4751
- department: string | string[];
4752
- user: string | string[];
4753
- createdBy: string | string[];
4754
- updatedBy: string | string[];
4790
+ team: string[];
4791
+ leader: string[];
4792
+ department: string[];
4793
+ user: string[];
4794
+ createdBy: string[];
4795
+ updatedBy: string[];
4755
4796
  createdAt: [Date, Date];
4756
4797
  updatedAt: [Date, Date];
4757
4798
  idea: string[];
@@ -4797,6 +4838,14 @@ interface FindThreadsReportPostDto extends IFindBaseDto, IThreadsReportPost {
4797
4838
  account: string;
4798
4839
  }
4799
4840
  interface FilterThreadsReportPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4841
+ team: string[];
4842
+ leader: string[];
4843
+ department: string[];
4844
+ user: string[];
4845
+ createdBy: string[];
4846
+ updatedBy: string[];
4847
+ createdAt: [Date, Date];
4848
+ updatedAt: [Date, Date];
4800
4849
  idea: string[];
4801
4850
  niche: string[];
4802
4851
  type: ETypeManagerWorkClassify[];
@@ -4840,12 +4889,12 @@ interface FindThreadsReportInteractFollowDto extends IFindBaseDto, IThreadsRepor
4840
4889
  account: string;
4841
4890
  }
4842
4891
  interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4843
- team: string | string[];
4844
- leader: string | string[];
4845
- department: string | string[];
4846
- user: string | string[];
4847
- createdBy: string | string[];
4848
- updatedBy: string | string[];
4892
+ team: string[];
4893
+ leader: string[];
4894
+ department: string[];
4895
+ user: string[];
4896
+ createdBy: string[];
4897
+ updatedBy: string[];
4849
4898
  createdAt: [Date, Date];
4850
4899
  updatedAt: [Date, Date];
4851
4900
  idea: string[];
@@ -4891,12 +4940,12 @@ interface FindThreadsReportInteractReplyCommentDto extends IFindBaseDto, IThread
4891
4940
  account: string;
4892
4941
  }
4893
4942
  interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4894
- team: string | string[];
4895
- leader: string | string[];
4896
- department: string | string[];
4897
- user: string | string[];
4898
- createdBy: string | string[];
4899
- updatedBy: string | string[];
4943
+ team: string[];
4944
+ leader: string[];
4945
+ department: string[];
4946
+ user: string[];
4947
+ createdBy: string[];
4948
+ updatedBy: string[];
4900
4949
  createdAt: [Date, Date];
4901
4950
  updatedAt: [Date, Date];
4902
4951
  idea: string[];
@@ -4942,12 +4991,12 @@ interface FindThreadsReportInteractReplyMessageDto extends IFindBaseDto, IThread
4942
4991
  account: string;
4943
4992
  }
4944
4993
  interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4945
- team: string | string[];
4946
- leader: string | string[];
4947
- department: string | string[];
4948
- user: string | string[];
4949
- createdBy: string | string[];
4950
- updatedBy: string | string[];
4994
+ team: string[];
4995
+ leader: string[];
4996
+ department: string[];
4997
+ user: string[];
4998
+ createdBy: string[];
4999
+ updatedBy: string[];
4951
5000
  createdAt: [Date, Date];
4952
5001
  updatedAt: [Date, Date];
4953
5002
  idea: string[];
@@ -4969,6 +5018,14 @@ interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
4969
5018
  account: string;
4970
5019
  }
4971
5020
  interface FilterThreadsSettingPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5021
+ team: string[];
5022
+ leader: string[];
5023
+ department: string[];
5024
+ user: string[];
5025
+ createdBy: string[];
5026
+ updatedBy: string[];
5027
+ createdAt: [Date, Date];
5028
+ updatedAt: [Date, Date];
4972
5029
  idea: string[];
4973
5030
  niche: string[];
4974
5031
  type: ETypeManagerWorkClassify[];
@@ -4988,12 +5045,12 @@ interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSett
4988
5045
  account: string;
4989
5046
  }
4990
5047
  interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4991
- team: string | string[];
4992
- leader: string | string[];
4993
- department: string | string[];
4994
- user: string | string[];
4995
- createdBy: string | string[];
4996
- updatedBy: string | string[];
5048
+ team: string[];
5049
+ leader: string[];
5050
+ department: string[];
5051
+ user: string[];
5052
+ createdBy: string[];
5053
+ updatedBy: string[];
4997
5054
  createdAt: [Date, Date];
4998
5055
  updatedAt: [Date, Date];
4999
5056
  idea: string[];
@@ -5015,12 +5072,12 @@ interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSe
5015
5072
  account: string;
5016
5073
  }
5017
5074
  interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5018
- team: string | string[];
5019
- leader: string | string[];
5020
- department: string | string[];
5021
- user: string | string[];
5022
- createdBy: string | string[];
5023
- updatedBy: string | string[];
5075
+ team: string[];
5076
+ leader: string[];
5077
+ department: string[];
5078
+ user: string[];
5079
+ createdBy: string[];
5080
+ updatedBy: string[];
5024
5081
  createdAt: [Date, Date];
5025
5082
  updatedAt: [Date, Date];
5026
5083
  idea: string[];
@@ -5042,12 +5099,12 @@ interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThrea
5042
5099
  account: string;
5043
5100
  }
5044
5101
  interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5045
- team: string | string[];
5046
- leader: string | string[];
5047
- department: string | string[];
5048
- user: string | string[];
5049
- createdBy: string | string[];
5050
- updatedBy: string | string[];
5102
+ team: string[];
5103
+ leader: string[];
5104
+ department: string[];
5105
+ user: string[];
5106
+ createdBy: string[];
5107
+ updatedBy: string[];
5051
5108
  createdAt: [Date, Date];
5052
5109
  updatedAt: [Date, Date];
5053
5110
  idea: string[];
@@ -5069,12 +5126,12 @@ interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThrea
5069
5126
  account: string;
5070
5127
  }
5071
5128
  interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5072
- team: string | string[];
5073
- leader: string | string[];
5074
- department: string | string[];
5075
- user: string | string[];
5076
- createdBy: string | string[];
5077
- updatedBy: string | string[];
5129
+ team: string[];
5130
+ leader: string[];
5131
+ department: string[];
5132
+ user: string[];
5133
+ createdBy: string[];
5134
+ updatedBy: string[];
5078
5135
  createdAt: [Date, Date];
5079
5136
  updatedAt: [Date, Date];
5080
5137
  idea: string[];
@@ -5119,6 +5176,14 @@ interface UpdateTaskThreadsPostDto extends Partial<ITaskThreadsPost> {
5119
5176
  interface FindTaskThreadsPostDto extends IFindBaseDto, ITaskThreadsPost {
5120
5177
  }
5121
5178
  interface FilterTaskThreadsPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5179
+ team: string[];
5180
+ leader: string[];
5181
+ department: string[];
5182
+ user: string[];
5183
+ createdBy: string[];
5184
+ updatedBy: string[];
5185
+ createdAt: [Date, Date];
5186
+ updatedAt: [Date, Date];
5122
5187
  idea: string[];
5123
5188
  niche: string[];
5124
5189
  type: ETypeManagerWorkClassify[];
@@ -5161,6 +5226,14 @@ interface UpdateTaskThreadsFollowDto extends Partial<ITaskThreadsFollow> {
5161
5226
  interface FindTaskThreadsFollowDto extends IFindBaseDto, ITaskThreadsFollow {
5162
5227
  }
5163
5228
  interface FilterTaskThreadsFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5229
+ team: string[];
5230
+ leader: string[];
5231
+ department: string[];
5232
+ user: string[];
5233
+ createdBy: string[];
5234
+ updatedBy: string[];
5235
+ createdAt: [Date, Date];
5236
+ updatedAt: [Date, Date];
5164
5237
  idea: string[];
5165
5238
  niche: string[];
5166
5239
  type: ETypeManagerWorkClassify[];
@@ -5203,12 +5276,12 @@ interface UpdateTaskThreadsReplyCommentDto extends Partial<ITaskThreadsReplyComm
5203
5276
  interface FindTaskThreadsReplyCommentDto extends IFindBaseDto, ITaskThreadsReplyComment {
5204
5277
  }
5205
5278
  interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5206
- team: string | string[];
5207
- leader: string | string[];
5208
- department: string | string[];
5209
- user: string | string[];
5210
- createdBy: string | string[];
5211
- updatedBy: string | string[];
5279
+ team: string[];
5280
+ leader: string[];
5281
+ department: string[];
5282
+ user: string[];
5283
+ createdBy: string[];
5284
+ updatedBy: string[];
5212
5285
  createdAt: [Date, Date];
5213
5286
  updatedAt: [Date, Date];
5214
5287
  idea: string[];
@@ -5253,12 +5326,12 @@ interface UpdateTaskThreadsReplyMessageDto extends Partial<ITaskThreadsReplyMess
5253
5326
  interface FindTaskThreadsReplyMessageDto extends IFindBaseDto, ITaskThreadsReplyMessage {
5254
5327
  }
5255
5328
  interface FilterTaskThreadsReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5256
- team: string | string[];
5257
- leader: string | string[];
5258
- department: string | string[];
5259
- user: string | string[];
5260
- createdBy: string | string[];
5261
- updatedBy: string | string[];
5329
+ team: string[];
5330
+ leader: string[];
5331
+ department: string[];
5332
+ user: string[];
5333
+ createdBy: string[];
5334
+ updatedBy: string[];
5262
5335
  createdAt: [Date, Date];
5263
5336
  updatedAt: [Date, Date];
5264
5337
  idea: string[];
@@ -5310,12 +5383,12 @@ interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistor
5310
5383
  emailRecover: string;
5311
5384
  }
5312
5385
  interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5313
- team: string | string[];
5314
- leader: string | string[];
5315
- department: string | string[];
5316
- user: string | string[];
5317
- createdBy: string | string[];
5318
- updatedBy: string | string[];
5386
+ team: string[];
5387
+ leader: string[];
5388
+ department: string[];
5389
+ user: string[];
5390
+ createdBy: string[];
5391
+ updatedBy: string[];
5319
5392
  createdAt: [Date, Date];
5320
5393
  updatedAt: [Date, Date];
5321
5394
  idea: string[];
@@ -5367,12 +5440,12 @@ interface FindInstagramHistoryChangeDto extends IFindBaseDto, IInstagramHistoryC
5367
5440
  emailRecover: string;
5368
5441
  }
5369
5442
  interface FilterInstagramHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5370
- team: string | string[];
5371
- leader: string | string[];
5372
- department: string | string[];
5373
- user: string | string[];
5374
- createdBy: string | string[];
5375
- updatedBy: string | string[];
5443
+ team: string[];
5444
+ leader: string[];
5445
+ department: string[];
5446
+ user: string[];
5447
+ createdBy: string[];
5448
+ updatedBy: string[];
5376
5449
  createdAt: [Date, Date];
5377
5450
  updatedAt: [Date, Date];
5378
5451
  idea: string[];
@@ -5424,12 +5497,12 @@ interface FindInstagramHistoryCreateDto extends IFindBaseDto, IInstagramHistoryC
5424
5497
  emailRecover: string;
5425
5498
  }
5426
5499
  interface FilterInstagramHistoryCreateDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5427
- team: string | string[];
5428
- leader: string | string[];
5429
- department: string | string[];
5430
- user: string | string[];
5431
- createdBy: string | string[];
5432
- updatedBy: string | string[];
5500
+ team: string[];
5501
+ leader: string[];
5502
+ department: string[];
5503
+ user: string[];
5504
+ createdBy: string[];
5505
+ updatedBy: string[];
5433
5506
  createdAt: [Date, Date];
5434
5507
  updatedAt: [Date, Date];
5435
5508
  idea: string[];
@@ -5481,12 +5554,12 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
5481
5554
  emailRecover: string;
5482
5555
  }
5483
5556
  interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5484
- team: string | string[];
5485
- leader: string | string[];
5486
- department: string | string[];
5487
- user: string | string[];
5488
- createdBy: string | string[];
5489
- updatedBy: string | string[];
5557
+ team: string[];
5558
+ leader: string[];
5559
+ department: string[];
5560
+ user: string[];
5561
+ createdBy: string[];
5562
+ updatedBy: string[];
5490
5563
  createdAt: [Date, Date];
5491
5564
  updatedAt: [Date, Date];
5492
5565
  idea: string[];
@@ -5920,12 +5993,12 @@ interface FindInstagramHistoryFollowDto extends IFindBaseDto, IInstagramHistoryF
5920
5993
  status: EStatusTaskScript;
5921
5994
  }
5922
5995
  interface FilterInstagramHistoryFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5923
- team: string | string[];
5924
- leader: string | string[];
5925
- department: string | string[];
5926
- user: string | string[];
5927
- createdBy: string | string[];
5928
- updatedBy: string | string[];
5996
+ team: string[];
5997
+ leader: string[];
5998
+ department: string[];
5999
+ user: string[];
6000
+ createdBy: string[];
6001
+ updatedBy: string[];
5929
6002
  createdAt: [Date, Date];
5930
6003
  updatedAt: [Date, Date];
5931
6004
  idea: string[];
@@ -5989,12 +6062,12 @@ interface FindInstagramHistoryAutoPostDto extends IFindBaseDto, IInstagramHistor
5989
6062
  status: EStatusTaskScript;
5990
6063
  }
5991
6064
  interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5992
- team: string | string[];
5993
- leader: string | string[];
5994
- department: string | string[];
5995
- user: string | string[];
5996
- createdBy: string | string[];
5997
- updatedBy: string | string[];
6065
+ team: string[];
6066
+ leader: string[];
6067
+ department: string[];
6068
+ user: string[];
6069
+ createdBy: string[];
6070
+ updatedBy: string[];
5998
6071
  createdAt: [Date, Date];
5999
6072
  updatedAt: [Date, Date];
6000
6073
  idea: string[];
@@ -6046,12 +6119,12 @@ interface FindInstagramHistoryBlockUserDto extends IFindBaseDto, IInstagramHisto
6046
6119
  status: EStatusTaskScript;
6047
6120
  }
6048
6121
  interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6049
- team: string | string[];
6050
- leader: string | string[];
6051
- department: string | string[];
6052
- user: string | string[];
6053
- createdBy: string | string[];
6054
- updatedBy: string | string[];
6122
+ team: string[];
6123
+ leader: string[];
6124
+ department: string[];
6125
+ user: string[];
6126
+ createdBy: string[];
6127
+ updatedBy: string[];
6055
6128
  createdAt: [Date, Date];
6056
6129
  updatedAt: [Date, Date];
6057
6130
  idea: string[];
@@ -6097,12 +6170,12 @@ interface FindInstagramReportPostHighLightDto extends IFindBaseDto, IInstagramRe
6097
6170
  account: string;
6098
6171
  }
6099
6172
  interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6100
- team: string | string[];
6101
- leader: string | string[];
6102
- department: string | string[];
6103
- user: string | string[];
6104
- createdBy: string | string[];
6105
- updatedBy: string | string[];
6173
+ team: string[];
6174
+ leader: string[];
6175
+ department: string[];
6176
+ user: string[];
6177
+ createdBy: string[];
6178
+ updatedBy: string[];
6106
6179
  createdAt: [Date, Date];
6107
6180
  updatedAt: [Date, Date];
6108
6181
  idea: string[];
@@ -6148,12 +6221,12 @@ interface FindInstagramReportPostNewDto extends IFindBaseDto, IInstagramReportPo
6148
6221
  account: string;
6149
6222
  }
6150
6223
  interface FilterInstagramReportPostNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6151
- team: string | string[];
6152
- leader: string | string[];
6153
- department: string | string[];
6154
- user: string | string[];
6155
- createdBy: string | string[];
6156
- updatedBy: string | string[];
6224
+ team: string[];
6225
+ leader: string[];
6226
+ department: string[];
6227
+ user: string[];
6228
+ createdBy: string[];
6229
+ updatedBy: string[];
6157
6230
  createdAt: [Date, Date];
6158
6231
  updatedAt: [Date, Date];
6159
6232
  idea: string[];
@@ -6199,12 +6272,12 @@ interface FindInstagramReportPostReelDto extends IFindBaseDto, IInstagramReportP
6199
6272
  account: string;
6200
6273
  }
6201
6274
  interface FilterInstagramReportPostReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6202
- team: string | string[];
6203
- leader: string | string[];
6204
- department: string | string[];
6205
- user: string | string[];
6206
- createdBy: string | string[];
6207
- updatedBy: string | string[];
6275
+ team: string[];
6276
+ leader: string[];
6277
+ department: string[];
6278
+ user: string[];
6279
+ createdBy: string[];
6280
+ updatedBy: string[];
6208
6281
  createdAt: [Date, Date];
6209
6282
  updatedAt: [Date, Date];
6210
6283
  idea: string[];
@@ -6250,12 +6323,12 @@ interface FindInstagramReportPostStoryDto extends IFindBaseDto, IInstagramReport
6250
6323
  account: string;
6251
6324
  }
6252
6325
  interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6253
- team: string | string[];
6254
- leader: string | string[];
6255
- department: string | string[];
6256
- user: string | string[];
6257
- createdBy: string | string[];
6258
- updatedBy: string | string[];
6326
+ team: string[];
6327
+ leader: string[];
6328
+ department: string[];
6329
+ user: string[];
6330
+ createdBy: string[];
6331
+ updatedBy: string[];
6259
6332
  createdAt: [Date, Date];
6260
6333
  updatedAt: [Date, Date];
6261
6334
  idea: string[];
@@ -6301,12 +6374,12 @@ interface FindInstagramReportPostSquareDto extends IFindBaseDto, IInstagramRepor
6301
6374
  account: string;
6302
6375
  }
6303
6376
  interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6304
- team: string | string[];
6305
- leader: string | string[];
6306
- department: string | string[];
6307
- user: string | string[];
6308
- createdBy: string | string[];
6309
- updatedBy: string | string[];
6377
+ team: string[];
6378
+ leader: string[];
6379
+ department: string[];
6380
+ user: string[];
6381
+ createdBy: string[];
6382
+ updatedBy: string[];
6310
6383
  createdAt: [Date, Date];
6311
6384
  updatedAt: [Date, Date];
6312
6385
  idea: string[];
@@ -6352,12 +6425,12 @@ interface FindInstagramReportInteractReplyCommentDto extends IFindBaseDto, IInst
6352
6425
  account: string;
6353
6426
  }
6354
6427
  interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6355
- team: string | string[];
6356
- leader: string | string[];
6357
- department: string | string[];
6358
- user: string | string[];
6359
- createdBy: string | string[];
6360
- updatedBy: string | string[];
6428
+ team: string[];
6429
+ leader: string[];
6430
+ department: string[];
6431
+ user: string[];
6432
+ createdBy: string[];
6433
+ updatedBy: string[];
6361
6434
  createdAt: [Date, Date];
6362
6435
  updatedAt: [Date, Date];
6363
6436
  idea: string[];
@@ -6403,12 +6476,12 @@ interface FindInstagramReportInteractReelDto extends IFindBaseDto, IInstagramRep
6403
6476
  account: string;
6404
6477
  }
6405
6478
  interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6406
- team: string | string[];
6407
- leader: string | string[];
6408
- department: string | string[];
6409
- user: string | string[];
6410
- createdBy: string | string[];
6411
- updatedBy: string | string[];
6479
+ team: string[];
6480
+ leader: string[];
6481
+ department: string[];
6482
+ user: string[];
6483
+ createdBy: string[];
6484
+ updatedBy: string[];
6412
6485
  createdAt: [Date, Date];
6413
6486
  updatedAt: [Date, Date];
6414
6487
  idea: string[];
@@ -6454,12 +6527,12 @@ interface FindInstagramReportInteractStoryDto extends IFindBaseDto, IInstagramRe
6454
6527
  account: string;
6455
6528
  }
6456
6529
  interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6457
- team: string | string[];
6458
- leader: string | string[];
6459
- department: string | string[];
6460
- user: string | string[];
6461
- createdBy: string | string[];
6462
- updatedBy: string | string[];
6530
+ team: string[];
6531
+ leader: string[];
6532
+ department: string[];
6533
+ user: string[];
6534
+ createdBy: string[];
6535
+ updatedBy: string[];
6463
6536
  createdAt: [Date, Date];
6464
6537
  updatedAt: [Date, Date];
6465
6538
  idea: string[];
@@ -6505,12 +6578,12 @@ interface FindInstagramReportInteractExploreDto extends IFindBaseDto, IInstagram
6505
6578
  account: string;
6506
6579
  }
6507
6580
  interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6508
- team: string | string[];
6509
- leader: string | string[];
6510
- department: string | string[];
6511
- user: string | string[];
6512
- createdBy: string | string[];
6513
- updatedBy: string | string[];
6581
+ team: string[];
6582
+ leader: string[];
6583
+ department: string[];
6584
+ user: string[];
6585
+ createdBy: string[];
6586
+ updatedBy: string[];
6514
6587
  createdAt: [Date, Date];
6515
6588
  updatedAt: [Date, Date];
6516
6589
  idea: string[];
@@ -6556,12 +6629,12 @@ interface FindInstagramReportInteractReplyMessageDto extends IFindBaseDto, IInst
6556
6629
  account: string;
6557
6630
  }
6558
6631
  interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6559
- team: string | string[];
6560
- leader: string | string[];
6561
- department: string | string[];
6562
- user: string | string[];
6563
- createdBy: string | string[];
6564
- updatedBy: string | string[];
6632
+ team: string[];
6633
+ leader: string[];
6634
+ department: string[];
6635
+ user: string[];
6636
+ createdBy: string[];
6637
+ updatedBy: string[];
6565
6638
  createdAt: [Date, Date];
6566
6639
  updatedAt: [Date, Date];
6567
6640
  idea: string[];
@@ -6607,12 +6680,12 @@ interface FindInstagramReportInteractFollowDto extends IFindBaseDto, IInstagramR
6607
6680
  account: string;
6608
6681
  }
6609
6682
  interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6610
- team: string | string[];
6611
- leader: string | string[];
6612
- department: string | string[];
6613
- user: string | string[];
6614
- createdBy: string | string[];
6615
- updatedBy: string | string[];
6683
+ team: string[];
6684
+ leader: string[];
6685
+ department: string[];
6686
+ user: string[];
6687
+ createdBy: string[];
6688
+ updatedBy: string[];
6616
6689
  createdAt: [Date, Date];
6617
6690
  updatedAt: [Date, Date];
6618
6691
  idea: string[];
@@ -6658,12 +6731,12 @@ interface FindInstagramReportInteractBlockUserDto extends IFindBaseDto, IInstagr
6658
6731
  account: string;
6659
6732
  }
6660
6733
  interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6661
- team: string | string[];
6662
- leader: string | string[];
6663
- department: string | string[];
6664
- user: string | string[];
6665
- createdBy: string | string[];
6666
- updatedBy: string | string[];
6734
+ team: string[];
6735
+ leader: string[];
6736
+ department: string[];
6737
+ user: string[];
6738
+ createdBy: string[];
6739
+ updatedBy: string[];
6667
6740
  createdAt: [Date, Date];
6668
6741
  updatedAt: [Date, Date];
6669
6742
  idea: string[];
@@ -6685,12 +6758,12 @@ interface FindInstagramSettingInteractExploreDto extends IFindBaseDto, IInstagra
6685
6758
  account: string;
6686
6759
  }
6687
6760
  interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6688
- team: string | string[];
6689
- leader: string | string[];
6690
- department: string | string[];
6691
- user: string | string[];
6692
- createdBy: string | string[];
6693
- updatedBy: string | string[];
6761
+ team: string[];
6762
+ leader: string[];
6763
+ department: string[];
6764
+ user: string[];
6765
+ createdBy: string[];
6766
+ updatedBy: string[];
6694
6767
  createdAt: [Date, Date];
6695
6768
  updatedAt: [Date, Date];
6696
6769
  idea: string[];
@@ -6712,12 +6785,12 @@ interface FindInstagramSettingInteractFollowDto extends IFindBaseDto, IInstagram
6712
6785
  account: string;
6713
6786
  }
6714
6787
  interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6715
- team: string | string[];
6716
- leader: string | string[];
6717
- department: string | string[];
6718
- user: string | string[];
6719
- createdBy: string | string[];
6720
- updatedBy: string | string[];
6788
+ team: string[];
6789
+ leader: string[];
6790
+ department: string[];
6791
+ user: string[];
6792
+ createdBy: string[];
6793
+ updatedBy: string[];
6721
6794
  createdAt: [Date, Date];
6722
6795
  updatedAt: [Date, Date];
6723
6796
  idea: string[];
@@ -6739,12 +6812,12 @@ interface FindInstagramSettingInteractReelDto extends IFindBaseDto, IInstagramSe
6739
6812
  account: string;
6740
6813
  }
6741
6814
  interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6742
- team: string | string[];
6743
- leader: string | string[];
6744
- department: string | string[];
6745
- user: string | string[];
6746
- createdBy: string | string[];
6747
- updatedBy: string | string[];
6815
+ team: string[];
6816
+ leader: string[];
6817
+ department: string[];
6818
+ user: string[];
6819
+ createdBy: string[];
6820
+ updatedBy: string[];
6748
6821
  createdAt: [Date, Date];
6749
6822
  updatedAt: [Date, Date];
6750
6823
  idea: string[];
@@ -6766,12 +6839,12 @@ interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto, IIns
6766
6839
  account: string;
6767
6840
  }
6768
6841
  interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6769
- team: string | string[];
6770
- leader: string | string[];
6771
- department: string | string[];
6772
- user: string | string[];
6773
- createdBy: string | string[];
6774
- updatedBy: string | string[];
6842
+ team: string[];
6843
+ leader: string[];
6844
+ department: string[];
6845
+ user: string[];
6846
+ createdBy: string[];
6847
+ updatedBy: string[];
6775
6848
  createdAt: [Date, Date];
6776
6849
  updatedAt: [Date, Date];
6777
6850
  idea: string[];
@@ -6793,12 +6866,12 @@ interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto, IIns
6793
6866
  account: string;
6794
6867
  }
6795
6868
  interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6796
- team: string | string[];
6797
- leader: string | string[];
6798
- department: string | string[];
6799
- user: string | string[];
6800
- createdBy: string | string[];
6801
- updatedBy: string | string[];
6869
+ team: string[];
6870
+ leader: string[];
6871
+ department: string[];
6872
+ user: string[];
6873
+ createdBy: string[];
6874
+ updatedBy: string[];
6802
6875
  createdAt: [Date, Date];
6803
6876
  updatedAt: [Date, Date];
6804
6877
  idea: string[];
@@ -6820,12 +6893,12 @@ interface FindInstagramSettingInteractStoryDto extends IFindBaseDto, IInstagramS
6820
6893
  account: string;
6821
6894
  }
6822
6895
  interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6823
- team: string | string[];
6824
- leader: string | string[];
6825
- department: string | string[];
6826
- user: string | string[];
6827
- createdBy: string | string[];
6828
- updatedBy: string | string[];
6896
+ team: string[];
6897
+ leader: string[];
6898
+ department: string[];
6899
+ user: string[];
6900
+ createdBy: string[];
6901
+ updatedBy: string[];
6829
6902
  createdAt: [Date, Date];
6830
6903
  updatedAt: [Date, Date];
6831
6904
  idea: string[];
@@ -6847,12 +6920,12 @@ interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto, IInstagr
6847
6920
  account: string;
6848
6921
  }
6849
6922
  interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6850
- team: string | string[];
6851
- leader: string | string[];
6852
- department: string | string[];
6853
- user: string | string[];
6854
- createdBy: string | string[];
6855
- updatedBy: string | string[];
6923
+ team: string[];
6924
+ leader: string[];
6925
+ department: string[];
6926
+ user: string[];
6927
+ createdBy: string[];
6928
+ updatedBy: string[];
6856
6929
  createdAt: [Date, Date];
6857
6930
  updatedAt: [Date, Date];
6858
6931
  idea: string[];
@@ -6874,6 +6947,14 @@ interface FindInstagramSettingPostDto extends IFindBaseDto, IInstagramSettingPos
6874
6947
  account: string;
6875
6948
  }
6876
6949
  interface FilterInstagramSettingPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6950
+ team: string[];
6951
+ leader: string[];
6952
+ department: string[];
6953
+ user: string[];
6954
+ createdBy: string[];
6955
+ updatedBy: string[];
6956
+ createdAt: [Date, Date];
6957
+ updatedAt: [Date, Date];
6877
6958
  idea: string[];
6878
6959
  niche: string[];
6879
6960
  type: ETypeManagerWorkClassify[];
@@ -6957,12 +7038,12 @@ interface UpdateTaskInstagramBlockUserDto extends Partial<ITaskInstagramBlockUse
6957
7038
  interface FindTaskInstagramBlockUserDto extends IFindBaseDto, ITaskInstagramBlockUser {
6958
7039
  }
6959
7040
  interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6960
- team: string | string[];
6961
- leader: string | string[];
6962
- department: string | string[];
6963
- user: string | string[];
6964
- createdBy: string | string[];
6965
- updatedBy: string | string[];
7041
+ team: string[];
7042
+ leader: string[];
7043
+ department: string[];
7044
+ user: string[];
7045
+ createdBy: string[];
7046
+ updatedBy: string[];
6966
7047
  createdAt: [Date, Date];
6967
7048
  updatedAt: [Date, Date];
6968
7049
  idea: string[];
@@ -7007,12 +7088,12 @@ interface UpdateTaskInstagramChangeInfoDto extends Partial<ITaskInstagramChangeI
7007
7088
  interface FindTaskInstagramChangeInfoDto extends IFindBaseDto, ITaskInstagramChangeInfo {
7008
7089
  }
7009
7090
  interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7010
- team: string | string[];
7011
- leader: string | string[];
7012
- department: string | string[];
7013
- user: string | string[];
7014
- createdBy: string | string[];
7015
- updatedBy: string | string[];
7091
+ team: string[];
7092
+ leader: string[];
7093
+ department: string[];
7094
+ user: string[];
7095
+ createdBy: string[];
7096
+ updatedBy: string[];
7016
7097
  createdAt: [Date, Date];
7017
7098
  updatedAt: [Date, Date];
7018
7099
  idea: string[];
@@ -7057,6 +7138,14 @@ interface UpdateTaskInstagramFollowDto extends Partial<ITaskInstagramFollow> {
7057
7138
  interface FindTaskInstagramFollowDto extends IFindBaseDto, ITaskInstagramFollow {
7058
7139
  }
7059
7140
  interface FilterTaskInstagramFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7141
+ team: string[];
7142
+ leader: string[];
7143
+ department: string[];
7144
+ user: string[];
7145
+ createdBy: string[];
7146
+ updatedBy: string[];
7147
+ createdAt: [Date, Date];
7148
+ updatedAt: [Date, Date];
7060
7149
  idea: string[];
7061
7150
  niche: string[];
7062
7151
  type: ETypeManagerWorkClassify[];
@@ -7099,12 +7188,12 @@ interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReply
7099
7188
  interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
7100
7189
  }
7101
7190
  interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7102
- team: string | string[];
7103
- leader: string | string[];
7104
- department: string | string[];
7105
- user: string | string[];
7106
- createdBy: string | string[];
7107
- updatedBy: string | string[];
7191
+ team: string[];
7192
+ leader: string[];
7193
+ department: string[];
7194
+ user: string[];
7195
+ createdBy: string[];
7196
+ updatedBy: string[];
7108
7197
  createdAt: [Date, Date];
7109
7198
  updatedAt: [Date, Date];
7110
7199
  idea: string[];
@@ -7149,12 +7238,12 @@ interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReply
7149
7238
  interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
7150
7239
  }
7151
7240
  interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7152
- team: string | string[];
7153
- leader: string | string[];
7154
- department: string | string[];
7155
- user: string | string[];
7156
- createdBy: string | string[];
7157
- updatedBy: string | string[];
7241
+ team: string[];
7242
+ leader: string[];
7243
+ department: string[];
7244
+ user: string[];
7245
+ createdBy: string[];
7246
+ updatedBy: string[];
7158
7247
  createdAt: [Date, Date];
7159
7248
  updatedAt: [Date, Date];
7160
7249
  idea: string[];
@@ -7199,6 +7288,14 @@ interface UpdateTaskInstagramPostDto extends Partial<ITaskInstagramPost> {
7199
7288
  interface FindTaskInstagramPostDto extends IFindBaseDto, ITaskInstagramPost {
7200
7289
  }
7201
7290
  interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7291
+ team: string[];
7292
+ leader: string[];
7293
+ department: string[];
7294
+ user: string[];
7295
+ createdBy: string[];
7296
+ updatedBy: string[];
7297
+ createdAt: [Date, Date];
7298
+ updatedAt: [Date, Date];
7202
7299
  idea: string[];
7203
7300
  niche: string[];
7204
7301
  type: ETypeManagerWorkClassify[];
@@ -7241,12 +7338,12 @@ interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramIn
7241
7338
  interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
7242
7339
  }
7243
7340
  interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7244
- team: string | string[];
7245
- leader: string | string[];
7246
- department: string | string[];
7247
- user: string | string[];
7248
- createdBy: string | string[];
7249
- updatedBy: string | string[];
7341
+ team: string[];
7342
+ leader: string[];
7343
+ department: string[];
7344
+ user: string[];
7345
+ createdBy: string[];
7346
+ updatedBy: string[];
7250
7347
  createdAt: [Date, Date];
7251
7348
  updatedAt: [Date, Date];
7252
7349
  idea: string[];
@@ -7291,12 +7388,12 @@ interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInter
7291
7388
  interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
7292
7389
  }
7293
7390
  interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7294
- team: string | string[];
7295
- leader: string | string[];
7296
- department: string | string[];
7297
- user: string | string[];
7298
- createdBy: string | string[];
7299
- updatedBy: string | string[];
7391
+ team: string[];
7392
+ leader: string[];
7393
+ department: string[];
7394
+ user: string[];
7395
+ createdBy: string[];
7396
+ updatedBy: string[];
7300
7397
  createdAt: [Date, Date];
7301
7398
  updatedAt: [Date, Date];
7302
7399
  idea: string[];
@@ -7341,12 +7438,12 @@ interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInte
7341
7438
  interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
7342
7439
  }
7343
7440
  interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7344
- team: string | string[];
7345
- leader: string | string[];
7346
- department: string | string[];
7347
- user: string | string[];
7348
- createdBy: string | string[];
7349
- updatedBy: string | string[];
7441
+ team: string[];
7442
+ leader: string[];
7443
+ department: string[];
7444
+ user: string[];
7445
+ createdBy: string[];
7446
+ updatedBy: string[];
7350
7447
  createdAt: [Date, Date];
7351
7448
  updatedAt: [Date, Date];
7352
7449
  idea: string[];
@@ -7359,12 +7456,12 @@ interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBas
7359
7456
  }
7360
7457
 
7361
7458
  interface FilterInstagramDashboardFollowerDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7362
- team: string | string[];
7363
- leader: string | string[];
7364
- department: string | string[];
7365
- user: string | string[];
7366
- createdBy: string | string[];
7367
- updatedBy: string | string[];
7459
+ team: string[];
7460
+ leader: string[];
7461
+ department: string[];
7462
+ user: string[];
7463
+ createdBy: string[];
7464
+ updatedBy: string[];
7368
7465
  createdAt: [Date, Date];
7369
7466
  updatedAt: [Date, Date];
7370
7467
  idea: string[];
@@ -7495,6 +7592,10 @@ interface FindManagerSheetDto extends IFindBaseDto, IManagerSheet {
7495
7592
  }>;
7496
7593
  }
7497
7594
  interface FilterManagerSheetDto extends IFilterBaseDto {
7595
+ ideas: string[];
7596
+ niche: string[];
7597
+ typeSocial: ETypeSocial[];
7598
+ isActive: boolean;
7498
7599
  }
7499
7600
 
7500
7601
  interface FindManagerImageAIDto extends IFindBaseDto, IManagerImageAI {
@@ -7542,6 +7643,7 @@ interface FindAccountEmailDto extends IFindBaseDto, IAccountEmail {
7542
7643
  };
7543
7644
  }
7544
7645
  interface FilterAccountEmailDto extends IFilterBaseDto {
7646
+ status: EStatusEmail[];
7545
7647
  }
7546
7648
 
7547
7649
  interface FindAccountAIVoiceDto extends IFindBaseDto, IAccountAIVoice {
@@ -7553,21 +7655,32 @@ interface FindAccountAIVoiceDto extends IFindBaseDto, IAccountAIVoice {
7553
7655
  }>;
7554
7656
  }
7555
7657
  interface FilterAccountAIVoiceDto extends IFilterBaseDto {
7658
+ idea: string[];
7659
+ niche: string[];
7660
+ subNiche: string[];
7661
+ membersAssigned: string[];
7662
+ status: EStatusActive[];
7556
7663
  }
7557
7664
 
7558
7665
  interface FindAccountAIVoiceInfoDto extends IFindBaseDto, IAccountAIVoiceInfo {
7559
7666
  }
7560
7667
  interface FilterAccountAIVoiceInfoDto extends IFilterBaseDto {
7668
+ model: EAIModelVoice[];
7669
+ status: EStatusAccountAI[];
7561
7670
  }
7562
7671
 
7563
7672
  interface FindAccountAIVoiceChannelDto extends IFindBaseDto, IAccountAIVoiceChannel {
7564
7673
  }
7565
7674
  interface FilterAccountAIVoiceChannelDto extends IFilterBaseDto {
7675
+ status: EStatusChannel[];
7566
7676
  }
7567
7677
 
7568
7678
  interface FindHistoryTaskAIVoiceDto extends IFindBaseDto, IHistoryTaskAIVoice {
7569
7679
  }
7570
7680
  interface FilterHistoryTaskAIVoiceDto extends IFilterBaseDto {
7681
+ typeSocial: ETypeSocial[];
7682
+ accountSocial: string[];
7683
+ status: EStatusTaskVoice[];
7571
7684
  }
7572
7685
 
7573
7686
  interface FindAccountAIImageDto extends IFindBaseDto, IAccountAIImage {
@@ -7579,21 +7692,33 @@ interface FindAccountAIImageDto extends IFindBaseDto, IAccountAIImage {
7579
7692
  }>;
7580
7693
  }
7581
7694
  interface FilterAccountAIImageDto extends IFilterBaseDto {
7695
+ idea: string[];
7696
+ niche: string[];
7697
+ subNiche: string[];
7698
+ membersAssigned: string[];
7699
+ status: EStatusActive[];
7582
7700
  }
7583
7701
 
7584
7702
  interface FindAccountAIImageInfoDto extends IFindBaseDto, IAccountAIImageInfo {
7585
7703
  }
7586
7704
  interface FilterAccountAIImageInfoDto extends IFilterBaseDto {
7705
+ model: EAIModelImage[];
7706
+ status: EStatusAccountAI[];
7587
7707
  }
7588
7708
 
7589
7709
  interface FindAccountAIImageChannelDto extends IFindBaseDto, IAccountAIImageChannel {
7590
7710
  }
7591
7711
  interface FilterAccountAIImageChannelDto extends IFilterBaseDto {
7712
+ model: EAIModelImage[];
7713
+ status: EStatusChannel[];
7592
7714
  }
7593
7715
 
7594
7716
  interface FindHistoryTaskAIImageDto extends IFindBaseDto, IHistoryTaskAIImage {
7595
7717
  }
7596
7718
  interface FilterHistoryTaskAIImageDto extends IFilterBaseDto {
7719
+ typeSocial: ETypeSocial[];
7720
+ accountSocial: string[];
7721
+ status: EStatusTaskImage[];
7597
7722
  }
7598
7723
 
7599
7724
  interface FindAccountAIContentDto extends IFindBaseDto, IAccountAIContent {
@@ -7605,26 +7730,44 @@ interface FindAccountAIContentDto extends IFindBaseDto, IAccountAIContent {
7605
7730
  }>;
7606
7731
  }
7607
7732
  interface FilterAccountAIContentDto extends IFilterBaseDto {
7733
+ idea: string[];
7734
+ niche: string[];
7735
+ subNiche: string[];
7736
+ membersAssigned: string[];
7737
+ status: EStatusActive[];
7608
7738
  }
7609
7739
 
7610
7740
  interface FindAccountAIContentInfoDto extends IFindBaseDto, IAccountAIContentInfo {
7611
7741
  }
7612
7742
  interface FilterAccountAIContentInfoDto extends IFilterBaseDto {
7743
+ model: EAIModelContent[];
7744
+ status: EStatusAccountAI[];
7613
7745
  }
7614
7746
 
7615
7747
  interface FindAccountAIContentChannelDto extends IFindBaseDto, IAccountAIContentChannel {
7616
7748
  }
7617
7749
  interface FilterAccountAIContentChannelDto extends IFilterBaseDto {
7750
+ model: EAIModelContent[];
7751
+ status: EStatusChannel[];
7618
7752
  }
7619
7753
 
7620
7754
  interface FindHistoryTaskAIContentDto extends IFindBaseDto, IHistoryTaskAIContent {
7621
7755
  }
7622
7756
  interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
7757
+ status: EStatusTaskAIContent[];
7623
7758
  }
7624
7759
 
7625
7760
  interface FindHistoryTaskCanvaDto extends IFindBaseDto, IHistoryTaskCanva {
7626
7761
  }
7627
7762
  interface FilterHistoryTaskCanvaDto extends IFilterBaseDto {
7763
+ team: string[];
7764
+ leader: string[];
7765
+ department: string[];
7766
+ user: string[];
7767
+ createdBy: string[];
7768
+ updatedBy: string[];
7769
+ createdAt: [Date, Date];
7770
+ updatedAt: [Date, Date];
7628
7771
  typeSocial: ETypeSocial[];
7629
7772
  status: EStatusTaskCanva[];
7630
7773
  }
@@ -7656,10 +7799,19 @@ interface FindOverviewAccountCanvaDto {
7656
7799
  };
7657
7800
  }
7658
7801
  interface FilterAccountCanvaDto extends IFilterBaseDto {
7802
+ team: string[];
7803
+ leader: string[];
7804
+ department: string[];
7805
+ user: string[];
7806
+ createdBy: string[];
7807
+ updatedBy: string[];
7808
+ createdAt: [Date, Date];
7809
+ updatedAt: [Date, Date];
7810
+ timeLastUsed: Date[];
7811
+ lastUserUsed: string[];
7812
+ status: EStatusAccountCanva[];
7659
7813
  }
7660
7814
 
7661
- interface FilterAccountDriveDto extends IFilterBaseDto {
7662
- }
7663
7815
  interface FindAccountDriveDto extends IFindBaseDto, IAccountDrive {
7664
7816
  }
7665
7817
  interface FindOverviewAccountDriveDto {
@@ -7684,6 +7836,19 @@ interface FindOverviewAccountDriveDto {
7684
7836
  percentage: number;
7685
7837
  };
7686
7838
  }
7839
+ interface FilterAccountDriveDto extends IFilterBaseDto {
7840
+ team: string[];
7841
+ leader: string[];
7842
+ department: string[];
7843
+ user: string[];
7844
+ createdBy: string[];
7845
+ updatedBy: string[];
7846
+ createdAt: [Date, Date];
7847
+ updatedAt: [Date, Date];
7848
+ timeLastUsed: Date[];
7849
+ lastUserUsed: string[];
7850
+ status: EStatusAccountDrive[];
7851
+ }
7687
7852
 
7688
7853
  interface CreateProxyDto extends Partial<IProxy> {
7689
7854
  proxyString: string;
@@ -7710,11 +7875,6 @@ interface FindDeviceAvailableForAddProxyDto {
7710
7875
  isMax: boolean;
7711
7876
  isChecked: boolean;
7712
7877
  }
7713
- interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
7714
- pcName: string[];
7715
- devicesName: string[];
7716
- devicesOS: string[];
7717
- }
7718
7878
  interface FindOverviewProxyDto {
7719
7879
  totalProxies: {
7720
7880
  total: number;
@@ -7745,15 +7905,53 @@ interface FindProxyDto extends IFindBaseDto, IProxy {
7745
7905
  oldIpFormat: string;
7746
7906
  newIpFormat: string;
7747
7907
  }
7908
+ interface FilterProxyDto extends IFilterBaseDto {
7909
+ team: string[];
7910
+ leader: string[];
7911
+ department: string[];
7912
+ user: string[];
7913
+ createdBy: string[];
7914
+ updatedBy: string[];
7915
+ createdAt: [Date, Date];
7916
+ updatedAt: [Date, Date];
7917
+ pcName: string[];
7918
+ devicesName: string[];
7919
+ devicesOS: string[];
7920
+ country: string[];
7921
+ provider: ETypeProxyProvider[];
7922
+ sheetImport: string[];
7923
+ checked: ETypeProxyChecked[];
7924
+ lastUserUsed: string[];
7925
+ typeNewIp: ETypeProxyNewIP[];
7926
+ }
7748
7927
 
7749
7928
  interface FindAccountVPSDto extends IFindBaseDto, IAccountVPS {
7750
7929
  }
7751
- interface FilterAccountVPSDto extends IFilterBaseDto, Omit<IAccountVPS, TOmitFilterDto> {
7930
+ interface FilterAccountVPSDto extends IFilterBaseDto {
7931
+ team: string[];
7932
+ leader: string[];
7933
+ department: string[];
7934
+ user: string[];
7935
+ createdBy: string[];
7936
+ updatedBy: string[];
7937
+ createdAt: [Date, Date];
7938
+ updatedAt: [Date, Date];
7939
+ status: EStatusVPS[];
7940
+ timeLastUsed: Date[];
7941
+ lastUserUsed: string[];
7752
7942
  }
7753
7943
 
7754
7944
  interface FindAccountVPSGroupDto extends IFindBaseDto, IAccountVPSGroup {
7755
7945
  }
7756
7946
  interface FilterAccountVPSGroupDto extends IFilterBaseDto {
7947
+ team: string[];
7948
+ leader: string[];
7949
+ department: string[];
7950
+ user: string[];
7951
+ createdBy: string[];
7952
+ updatedBy: string[];
7953
+ createdAt: [Date, Date];
7954
+ updatedAt: [Date, Date];
7757
7955
  }
7758
7956
 
7759
7957
  interface AddToDeviceAccountVPNDto {
@@ -7766,10 +7964,22 @@ interface FindDeviceAvailableForAddAccountVPNDto {
7766
7964
  isMax: boolean;
7767
7965
  isChecked: boolean;
7768
7966
  }
7769
- interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
7967
+ interface FilterAccountVPNDto extends IFilterBaseDto {
7968
+ team: string[];
7969
+ leader: string[];
7970
+ department: string[];
7971
+ user: string[];
7972
+ createdBy: string[];
7973
+ updatedBy: string[];
7974
+ createdAt: [Date, Date];
7975
+ updatedAt: [Date, Date];
7770
7976
  pcName: string[];
7771
7977
  devicesName: string[];
7772
7978
  devicesOS: string[];
7979
+ provider: ETypeProviderAccountVPN[];
7980
+ status: EStatusAccountVPN[];
7981
+ timeLastUsed: Date[];
7982
+ lastUserUsed: string[];
7773
7983
  }
7774
7984
  interface FindAccountVPNDto extends IFindBaseDto, IAccountVPN {
7775
7985
  listDeviceKey: string[];
@@ -7827,11 +8037,6 @@ interface FindDeviceAvailableForAddCHPlayICloudDto {
7827
8037
  isMax: boolean;
7828
8038
  isChecked: boolean;
7829
8039
  }
7830
- interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
7831
- pcName: string[];
7832
- devicesName: string[];
7833
- devicesOS: string[];
7834
- }
7835
8040
  interface FindAccountCHPlayICloudDto extends IFindBaseDto, IAccountCHPlayICloud {
7836
8041
  listDeviceKeys: string[];
7837
8042
  listDeviceName: string[];
@@ -7871,6 +8076,22 @@ interface FindOverviewAccountCHPlayICloudDto {
7871
8076
  percentage: number;
7872
8077
  };
7873
8078
  }
8079
+ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
8080
+ team: string[];
8081
+ leader: string[];
8082
+ department: string[];
8083
+ user: string[];
8084
+ createdBy: string[];
8085
+ updatedBy: string[];
8086
+ createdAt: [Date, Date];
8087
+ updatedAt: [Date, Date];
8088
+ pcName: string[];
8089
+ devicesName: string[];
8090
+ devicesOS: string[];
8091
+ status: EStatusAccountCHPlayICloud[];
8092
+ timeLastUsed: Date[];
8093
+ lastUserUsed: string[];
8094
+ }
7874
8095
 
7875
8096
  interface FindOverViewDeviceDto {
7876
8097
  totalDepartment: number;
@@ -8160,6 +8381,9 @@ interface FindTaskAIContentDto extends IFindBaseDto, ITaskAIContent {
8160
8381
  accountChannel: IAccountAIContentChannel;
8161
8382
  }
8162
8383
  interface FilterTaskAIContentDto extends IFilterBaseDto {
8384
+ accountAI: string[];
8385
+ sheetChildren: string[];
8386
+ status: EStatusTaskAIContent[];
8163
8387
  }
8164
8388
 
8165
8389
  interface FindOverViewTaskAIImageCanvaThreadsDto {
@@ -8197,6 +8421,10 @@ interface UpdateTaskAIImageCanvaThreadsDto extends Partial<ITaskAIImageCanvaThre
8197
8421
  interface FindTaskAIImageCanvaThreadsDto extends IFindBaseDto, ITaskAIImageCanvaThreads {
8198
8422
  }
8199
8423
  interface FilterTaskAIImageCanvaThreadsDto extends IFilterBaseDto {
8424
+ accountSocial: string[];
8425
+ accountEmailImage: string[];
8426
+ statusImage: EStatusTaskImage[];
8427
+ statusCanva: EStatusTaskCanva[];
8200
8428
  }
8201
8429
 
8202
8430
  interface FindOverViewTaskAIImageVoiceCanvaThreadsDto {
@@ -8242,6 +8470,13 @@ interface UpdateTaskAIImageVoiceCanvaThreadsDto extends Partial<ITaskAIImageVoic
8242
8470
  interface FindTaskAIImageVoiceCanvaThreadsDto extends IFindBaseDto, ITaskAIImageVoiceCanvaThreads {
8243
8471
  }
8244
8472
  interface FilterTaskAIImageVoiceCanvaThreadsDto extends IFilterBaseDto {
8473
+ accountSocial: string[];
8474
+ typeRatioImage: ETypeRatioImage[];
8475
+ accountEmailImage: string[];
8476
+ accountEmailVoice: string[];
8477
+ statusImage: EStatusTaskImage[];
8478
+ statusVoice: EStatusTaskVoice[];
8479
+ statusCanva: EStatusTaskCanva[];
8245
8480
  }
8246
8481
 
8247
8482
  interface FindOverViewTaskAIImageCanvaInstagramDto {
@@ -8279,6 +8514,10 @@ interface UpdateTaskAIImageCanvaInstagramDto extends Partial<ITaskAIImageCanvaIn
8279
8514
  interface FindTaskAIImageCanvaInstagramDto extends IFindBaseDto, ITaskAIImageCanvaInstagram {
8280
8515
  }
8281
8516
  interface FilterTaskAIImageCanvaInstagramDto extends IFilterBaseDto {
8517
+ accountSocial: string[];
8518
+ accountEmailImage: string[];
8519
+ statusImage: EStatusTaskImage[];
8520
+ statusCanva: EStatusTaskCanva[];
8282
8521
  }
8283
8522
 
8284
8523
  interface FindOverViewTaskAIImageVoiceCanvaInstagramDto {
@@ -8324,6 +8563,13 @@ interface UpdateTaskAIImageVoiceCanvaInstagramDto extends Partial<ITaskAIImageVo
8324
8563
  interface FindTaskAIImageVoiceCanvaInstagramDto extends IFindBaseDto, ITaskAIImageVoiceCanvaInstagram {
8325
8564
  }
8326
8565
  interface FilterTaskAIImageVoiceCanvaInstagramDto extends IFilterBaseDto {
8566
+ accountSocial: string[];
8567
+ typeRatioImage: ETypeRatioImage[];
8568
+ accountEmailImage: string[];
8569
+ accountEmailVoice: string[];
8570
+ statusImage: EStatusTaskImage[];
8571
+ statusVoice: EStatusTaskVoice[];
8572
+ statusCanva: EStatusTaskCanva[];
8327
8573
  }
8328
8574
 
8329
8575
  interface CreateSheetsToolDto extends Partial<ISheetsTool> {
@@ -8342,7 +8588,9 @@ interface UpdateSheetsToolDto extends Partial<ISheetsTool> {
8342
8588
  }
8343
8589
  interface FindSheetsToolDto extends IFindBaseDto, ISheetsTool {
8344
8590
  }
8345
- interface FilterSheetsToolDto extends IFilterBaseDto, Omit<ISheetsTool, TOmitFilterDto> {
8591
+ interface FilterSheetsToolDto extends IFilterBaseDto {
8592
+ type: ESheetToolInstagram[];
8593
+ status: EStatusActive[];
8346
8594
  }
8347
8595
 
8348
8596
  interface CreatePCDto extends Partial<IPC> {
@@ -8353,7 +8601,8 @@ interface UpdatePCDto extends Partial<IPC> {
8353
8601
  }
8354
8602
  interface FindPCDto extends IFindBaseDto, IPC {
8355
8603
  }
8356
- interface FilterPCDto extends IFilterBaseDto, Omit<IPC, TOmitFilterDto> {
8604
+ interface FilterPCDto extends IFilterBaseDto {
8605
+ status: EStatusPC;
8357
8606
  }
8358
8607
 
8359
8608
  interface CreateBlogDto extends Partial<IBlog> {
@@ -8382,7 +8631,20 @@ interface FindBlogDto extends IFindBaseDto, IBlog {
8382
8631
  blog_teamsPermission?: ITeam[];
8383
8632
  blog_usersPermission?: IUser[];
8384
8633
  }
8385
- interface FilterBlogDto extends IFilterBaseDto, Omit<IBlog, TOmitFilterDto> {
8634
+ interface FilterBlogDto extends IFilterBaseDto {
8635
+ team: string[];
8636
+ leader: string[];
8637
+ department: string[];
8638
+ user: string[];
8639
+ createdBy: string[];
8640
+ updatedBy: string[];
8641
+ createdAt: [Date, Date];
8642
+ updatedAt: [Date, Date];
8643
+ departmentsPermission: string[];
8644
+ teamsPermission: string[];
8645
+ usersPermission: string[];
8646
+ status: EStatusBlog[];
8647
+ category: string[];
8386
8648
  }
8387
8649
 
8388
8650
  interface CreateBlogsCategoryDto extends Partial<IBlogCategory> {
@@ -8418,7 +8680,7 @@ interface UpdateDepartmentDto extends Partial<IDepartment> {
8418
8680
  }
8419
8681
  interface FindDepartmentDto extends IFindBaseDto, IDepartment {
8420
8682
  }
8421
- interface FilterDepartmentDto extends IFilterBaseDto, Omit<IDepartment, TOmitFilterDto> {
8683
+ interface FilterDepartmentDto extends IFilterBaseDto {
8422
8684
  }
8423
8685
 
8424
8686
  interface FindOverviewTeamDto {
@@ -8481,7 +8743,7 @@ interface FindRoleDto extends IFindBaseDto, IRole {
8481
8743
  };
8482
8744
  };
8483
8745
  }
8484
- interface FilterRoleDto extends IFilterBaseDto, Omit<IRole, TOmitFilterDto> {
8746
+ interface FilterRoleDto extends IFilterBaseDto {
8485
8747
  }
8486
8748
 
8487
8749
  interface CreateUserDto extends Partial<IUser> {
@@ -8510,9 +8772,7 @@ interface UpdateUserDto extends Partial<IUser> {
8510
8772
  }
8511
8773
  interface FindUserDto extends IFindBaseDto, IUser {
8512
8774
  }
8513
- interface FilterUserDto extends IFilterBaseDto, Omit<IUser, TOmitFilterDto> {
8514
- departments: string[];
8515
- teams: string[];
8775
+ interface FilterUserDto extends IFilterBaseDto {
8516
8776
  }
8517
8777
  interface OverviewUserDto {
8518
8778
  totalDepartments: number;
@@ -8553,12 +8813,31 @@ interface FindOverViewLarkDto {
8553
8813
  error: number;
8554
8814
  };
8555
8815
  }
8556
- interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
8816
+ interface FilterLarkDto extends IFilterBaseDto {
8817
+ team: string[];
8818
+ leader: string[];
8819
+ department: string[];
8820
+ user: string[];
8821
+ createdBy: string[];
8822
+ updatedBy: string[];
8823
+ createdAt: [Date, Date];
8824
+ updatedAt: [Date, Date];
8825
+ typeObject: ELarkObject[];
8826
+ typeError: ELarkNotiBase[] | ELarkNotiRunAppDevice[] | ELarkNotiAccountTool[] | ELarkNotiDuplicateAll[] | ELarkNotiManagerSheet[] | ELarkNotiToolDevice[] | ELarkNotiCreateNew[] | ELarkNotiSocialImport[] | ELarkNotiInstagramDetail[];
8827
+ status: EStatusLark[];
8557
8828
  }
8558
8829
 
8559
8830
  interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
8560
8831
  }
8561
8832
  interface FilterManagerWorkDto extends IFilterBaseDto {
8833
+ team: string[];
8834
+ leader: string[];
8835
+ department: string[];
8836
+ user: string[];
8837
+ createdBy: string[];
8838
+ updatedBy: string[];
8839
+ createdAt: [Date, Date];
8840
+ updatedAt: [Date, Date];
8562
8841
  ideas: string[];
8563
8842
  niches: string[];
8564
8843
  subNiche: string[];
@@ -8569,14 +8848,23 @@ interface FilterManagerWorkDto extends IFilterBaseDto {
8569
8848
  love: string[];
8570
8849
  like: string[];
8571
8850
  sheetWorks: string[];
8572
- departments: string[];
8573
- users: string[];
8851
+ departmentsAssigned: string[];
8852
+ teamsAssigned: string[];
8853
+ usersAssigned: string[];
8574
8854
  status: EStatusActive[];
8575
8855
  }
8576
8856
 
8577
8857
  interface FindSheetWorkDto extends IFindBaseDto, ISheetWork {
8578
8858
  }
8579
8859
  interface FilterSheetWorkDto extends IFilterBaseDto {
8860
+ team: string[];
8861
+ leader: string[];
8862
+ department: string[];
8863
+ user: string[];
8864
+ createdBy: string[];
8865
+ updatedBy: string[];
8866
+ createdAt: [Date, Date];
8867
+ updatedAt: [Date, Date];
8580
8868
  ideas: string[];
8581
8869
  niches: string[];
8582
8870
  subNiche: string[];
@@ -8587,14 +8875,23 @@ interface FilterSheetWorkDto extends IFilterBaseDto {
8587
8875
  love: string[];
8588
8876
  like: string[];
8589
8877
  sheetWorks: string[];
8590
- departments: string[];
8591
- users: string[];
8878
+ departmentsAssigned: string[];
8879
+ teamsAssigned: string[];
8880
+ usersAssigned: string[];
8592
8881
  status: EStatusActive[];
8593
8882
  }
8594
8883
 
8595
8884
  interface FindSheetWorkCategoryDto extends IFindBaseDto, ISheetWorksCategory {
8596
8885
  }
8597
8886
  interface FilterSheetWorkCategoryDto extends IFilterBaseDto {
8887
+ team: string[];
8888
+ leader: string[];
8889
+ department: string[];
8890
+ user: string[];
8891
+ createdBy: string[];
8892
+ updatedBy: string[];
8893
+ createdAt: [Date, Date];
8894
+ updatedAt: [Date, Date];
8598
8895
  }
8599
8896
 
8600
8897
  type index_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
@@ -8947,4 +9244,4 @@ declare namespace index {
8947
9244
  export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, 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_CreateProxyDto as CreateProxyDto, 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_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, 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_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, 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_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_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index_FilterSheetWorkDto as FilterSheetWorkDto, 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_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_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, 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_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, 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_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, 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_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_FindOverviewDeviceAll as FindOverviewDeviceAll, index_FindOverviewDeviceDead as FindOverviewDeviceDead, index_FindOverviewDevicePoolReady as FindOverviewDevicePoolReady, index_FindOverviewDeviceRun as FindOverviewDeviceRun, index_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index_FindProxyDto as FindProxyDto, index_FindRoleDetailDto as FindRoleDetailDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index_FindSheetWorkDto as FindSheetWorkDto, 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_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_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, 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_UpdateProxyDto as UpdateProxyDto, 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 };
8948
9245
  }
8949
9246
 
8950
- export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyTimeDashboardDto, index$3 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$9 as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateProxyDto, 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 FilterCheckerAccountInstagramDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryFollowDto, 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 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 FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, 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 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 FindCheckerAccountInstagramDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryFollowDto, 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 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 FindOverviewDeviceAll, type FindOverviewDeviceDead, type FindOverviewDevicePoolReady, type FindOverviewDeviceRun, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindProxyDto, type FindRoleDetailDto, type FindRoleDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, 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 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$8 as Forum, 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 IDepartmentMember, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryBlockUser, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryFollow, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, 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$a as Permission, index$6 as Socials, type TOmitFilterDto, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateProxyDto, 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$7 as Workspace };
9247
+ export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyTimeDashboardDto, index$3 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$9 as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateProxyDto, 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 FilterCheckerAccountInstagramDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryFollowDto, 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 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 FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, 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 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 FindCheckerAccountInstagramDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryFollowDto, 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 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 FindOverviewDeviceAll, type FindOverviewDeviceDead, type FindOverviewDevicePoolReady, type FindOverviewDeviceRun, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindProxyDto, type FindRoleDetailDto, type FindRoleDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, 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 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$8 as Forum, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, 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 IDepartmentMember, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryBlockUser, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryFollow, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, 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$a as Permission, index$6 as Socials, type TOmitFilterDto, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateProxyDto, 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$7 as Workspace };