automation-lib 5.4.147 → 5.4.148
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 +333 -251
- package/dist/index.d.ts +333 -251
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11697,17 +11697,19 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
|
|
|
11697
11697
|
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
11698
11698
|
sheetUrl: string;
|
|
11699
11699
|
sheetName: string;
|
|
11700
|
-
|
|
11700
|
+
sheetType: string;
|
|
11701
11701
|
account: string | IInstagramAccountRaw;
|
|
11702
11702
|
minuteWaiting: number;
|
|
11703
11703
|
isTimeUS: boolean;
|
|
11704
11704
|
dayOfWeek: EDayOfWeek;
|
|
11705
11705
|
timeFrom: string;
|
|
11706
11706
|
timeTo: string;
|
|
11707
|
+
minuteExecute: string;
|
|
11707
11708
|
service: string;
|
|
11708
11709
|
action: string;
|
|
11709
11710
|
timeExecute: Date;
|
|
11710
11711
|
status: EStatusTaskToolSocials;
|
|
11712
|
+
timeZone: string;
|
|
11711
11713
|
note: string;
|
|
11712
11714
|
listBlockUserName: string[];
|
|
11713
11715
|
listRestrictUserName: string[];
|
|
@@ -11745,15 +11747,22 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
|
11745
11747
|
country: string;
|
|
11746
11748
|
status: EStatusProxyChecked;
|
|
11747
11749
|
}>;
|
|
11750
|
+
sheet: {
|
|
11751
|
+
url: string;
|
|
11752
|
+
name: string;
|
|
11753
|
+
type: string;
|
|
11754
|
+
};
|
|
11748
11755
|
minuteWaiting: number;
|
|
11749
11756
|
isTimeUS: boolean;
|
|
11750
11757
|
dayOfWeek: EDayOfWeek;
|
|
11751
11758
|
timeFrom: string;
|
|
11752
11759
|
timeTo: string;
|
|
11760
|
+
minuteExecute: string;
|
|
11753
11761
|
service: string;
|
|
11754
11762
|
action: string;
|
|
11755
11763
|
timeExecute: Date;
|
|
11756
11764
|
status: EStatusTaskToolSocials;
|
|
11765
|
+
timeZone: string;
|
|
11757
11766
|
note: string;
|
|
11758
11767
|
listBlockUserName: string[];
|
|
11759
11768
|
listRestrictUserName: string[];
|
|
@@ -11763,17 +11772,19 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
|
11763
11772
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
11764
11773
|
sheetUrl: string;
|
|
11765
11774
|
sheetName: string;
|
|
11766
|
-
|
|
11775
|
+
sheetType: string;
|
|
11767
11776
|
account: string | IInstagramAccountRaw;
|
|
11768
11777
|
minuteWaiting: number;
|
|
11769
11778
|
isTimeUS: boolean;
|
|
11770
11779
|
dayOfWeek: EDayOfWeek;
|
|
11771
11780
|
timeFrom: string;
|
|
11772
11781
|
timeTo: string;
|
|
11782
|
+
minuteExecute: string;
|
|
11773
11783
|
service: string;
|
|
11774
11784
|
action: string;
|
|
11775
11785
|
timeExecute: Date;
|
|
11776
11786
|
status: EStatusTaskToolSocials;
|
|
11787
|
+
timeZone: string;
|
|
11777
11788
|
note: string;
|
|
11778
11789
|
oldUserName: string;
|
|
11779
11790
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
@@ -11828,15 +11839,22 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11828
11839
|
country: string;
|
|
11829
11840
|
status: EStatusProxyChecked;
|
|
11830
11841
|
}>;
|
|
11842
|
+
sheet: {
|
|
11843
|
+
url: string;
|
|
11844
|
+
name: string;
|
|
11845
|
+
type: string;
|
|
11846
|
+
};
|
|
11831
11847
|
minuteWaiting: number;
|
|
11832
11848
|
isTimeUS: boolean;
|
|
11833
11849
|
dayOfWeek: EDayOfWeek;
|
|
11834
11850
|
timeFrom: string;
|
|
11835
11851
|
timeTo: string;
|
|
11852
|
+
minuteExecute: string;
|
|
11836
11853
|
service: string;
|
|
11837
11854
|
action: string;
|
|
11838
11855
|
timeExecute: Date;
|
|
11839
11856
|
status: EStatusTaskToolSocials;
|
|
11857
|
+
timeZone: string;
|
|
11840
11858
|
note: string;
|
|
11841
11859
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
11842
11860
|
changeUserNameNew: string;
|
|
@@ -11859,20 +11877,128 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11859
11877
|
urlImageCover: string;
|
|
11860
11878
|
}
|
|
11861
11879
|
|
|
11862
|
-
interface
|
|
11863
|
-
|
|
11864
|
-
|
|
11880
|
+
interface IVoiceLanguage extends IBaseModel, ITrackingModel<IUser> {
|
|
11881
|
+
vl_name: string;
|
|
11882
|
+
vl_key: ETypeVoiceLanguage;
|
|
11883
|
+
}
|
|
11884
|
+
|
|
11885
|
+
interface IVoiceStores extends IBaseModel, ITrackingModel<IUser> {
|
|
11886
|
+
vs_name: string;
|
|
11887
|
+
vs_avatar: string;
|
|
11888
|
+
vs_audio: string;
|
|
11889
|
+
vs_language: IVoiceLanguage | string;
|
|
11890
|
+
}
|
|
11891
|
+
|
|
11892
|
+
interface IVoiceGenerated extends IBaseModel, ITrackingModel<IUser> {
|
|
11893
|
+
vg_content: Array<{
|
|
11894
|
+
prompt: string;
|
|
11895
|
+
voiceStore: IVoiceStores | string;
|
|
11896
|
+
}>;
|
|
11897
|
+
vg_setting: {
|
|
11898
|
+
speed: number;
|
|
11899
|
+
stability: number;
|
|
11900
|
+
similarity: number;
|
|
11901
|
+
speakerBoost: boolean;
|
|
11902
|
+
};
|
|
11903
|
+
vg_audio: string;
|
|
11904
|
+
}
|
|
11905
|
+
|
|
11906
|
+
interface IVoiceSettingDelay extends IBaseModel, ITrackingModel<IUser> {
|
|
11907
|
+
vsd_symbol: string;
|
|
11908
|
+
vsd_timeDelay: number;
|
|
11909
|
+
}
|
|
11910
|
+
|
|
11911
|
+
interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
11865
11912
|
typeSocial: ETypeSocial;
|
|
11913
|
+
type: ESheetToolInstagram;
|
|
11914
|
+
url: string;
|
|
11915
|
+
name: string;
|
|
11916
|
+
device: string | IDevice;
|
|
11917
|
+
description: string;
|
|
11918
|
+
statusImport: ESheetToolStatusImport;
|
|
11919
|
+
statusRun: ESheetToolStatusRun;
|
|
11920
|
+
noteFixImport: string;
|
|
11921
|
+
timeLastUsed: Date;
|
|
11922
|
+
lastUserUsed: string | IUser;
|
|
11923
|
+
}
|
|
11924
|
+
|
|
11925
|
+
type index$5_IAccountAIContent = IAccountAIContent;
|
|
11926
|
+
type index$5_IAccountAIContentChannel = IAccountAIContentChannel;
|
|
11927
|
+
type index$5_IAccountAIContentGroup = IAccountAIContentGroup;
|
|
11928
|
+
type index$5_IAccountAIContentInfo = IAccountAIContentInfo;
|
|
11929
|
+
type index$5_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
|
|
11930
|
+
type index$5_IAccountAIContentTag = IAccountAIContentTag;
|
|
11931
|
+
type index$5_IAccountAIImage = IAccountAIImage;
|
|
11932
|
+
type index$5_IAccountAIImageChannel = IAccountAIImageChannel;
|
|
11933
|
+
type index$5_IAccountAIImageGroup = IAccountAIImageGroup;
|
|
11934
|
+
type index$5_IAccountAIImageInfo = IAccountAIImageInfo;
|
|
11935
|
+
type index$5_IAccountAIImageMemberAssigned = IAccountAIImageMemberAssigned;
|
|
11936
|
+
type index$5_IAccountAIImageTag = IAccountAIImageTag;
|
|
11937
|
+
type index$5_IAccountAIVoice = IAccountAIVoice;
|
|
11938
|
+
type index$5_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
|
|
11939
|
+
type index$5_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
|
|
11940
|
+
type index$5_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
|
|
11941
|
+
type index$5_IAccountAIVoiceMemberAssigned = IAccountAIVoiceMemberAssigned;
|
|
11942
|
+
type index$5_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
11943
|
+
type index$5_IAccountCHPlayICloud = IAccountCHPlayICloud;
|
|
11944
|
+
type index$5_IAccountCanva = IAccountCanva;
|
|
11945
|
+
type index$5_IAccountDrive = IAccountDrive;
|
|
11946
|
+
type index$5_IAccountEmail = IAccountEmail;
|
|
11947
|
+
type index$5_IAccountEmailProxy = IAccountEmailProxy;
|
|
11948
|
+
type index$5_IAccountEmailTag = IAccountEmailTag;
|
|
11949
|
+
type index$5_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
11950
|
+
type index$5_IAccountVPN = IAccountVPN;
|
|
11951
|
+
type index$5_IAccountVPS = IAccountVPS;
|
|
11952
|
+
type index$5_IAccountVPSGroup = IAccountVPSGroup;
|
|
11953
|
+
type index$5_IAccountVPSSocial = IAccountVPSSocial;
|
|
11954
|
+
type index$5_IDevice = IDevice;
|
|
11955
|
+
type index$5_IDeviceLog = IDeviceLog;
|
|
11956
|
+
type index$5_IDeviceLogELS = IDeviceLogELS;
|
|
11957
|
+
type index$5_IDeviceSettingForAccount = IDeviceSettingForAccount;
|
|
11958
|
+
type index$5_IDeviceSettingForCHPlayICloud = IDeviceSettingForCHPlayICloud;
|
|
11959
|
+
type index$5_IDeviceSettingForProxy = IDeviceSettingForProxy;
|
|
11960
|
+
type index$5_IDeviceSettingForVPN = IDeviceSettingForVPN;
|
|
11961
|
+
type index$5_IGPMProfile = IGPMProfile;
|
|
11962
|
+
type index$5_IManagerImageAI = IManagerImageAI;
|
|
11963
|
+
type index$5_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
11964
|
+
type index$5_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
|
|
11965
|
+
type index$5_IManagerSheet = IManagerSheet;
|
|
11966
|
+
type index$5_IManagerSheetChildren = IManagerSheetChildren;
|
|
11967
|
+
type index$5_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
11968
|
+
type index$5_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
11969
|
+
type index$5_IManagerSheetGroup = IManagerSheetGroup;
|
|
11970
|
+
type index$5_IPC = IPC;
|
|
11971
|
+
type index$5_IProxy = IProxy;
|
|
11972
|
+
type index$5_ISheetsTool = ISheetsTool;
|
|
11973
|
+
type index$5_ITaskAIContent = ITaskAIContent;
|
|
11974
|
+
type index$5_ITaskAIImageCanvaInstagram = ITaskAIImageCanvaInstagram;
|
|
11975
|
+
type index$5_ITaskAIImageCanvaThreads = ITaskAIImageCanvaThreads;
|
|
11976
|
+
type index$5_ITaskAIImageVoiceCanvaInstagram = ITaskAIImageVoiceCanvaInstagram;
|
|
11977
|
+
type index$5_ITaskAIImageVoiceCanvaThreads = ITaskAIImageVoiceCanvaThreads;
|
|
11978
|
+
type index$5_ITaskAIItemAction = ITaskAIItemAction;
|
|
11979
|
+
type index$5_ITaskAIItemGroup = ITaskAIItemGroup;
|
|
11980
|
+
type index$5_IVoiceGenerated = IVoiceGenerated;
|
|
11981
|
+
type index$5_IVoiceLanguage = IVoiceLanguage;
|
|
11982
|
+
type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
11983
|
+
type index$5_IVoiceStores = IVoiceStores;
|
|
11984
|
+
declare namespace index$5 {
|
|
11985
|
+
export type { index$5_IAccountAIContent as IAccountAIContent, index$5_IAccountAIContentChannel as IAccountAIContentChannel, index$5_IAccountAIContentGroup as IAccountAIContentGroup, index$5_IAccountAIContentInfo as IAccountAIContentInfo, index$5_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, index$5_IAccountAIContentTag as IAccountAIContentTag, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountCHPlayICloud as IAccountCHPlayICloud, index$5_IAccountCanva as IAccountCanva, index$5_IAccountDrive as IAccountDrive, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountVPN as IAccountVPN, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IAccountVPSSocial as IAccountVPSSocial, index$5_IDevice as IDevice, index$5_IDeviceLog as IDeviceLog, index$5_IDeviceLogELS as IDeviceLogELS, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, index$5_IDeviceSettingForProxy as IDeviceSettingForProxy, index$5_IDeviceSettingForVPN as IDeviceSettingForVPN, index$5_IGPMProfile as IGPMProfile, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAIContent as ITaskAIContent, index$5_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, index$5_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, index$5_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, index$5_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
|
|
11986
|
+
}
|
|
11987
|
+
|
|
11988
|
+
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
11989
|
+
sheet: string | ISheetsTool;
|
|
11866
11990
|
account: string | IInstagramAccountRaw;
|
|
11867
11991
|
minuteWaiting: number;
|
|
11868
11992
|
isTimeUS: boolean;
|
|
11869
11993
|
dayOfWeek: EDayOfWeek;
|
|
11870
11994
|
timeFrom: string;
|
|
11871
11995
|
timeTo: string;
|
|
11996
|
+
minuteExecute: string;
|
|
11872
11997
|
service: string;
|
|
11873
11998
|
action: string;
|
|
11874
11999
|
timeExecute: Date;
|
|
11875
12000
|
status: EStatusTaskToolSocials;
|
|
12001
|
+
timeZone: string;
|
|
11876
12002
|
note: string;
|
|
11877
12003
|
listUsernameFollow: string[];
|
|
11878
12004
|
}
|
|
@@ -11908,31 +12034,38 @@ interface ITaskInstagramFollowELS extends IBaseELS {
|
|
|
11908
12034
|
country: string;
|
|
11909
12035
|
status: EStatusProxyChecked;
|
|
11910
12036
|
}>;
|
|
12037
|
+
sheet: IBaseRefFieldELS & {
|
|
12038
|
+
url: string;
|
|
12039
|
+
type: string;
|
|
12040
|
+
};
|
|
11911
12041
|
minuteWaiting: number;
|
|
11912
12042
|
isTimeUS: boolean;
|
|
11913
12043
|
dayOfWeek: EDayOfWeek;
|
|
11914
12044
|
timeFrom: string;
|
|
11915
12045
|
timeTo: string;
|
|
12046
|
+
minuteExecute: string;
|
|
11916
12047
|
service: string;
|
|
11917
12048
|
action: string;
|
|
11918
12049
|
timeExecute: Date;
|
|
11919
12050
|
status: EStatusTaskToolSocials;
|
|
12051
|
+
timeZone: string;
|
|
11920
12052
|
note: string;
|
|
11921
12053
|
listUsernameFollow: string[];
|
|
11922
12054
|
}
|
|
11923
12055
|
|
|
11924
12056
|
interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
|
11925
|
-
typeSocial: ETypeSocial;
|
|
11926
12057
|
account: string | IInstagramAccountRaw;
|
|
11927
12058
|
minuteWaiting: number;
|
|
11928
12059
|
isTimeUS: boolean;
|
|
11929
12060
|
dayOfWeek: EDayOfWeek;
|
|
11930
12061
|
timeFrom: string;
|
|
11931
12062
|
timeTo: string;
|
|
12063
|
+
minuteExecute: string;
|
|
11932
12064
|
service: string;
|
|
11933
12065
|
action: string;
|
|
11934
12066
|
timeExecute: Date;
|
|
11935
12067
|
status: EStatusTaskToolSocials;
|
|
12068
|
+
timeZone: string;
|
|
11936
12069
|
note: string;
|
|
11937
12070
|
numberView: number;
|
|
11938
12071
|
isBasicView: boolean;
|
|
@@ -11977,10 +12110,12 @@ interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
|
11977
12110
|
dayOfWeek: EDayOfWeek;
|
|
11978
12111
|
timeFrom: string;
|
|
11979
12112
|
timeTo: string;
|
|
12113
|
+
minuteExecute: string;
|
|
11980
12114
|
service: string;
|
|
11981
12115
|
action: string;
|
|
11982
12116
|
timeExecute: Date;
|
|
11983
12117
|
status: EStatusTaskToolSocials;
|
|
12118
|
+
timeZone: string;
|
|
11984
12119
|
note: string;
|
|
11985
12120
|
numberView: number;
|
|
11986
12121
|
isBasicView: boolean;
|
|
@@ -11990,17 +12125,18 @@ interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
|
11990
12125
|
}
|
|
11991
12126
|
|
|
11992
12127
|
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
11993
|
-
typeSocial: ETypeSocial;
|
|
11994
12128
|
account: string | IInstagramAccountRaw;
|
|
11995
12129
|
minuteWaiting: number;
|
|
11996
12130
|
isTimeUS: boolean;
|
|
11997
12131
|
dayOfWeek: EDayOfWeek;
|
|
11998
12132
|
timeFrom: string;
|
|
11999
12133
|
timeTo: string;
|
|
12134
|
+
minuteExecute: string;
|
|
12000
12135
|
service: string;
|
|
12001
12136
|
action: string;
|
|
12002
12137
|
timeExecute: Date;
|
|
12003
12138
|
status: EStatusTaskToolSocials;
|
|
12139
|
+
timeZone: string;
|
|
12004
12140
|
note: string;
|
|
12005
12141
|
numberView: number;
|
|
12006
12142
|
isLike: boolean;
|
|
@@ -12044,10 +12180,12 @@ interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
|
12044
12180
|
dayOfWeek: EDayOfWeek;
|
|
12045
12181
|
timeFrom: string;
|
|
12046
12182
|
timeTo: string;
|
|
12183
|
+
minuteExecute: string;
|
|
12047
12184
|
service: string;
|
|
12048
12185
|
action: string;
|
|
12049
12186
|
timeExecute: Date;
|
|
12050
12187
|
status: EStatusTaskToolSocials;
|
|
12188
|
+
timeZone: string;
|
|
12051
12189
|
note: string;
|
|
12052
12190
|
numberView: number;
|
|
12053
12191
|
isLike: boolean;
|
|
@@ -12056,17 +12194,18 @@ interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
|
12056
12194
|
}
|
|
12057
12195
|
|
|
12058
12196
|
interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
|
12059
|
-
typeSocial: ETypeSocial;
|
|
12060
12197
|
account: string | IInstagramAccountRaw;
|
|
12061
12198
|
minuteWaiting: number;
|
|
12062
12199
|
isTimeUS: boolean;
|
|
12063
12200
|
dayOfWeek: EDayOfWeek;
|
|
12064
12201
|
timeFrom: string;
|
|
12065
12202
|
timeTo: string;
|
|
12203
|
+
minuteExecute: string;
|
|
12066
12204
|
service: string;
|
|
12067
12205
|
action: string;
|
|
12068
12206
|
timeExecute: Date;
|
|
12069
12207
|
status: EStatusTaskToolSocials;
|
|
12208
|
+
timeZone: string;
|
|
12070
12209
|
note: string;
|
|
12071
12210
|
numberView: number;
|
|
12072
12211
|
isLike: boolean;
|
|
@@ -12109,10 +12248,12 @@ interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
|
12109
12248
|
dayOfWeek: EDayOfWeek;
|
|
12110
12249
|
timeFrom: string;
|
|
12111
12250
|
timeTo: string;
|
|
12251
|
+
minuteExecute: string;
|
|
12112
12252
|
service: string;
|
|
12113
12253
|
action: string;
|
|
12114
12254
|
timeExecute: Date;
|
|
12115
12255
|
status: EStatusTaskToolSocials;
|
|
12256
|
+
timeZone: string;
|
|
12116
12257
|
note: string;
|
|
12117
12258
|
numberView: number;
|
|
12118
12259
|
isLike: boolean;
|
|
@@ -12120,18 +12261,19 @@ interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
|
12120
12261
|
}
|
|
12121
12262
|
|
|
12122
12263
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
12264
|
+
sheet: string | ISheetsTool;
|
|
12123
12265
|
account: string | IInstagramAccountRaw;
|
|
12124
|
-
sheetUrl: string;
|
|
12125
|
-
sheetName: string;
|
|
12126
12266
|
minuteWaiting: number;
|
|
12127
12267
|
isTimeUS: boolean;
|
|
12128
12268
|
dayOfWeek: EDayOfWeek;
|
|
12129
12269
|
timeFrom: string;
|
|
12130
12270
|
timeTo: string;
|
|
12271
|
+
minuteExecute: string;
|
|
12131
12272
|
service: string;
|
|
12132
12273
|
action: string;
|
|
12133
12274
|
timeExecute: Date;
|
|
12134
12275
|
status: EStatusTaskToolSocials;
|
|
12276
|
+
timeZone: string;
|
|
12135
12277
|
note: string;
|
|
12136
12278
|
canvaUrlVideo: string;
|
|
12137
12279
|
canvaImageThumb: string;
|
|
@@ -12173,6 +12315,7 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12173
12315
|
statusLogin: EStatusAccountSocialLogin;
|
|
12174
12316
|
statusSocial: EStatusAccountSocial;
|
|
12175
12317
|
statusPost: string;
|
|
12318
|
+
shareUserPostMe: string[];
|
|
12176
12319
|
linkPost: string;
|
|
12177
12320
|
}
|
|
12178
12321
|
interface ITaskInstagramPostELS extends IBaseELS {
|
|
@@ -12207,15 +12350,21 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12207
12350
|
country: string;
|
|
12208
12351
|
status: EStatusProxyChecked;
|
|
12209
12352
|
}>;
|
|
12353
|
+
sheet: IBaseRefFieldELS & {
|
|
12354
|
+
url: string;
|
|
12355
|
+
type: string;
|
|
12356
|
+
};
|
|
12210
12357
|
minuteWaiting: number;
|
|
12211
12358
|
isTimeUS: boolean;
|
|
12212
12359
|
dayOfWeek: EDayOfWeek;
|
|
12213
12360
|
timeFrom: string;
|
|
12214
12361
|
timeTo: string;
|
|
12362
|
+
minuteExecute: string;
|
|
12215
12363
|
service: string;
|
|
12216
12364
|
action: string;
|
|
12217
12365
|
timeExecute: Date;
|
|
12218
12366
|
status: EStatusTaskToolSocials;
|
|
12367
|
+
timeZone: string;
|
|
12219
12368
|
note: string;
|
|
12220
12369
|
folderImageName: string;
|
|
12221
12370
|
sheetUrl: string;
|
|
@@ -12260,23 +12409,24 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12260
12409
|
statusLogin: EStatusAccountSocialLogin;
|
|
12261
12410
|
statusSocial: EStatusAccountSocial;
|
|
12262
12411
|
statusPost: string;
|
|
12412
|
+
shareUserPostMe: string[];
|
|
12263
12413
|
linkPost: string;
|
|
12264
12414
|
}
|
|
12265
12415
|
|
|
12266
12416
|
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
12267
|
-
|
|
12268
|
-
sheetName: string;
|
|
12269
|
-
typeSocial: ETypeSocial;
|
|
12417
|
+
sheet: string | ISheetsTool;
|
|
12270
12418
|
account: string | IInstagramAccountRaw;
|
|
12271
12419
|
minuteWaiting: number;
|
|
12272
12420
|
isTimeUS: boolean;
|
|
12273
12421
|
dayOfWeek: EDayOfWeek;
|
|
12274
12422
|
timeFrom: string;
|
|
12275
12423
|
timeTo: string;
|
|
12424
|
+
minuteExecute: string;
|
|
12276
12425
|
service: string;
|
|
12277
12426
|
action: string;
|
|
12278
12427
|
timeExecute: Date;
|
|
12279
12428
|
status: EStatusTaskToolSocials;
|
|
12429
|
+
timeZone: string;
|
|
12280
12430
|
note: string;
|
|
12281
12431
|
postUrlReply: string;
|
|
12282
12432
|
messageForReply: string;
|
|
@@ -12317,15 +12467,21 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
|
|
|
12317
12467
|
country: string;
|
|
12318
12468
|
status: EStatusProxyChecked;
|
|
12319
12469
|
}>;
|
|
12470
|
+
sheet: IBaseRefFieldELS & {
|
|
12471
|
+
url: string;
|
|
12472
|
+
type: string;
|
|
12473
|
+
};
|
|
12320
12474
|
minuteWaiting: number;
|
|
12321
12475
|
isTimeUS: boolean;
|
|
12322
12476
|
dayOfWeek: EDayOfWeek;
|
|
12323
12477
|
timeFrom: string;
|
|
12324
12478
|
timeTo: string;
|
|
12479
|
+
minuteExecute: string;
|
|
12325
12480
|
service: string;
|
|
12326
12481
|
action: string;
|
|
12327
12482
|
timeExecute: Date;
|
|
12328
12483
|
status: EStatusTaskToolSocials;
|
|
12484
|
+
timeZone: string;
|
|
12329
12485
|
note: string;
|
|
12330
12486
|
sheetUrl: string;
|
|
12331
12487
|
sheetName: string;
|
|
@@ -12338,19 +12494,19 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
|
|
|
12338
12494
|
}
|
|
12339
12495
|
|
|
12340
12496
|
interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
12341
|
-
|
|
12342
|
-
sheetName: string;
|
|
12497
|
+
sheet: string | ISheetsTool;
|
|
12343
12498
|
account: string | IInstagramAccountRaw;
|
|
12344
|
-
typeSocial: ETypeSocial;
|
|
12345
12499
|
minuteWaiting: number;
|
|
12346
12500
|
isTimeUS: boolean;
|
|
12347
12501
|
dayOfWeek: EDayOfWeek;
|
|
12348
12502
|
timeFrom: string;
|
|
12349
12503
|
timeTo: string;
|
|
12504
|
+
minuteExecute: string;
|
|
12350
12505
|
service: string;
|
|
12351
12506
|
action: string;
|
|
12352
12507
|
timeExecute: Date;
|
|
12353
12508
|
status: EStatusTaskToolSocials;
|
|
12509
|
+
timeZone: string;
|
|
12354
12510
|
note: string;
|
|
12355
12511
|
postUrlReply: string;
|
|
12356
12512
|
messageForReply: string;
|
|
@@ -12391,15 +12547,21 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
|
|
|
12391
12547
|
country: string;
|
|
12392
12548
|
status: EStatusProxyChecked;
|
|
12393
12549
|
}>;
|
|
12550
|
+
sheet: IBaseRefFieldELS & {
|
|
12551
|
+
url: string;
|
|
12552
|
+
type: string;
|
|
12553
|
+
};
|
|
12394
12554
|
minuteWaiting: number;
|
|
12395
12555
|
isTimeUS: boolean;
|
|
12396
12556
|
dayOfWeek: EDayOfWeek;
|
|
12397
12557
|
timeFrom: string;
|
|
12398
12558
|
timeTo: string;
|
|
12559
|
+
minuteExecute: string;
|
|
12399
12560
|
service: string;
|
|
12400
12561
|
action: string;
|
|
12401
12562
|
timeExecute: Date;
|
|
12402
12563
|
status: EStatusTaskToolSocials;
|
|
12564
|
+
timeZone: string;
|
|
12403
12565
|
note: string;
|
|
12404
12566
|
sheetUrl: string;
|
|
12405
12567
|
sheetName: string;
|
|
@@ -13213,8 +13375,7 @@ interface IThreadsSettingInteractReplyMessage extends IBaseModel, ITrackingModel
|
|
|
13213
13375
|
}
|
|
13214
13376
|
|
|
13215
13377
|
interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
13216
|
-
|
|
13217
|
-
sheetName: string;
|
|
13378
|
+
sheet: string | ISheetsTool;
|
|
13218
13379
|
typeSocial: ETypeSocial;
|
|
13219
13380
|
account: string | IThreadsAccountRaw;
|
|
13220
13381
|
minuteWaiting: number;
|
|
@@ -13222,10 +13383,12 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13222
13383
|
dayOfWeek: EDayOfWeek;
|
|
13223
13384
|
timeFrom: string;
|
|
13224
13385
|
timeTo: string;
|
|
13386
|
+
minuteExecute: string;
|
|
13225
13387
|
service: string;
|
|
13226
13388
|
action: string;
|
|
13227
13389
|
timeExecute: Date;
|
|
13228
13390
|
status: EStatusTaskToolSocials;
|
|
13391
|
+
timeZone: string;
|
|
13229
13392
|
note: string;
|
|
13230
13393
|
canvaUrlVideo: string;
|
|
13231
13394
|
canvaImageThumb: string;
|
|
@@ -13276,15 +13439,21 @@ interface ITaskThreadsPostELS extends IBaseELS {
|
|
|
13276
13439
|
country: string;
|
|
13277
13440
|
status: EStatusProxyChecked;
|
|
13278
13441
|
}>;
|
|
13442
|
+
sheet: IBaseRefFieldELS & {
|
|
13443
|
+
url: string;
|
|
13444
|
+
type: string;
|
|
13445
|
+
};
|
|
13279
13446
|
minuteWaiting: number;
|
|
13280
13447
|
isTimeUS: boolean;
|
|
13281
13448
|
dayOfWeek: EDayOfWeek;
|
|
13282
13449
|
timeFrom: string;
|
|
13283
13450
|
timeTo: string;
|
|
13451
|
+
minuteExecute: string;
|
|
13284
13452
|
service: string;
|
|
13285
13453
|
action: string;
|
|
13286
13454
|
timeExecute: Date;
|
|
13287
13455
|
status: EStatusTaskToolSocials;
|
|
13456
|
+
timeZone: string;
|
|
13288
13457
|
note: string;
|
|
13289
13458
|
folderImageName: string;
|
|
13290
13459
|
sheetUrl: string;
|
|
@@ -13308,8 +13477,7 @@ interface ITaskThreadsPostELS extends IBaseELS {
|
|
|
13308
13477
|
}
|
|
13309
13478
|
|
|
13310
13479
|
interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
13311
|
-
|
|
13312
|
-
sheetName: string;
|
|
13480
|
+
sheet: string | ISheetsTool;
|
|
13313
13481
|
typeSocial: ETypeSocial;
|
|
13314
13482
|
account: string | IThreadsAccountRaw;
|
|
13315
13483
|
minuteWaiting: number;
|
|
@@ -13317,10 +13485,12 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13317
13485
|
dayOfWeek: EDayOfWeek;
|
|
13318
13486
|
timeFrom: string;
|
|
13319
13487
|
timeTo: string;
|
|
13488
|
+
minuteExecute: string;
|
|
13320
13489
|
service: string;
|
|
13321
13490
|
action: string;
|
|
13322
13491
|
timeExecute: Date;
|
|
13323
13492
|
status: EStatusTaskToolSocials;
|
|
13493
|
+
timeZone: string;
|
|
13324
13494
|
note: string;
|
|
13325
13495
|
listUsernameFollow: string[];
|
|
13326
13496
|
}
|
|
@@ -13356,22 +13526,27 @@ interface ITaskThreadsFollowELS extends IBaseELS {
|
|
|
13356
13526
|
country: string;
|
|
13357
13527
|
status: EStatusProxyChecked;
|
|
13358
13528
|
}>;
|
|
13529
|
+
sheet: IBaseRefFieldELS & {
|
|
13530
|
+
url: string;
|
|
13531
|
+
type: string;
|
|
13532
|
+
};
|
|
13359
13533
|
minuteWaiting: number;
|
|
13360
13534
|
isTimeUS: boolean;
|
|
13361
13535
|
dayOfWeek: EDayOfWeek;
|
|
13362
13536
|
timeFrom: string;
|
|
13363
13537
|
timeTo: string;
|
|
13538
|
+
minuteExecute: string;
|
|
13364
13539
|
service: string;
|
|
13365
13540
|
action: string;
|
|
13366
13541
|
timeExecute: Date;
|
|
13367
13542
|
status: EStatusTaskToolSocials;
|
|
13543
|
+
timeZone: string;
|
|
13368
13544
|
note: string;
|
|
13369
13545
|
listUsernameFollow: string[];
|
|
13370
13546
|
}
|
|
13371
13547
|
|
|
13372
13548
|
interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
13373
|
-
|
|
13374
|
-
sheetName: string;
|
|
13549
|
+
sheet: string | ISheetsTool;
|
|
13375
13550
|
typeSocial: ETypeSocial;
|
|
13376
13551
|
account: string | IThreadsAccountRaw;
|
|
13377
13552
|
minuteWaiting: number;
|
|
@@ -13379,10 +13554,12 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13379
13554
|
dayOfWeek: EDayOfWeek;
|
|
13380
13555
|
timeFrom: string;
|
|
13381
13556
|
timeTo: string;
|
|
13557
|
+
minuteExecute: string;
|
|
13382
13558
|
service: string;
|
|
13383
13559
|
action: string;
|
|
13384
13560
|
timeExecute: Date;
|
|
13385
13561
|
status: EStatusTaskToolSocials;
|
|
13562
|
+
timeZone: string;
|
|
13386
13563
|
note: string;
|
|
13387
13564
|
postUrlReply: string;
|
|
13388
13565
|
messageForReply: string;
|
|
@@ -13423,15 +13600,21 @@ interface ITaskThreadsReplyCommentELS extends IBaseELS {
|
|
|
13423
13600
|
country: string;
|
|
13424
13601
|
status: EStatusProxyChecked;
|
|
13425
13602
|
}>;
|
|
13603
|
+
sheet: IBaseRefFieldELS & {
|
|
13604
|
+
url: string;
|
|
13605
|
+
type: string;
|
|
13606
|
+
};
|
|
13426
13607
|
minuteWaiting: number;
|
|
13427
13608
|
isTimeUS: boolean;
|
|
13428
13609
|
dayOfWeek: EDayOfWeek;
|
|
13429
13610
|
timeFrom: string;
|
|
13430
13611
|
timeTo: string;
|
|
13612
|
+
minuteExecute: string;
|
|
13431
13613
|
service: string;
|
|
13432
13614
|
action: string;
|
|
13433
13615
|
timeExecute: Date;
|
|
13434
13616
|
status: EStatusTaskToolSocials;
|
|
13617
|
+
timeZone: string;
|
|
13435
13618
|
note: string;
|
|
13436
13619
|
postUrlReply: string;
|
|
13437
13620
|
messageForReply: string;
|
|
@@ -13442,8 +13625,7 @@ interface ITaskThreadsReplyCommentELS extends IBaseELS {
|
|
|
13442
13625
|
}
|
|
13443
13626
|
|
|
13444
13627
|
interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
13445
|
-
|
|
13446
|
-
sheetName: string;
|
|
13628
|
+
sheet: string | ISheetsTool;
|
|
13447
13629
|
typeSocial: ETypeSocial;
|
|
13448
13630
|
account: string | IThreadsAccountRaw;
|
|
13449
13631
|
minuteWaiting: number;
|
|
@@ -13451,10 +13633,12 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13451
13633
|
dayOfWeek: EDayOfWeek;
|
|
13452
13634
|
timeFrom: string;
|
|
13453
13635
|
timeTo: string;
|
|
13636
|
+
minuteExecute: string;
|
|
13454
13637
|
service: string;
|
|
13455
13638
|
action: string;
|
|
13456
13639
|
timeExecute: Date;
|
|
13457
13640
|
status: EStatusTaskToolSocials;
|
|
13641
|
+
timeZone: string;
|
|
13458
13642
|
note: string;
|
|
13459
13643
|
postUrlReply: string;
|
|
13460
13644
|
messageForReply: string;
|
|
@@ -13495,15 +13679,21 @@ interface ITaskThreadsReplyMessageELS extends IBaseELS {
|
|
|
13495
13679
|
country: string;
|
|
13496
13680
|
status: EStatusProxyChecked;
|
|
13497
13681
|
}>;
|
|
13682
|
+
sheet: IBaseRefFieldELS & {
|
|
13683
|
+
url: string;
|
|
13684
|
+
type: string;
|
|
13685
|
+
};
|
|
13498
13686
|
minuteWaiting: number;
|
|
13499
13687
|
isTimeUS: boolean;
|
|
13500
13688
|
dayOfWeek: EDayOfWeek;
|
|
13501
13689
|
timeFrom: string;
|
|
13502
13690
|
timeTo: string;
|
|
13691
|
+
minuteExecute: string;
|
|
13503
13692
|
service: string;
|
|
13504
13693
|
action: string;
|
|
13505
13694
|
timeExecute: Date;
|
|
13506
13695
|
status: EStatusTaskToolSocials;
|
|
13696
|
+
timeZone: string;
|
|
13507
13697
|
note: string;
|
|
13508
13698
|
postUrlReply: string;
|
|
13509
13699
|
messageForReply: string;
|
|
@@ -13546,123 +13736,123 @@ interface ISheetImportSocial extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13546
13736
|
note: string;
|
|
13547
13737
|
}
|
|
13548
13738
|
|
|
13549
|
-
type index$
|
|
13550
|
-
declare const index$
|
|
13551
|
-
type index$
|
|
13552
|
-
declare const index$
|
|
13553
|
-
type index$
|
|
13554
|
-
type index$
|
|
13555
|
-
type index$
|
|
13556
|
-
type index$
|
|
13557
|
-
type index$
|
|
13558
|
-
type index$
|
|
13559
|
-
type index$
|
|
13560
|
-
type index$
|
|
13561
|
-
type index$
|
|
13562
|
-
type index$
|
|
13563
|
-
type index$
|
|
13564
|
-
type index$
|
|
13565
|
-
type index$
|
|
13566
|
-
type index$
|
|
13567
|
-
type index$
|
|
13568
|
-
type index$
|
|
13569
|
-
type index$
|
|
13570
|
-
type index$
|
|
13571
|
-
type index$
|
|
13572
|
-
type index$
|
|
13573
|
-
type index$
|
|
13574
|
-
type index$
|
|
13575
|
-
type index$
|
|
13576
|
-
type index$
|
|
13577
|
-
type index$
|
|
13578
|
-
type index$
|
|
13579
|
-
type index$
|
|
13580
|
-
type index$
|
|
13581
|
-
type index$
|
|
13582
|
-
type index$
|
|
13583
|
-
type index$
|
|
13584
|
-
type index$
|
|
13585
|
-
type index$
|
|
13586
|
-
type index$
|
|
13587
|
-
type index$
|
|
13588
|
-
type index$
|
|
13589
|
-
type index$
|
|
13590
|
-
type index$
|
|
13591
|
-
type index$
|
|
13592
|
-
type index$
|
|
13593
|
-
type index$
|
|
13594
|
-
type index$
|
|
13595
|
-
type index$
|
|
13596
|
-
type index$
|
|
13597
|
-
type index$
|
|
13598
|
-
type index$
|
|
13599
|
-
type index$
|
|
13600
|
-
type index$
|
|
13601
|
-
type index$
|
|
13602
|
-
type index$
|
|
13603
|
-
type index$
|
|
13604
|
-
type index$
|
|
13605
|
-
type index$
|
|
13606
|
-
type index$
|
|
13607
|
-
type index$
|
|
13608
|
-
type index$
|
|
13609
|
-
type index$
|
|
13610
|
-
type index$
|
|
13611
|
-
type index$
|
|
13612
|
-
type index$
|
|
13613
|
-
type index$
|
|
13614
|
-
type index$
|
|
13615
|
-
type index$
|
|
13616
|
-
type index$
|
|
13617
|
-
type index$
|
|
13618
|
-
type index$
|
|
13619
|
-
type index$
|
|
13620
|
-
type index$
|
|
13621
|
-
type index$
|
|
13622
|
-
type index$
|
|
13623
|
-
type index$
|
|
13624
|
-
type index$
|
|
13625
|
-
type index$
|
|
13626
|
-
type index$
|
|
13627
|
-
type index$
|
|
13628
|
-
type index$
|
|
13629
|
-
type index$
|
|
13630
|
-
type index$
|
|
13631
|
-
type index$
|
|
13632
|
-
type index$
|
|
13633
|
-
type index$
|
|
13634
|
-
type index$
|
|
13635
|
-
type index$
|
|
13636
|
-
type index$
|
|
13637
|
-
type index$
|
|
13638
|
-
type index$
|
|
13639
|
-
type index$
|
|
13640
|
-
type index$
|
|
13641
|
-
type index$
|
|
13642
|
-
type index$
|
|
13643
|
-
type index$
|
|
13644
|
-
type index$
|
|
13645
|
-
type index$
|
|
13646
|
-
type index$
|
|
13647
|
-
type index$
|
|
13648
|
-
type index$
|
|
13649
|
-
type index$
|
|
13650
|
-
type index$
|
|
13651
|
-
type index$
|
|
13652
|
-
type index$
|
|
13653
|
-
type index$
|
|
13654
|
-
type index$
|
|
13655
|
-
type index$
|
|
13656
|
-
type index$
|
|
13657
|
-
type index$
|
|
13658
|
-
type index$
|
|
13659
|
-
type index$
|
|
13660
|
-
type index$
|
|
13661
|
-
type index$
|
|
13662
|
-
type index$
|
|
13663
|
-
type index$
|
|
13664
|
-
declare namespace index$
|
|
13665
|
-
export { index$
|
|
13739
|
+
type index$4_EStatusImport = EStatusImport;
|
|
13740
|
+
declare const index$4_EStatusImport: typeof EStatusImport;
|
|
13741
|
+
type index$4_ETypeImport = ETypeImport;
|
|
13742
|
+
declare const index$4_ETypeImport: typeof ETypeImport;
|
|
13743
|
+
type index$4_IAccountSocialBase = IAccountSocialBase;
|
|
13744
|
+
type index$4_IAccountSocialGroup = IAccountSocialGroup;
|
|
13745
|
+
type index$4_IInstagramAccountRaw = IInstagramAccountRaw;
|
|
13746
|
+
type index$4_IInstagramAccountRun = IInstagramAccountRun;
|
|
13747
|
+
type index$4_IInstagramDashboardFollower = IInstagramDashboardFollower;
|
|
13748
|
+
type index$4_IInstagramDashboardFollowerELS = IInstagramDashboardFollowerELS;
|
|
13749
|
+
type index$4_IInstagramHistoryAutoPost = IInstagramHistoryAutoPost;
|
|
13750
|
+
type index$4_IInstagramHistoryAutoPostELS = IInstagramHistoryAutoPostELS;
|
|
13751
|
+
type index$4_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
|
|
13752
|
+
type index$4_IInstagramHistoryAutoSyncELS = IInstagramHistoryAutoSyncELS;
|
|
13753
|
+
type index$4_IInstagramHistoryBlockUser = IInstagramHistoryBlockUser;
|
|
13754
|
+
type index$4_IInstagramHistoryBlockUserELS = IInstagramHistoryBlockUserELS;
|
|
13755
|
+
type index$4_IInstagramHistoryChangeInfo = IInstagramHistoryChangeInfo;
|
|
13756
|
+
type index$4_IInstagramHistoryChangeInfoELS = IInstagramHistoryChangeInfoELS;
|
|
13757
|
+
type index$4_IInstagramHistoryCreateNew = IInstagramHistoryCreateNew;
|
|
13758
|
+
type index$4_IInstagramHistoryCreateNewELS = IInstagramHistoryCreateNewELS;
|
|
13759
|
+
type index$4_IInstagramHistoryFollow = IInstagramHistoryFollow;
|
|
13760
|
+
type index$4_IInstagramHistoryFollowELS = IInstagramHistoryFollowELS;
|
|
13761
|
+
type index$4_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
13762
|
+
type index$4_IInstagramHistoryGroupELS = IInstagramHistoryGroupELS;
|
|
13763
|
+
type index$4_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
|
|
13764
|
+
type index$4_IInstagramReportInteractBlockUserELS = IInstagramReportInteractBlockUserELS;
|
|
13765
|
+
type index$4_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
13766
|
+
type index$4_IInstagramReportInteractExploreELS = IInstagramReportInteractExploreELS;
|
|
13767
|
+
type index$4_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
13768
|
+
type index$4_IInstagramReportInteractFollowELS = IInstagramReportInteractFollowELS;
|
|
13769
|
+
type index$4_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
|
13770
|
+
type index$4_IInstagramReportInteractReelELS = IInstagramReportInteractReelELS;
|
|
13771
|
+
type index$4_IInstagramReportInteractReplyComment = IInstagramReportInteractReplyComment;
|
|
13772
|
+
type index$4_IInstagramReportInteractReplyCommentELS = IInstagramReportInteractReplyCommentELS;
|
|
13773
|
+
type index$4_IInstagramReportInteractReplyMessage = IInstagramReportInteractReplyMessage;
|
|
13774
|
+
type index$4_IInstagramReportInteractReplyMessageELS = IInstagramReportInteractReplyMessageELS;
|
|
13775
|
+
type index$4_IInstagramReportInteractStory = IInstagramReportInteractStory;
|
|
13776
|
+
type index$4_IInstagramReportInteractStoryELS = IInstagramReportInteractStoryELS;
|
|
13777
|
+
type index$4_IInstagramReportInteractUnFollow = IInstagramReportInteractUnFollow;
|
|
13778
|
+
type index$4_IInstagramReportInteractUnFollowELS = IInstagramReportInteractUnFollowELS;
|
|
13779
|
+
type index$4_IInstagramReportPostHighLight = IInstagramReportPostHighLight;
|
|
13780
|
+
type index$4_IInstagramReportPostHighLightELS = IInstagramReportPostHighLightELS;
|
|
13781
|
+
type index$4_IInstagramReportPostNew = IInstagramReportPostNew;
|
|
13782
|
+
type index$4_IInstagramReportPostNewELS = IInstagramReportPostNewELS;
|
|
13783
|
+
type index$4_IInstagramReportPostReel = IInstagramReportPostReel;
|
|
13784
|
+
type index$4_IInstagramReportPostReelELS = IInstagramReportPostReelELS;
|
|
13785
|
+
type index$4_IInstagramReportPostSquare = IInstagramReportPostSquare;
|
|
13786
|
+
type index$4_IInstagramReportPostSquareELS = IInstagramReportPostSquareELS;
|
|
13787
|
+
type index$4_IInstagramReportPostStory = IInstagramReportPostStory;
|
|
13788
|
+
type index$4_IInstagramReportPostStoryELS = IInstagramReportPostStoryELS;
|
|
13789
|
+
type index$4_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
|
|
13790
|
+
type index$4_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
|
13791
|
+
type index$4_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
|
13792
|
+
type index$4_IInstagramSettingInteractReel = IInstagramSettingInteractReel;
|
|
13793
|
+
type index$4_IInstagramSettingInteractReplyComment = IInstagramSettingInteractReplyComment;
|
|
13794
|
+
type index$4_IInstagramSettingInteractReplyMessage = IInstagramSettingInteractReplyMessage;
|
|
13795
|
+
type index$4_IInstagramSettingInteractStory = IInstagramSettingInteractStory;
|
|
13796
|
+
type index$4_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
|
|
13797
|
+
type index$4_IInstagramSettingPost = IInstagramSettingPost;
|
|
13798
|
+
type index$4_ISheetImportSocial = ISheetImportSocial;
|
|
13799
|
+
type index$4_ISocialTaskManager = ISocialTaskManager;
|
|
13800
|
+
type index$4_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
|
|
13801
|
+
type index$4_ITaskInstagramBlockUserELS = ITaskInstagramBlockUserELS;
|
|
13802
|
+
type index$4_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
|
13803
|
+
type index$4_ITaskInstagramChangeInfoELS = ITaskInstagramChangeInfoELS;
|
|
13804
|
+
type index$4_ITaskInstagramFollow = ITaskInstagramFollow;
|
|
13805
|
+
type index$4_ITaskInstagramFollowELS = ITaskInstagramFollowELS;
|
|
13806
|
+
type index$4_ITaskInstagramInteractExplore = ITaskInstagramInteractExplore;
|
|
13807
|
+
type index$4_ITaskInstagramInteractExploreELS = ITaskInstagramInteractExploreELS;
|
|
13808
|
+
type index$4_ITaskInstagramInteractReel = ITaskInstagramInteractReel;
|
|
13809
|
+
type index$4_ITaskInstagramInteractReelELS = ITaskInstagramInteractReelELS;
|
|
13810
|
+
type index$4_ITaskInstagramInteractStory = ITaskInstagramInteractStory;
|
|
13811
|
+
type index$4_ITaskInstagramInteractStoryELS = ITaskInstagramInteractStoryELS;
|
|
13812
|
+
type index$4_ITaskInstagramPost = ITaskInstagramPost;
|
|
13813
|
+
type index$4_ITaskInstagramPostELS = ITaskInstagramPostELS;
|
|
13814
|
+
type index$4_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
|
13815
|
+
type index$4_ITaskInstagramReplyCommentELS = ITaskInstagramReplyCommentELS;
|
|
13816
|
+
type index$4_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
|
|
13817
|
+
type index$4_ITaskInstagramReplyMessageELS = ITaskInstagramReplyMessageELS;
|
|
13818
|
+
type index$4_ITaskThreadsFollow = ITaskThreadsFollow;
|
|
13819
|
+
type index$4_ITaskThreadsFollowELS = ITaskThreadsFollowELS;
|
|
13820
|
+
type index$4_ITaskThreadsPost = ITaskThreadsPost;
|
|
13821
|
+
type index$4_ITaskThreadsPostELS = ITaskThreadsPostELS;
|
|
13822
|
+
type index$4_ITaskThreadsReplyComment = ITaskThreadsReplyComment;
|
|
13823
|
+
type index$4_ITaskThreadsReplyCommentELS = ITaskThreadsReplyCommentELS;
|
|
13824
|
+
type index$4_ITaskThreadsReplyMessage = ITaskThreadsReplyMessage;
|
|
13825
|
+
type index$4_ITaskThreadsReplyMessageELS = ITaskThreadsReplyMessageELS;
|
|
13826
|
+
type index$4_IThreadsAccountRaw = IThreadsAccountRaw;
|
|
13827
|
+
type index$4_IThreadsAccountRun = IThreadsAccountRun;
|
|
13828
|
+
type index$4_IThreadsDashboardFollower = IThreadsDashboardFollower;
|
|
13829
|
+
type index$4_IThreadsHistoryAutoPost = IThreadsHistoryAutoPost;
|
|
13830
|
+
type index$4_IThreadsHistoryAutoPostELS = IThreadsHistoryAutoPostELS;
|
|
13831
|
+
type index$4_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
|
|
13832
|
+
type index$4_IThreadsHistoryAutoSyncELS = IThreadsHistoryAutoSyncELS;
|
|
13833
|
+
type index$4_IThreadsHistoryChange = IThreadsHistoryChange;
|
|
13834
|
+
type index$4_IThreadsHistoryChangeInfoELS = IThreadsHistoryChangeInfoELS;
|
|
13835
|
+
type index$4_IThreadsHistoryCreateNew = IThreadsHistoryCreateNew;
|
|
13836
|
+
type index$4_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
|
|
13837
|
+
type index$4_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
13838
|
+
type index$4_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
|
|
13839
|
+
type index$4_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
13840
|
+
type index$4_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
|
|
13841
|
+
type index$4_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
13842
|
+
type index$4_IThreadsReportInteractReplyCommentELS = IThreadsReportInteractReplyCommentELS;
|
|
13843
|
+
type index$4_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
|
|
13844
|
+
type index$4_IThreadsReportInteractReplyMessageELS = IThreadsReportInteractReplyMessageELS;
|
|
13845
|
+
type index$4_IThreadsReportInteractUnFollow = IThreadsReportInteractUnFollow;
|
|
13846
|
+
type index$4_IThreadsReportInteractUnFollowELS = IThreadsReportInteractUnFollowELS;
|
|
13847
|
+
type index$4_IThreadsReportPost = IThreadsReportPost;
|
|
13848
|
+
type index$4_IThreadsReportPostELS = IThreadsReportPostELS;
|
|
13849
|
+
type index$4_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
|
|
13850
|
+
type index$4_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
|
|
13851
|
+
type index$4_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyMessage;
|
|
13852
|
+
type index$4_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
13853
|
+
type index$4_IThreadsSettingPost = IThreadsSettingPost;
|
|
13854
|
+
declare namespace index$4 {
|
|
13855
|
+
export { index$4_EStatusImport as EStatusImport, index$4_ETypeImport as ETypeImport, type index$4_IAccountSocialBase as IAccountSocialBase, type index$4_IAccountSocialGroup as IAccountSocialGroup, type index$4_IInstagramAccountRaw as IInstagramAccountRaw, type index$4_IInstagramAccountRun as IInstagramAccountRun, type index$4_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$4_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$4_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$4_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, type index$4_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$4_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$4_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$4_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, type index$4_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$4_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$4_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$4_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$4_IInstagramHistoryFollow as IInstagramHistoryFollow, type index$4_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, type index$4_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$4_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$4_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$4_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$4_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$4_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$4_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$4_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$4_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$4_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$4_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$4_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$4_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$4_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$4_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$4_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$4_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$4_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$4_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$4_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$4_IInstagramReportPostNew as IInstagramReportPostNew, type index$4_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$4_IInstagramReportPostReel as IInstagramReportPostReel, type index$4_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$4_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$4_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$4_IInstagramReportPostStory as IInstagramReportPostStory, type index$4_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$4_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$4_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$4_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$4_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$4_IInstagramSettingPost as IInstagramSettingPost, type index$4_ISheetImportSocial as ISheetImportSocial, type index$4_ISocialTaskManager as ISocialTaskManager, type index$4_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$4_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$4_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$4_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$4_ITaskInstagramFollow as ITaskInstagramFollow, type index$4_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$4_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$4_ITaskInstagramInteractExploreELS as ITaskInstagramInteractExploreELS, type index$4_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$4_ITaskInstagramInteractReelELS as ITaskInstagramInteractReelELS, type index$4_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$4_ITaskInstagramInteractStoryELS as ITaskInstagramInteractStoryELS, type index$4_ITaskInstagramPost as ITaskInstagramPost, type index$4_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$4_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$4_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$4_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$4_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$4_ITaskThreadsFollow as ITaskThreadsFollow, type index$4_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$4_ITaskThreadsPost as ITaskThreadsPost, type index$4_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$4_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$4_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$4_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$4_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$4_IThreadsAccountRaw as IThreadsAccountRaw, type index$4_IThreadsAccountRun as IThreadsAccountRun, type index$4_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$4_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$4_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, type index$4_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$4_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$4_IThreadsHistoryChange as IThreadsHistoryChange, type index$4_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$4_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$4_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$4_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$4_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$4_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$4_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$4_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$4_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$4_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$4_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$4_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$4_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$4_IThreadsReportPost as IThreadsReportPost, type index$4_IThreadsReportPostELS as IThreadsReportPostELS, type index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$4_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$4_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$4_IThreadsSettingPost as IThreadsSettingPost };
|
|
13666
13856
|
}
|
|
13667
13857
|
|
|
13668
13858
|
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -13762,114 +13952,6 @@ interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13762
13952
|
note: string;
|
|
13763
13953
|
}
|
|
13764
13954
|
|
|
13765
|
-
interface IVoiceLanguage extends IBaseModel, ITrackingModel<IUser> {
|
|
13766
|
-
vl_name: string;
|
|
13767
|
-
vl_key: ETypeVoiceLanguage;
|
|
13768
|
-
}
|
|
13769
|
-
|
|
13770
|
-
interface IVoiceStores extends IBaseModel, ITrackingModel<IUser> {
|
|
13771
|
-
vs_name: string;
|
|
13772
|
-
vs_avatar: string;
|
|
13773
|
-
vs_audio: string;
|
|
13774
|
-
vs_language: IVoiceLanguage | string;
|
|
13775
|
-
}
|
|
13776
|
-
|
|
13777
|
-
interface IVoiceGenerated extends IBaseModel, ITrackingModel<IUser> {
|
|
13778
|
-
vg_content: Array<{
|
|
13779
|
-
prompt: string;
|
|
13780
|
-
voiceStore: IVoiceStores | string;
|
|
13781
|
-
}>;
|
|
13782
|
-
vg_setting: {
|
|
13783
|
-
speed: number;
|
|
13784
|
-
stability: number;
|
|
13785
|
-
similarity: number;
|
|
13786
|
-
speakerBoost: boolean;
|
|
13787
|
-
};
|
|
13788
|
-
vg_audio: string;
|
|
13789
|
-
}
|
|
13790
|
-
|
|
13791
|
-
interface IVoiceSettingDelay extends IBaseModel, ITrackingModel<IUser> {
|
|
13792
|
-
vsd_symbol: string;
|
|
13793
|
-
vsd_timeDelay: number;
|
|
13794
|
-
}
|
|
13795
|
-
|
|
13796
|
-
interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
13797
|
-
typeSocial: ETypeSocial;
|
|
13798
|
-
type: ESheetToolInstagram;
|
|
13799
|
-
url: string;
|
|
13800
|
-
name: string;
|
|
13801
|
-
device: string | IDevice;
|
|
13802
|
-
description: string;
|
|
13803
|
-
statusImport: ESheetToolStatusImport;
|
|
13804
|
-
statusRun: ESheetToolStatusRun;
|
|
13805
|
-
noteFixImport: string;
|
|
13806
|
-
timeLastUsed: Date;
|
|
13807
|
-
lastUserUsed: string | IUser;
|
|
13808
|
-
}
|
|
13809
|
-
|
|
13810
|
-
type index$4_IAccountAIContent = IAccountAIContent;
|
|
13811
|
-
type index$4_IAccountAIContentChannel = IAccountAIContentChannel;
|
|
13812
|
-
type index$4_IAccountAIContentGroup = IAccountAIContentGroup;
|
|
13813
|
-
type index$4_IAccountAIContentInfo = IAccountAIContentInfo;
|
|
13814
|
-
type index$4_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
|
|
13815
|
-
type index$4_IAccountAIContentTag = IAccountAIContentTag;
|
|
13816
|
-
type index$4_IAccountAIImage = IAccountAIImage;
|
|
13817
|
-
type index$4_IAccountAIImageChannel = IAccountAIImageChannel;
|
|
13818
|
-
type index$4_IAccountAIImageGroup = IAccountAIImageGroup;
|
|
13819
|
-
type index$4_IAccountAIImageInfo = IAccountAIImageInfo;
|
|
13820
|
-
type index$4_IAccountAIImageMemberAssigned = IAccountAIImageMemberAssigned;
|
|
13821
|
-
type index$4_IAccountAIImageTag = IAccountAIImageTag;
|
|
13822
|
-
type index$4_IAccountAIVoice = IAccountAIVoice;
|
|
13823
|
-
type index$4_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
|
|
13824
|
-
type index$4_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
|
|
13825
|
-
type index$4_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
|
|
13826
|
-
type index$4_IAccountAIVoiceMemberAssigned = IAccountAIVoiceMemberAssigned;
|
|
13827
|
-
type index$4_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
13828
|
-
type index$4_IAccountCHPlayICloud = IAccountCHPlayICloud;
|
|
13829
|
-
type index$4_IAccountCanva = IAccountCanva;
|
|
13830
|
-
type index$4_IAccountDrive = IAccountDrive;
|
|
13831
|
-
type index$4_IAccountEmail = IAccountEmail;
|
|
13832
|
-
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
13833
|
-
type index$4_IAccountEmailTag = IAccountEmailTag;
|
|
13834
|
-
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
13835
|
-
type index$4_IAccountVPN = IAccountVPN;
|
|
13836
|
-
type index$4_IAccountVPS = IAccountVPS;
|
|
13837
|
-
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
13838
|
-
type index$4_IAccountVPSSocial = IAccountVPSSocial;
|
|
13839
|
-
type index$4_IDevice = IDevice;
|
|
13840
|
-
type index$4_IDeviceLog = IDeviceLog;
|
|
13841
|
-
type index$4_IDeviceLogELS = IDeviceLogELS;
|
|
13842
|
-
type index$4_IDeviceSettingForAccount = IDeviceSettingForAccount;
|
|
13843
|
-
type index$4_IDeviceSettingForCHPlayICloud = IDeviceSettingForCHPlayICloud;
|
|
13844
|
-
type index$4_IDeviceSettingForProxy = IDeviceSettingForProxy;
|
|
13845
|
-
type index$4_IDeviceSettingForVPN = IDeviceSettingForVPN;
|
|
13846
|
-
type index$4_IGPMProfile = IGPMProfile;
|
|
13847
|
-
type index$4_IManagerImageAI = IManagerImageAI;
|
|
13848
|
-
type index$4_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
13849
|
-
type index$4_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
|
|
13850
|
-
type index$4_IManagerSheet = IManagerSheet;
|
|
13851
|
-
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
13852
|
-
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
13853
|
-
type index$4_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
|
|
13854
|
-
type index$4_IManagerSheetGroup = IManagerSheetGroup;
|
|
13855
|
-
type index$4_IPC = IPC;
|
|
13856
|
-
type index$4_IProxy = IProxy;
|
|
13857
|
-
type index$4_ISheetsTool = ISheetsTool;
|
|
13858
|
-
type index$4_ITaskAIContent = ITaskAIContent;
|
|
13859
|
-
type index$4_ITaskAIImageCanvaInstagram = ITaskAIImageCanvaInstagram;
|
|
13860
|
-
type index$4_ITaskAIImageCanvaThreads = ITaskAIImageCanvaThreads;
|
|
13861
|
-
type index$4_ITaskAIImageVoiceCanvaInstagram = ITaskAIImageVoiceCanvaInstagram;
|
|
13862
|
-
type index$4_ITaskAIImageVoiceCanvaThreads = ITaskAIImageVoiceCanvaThreads;
|
|
13863
|
-
type index$4_ITaskAIItemAction = ITaskAIItemAction;
|
|
13864
|
-
type index$4_ITaskAIItemGroup = ITaskAIItemGroup;
|
|
13865
|
-
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
13866
|
-
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
13867
|
-
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
13868
|
-
type index$4_IVoiceStores = IVoiceStores;
|
|
13869
|
-
declare namespace index$4 {
|
|
13870
|
-
export type { index$4_IAccountAIContent as IAccountAIContent, index$4_IAccountAIContentChannel as IAccountAIContentChannel, index$4_IAccountAIContentGroup as IAccountAIContentGroup, index$4_IAccountAIContentInfo as IAccountAIContentInfo, index$4_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, index$4_IAccountAIContentTag as IAccountAIContentTag, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, index$4_IAccountCanva as IAccountCanva, index$4_IAccountDrive as IAccountDrive, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTag as IAccountEmailTag, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPN as IAccountVPN, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountVPSSocial as IAccountVPSSocial, index$4_IDevice as IDevice, index$4_IDeviceLog as IDeviceLog, index$4_IDeviceLogELS as IDeviceLogELS, index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, index$4_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, index$4_IGPMProfile as IGPMProfile, index$4_IManagerImageAI as IManagerImageAI, index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IProxy as IProxy, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAIContent as ITaskAIContent, index$4_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, index$4_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, index$4_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, index$4_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
13871
|
-
}
|
|
13872
|
-
|
|
13873
13955
|
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
13874
13956
|
sheetID: string;
|
|
13875
13957
|
sheetUrl: string;
|
|
@@ -14185,7 +14267,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
|
|
|
14185
14267
|
type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
14186
14268
|
type index$1_IVoiceStores = IVoiceStores;
|
|
14187
14269
|
declare namespace index$1 {
|
|
14188
|
-
export { index$2 as Auth, index$9 as Common, index$1_EStatusImport as EStatusImport, index$1_ETypeImport as ETypeImport, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramAccountRun as IInstagramAccountRun, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$1_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$1_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryFollow as IInstagramHistoryFollow, type index$1_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetImportSocial as ISheetImportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$1_ITaskInstagramInteractExploreELS as ITaskInstagramInteractExploreELS, type index$1_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$1_ITaskInstagramInteractReelELS as ITaskInstagramInteractReelELS, type index$1_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$1_ITaskInstagramInteractStoryELS as ITaskInstagramInteractStoryELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsAccountRun as IThreadsAccountRun, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$1_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$5 as Socials, index$4 as Tool, index$7 as Workspace };
|
|
14270
|
+
export { index$2 as Auth, index$9 as Common, index$1_EStatusImport as EStatusImport, index$1_ETypeImport as ETypeImport, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramAccountRun as IInstagramAccountRun, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$1_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$1_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryFollow as IInstagramHistoryFollow, type index$1_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetImportSocial as ISheetImportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$1_ITaskInstagramInteractExploreELS as ITaskInstagramInteractExploreELS, type index$1_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$1_ITaskInstagramInteractReelELS as ITaskInstagramInteractReelELS, type index$1_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$1_ITaskInstagramInteractStoryELS as ITaskInstagramInteractStoryELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsAccountRun as IThreadsAccountRun, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$1_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$4 as Socials, index$5 as Tool, index$7 as Workspace };
|
|
14189
14271
|
}
|
|
14190
14272
|
|
|
14191
14273
|
interface IDataUser {
|
|
@@ -14238,4 +14320,4 @@ declare namespace index {
|
|
|
14238
14320
|
export type { index_IDataDiscussTaskJob as IDataDiscussTaskJob, index_IDataNotification as IDataNotification, index_IDataUser as IDataUser, index_IFilterStore as IFilterStore, index_IResponseLogin as IResponseLogin };
|
|
14239
14321
|
}
|
|
14240
14322
|
|
|
14241
|
-
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 ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, 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 };
|
|
14323
|
+
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 ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, 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$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 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 };
|