automation-lib 5.4.131 → 5.4.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +140 -67
- package/dist/index.d.ts +140 -67
- package/dist/index.js +21 -3
- package/dist/index.mjs +19 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -893,6 +893,17 @@ declare namespace index$g {
|
|
|
893
893
|
export { index$g_ELarkNotiAccountTool as ELarkNotiAccountTool, index$g_ELarkNotiBase as ELarkNotiBase, index$g_ELarkNotiCreateNew as ELarkNotiCreateNew, index$g_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$g_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$g_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$g_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$g_ELarkNotiSocialImport as ELarkNotiSocialImport, index$g_ELarkNotiToolDevice as ELarkNotiToolDevice, index$g_ELarkObject as ELarkObject, index$g_ELarkTypeNotification as ELarkTypeNotification };
|
|
894
894
|
}
|
|
895
895
|
|
|
896
|
+
declare enum ESheetToolStatusImport {
|
|
897
|
+
'Success' = "Success",
|
|
898
|
+
'Error' = "Error"
|
|
899
|
+
}
|
|
900
|
+
declare enum ESheetToolStatusRun {
|
|
901
|
+
'New' = "New",
|
|
902
|
+
'Running' = "Running",
|
|
903
|
+
'Completed' = "Completed",
|
|
904
|
+
'Paused' = "Paused",
|
|
905
|
+
'Error' = "Error"
|
|
906
|
+
}
|
|
896
907
|
declare enum ESheetToolTimeCrawl {
|
|
897
908
|
'1 hour(Quick)' = "1 hour(Quick)",
|
|
898
909
|
'6 hours(Standard)' = "6 hours(Standard)",
|
|
@@ -904,27 +915,28 @@ declare enum ESheetToolTimeCrawl {
|
|
|
904
915
|
declare enum ESheetToolInstagram {
|
|
905
916
|
Post = "Post",
|
|
906
917
|
Follow = "Follow",
|
|
907
|
-
BlockUser = "Block user",
|
|
908
918
|
ReplyComment = "Reply comment",
|
|
909
919
|
ReplyMessage = "Reply message"
|
|
910
920
|
}
|
|
911
921
|
declare enum ESheetToolThreads {
|
|
912
922
|
Post = "Post",
|
|
913
923
|
Follow = "Follow",
|
|
914
|
-
Comment = "Comment",
|
|
915
|
-
BlockUser = "Block user",
|
|
916
924
|
ReplyComment = "Reply comment",
|
|
917
925
|
ReplyMessage = "Reply message"
|
|
918
926
|
}
|
|
919
927
|
|
|
920
928
|
type index$f_ESheetToolInstagram = ESheetToolInstagram;
|
|
921
929
|
declare const index$f_ESheetToolInstagram: typeof ESheetToolInstagram;
|
|
930
|
+
type index$f_ESheetToolStatusImport = ESheetToolStatusImport;
|
|
931
|
+
declare const index$f_ESheetToolStatusImport: typeof ESheetToolStatusImport;
|
|
932
|
+
type index$f_ESheetToolStatusRun = ESheetToolStatusRun;
|
|
933
|
+
declare const index$f_ESheetToolStatusRun: typeof ESheetToolStatusRun;
|
|
922
934
|
type index$f_ESheetToolThreads = ESheetToolThreads;
|
|
923
935
|
declare const index$f_ESheetToolThreads: typeof ESheetToolThreads;
|
|
924
936
|
type index$f_ESheetToolTimeCrawl = ESheetToolTimeCrawl;
|
|
925
937
|
declare const index$f_ESheetToolTimeCrawl: typeof ESheetToolTimeCrawl;
|
|
926
938
|
declare namespace index$f {
|
|
927
|
-
export { index$f_ESheetToolInstagram as ESheetToolInstagram, index$f_ESheetToolThreads as ESheetToolThreads, index$f_ESheetToolTimeCrawl as ESheetToolTimeCrawl };
|
|
939
|
+
export { index$f_ESheetToolInstagram as ESheetToolInstagram, index$f_ESheetToolStatusImport as ESheetToolStatusImport, index$f_ESheetToolStatusRun as ESheetToolStatusRun, index$f_ESheetToolThreads as ESheetToolThreads, index$f_ESheetToolTimeCrawl as ESheetToolTimeCrawl };
|
|
928
940
|
}
|
|
929
941
|
|
|
930
942
|
declare enum EStatusVPS {
|
|
@@ -1720,6 +1732,10 @@ type index$c_EPriority = EPriority;
|
|
|
1720
1732
|
declare const index$c_EPriority: typeof EPriority;
|
|
1721
1733
|
type index$c_ESheetToolInstagram = ESheetToolInstagram;
|
|
1722
1734
|
declare const index$c_ESheetToolInstagram: typeof ESheetToolInstagram;
|
|
1735
|
+
type index$c_ESheetToolStatusImport = ESheetToolStatusImport;
|
|
1736
|
+
declare const index$c_ESheetToolStatusImport: typeof ESheetToolStatusImport;
|
|
1737
|
+
type index$c_ESheetToolStatusRun = ESheetToolStatusRun;
|
|
1738
|
+
declare const index$c_ESheetToolStatusRun: typeof ESheetToolStatusRun;
|
|
1723
1739
|
type index$c_ESheetToolThreads = ESheetToolThreads;
|
|
1724
1740
|
declare const index$c_ESheetToolThreads: typeof ESheetToolThreads;
|
|
1725
1741
|
type index$c_ESheetToolTimeCrawl = ESheetToolTimeCrawl;
|
|
@@ -1891,7 +1907,7 @@ declare const index$c_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
1891
1907
|
type index$c_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
1892
1908
|
declare const index$c_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
1893
1909
|
declare namespace index$c {
|
|
1894
|
-
export { index$i as AI, index$h as Base, index$c_EAIModelContent as EAIModelContent, index$c_EAIModelImage as EAIModelImage, index$c_EAIModelVoice as EAIModelVoice, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionImage as EAIVersionImage, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EAIVersionVoice as EAIVersionVoice, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EFolderImageAI as EFolderImageAI, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_ESheetToolInstagram as ESheetToolInstagram, index$c_ESheetToolThreads as ESheetToolThreads, index$c_ESheetToolTimeCrawl as ESheetToolTimeCrawl, index$c_EStatusAccountAI as EStatusAccountAI, index$c_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$c_EStatusAccountCanva as EStatusAccountCanva, index$c_EStatusAccountDrive as EStatusAccountDrive, index$c_EStatusAccountSocial as EStatusAccountSocial, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountTypeChangeInfoInstagram as EStatusAccountTypeChangeInfoInstagram, index$c_EStatusAccountTypeChangeInfoThreads as EStatusAccountTypeChangeInfoThreads, index$c_EStatusAccountVPN as EStatusAccountVPN, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusChannel as EStatusChannel, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDevice as EStatusDevice, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEmail as EStatusEmail, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusProxyChecked as EStatusProxyChecked, index$c_EStatusProxyNewIP as EStatusProxyNewIP, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusSocialAccountRaw as EStatusSocialAccountRaw, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskCanva as EStatusTaskCanva, index$c_EStatusTaskImage as EStatusTaskImage, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTaskVoice as EStatusTaskVoice, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUser as EStatusUser, index$c_EStatusVPS as EStatusVPS, index$c_EStatusVPSReplace as EStatusVPSReplace, index$c_ETimeZone as ETimeZone, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeRatioImage as ETypeRatioImage, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$g as Lark, index$f as SheetTool, index$e as Status, index$d as Types };
|
|
1910
|
+
export { index$i as AI, index$h as Base, index$c_EAIModelContent as EAIModelContent, index$c_EAIModelImage as EAIModelImage, index$c_EAIModelVoice as EAIModelVoice, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionImage as EAIVersionImage, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EAIVersionVoice as EAIVersionVoice, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EFolderImageAI as EFolderImageAI, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_ESheetToolInstagram as ESheetToolInstagram, index$c_ESheetToolStatusImport as ESheetToolStatusImport, index$c_ESheetToolStatusRun as ESheetToolStatusRun, index$c_ESheetToolThreads as ESheetToolThreads, index$c_ESheetToolTimeCrawl as ESheetToolTimeCrawl, index$c_EStatusAccountAI as EStatusAccountAI, index$c_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$c_EStatusAccountCanva as EStatusAccountCanva, index$c_EStatusAccountDrive as EStatusAccountDrive, index$c_EStatusAccountSocial as EStatusAccountSocial, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountTypeChangeInfoInstagram as EStatusAccountTypeChangeInfoInstagram, index$c_EStatusAccountTypeChangeInfoThreads as EStatusAccountTypeChangeInfoThreads, index$c_EStatusAccountVPN as EStatusAccountVPN, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusChannel as EStatusChannel, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDevice as EStatusDevice, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEmail as EStatusEmail, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusProxyChecked as EStatusProxyChecked, index$c_EStatusProxyNewIP as EStatusProxyNewIP, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusSocialAccountRaw as EStatusSocialAccountRaw, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskCanva as EStatusTaskCanva, index$c_EStatusTaskImage as EStatusTaskImage, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTaskVoice as EStatusTaskVoice, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUser as EStatusUser, index$c_EStatusVPS as EStatusVPS, index$c_EStatusVPSReplace as EStatusVPSReplace, index$c_ETimeZone as ETimeZone, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeRatioImage as ETypeRatioImage, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$g as Lark, index$f as SheetTool, index$e as Status, index$d as Types };
|
|
1895
1911
|
}
|
|
1896
1912
|
|
|
1897
1913
|
type TFilter = 'direct' | 'ref';
|
|
@@ -2731,6 +2747,15 @@ interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2731
2747
|
followings: number;
|
|
2732
2748
|
}
|
|
2733
2749
|
|
|
2750
|
+
interface IUserInfoAssignment {
|
|
2751
|
+
id: string;
|
|
2752
|
+
username: string;
|
|
2753
|
+
email: string;
|
|
2754
|
+
department: string;
|
|
2755
|
+
leader: string;
|
|
2756
|
+
team: string;
|
|
2757
|
+
timeLastUsed: Date;
|
|
2758
|
+
}
|
|
2734
2759
|
interface IFindBaseDto extends IBaseModel {
|
|
2735
2760
|
departmentCreator?: IDepartment;
|
|
2736
2761
|
departmentCreatorName?: string;
|
|
@@ -3583,6 +3608,8 @@ interface FilterThreadsReportPostDto extends IFilterBaseDto, IFilterBaseAccountS
|
|
|
3583
3608
|
account: string[];
|
|
3584
3609
|
sheetName: string[];
|
|
3585
3610
|
status: EStatusTaskScript[];
|
|
3611
|
+
timezone: ETimeZone[];
|
|
3612
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
3586
3613
|
}
|
|
3587
3614
|
|
|
3588
3615
|
interface FindOverViewThreadsReportInteractFollowDto {
|
|
@@ -3619,6 +3646,8 @@ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, IFilterBa
|
|
|
3619
3646
|
account: string[];
|
|
3620
3647
|
sheetName: string[];
|
|
3621
3648
|
status: EStatusTaskScript[];
|
|
3649
|
+
timezone: ETimeZone[];
|
|
3650
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
3622
3651
|
}
|
|
3623
3652
|
|
|
3624
3653
|
interface FindOverViewThreadsReportInteractUnFollowDto {
|
|
@@ -3655,6 +3684,8 @@ interface FilterThreadsReportInteractUnFollowDto extends IFilterBaseDto, IFilter
|
|
|
3655
3684
|
account: string[];
|
|
3656
3685
|
sheetName: string[];
|
|
3657
3686
|
status: EStatusTaskScript[];
|
|
3687
|
+
timezone: ETimeZone[];
|
|
3688
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
3658
3689
|
}
|
|
3659
3690
|
|
|
3660
3691
|
interface FindOverViewThreadsReportInteractReplyCommentDto {
|
|
@@ -3691,6 +3722,8 @@ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, IFi
|
|
|
3691
3722
|
account: string[];
|
|
3692
3723
|
sheetName: string[];
|
|
3693
3724
|
status: EStatusTaskScript[];
|
|
3725
|
+
timezone: ETimeZone[];
|
|
3726
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
3694
3727
|
}
|
|
3695
3728
|
|
|
3696
3729
|
interface FindOverViewThreadsReportInteractReplyMessageDto {
|
|
@@ -3727,6 +3760,8 @@ interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, IFi
|
|
|
3727
3760
|
account: string[];
|
|
3728
3761
|
sheetName: string[];
|
|
3729
3762
|
status: EStatusTaskScript[];
|
|
3763
|
+
timezone: ETimeZone[];
|
|
3764
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
3730
3765
|
}
|
|
3731
3766
|
|
|
3732
3767
|
interface FindOverViewThreadsSettingPostDto {
|
|
@@ -5943,6 +5978,8 @@ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, IFilterB
|
|
|
5943
5978
|
account: string[];
|
|
5944
5979
|
sheetName: string[];
|
|
5945
5980
|
status: EStatusTaskScript[];
|
|
5981
|
+
timezone: ETimeZone[];
|
|
5982
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
5946
5983
|
}
|
|
5947
5984
|
|
|
5948
5985
|
interface FindOverViewInstagramReportPostNewDto {
|
|
@@ -5979,6 +6016,8 @@ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, IFilterBaseAcc
|
|
|
5979
6016
|
account: string[];
|
|
5980
6017
|
sheetName: string[];
|
|
5981
6018
|
status: EStatusTaskScript[];
|
|
6019
|
+
timezone: ETimeZone[];
|
|
6020
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
5982
6021
|
}
|
|
5983
6022
|
|
|
5984
6023
|
interface FindOverViewInstagramReportPostReelDto {
|
|
@@ -6015,6 +6054,8 @@ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, IFilterBaseAc
|
|
|
6015
6054
|
account: string[];
|
|
6016
6055
|
sheetName: string[];
|
|
6017
6056
|
status: EStatusTaskScript[];
|
|
6057
|
+
timezone: ETimeZone[];
|
|
6058
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6018
6059
|
}
|
|
6019
6060
|
|
|
6020
6061
|
interface FindOverViewInstagramReportPostStoryDto {
|
|
@@ -6051,6 +6092,8 @@ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, IFilterBaseA
|
|
|
6051
6092
|
account: string[];
|
|
6052
6093
|
sheetName: string[];
|
|
6053
6094
|
status: EStatusTaskScript[];
|
|
6095
|
+
timezone: ETimeZone[];
|
|
6096
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6054
6097
|
}
|
|
6055
6098
|
|
|
6056
6099
|
interface FindOverViewInstagramReportPostSquareDto {
|
|
@@ -6087,6 +6130,8 @@ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, IFilterBase
|
|
|
6087
6130
|
account: string[];
|
|
6088
6131
|
sheetName: string[];
|
|
6089
6132
|
status: EStatusTaskScript[];
|
|
6133
|
+
timezone: ETimeZone[];
|
|
6134
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6090
6135
|
}
|
|
6091
6136
|
|
|
6092
6137
|
interface FindOverViewInstagramReportInteractBlockUserDto {
|
|
@@ -6122,6 +6167,8 @@ interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, IFil
|
|
|
6122
6167
|
accountGroup: string[];
|
|
6123
6168
|
account: string[];
|
|
6124
6169
|
status: EStatusTaskScript[];
|
|
6170
|
+
timezone: ETimeZone[];
|
|
6171
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6125
6172
|
}
|
|
6126
6173
|
|
|
6127
6174
|
interface FindOverViewInstagramReportInteractExploreDto {
|
|
@@ -6157,6 +6204,8 @@ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, IFilte
|
|
|
6157
6204
|
accountGroup: string[];
|
|
6158
6205
|
account: string[];
|
|
6159
6206
|
status: EStatusTaskScript[];
|
|
6207
|
+
timezone: ETimeZone[];
|
|
6208
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6160
6209
|
}
|
|
6161
6210
|
|
|
6162
6211
|
interface FindOverViewInstagramReportInteractFollowDto {
|
|
@@ -6192,6 +6241,8 @@ interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, IFilter
|
|
|
6192
6241
|
accountGroup: string[];
|
|
6193
6242
|
account: string[];
|
|
6194
6243
|
status: EStatusTaskScript[];
|
|
6244
|
+
timezone: ETimeZone[];
|
|
6245
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6195
6246
|
}
|
|
6196
6247
|
|
|
6197
6248
|
interface FindOverViewInstagramReportInteractReelDto {
|
|
@@ -6227,6 +6278,8 @@ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, IFilterBa
|
|
|
6227
6278
|
accountGroup: string[];
|
|
6228
6279
|
account: string[];
|
|
6229
6280
|
status: EStatusTaskScript[];
|
|
6281
|
+
timezone: ETimeZone[];
|
|
6282
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6230
6283
|
}
|
|
6231
6284
|
|
|
6232
6285
|
interface FindOverViewInstagramReportInteractReplyCommentDto {
|
|
@@ -6262,6 +6315,8 @@ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, I
|
|
|
6262
6315
|
accountGroup: string[];
|
|
6263
6316
|
account: string[];
|
|
6264
6317
|
status: EStatusTaskScript[];
|
|
6318
|
+
timezone: ETimeZone[];
|
|
6319
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6265
6320
|
}
|
|
6266
6321
|
|
|
6267
6322
|
interface FindOverViewInstagramReportInteractReplyMessageDto {
|
|
@@ -6297,6 +6352,8 @@ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, I
|
|
|
6297
6352
|
accountGroup: string[];
|
|
6298
6353
|
account: string[];
|
|
6299
6354
|
status: EStatusTaskScript[];
|
|
6355
|
+
timezone: ETimeZone[];
|
|
6356
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6300
6357
|
}
|
|
6301
6358
|
|
|
6302
6359
|
interface FindOverViewInstagramReportInteractStoryDto {
|
|
@@ -6332,6 +6389,8 @@ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, IFilterB
|
|
|
6332
6389
|
accountGroup: string[];
|
|
6333
6390
|
account: string[];
|
|
6334
6391
|
status: EStatusTaskScript[];
|
|
6392
|
+
timezone: ETimeZone[];
|
|
6393
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6335
6394
|
}
|
|
6336
6395
|
|
|
6337
6396
|
interface FindOverViewInstagramReportInteractUnFollowDto {
|
|
@@ -6367,6 +6426,8 @@ interface FilterInstagramReportInteractUnFollowDto extends IFilterBaseDto, IFilt
|
|
|
6367
6426
|
accountGroup: string[];
|
|
6368
6427
|
account: string[];
|
|
6369
6428
|
status: EStatusTaskScript[];
|
|
6429
|
+
timezone: ETimeZone[];
|
|
6430
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
6370
6431
|
}
|
|
6371
6432
|
|
|
6372
6433
|
interface FindOverViewInstagramSettingInteractExploreDto {
|
|
@@ -9694,10 +9755,6 @@ interface LoadInfoUrlSheetToolDto {
|
|
|
9694
9755
|
listAccountUsername: string[];
|
|
9695
9756
|
totalRawData: number;
|
|
9696
9757
|
}
|
|
9697
|
-
interface LoadInfoDeviceSheetToolDto {
|
|
9698
|
-
deviceName: string;
|
|
9699
|
-
deviceStatus: EStatusDevice;
|
|
9700
|
-
}
|
|
9701
9758
|
interface UpdateSheetsToolDto extends Partial<ISheetsTool> {
|
|
9702
9759
|
sheetUrl: string;
|
|
9703
9760
|
sheetName: string;
|
|
@@ -9734,33 +9791,47 @@ interface OverviewSheetsToolDto {
|
|
|
9734
9791
|
totalReplyComment: number;
|
|
9735
9792
|
totalReplyMessenger: number;
|
|
9736
9793
|
}
|
|
9737
|
-
interface FindSheetsToolDto extends IFindBaseDto
|
|
9794
|
+
interface FindSheetsToolDto extends IFindBaseDto {
|
|
9738
9795
|
typeSocial: ETypeSocial;
|
|
9739
|
-
|
|
9796
|
+
idea: {
|
|
9797
|
+
id: string;
|
|
9798
|
+
name: string;
|
|
9799
|
+
};
|
|
9800
|
+
niche: {
|
|
9801
|
+
id: string;
|
|
9802
|
+
name: string;
|
|
9803
|
+
};
|
|
9804
|
+
type: ETypeManagerWorkClassify;
|
|
9805
|
+
device: {
|
|
9806
|
+
id: string;
|
|
9807
|
+
name: string;
|
|
9808
|
+
status: EStatusDevice;
|
|
9809
|
+
pcName: string;
|
|
9810
|
+
};
|
|
9740
9811
|
url: string;
|
|
9741
9812
|
name: string;
|
|
9813
|
+
typeSheet: ESheetToolInstagram;
|
|
9814
|
+
statusImport: ESheetToolStatusImport;
|
|
9815
|
+
statusRun: ESheetToolStatusRun;
|
|
9742
9816
|
description: string;
|
|
9743
|
-
|
|
9744
|
-
|
|
9817
|
+
listUsername: string[];
|
|
9818
|
+
noteFixImport: string;
|
|
9819
|
+
lastUserInfo: IUserInfoAssignment;
|
|
9745
9820
|
}
|
|
9746
9821
|
interface FilterSheetsToolDto extends IFilterBaseDto {
|
|
9822
|
+
typeSocial: ETypeSocial[];
|
|
9747
9823
|
accountGroup: string[];
|
|
9748
|
-
accountType: string[];
|
|
9749
|
-
socialPlatform: string[];
|
|
9750
|
-
sheetType: string[];
|
|
9751
|
-
runStatus: string[];
|
|
9752
|
-
deviceStatus: string[];
|
|
9753
|
-
importStatus: string[];
|
|
9754
|
-
department: string[];
|
|
9755
|
-
leader: string[];
|
|
9756
|
-
team: string[];
|
|
9757
|
-
user: string[];
|
|
9758
9824
|
idea: string[];
|
|
9759
9825
|
niche: string[];
|
|
9760
|
-
|
|
9761
|
-
|
|
9762
|
-
|
|
9763
|
-
|
|
9826
|
+
accountType: ETypeManagerWorkClassify[];
|
|
9827
|
+
typeSheet: ESheetToolInstagram[];
|
|
9828
|
+
importStatus: ESheetToolStatusImport[];
|
|
9829
|
+
runStatus: ESheetToolStatusRun[];
|
|
9830
|
+
deviceStatus: EStatusDevice[];
|
|
9831
|
+
departmentAssigned: string[];
|
|
9832
|
+
leaderAssigned: string[];
|
|
9833
|
+
teamAssigned: string[];
|
|
9834
|
+
userAssigned: string[];
|
|
9764
9835
|
}
|
|
9765
9836
|
|
|
9766
9837
|
interface CreatePCDto extends Partial<IPC> {
|
|
@@ -10630,11 +10701,11 @@ type index$6_IFilterAssignDto = IFilterAssignDto;
|
|
|
10630
10701
|
type index$6_IFilterBaseAccountSocialDto = IFilterBaseAccountSocialDto;
|
|
10631
10702
|
type index$6_IFilterBaseDto = IFilterBaseDto;
|
|
10632
10703
|
type index$6_IFindBaseDto = IFindBaseDto;
|
|
10704
|
+
type index$6_IUserInfoAssignment = IUserInfoAssignment;
|
|
10633
10705
|
type index$6_ImportAccountVPSDto = ImportAccountVPSDto;
|
|
10634
10706
|
type index$6_ImportDto = ImportDto;
|
|
10635
10707
|
type index$6_ImportManagerWorkDto = ImportManagerWorkDto;
|
|
10636
10708
|
type index$6_ImportSheetWorkDto = ImportSheetWorkDto;
|
|
10637
|
-
type index$6_LoadInfoDeviceSheetToolDto = LoadInfoDeviceSheetToolDto;
|
|
10638
10709
|
type index$6_LoadInfoUrlSheetToolDto = LoadInfoUrlSheetToolDto;
|
|
10639
10710
|
type index$6_OverviewSheetsToolDto = OverviewSheetsToolDto;
|
|
10640
10711
|
type index$6_PayloadUrlSheetToolDto = PayloadUrlSheetToolDto;
|
|
@@ -10677,7 +10748,7 @@ type index$6_UpdateTeamDto = UpdateTeamDto;
|
|
|
10677
10748
|
type index$6_UpdateUserDto = UpdateUserDto;
|
|
10678
10749
|
type index$6_ViewDetailDeviceDto = ViewDetailDeviceDto;
|
|
10679
10750
|
declare namespace index$6 {
|
|
10680
|
-
export type { index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index$6_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index$6_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index$6_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index$6_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractExploreDto as FindOverViewInstagramSettingInteractExploreDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReelDto as FindOverViewInstagramSettingInteractReelDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractStoryDto as FindOverViewInstagramSettingInteractStoryDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index$6_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index$6_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index$6_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index$6_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoDeviceSheetToolDto as LoadInfoDeviceSheetToolDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index$6_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index$6_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto };
|
|
10751
|
+
export type { index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index$6_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index$6_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index$6_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index$6_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractExploreDto as FindOverViewInstagramSettingInteractExploreDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReelDto as FindOverViewInstagramSettingInteractReelDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractStoryDto as FindOverViewInstagramSettingInteractStoryDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index$6_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index$6_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index$6_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index$6_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_IUserInfoAssignment as IUserInfoAssignment, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index$6_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index$6_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto };
|
|
10681
10752
|
}
|
|
10682
10753
|
|
|
10683
10754
|
interface IInstagramHistoryFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10943,7 +11014,7 @@ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScr
|
|
|
10943
11014
|
noteFix: string;
|
|
10944
11015
|
timeEnd: Date;
|
|
10945
11016
|
timezone: ETimeZone;
|
|
10946
|
-
listDateOfWeeks:
|
|
11017
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
10947
11018
|
schedulePostTime: Array<Array<string>>;
|
|
10948
11019
|
}
|
|
10949
11020
|
interface IInstagramReportInteractBlockUserELS extends IBaseELS {
|
|
@@ -10968,7 +11039,7 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
|
|
|
10968
11039
|
timeStart: Date;
|
|
10969
11040
|
timeEnd: Date;
|
|
10970
11041
|
timezone: ETimeZone;
|
|
10971
|
-
listDateOfWeeks:
|
|
11042
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
10972
11043
|
schedulePostTime: Array<Array<string>>;
|
|
10973
11044
|
}
|
|
10974
11045
|
|
|
@@ -10983,7 +11054,7 @@ interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScrip
|
|
|
10983
11054
|
timeStart: Date;
|
|
10984
11055
|
timeEnd: Date;
|
|
10985
11056
|
timezone: ETimeZone;
|
|
10986
|
-
listDateOfWeeks:
|
|
11057
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
10987
11058
|
schedulePostTime: Array<Array<string>>;
|
|
10988
11059
|
}
|
|
10989
11060
|
interface IInstagramReportInteractExploreELS extends IBaseELS {
|
|
@@ -11009,7 +11080,7 @@ interface IInstagramReportInteractExploreELS extends IBaseELS {
|
|
|
11009
11080
|
timeStart: Date;
|
|
11010
11081
|
timeEnd: Date;
|
|
11011
11082
|
timezone: ETimeZone;
|
|
11012
|
-
listDateOfWeeks:
|
|
11083
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11013
11084
|
schedulePostTime: Array<Array<string>>;
|
|
11014
11085
|
}
|
|
11015
11086
|
|
|
@@ -11025,7 +11096,7 @@ interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript
|
|
|
11025
11096
|
timeStart: Date;
|
|
11026
11097
|
timeEnd: Date;
|
|
11027
11098
|
timezone: ETimeZone;
|
|
11028
|
-
listDateOfWeeks:
|
|
11099
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11029
11100
|
schedulePostTime: Array<Array<string>>;
|
|
11030
11101
|
growthFollow: number;
|
|
11031
11102
|
timeGrowthFollow: Date;
|
|
@@ -11064,7 +11135,7 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
|
|
|
11064
11135
|
timeStart: Date;
|
|
11065
11136
|
timeEnd: Date;
|
|
11066
11137
|
timezone: ETimeZone;
|
|
11067
|
-
listDateOfWeeks:
|
|
11138
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11068
11139
|
schedulePostTime: Array<Array<string>>;
|
|
11069
11140
|
growthFollow: number;
|
|
11070
11141
|
timeGrowthFollow: Date;
|
|
@@ -11090,7 +11161,7 @@ interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript,
|
|
|
11090
11161
|
timeStart: Date;
|
|
11091
11162
|
timeEnd: Date;
|
|
11092
11163
|
timezone: ETimeZone;
|
|
11093
|
-
listDateOfWeeks:
|
|
11164
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11094
11165
|
schedulePostTime: Array<Array<string>>;
|
|
11095
11166
|
}
|
|
11096
11167
|
interface IInstagramReportInteractReelELS extends IBaseELS {
|
|
@@ -11115,7 +11186,7 @@ interface IInstagramReportInteractReelELS extends IBaseELS {
|
|
|
11115
11186
|
timeStart: Date;
|
|
11116
11187
|
timeEnd: Date;
|
|
11117
11188
|
timezone: ETimeZone;
|
|
11118
|
-
listDateOfWeeks:
|
|
11189
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11119
11190
|
schedulePostTime: Array<Array<string>>;
|
|
11120
11191
|
}
|
|
11121
11192
|
|
|
@@ -11132,7 +11203,7 @@ interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTime
|
|
|
11132
11203
|
timeStart: Date;
|
|
11133
11204
|
timeEnd: Date;
|
|
11134
11205
|
timezone: ETimeZone;
|
|
11135
|
-
listDateOfWeeks:
|
|
11206
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11136
11207
|
schedulePostTime: Array<Array<string>>;
|
|
11137
11208
|
}
|
|
11138
11209
|
interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
|
|
@@ -11160,7 +11231,7 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
|
|
|
11160
11231
|
timeStart: Date;
|
|
11161
11232
|
timeEnd: Date;
|
|
11162
11233
|
timezone: ETimeZone;
|
|
11163
|
-
listDateOfWeeks:
|
|
11234
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11164
11235
|
schedulePostTime: Array<Array<string>>;
|
|
11165
11236
|
}
|
|
11166
11237
|
|
|
@@ -11175,7 +11246,7 @@ interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTime
|
|
|
11175
11246
|
timeStart: Date;
|
|
11176
11247
|
timeEnd: Date;
|
|
11177
11248
|
timezone: ETimeZone;
|
|
11178
|
-
listDateOfWeeks:
|
|
11249
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11179
11250
|
schedulePostTime: Array<Array<string>>;
|
|
11180
11251
|
}
|
|
11181
11252
|
interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
|
|
@@ -11201,7 +11272,7 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
|
|
|
11201
11272
|
timeStart: Date;
|
|
11202
11273
|
timeEnd: Date;
|
|
11203
11274
|
timezone: ETimeZone;
|
|
11204
|
-
listDateOfWeeks:
|
|
11275
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11205
11276
|
schedulePostTime: Array<Array<string>>;
|
|
11206
11277
|
}
|
|
11207
11278
|
|
|
@@ -11217,7 +11288,7 @@ interface IInstagramReportInteractStory extends IBaseModel, ITrackingTimeScript,
|
|
|
11217
11288
|
timeStart: Date;
|
|
11218
11289
|
timeEnd: Date;
|
|
11219
11290
|
timezone: ETimeZone;
|
|
11220
|
-
listDateOfWeeks:
|
|
11291
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11221
11292
|
schedulePostTime: Array<Array<string>>;
|
|
11222
11293
|
}
|
|
11223
11294
|
interface IInstagramReportInteractStoryELS extends IBaseELS {
|
|
@@ -11244,7 +11315,7 @@ interface IInstagramReportInteractStoryELS extends IBaseELS {
|
|
|
11244
11315
|
timeStart: Date;
|
|
11245
11316
|
timeEnd: Date;
|
|
11246
11317
|
timezone: ETimeZone;
|
|
11247
|
-
listDateOfWeeks:
|
|
11318
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11248
11319
|
schedulePostTime: Array<Array<string>>;
|
|
11249
11320
|
}
|
|
11250
11321
|
|
|
@@ -11260,7 +11331,7 @@ interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScri
|
|
|
11260
11331
|
timeStart: Date;
|
|
11261
11332
|
timeEnd: Date;
|
|
11262
11333
|
timezone: ETimeZone;
|
|
11263
|
-
listDateOfWeeks:
|
|
11334
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11264
11335
|
schedulePostTime: Array<Array<string>>;
|
|
11265
11336
|
growthFollow: number;
|
|
11266
11337
|
timeGrowthFollow: Date;
|
|
@@ -11294,7 +11365,7 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
|
|
|
11294
11365
|
timeStart: Date;
|
|
11295
11366
|
timeEnd: Date;
|
|
11296
11367
|
timezone: ETimeZone;
|
|
11297
|
-
listDateOfWeeks:
|
|
11368
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11298
11369
|
schedulePostTime: Array<Array<string>>;
|
|
11299
11370
|
growthFollow: number;
|
|
11300
11371
|
timeGrowthFollow: Date;
|
|
@@ -11313,7 +11384,7 @@ interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript,
|
|
|
11313
11384
|
timeStart: Date;
|
|
11314
11385
|
timeEnd: Date;
|
|
11315
11386
|
timezone: ETimeZone;
|
|
11316
|
-
listDateOfWeeks:
|
|
11387
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11317
11388
|
schedulePostTime: Array<Array<string>>;
|
|
11318
11389
|
sttAccount: string;
|
|
11319
11390
|
status: EStatusTaskScript;
|
|
@@ -11343,7 +11414,7 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
|
|
|
11343
11414
|
timeStart: Date;
|
|
11344
11415
|
timeEnd: Date;
|
|
11345
11416
|
timezone: ETimeZone;
|
|
11346
|
-
listDateOfWeeks:
|
|
11417
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11347
11418
|
schedulePostTime: Array<Array<string>>;
|
|
11348
11419
|
sttAccount: string;
|
|
11349
11420
|
status: EStatusTaskScript;
|
|
@@ -11362,7 +11433,7 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
11362
11433
|
timeStart: Date;
|
|
11363
11434
|
timeEnd: Date;
|
|
11364
11435
|
timezone: ETimeZone;
|
|
11365
|
-
listDateOfWeeks:
|
|
11436
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11366
11437
|
schedulePostTime: Array<Array<string>>;
|
|
11367
11438
|
sttAccount: string;
|
|
11368
11439
|
status: EStatusTaskScript;
|
|
@@ -11404,7 +11475,7 @@ interface IInstagramReportPostNewELS extends IBaseELS {
|
|
|
11404
11475
|
timeStart: Date;
|
|
11405
11476
|
timeEnd: Date;
|
|
11406
11477
|
timezone: ETimeZone;
|
|
11407
|
-
listDateOfWeeks:
|
|
11478
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11408
11479
|
schedulePostTime: Array<Array<string>>;
|
|
11409
11480
|
sttAccount: string;
|
|
11410
11481
|
status: EStatusTaskScript;
|
|
@@ -11435,7 +11506,7 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
|
|
|
11435
11506
|
timeStart: Date;
|
|
11436
11507
|
timeEnd: Date;
|
|
11437
11508
|
timezone: ETimeZone;
|
|
11438
|
-
listDateOfWeeks:
|
|
11509
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11439
11510
|
schedulePostTime: Array<Array<string>>;
|
|
11440
11511
|
sttAccount: string;
|
|
11441
11512
|
status: EStatusTaskScript;
|
|
@@ -11477,7 +11548,7 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
|
11477
11548
|
timeStart: Date;
|
|
11478
11549
|
timeEnd: Date;
|
|
11479
11550
|
timezone: ETimeZone;
|
|
11480
|
-
listDateOfWeeks:
|
|
11551
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11481
11552
|
schedulePostTime: Array<Array<string>>;
|
|
11482
11553
|
sttAccount: string;
|
|
11483
11554
|
status: EStatusTaskScript;
|
|
@@ -11508,7 +11579,7 @@ interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITra
|
|
|
11508
11579
|
timeStart: Date;
|
|
11509
11580
|
timeEnd: Date;
|
|
11510
11581
|
timezone: ETimeZone;
|
|
11511
|
-
listDateOfWeeks:
|
|
11582
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11512
11583
|
schedulePostTime: Array<Array<string>>;
|
|
11513
11584
|
sttAccount: string;
|
|
11514
11585
|
status: EStatusTaskScript;
|
|
@@ -11544,7 +11615,7 @@ interface IInstagramReportPostReelELS extends IBaseELS {
|
|
|
11544
11615
|
timeStart: Date;
|
|
11545
11616
|
timeEnd: Date;
|
|
11546
11617
|
timezone: ETimeZone;
|
|
11547
|
-
listDateOfWeeks:
|
|
11618
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11548
11619
|
schedulePostTime: Array<Array<string>>;
|
|
11549
11620
|
sttAccount: string;
|
|
11550
11621
|
status: EStatusTaskScript;
|
|
@@ -11569,7 +11640,7 @@ interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITr
|
|
|
11569
11640
|
timeStart: Date;
|
|
11570
11641
|
timeEnd: Date;
|
|
11571
11642
|
timezone: ETimeZone;
|
|
11572
|
-
listDateOfWeeks:
|
|
11643
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11573
11644
|
schedulePostTime: Array<Array<string>>;
|
|
11574
11645
|
sttAccount: string;
|
|
11575
11646
|
status: EStatusTaskScript;
|
|
@@ -11603,7 +11674,7 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
|
|
|
11603
11674
|
timeStart: Date;
|
|
11604
11675
|
timeEnd: Date;
|
|
11605
11676
|
timezone: ETimeZone;
|
|
11606
|
-
listDateOfWeeks:
|
|
11677
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
11607
11678
|
schedulePostTime: Array<Array<string>>;
|
|
11608
11679
|
sttAccount: string;
|
|
11609
11680
|
status: EStatusTaskScript;
|
|
@@ -12847,7 +12918,7 @@ interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12847
12918
|
timeStart: Date;
|
|
12848
12919
|
timeEnd: Date;
|
|
12849
12920
|
timezone: ETimeZone;
|
|
12850
|
-
listDateOfWeeks:
|
|
12921
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12851
12922
|
schedulePostTime: Array<Array<string>>;
|
|
12852
12923
|
}
|
|
12853
12924
|
interface IThreadsReportPostELS extends IBaseELS {
|
|
@@ -12882,7 +12953,7 @@ interface IThreadsReportPostELS extends IBaseELS {
|
|
|
12882
12953
|
timeStart: Date;
|
|
12883
12954
|
timeEnd: Date;
|
|
12884
12955
|
timezone: ETimeZone;
|
|
12885
|
-
listDateOfWeeks:
|
|
12956
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12886
12957
|
schedulePostTime: Array<Array<string>>;
|
|
12887
12958
|
}
|
|
12888
12959
|
|
|
@@ -12898,7 +12969,7 @@ interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser>
|
|
|
12898
12969
|
timeStart: Date;
|
|
12899
12970
|
timeEnd: Date;
|
|
12900
12971
|
timezone: ETimeZone;
|
|
12901
|
-
listDateOfWeeks:
|
|
12972
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12902
12973
|
schedulePostTime: Array<Array<string>>;
|
|
12903
12974
|
}
|
|
12904
12975
|
interface IThreadsReportInteractFollowELS extends IBaseELS {
|
|
@@ -12925,7 +12996,7 @@ interface IThreadsReportInteractFollowELS extends IBaseELS {
|
|
|
12925
12996
|
timeStart: Date;
|
|
12926
12997
|
timeEnd: Date;
|
|
12927
12998
|
timezone: ETimeZone;
|
|
12928
|
-
listDateOfWeeks:
|
|
12999
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12929
13000
|
schedulePostTime: Array<Array<string>>;
|
|
12930
13001
|
}
|
|
12931
13002
|
|
|
@@ -12941,7 +13012,7 @@ interface IThreadsReportInteractUnFollow extends IBaseModel, ITrackingModel<IUse
|
|
|
12941
13012
|
timeStart: Date;
|
|
12942
13013
|
timeEnd: Date;
|
|
12943
13014
|
timezone: ETimeZone;
|
|
12944
|
-
listDateOfWeeks:
|
|
13015
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12945
13016
|
schedulePostTime: Array<Array<string>>;
|
|
12946
13017
|
}
|
|
12947
13018
|
interface IThreadsReportInteractUnFollowELS extends IBaseELS {
|
|
@@ -12968,7 +13039,7 @@ interface IThreadsReportInteractUnFollowELS extends IBaseELS {
|
|
|
12968
13039
|
timeStart: Date;
|
|
12969
13040
|
timeEnd: Date;
|
|
12970
13041
|
timezone: ETimeZone;
|
|
12971
|
-
listDateOfWeeks:
|
|
13042
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12972
13043
|
schedulePostTime: Array<Array<string>>;
|
|
12973
13044
|
}
|
|
12974
13045
|
|
|
@@ -12983,7 +13054,7 @@ interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeSc
|
|
|
12983
13054
|
timeStart: Date;
|
|
12984
13055
|
timeEnd: Date;
|
|
12985
13056
|
timezone: ETimeZone;
|
|
12986
|
-
listDateOfWeeks:
|
|
13057
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
12987
13058
|
schedulePostTime: Array<Array<string>>;
|
|
12988
13059
|
}
|
|
12989
13060
|
interface IThreadsReportInteractReplyMessageELS extends IBaseELS {
|
|
@@ -13009,7 +13080,7 @@ interface IThreadsReportInteractReplyMessageELS extends IBaseELS {
|
|
|
13009
13080
|
timeStart: Date;
|
|
13010
13081
|
timeEnd: Date;
|
|
13011
13082
|
timezone: ETimeZone;
|
|
13012
|
-
listDateOfWeeks:
|
|
13083
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
13013
13084
|
schedulePostTime: Array<Array<string>>;
|
|
13014
13085
|
}
|
|
13015
13086
|
|
|
@@ -13025,7 +13096,7 @@ interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<
|
|
|
13025
13096
|
timeStart: Date;
|
|
13026
13097
|
timeEnd: Date;
|
|
13027
13098
|
timezone: ETimeZone;
|
|
13028
|
-
listDateOfWeeks:
|
|
13099
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
13029
13100
|
schedulePostTime: Array<Array<string>>;
|
|
13030
13101
|
}
|
|
13031
13102
|
interface IThreadsReportInteractReplyCommentELS extends IBaseELS {
|
|
@@ -13052,7 +13123,7 @@ interface IThreadsReportInteractReplyCommentELS extends IBaseELS {
|
|
|
13052
13123
|
timeStart: Date;
|
|
13053
13124
|
timeEnd: Date;
|
|
13054
13125
|
timezone: ETimeZone;
|
|
13055
|
-
listDateOfWeeks:
|
|
13126
|
+
listDateOfWeeks: EDayOfWeek[];
|
|
13056
13127
|
schedulePostTime: Array<Array<string>>;
|
|
13057
13128
|
}
|
|
13058
13129
|
|
|
@@ -13559,7 +13630,9 @@ interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13559
13630
|
name: string;
|
|
13560
13631
|
device: string | IDevice;
|
|
13561
13632
|
description: string;
|
|
13562
|
-
|
|
13633
|
+
statusImport: ESheetToolStatusImport;
|
|
13634
|
+
statusRun: ESheetToolStatusRun;
|
|
13635
|
+
noteFixImport: string;
|
|
13563
13636
|
timeLastUsed: Date;
|
|
13564
13637
|
lastUserUsed: string | IUser;
|
|
13565
13638
|
}
|
|
@@ -13991,4 +14064,4 @@ declare namespace index {
|
|
|
13991
14064
|
export type { index_IDataDiscussTaskJob as IDataDiscussTaskJob, index_IDataNotification as IDataNotification, index_IDataUser as IDataUser, index_IFilterStore as IFilterStore, index_IResponseLogin as IResponseLogin };
|
|
13992
14065
|
}
|
|
13993
14066
|
|
|
13994
|
-
export { index$i as AI, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, 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 CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusImport, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusSocialAccountRaw, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeImport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, 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 FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, 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 FilterPerformanceBreakdownThreadsDashboardFollowerDto, 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 FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, 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 FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractExploreDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReelDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractStoryDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, 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 FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, 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 FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 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 IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, 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 IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, 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 ISheetImportSocial, 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 ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramInteractExplore, type ITaskInstagramInteractExploreELS, type ITaskInstagramInteractReel, type ITaskInstagramInteractReelELS, type ITaskInstagramInteractStory, type ITaskInstagramInteractStoryELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, 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 IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, 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 ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoDeviceSheetToolDto, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$5 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$4 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, 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 UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };
|
|
14067
|
+
export { index$i as AI, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, 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 CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusImport, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusSocialAccountRaw, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeImport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, 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 FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, 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 FilterPerformanceBreakdownThreadsDashboardFollowerDto, 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 FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, 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 FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractExploreDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReelDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractStoryDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, 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 FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, 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 FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 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 IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, 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 IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, 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 ISheetImportSocial, 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 ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramInteractExplore, type ITaskInstagramInteractExploreELS, type ITaskInstagramInteractReel, type ITaskInstagramInteractReelELS, type ITaskInstagramInteractStory, type ITaskInstagramInteractStoryELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, 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 IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserInfoAssignment, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$5 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$4 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, 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 UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };
|