automation-lib 5.4.349 → 5.4.352
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 +175 -193
- package/dist/index.d.ts +175 -193
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2076,7 +2076,13 @@ declare namespace index$c {
|
|
|
2076
2076
|
export type { index$c_TActionRole as TActionRole, index$c_TCompare as TCompare, index$c_TFilter as TFilter, index$c_TPost as TPost, index$c_TPostStyle as TPostStyle };
|
|
2077
2077
|
}
|
|
2078
2078
|
|
|
2079
|
-
interface
|
|
2079
|
+
interface IDepartment extends IBaseModel, ITrackingModel {
|
|
2080
|
+
department_name: string;
|
|
2081
|
+
department_slug: string;
|
|
2082
|
+
department_description: string;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
interface IUser extends IBaseModel, ITrackingModel {
|
|
2080
2086
|
user_avatar: string;
|
|
2081
2087
|
user_fullName: string;
|
|
2082
2088
|
user_email: string;
|
|
@@ -2091,23 +2097,17 @@ interface IUser extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2091
2097
|
user_status: EStatusUser;
|
|
2092
2098
|
}
|
|
2093
2099
|
|
|
2094
|
-
interface
|
|
2095
|
-
department_name: string;
|
|
2096
|
-
department_slug: string;
|
|
2097
|
-
department_description: string;
|
|
2098
|
-
}
|
|
2099
|
-
|
|
2100
|
-
interface IDepartmentMember extends IBaseModel, ITrackingModel<IUser> {
|
|
2100
|
+
interface IDepartmentMember extends IBaseModel, ITrackingModel {
|
|
2101
2101
|
department: string | IDepartment;
|
|
2102
2102
|
member: string | IUser;
|
|
2103
2103
|
}
|
|
2104
2104
|
|
|
2105
|
-
interface IRole extends IBaseModel, ITrackingModel
|
|
2105
|
+
interface IRole extends IBaseModel, ITrackingModel {
|
|
2106
2106
|
name: string;
|
|
2107
2107
|
description: string;
|
|
2108
2108
|
status: EStatusRole;
|
|
2109
2109
|
}
|
|
2110
|
-
interface IRoleFeature extends IBaseModel, ITrackingModel
|
|
2110
|
+
interface IRoleFeature extends IBaseModel, ITrackingModel {
|
|
2111
2111
|
role: string | IRole;
|
|
2112
2112
|
module: string;
|
|
2113
2113
|
submodule: string;
|
|
@@ -2119,7 +2119,7 @@ interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
|
|
|
2119
2119
|
role: string | IRole;
|
|
2120
2120
|
}
|
|
2121
2121
|
|
|
2122
|
-
interface ITeam extends IBaseModel, ITrackingModel
|
|
2122
|
+
interface ITeam extends IBaseModel, ITrackingModel {
|
|
2123
2123
|
name: string;
|
|
2124
2124
|
department: string | IDepartment;
|
|
2125
2125
|
listTypeSocials: ETypeSocial[];
|
|
@@ -2128,12 +2128,12 @@ interface ITeam extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2128
2128
|
status: EStatusTeam;
|
|
2129
2129
|
}
|
|
2130
2130
|
|
|
2131
|
-
interface ITeamRole extends IBaseModel, ITrackingModel
|
|
2131
|
+
interface ITeamRole extends IBaseModel, ITrackingModel {
|
|
2132
2132
|
team: string | ITeam;
|
|
2133
2133
|
role: string | IRole;
|
|
2134
2134
|
}
|
|
2135
2135
|
|
|
2136
|
-
interface ITeamMember extends IBaseModel, ITrackingModel
|
|
2136
|
+
interface ITeamMember extends IBaseModel, ITrackingModel {
|
|
2137
2137
|
team: string | ITeam;
|
|
2138
2138
|
member: string | IUser;
|
|
2139
2139
|
}
|
|
@@ -2157,20 +2157,20 @@ interface IBaseModel {
|
|
|
2157
2157
|
updatedAt: Date;
|
|
2158
2158
|
version: number;
|
|
2159
2159
|
}
|
|
2160
|
-
interface ITrackingModel
|
|
2161
|
-
createdBy:
|
|
2162
|
-
updatedBy:
|
|
2163
|
-
}
|
|
2164
|
-
interface ITrackingTimeScript {
|
|
2165
|
-
timeStart: Date;
|
|
2166
|
-
timeEnd: Date;
|
|
2160
|
+
interface ITrackingModel {
|
|
2161
|
+
createdBy: IUser;
|
|
2162
|
+
updatedBy: IUser;
|
|
2167
2163
|
}
|
|
2168
|
-
interface
|
|
2164
|
+
interface IAssignUser {
|
|
2169
2165
|
timeLastUsed: Date;
|
|
2170
2166
|
lastUserUsed: string | IUser;
|
|
2171
2167
|
}
|
|
2168
|
+
interface ITrackingTime {
|
|
2169
|
+
timeStart: Date;
|
|
2170
|
+
timeEnd: Date;
|
|
2171
|
+
}
|
|
2172
2172
|
|
|
2173
|
-
interface IFile extends IBaseModel, ITrackingModel
|
|
2173
|
+
interface IFile extends IBaseModel, ITrackingModel {
|
|
2174
2174
|
typeFile: EFile;
|
|
2175
2175
|
name: string;
|
|
2176
2176
|
path: string;
|
|
@@ -2181,16 +2181,16 @@ interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2181
2181
|
isDraft: boolean;
|
|
2182
2182
|
}
|
|
2183
2183
|
|
|
2184
|
+
type index$a_IAssignUser = IAssignUser;
|
|
2184
2185
|
type index$a_IBaseModel = IBaseModel;
|
|
2185
2186
|
type index$a_IFile = IFile;
|
|
2186
|
-
type index$a_ITrackingModel
|
|
2187
|
-
type index$
|
|
2188
|
-
type index$a_ITrackingUserAction = ITrackingUserAction;
|
|
2187
|
+
type index$a_ITrackingModel = ITrackingModel;
|
|
2188
|
+
type index$a_ITrackingTime = ITrackingTime;
|
|
2189
2189
|
declare namespace index$a {
|
|
2190
|
-
export type { index$
|
|
2190
|
+
export type { index$a_IAssignUser as IAssignUser, index$a_IBaseModel as IBaseModel, index$a_IFile as IFile, index$a_ITrackingModel as ITrackingModel, index$a_ITrackingTime as ITrackingTime };
|
|
2191
2191
|
}
|
|
2192
2192
|
|
|
2193
|
-
interface IHistoryTaskAIContent extends IBaseModel, ITrackingModel
|
|
2193
|
+
interface IHistoryTaskAIContent extends IBaseModel, ITrackingModel {
|
|
2194
2194
|
sheetName: string;
|
|
2195
2195
|
sheetUrl: string;
|
|
2196
2196
|
rowId: string;
|
|
@@ -2239,7 +2239,7 @@ interface IDataNotification {
|
|
|
2239
2239
|
departments?: string[];
|
|
2240
2240
|
}
|
|
2241
2241
|
|
|
2242
|
-
interface IFilterStore extends IBaseModel, ITrackingModel
|
|
2242
|
+
interface IFilterStore extends IBaseModel, ITrackingModel {
|
|
2243
2243
|
name: string;
|
|
2244
2244
|
objectName: string;
|
|
2245
2245
|
dataFilterStore: Array<{
|
|
@@ -2248,7 +2248,7 @@ interface IFilterStore extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2248
2248
|
}>;
|
|
2249
2249
|
}
|
|
2250
2250
|
|
|
2251
|
-
interface IColsUnSelected extends IBaseModel, ITrackingModel
|
|
2251
|
+
interface IColsUnSelected extends IBaseModel, ITrackingModel {
|
|
2252
2252
|
objectName: string;
|
|
2253
2253
|
listColsUnSelected: Array<string>;
|
|
2254
2254
|
}
|
|
@@ -2318,6 +2318,7 @@ type index$8_IAccountVPN = IAccountVPN;
|
|
|
2318
2318
|
type index$8_IAccountVPS = IAccountVPS;
|
|
2319
2319
|
type index$8_IAccountVPSGroup = IAccountVPSGroup;
|
|
2320
2320
|
type index$8_IAccountVPSSocial = IAccountVPSSocial;
|
|
2321
|
+
type index$8_IAssignUser = IAssignUser;
|
|
2321
2322
|
type index$8_IAuthLogin = IAuthLogin;
|
|
2322
2323
|
type index$8_IAuthResetPassword = IAuthResetPassword;
|
|
2323
2324
|
type index$8_IBaseModel = IBaseModel;
|
|
@@ -2518,9 +2519,8 @@ type index$8_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
|
|
|
2518
2519
|
type index$8_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
2519
2520
|
type index$8_IThreadsSettingPost = IThreadsSettingPost;
|
|
2520
2521
|
type index$8_IToken = IToken;
|
|
2521
|
-
type index$8_ITrackingModel
|
|
2522
|
-
type index$
|
|
2523
|
-
type index$8_ITrackingUserAction = ITrackingUserAction;
|
|
2522
|
+
type index$8_ITrackingModel = ITrackingModel;
|
|
2523
|
+
type index$8_ITrackingTime = ITrackingTime;
|
|
2524
2524
|
type index$8_IUser = IUser;
|
|
2525
2525
|
type index$8_IUserRole = IUserRole;
|
|
2526
2526
|
type index$8_IViewDeviceByPC = IViewDeviceByPC;
|
|
@@ -2532,7 +2532,7 @@ type index$8_UpdateDeviceDto = UpdateDeviceDto;
|
|
|
2532
2532
|
type index$8_UpdatePCDto = UpdatePCDto;
|
|
2533
2533
|
type index$8_ViewDetailDeviceDto = ViewDetailDeviceDto;
|
|
2534
2534
|
declare namespace index$8 {
|
|
2535
|
-
export { type index$8_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$8_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$8_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$8_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$2 as Auth, index$a as Common, type index$8_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$8_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$8_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$8_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$8_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, type index$8_FilterDeviceDto as FilterDeviceDto, type index$8_FilterDeviceLogDto as FilterDeviceLogDto, type index$8_FilterPCDto as FilterPCDto, type index$8_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$8_FindDeviceDto as FindDeviceDto, type index$8_FindDeviceLogDto as FindDeviceLogDto, type index$8_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$8_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$8_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$8_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$8_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$8_FindOverviewPCDto as FindOverviewPCDto, type index$8_FindPCDetail as FindPCDetail, type index$8_FindPCDto as FindPCDto, type index$8_FindReplaceDeviceDto as FindReplaceDeviceDto, index$7 as Forum, index$3 as History, type index$8_IAccountAIContent as IAccountAIContent, type index$8_IAccountAIContentChannel as IAccountAIContentChannel, type index$8_IAccountAIContentGroup as IAccountAIContentGroup, type index$8_IAccountAIContentInfo as IAccountAIContentInfo, type index$8_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$8_IAccountAIContentTag as IAccountAIContentTag, type index$8_IAccountAIImage as IAccountAIImage, type index$8_IAccountAIImageChannel as IAccountAIImageChannel, type index$8_IAccountAIImageGroup as IAccountAIImageGroup, type index$8_IAccountAIImageInfo as IAccountAIImageInfo, type index$8_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$8_IAccountAIImageTag as IAccountAIImageTag, type index$8_IAccountAIVoice as IAccountAIVoice, type index$8_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$8_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$8_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$8_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$8_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$8_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$8_IAccountCanva as IAccountCanva, type index$8_IAccountDrive as IAccountDrive, type index$8_IAccountEmail as IAccountEmail, type index$8_IAccountEmailProxy as IAccountEmailProxy, type index$8_IAccountEmailTag as IAccountEmailTag, type index$8_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$8_IAccountSocialBase as IAccountSocialBase, type index$8_IAccountSocialGroup as IAccountSocialGroup, type index$8_IAccountVPN as IAccountVPN, type index$8_IAccountVPS as IAccountVPS, type index$8_IAccountVPSGroup as IAccountVPSGroup, type index$8_IAccountVPSSocial as IAccountVPSSocial, type index$8_IAuthLogin as IAuthLogin, type index$8_IAuthResetPassword as IAuthResetPassword, type index$8_IBaseModel as IBaseModel, type index$8_IBlog as IBlog, type index$8_IBlogCategory as IBlogCategory, type index$8_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$8_IBlogTeamPermission as IBlogTeamPermission, type index$8_IBlogUserPermission as IBlogUserPermission, type index$8_IColsUnSelected as IColsUnSelected, type index$8_IDataDiscussTaskJob as IDataDiscussTaskJob, type index$8_IDataNotification as IDataNotification, type index$8_IDataUser as IDataUser, type index$8_IDepartment as IDepartment, type index$8_IDepartmentMember as IDepartmentMember, type index$8_IDevice as IDevice, type index$8_IDeviceLog as IDeviceLog, type index$8_IDeviceLogELS as IDeviceLogELS, type index$8_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$8_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$8_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$8_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$8_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$8_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$8_IDomain as IDomain, type index$8_IEmailRawManager as IEmailRawManager, type index$8_IFile as IFile, type index$8_IFilterStore as IFilterStore, type index$8_IGPMProfile as IGPMProfile, type index$8_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$8_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$8_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$8_IHistoryTaskCanva as IHistoryTaskCanva, type index$8_IIncreaseValueTask as IIncreaseValueTask, type index$8_IInstagramAccountRaw as IInstagramAccountRaw, type index$8_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$8_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$8_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$8_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$8_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$8_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$8_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$8_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$8_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$8_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$8_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$8_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$8_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$8_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$8_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$8_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$8_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$8_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$8_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$8_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$8_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$8_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$8_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$8_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$8_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$8_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$8_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$8_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$8_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$8_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$8_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$8_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$8_IInstagramReportPostNew as IInstagramReportPostNew, type index$8_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$8_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$8_IInstagramReportPostReel as IInstagramReportPostReel, type index$8_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$8_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$8_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$8_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$8_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$8_IInstagramReportPostStory as IInstagramReportPostStory, type index$8_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$8_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$8_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$8_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$8_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$8_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$8_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$8_IInstagramSettingPost as IInstagramSettingPost, type index$8_ILark as ILark, type index$8_ILarkTeam as ILarkTeam, type index$8_IManagerImageAI as IManagerImageAI, type index$8_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$8_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$8_IManagerSheet as IManagerSheet, type index$8_IManagerSheetChildren as IManagerSheetChildren, type index$8_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$8_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$8_IManagerSheetGroup as IManagerSheetGroup, type index$8_IManagerWork as IManagerWork, type index$8_IOtpConfirm as IOtpConfirm, type index$8_IOtpCreateSession as IOtpCreateSession, type index$8_IOtpSend as IOtpSend, type index$8_IPC as IPC, type index$8_IPCLog as IPCLog, type index$8_IPCLogELS as IPCLogELS, type index$8_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$8_IProxy as IProxy, type index$8_IResponseLogin as IResponseLogin, type index$8_IRole as IRole, type index$8_IRoleFeature as IRoleFeature, type index$8_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$8_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$8_ISettingTool as ISettingTool, type index$8_ISheetImportExportSocial as ISheetImportExportSocial, type index$8_ISheetWork as ISheetWork, type index$8_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$8_ISheetWorkManager as ISheetWorkManager, type index$8_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$8_ISheetWorksCategory as ISheetWorksCategory, type index$8_ISheetsTool as ISheetsTool, type index$8_ISocialTaskManager as ISocialTaskManager, type index$8_ITag as ITag, type index$8_ITaskAIContent as ITaskAIContent, type index$8_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$8_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$8_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$8_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$8_ITaskAIItemAction as ITaskAIItemAction, type index$8_ITaskAIItemGroup as ITaskAIItemGroup, type index$8_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$8_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$8_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$8_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$8_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$8_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$8_ITaskInstagramFollow as ITaskInstagramFollow, type index$8_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$8_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$8_ITaskInstagramPost as ITaskInstagramPost, type index$8_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$8_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$8_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$8_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$8_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$8_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$8_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$8_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$8_ITaskJob as ITaskJob, type index$8_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$8_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$8_ITaskJobCheckList as ITaskJobCheckList, type index$8_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$8_ITaskJobDiscuss as ITaskJobDiscuss, type index$8_ITaskJobLabel as ITaskJobLabel, type index$8_ITaskJobPermission as ITaskJobPermission, type index$8_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$8_ITaskJobUserPermission as ITaskJobUserPermission, type index$8_ITaskJobsGroup as ITaskJobsGroup, type index$8_ITaskThreadsFollow as ITaskThreadsFollow, type index$8_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$8_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$8_ITaskThreadsPost as ITaskThreadsPost, type index$8_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$8_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$8_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$8_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$8_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$8_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$8_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$8_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$8_ITeam as ITeam, type index$8_ITeamMember as ITeamMember, type index$8_ITeamRole as ITeamRole, type index$8_IThreadsAccountRaw as IThreadsAccountRaw, type index$8_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$8_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$8_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$8_IThreadsHistoryChange as IThreadsHistoryChange, type index$8_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$8_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$8_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$8_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$8_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$8_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$8_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$8_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$8_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$8_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$8_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$8_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$8_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$8_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$8_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$8_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$8_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$8_IThreadsReportPost as IThreadsReportPost, type index$8_IThreadsReportPostELS as IThreadsReportPostELS, type index$8_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$8_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$8_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$8_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$8_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$8_IThreadsSettingPost as IThreadsSettingPost, type index$8_IToken as IToken, type index$8_ITrackingModel as ITrackingModel, type index$8_ITrackingTimeScript as ITrackingTimeScript, type index$8_ITrackingUserAction as ITrackingUserAction, type index$8_IUser as IUser, type index$8_IUserRole as IUserRole, type index$8_IViewDeviceByPC as IViewDeviceByPC, type index$8_IVoiceGenerated as IVoiceGenerated, type index$8_IVoiceLanguage as IVoiceLanguage, type index$8_IVoiceSettingDelay as IVoiceSettingDelay, type index$8_IVoiceStores as IVoiceStores, index$b as Permission, index$4 as Socials, index$5 as Tool, type index$8_UpdateDeviceDto as UpdateDeviceDto, type index$8_UpdatePCDto as UpdatePCDto, type index$8_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6 as Workspace };
|
|
2535
|
+
export { type index$8_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$8_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$8_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$8_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$2 as Auth, index$a as Common, type index$8_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$8_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$8_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$8_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$8_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, type index$8_FilterDeviceDto as FilterDeviceDto, type index$8_FilterDeviceLogDto as FilterDeviceLogDto, type index$8_FilterPCDto as FilterPCDto, type index$8_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$8_FindDeviceDto as FindDeviceDto, type index$8_FindDeviceLogDto as FindDeviceLogDto, type index$8_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$8_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$8_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$8_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$8_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$8_FindOverviewPCDto as FindOverviewPCDto, type index$8_FindPCDetail as FindPCDetail, type index$8_FindPCDto as FindPCDto, type index$8_FindReplaceDeviceDto as FindReplaceDeviceDto, index$7 as Forum, index$3 as History, type index$8_IAccountAIContent as IAccountAIContent, type index$8_IAccountAIContentChannel as IAccountAIContentChannel, type index$8_IAccountAIContentGroup as IAccountAIContentGroup, type index$8_IAccountAIContentInfo as IAccountAIContentInfo, type index$8_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$8_IAccountAIContentTag as IAccountAIContentTag, type index$8_IAccountAIImage as IAccountAIImage, type index$8_IAccountAIImageChannel as IAccountAIImageChannel, type index$8_IAccountAIImageGroup as IAccountAIImageGroup, type index$8_IAccountAIImageInfo as IAccountAIImageInfo, type index$8_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$8_IAccountAIImageTag as IAccountAIImageTag, type index$8_IAccountAIVoice as IAccountAIVoice, type index$8_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$8_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$8_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$8_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$8_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$8_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$8_IAccountCanva as IAccountCanva, type index$8_IAccountDrive as IAccountDrive, type index$8_IAccountEmail as IAccountEmail, type index$8_IAccountEmailProxy as IAccountEmailProxy, type index$8_IAccountEmailTag as IAccountEmailTag, type index$8_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$8_IAccountSocialBase as IAccountSocialBase, type index$8_IAccountSocialGroup as IAccountSocialGroup, type index$8_IAccountVPN as IAccountVPN, type index$8_IAccountVPS as IAccountVPS, type index$8_IAccountVPSGroup as IAccountVPSGroup, type index$8_IAccountVPSSocial as IAccountVPSSocial, type index$8_IAssignUser as IAssignUser, type index$8_IAuthLogin as IAuthLogin, type index$8_IAuthResetPassword as IAuthResetPassword, type index$8_IBaseModel as IBaseModel, type index$8_IBlog as IBlog, type index$8_IBlogCategory as IBlogCategory, type index$8_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$8_IBlogTeamPermission as IBlogTeamPermission, type index$8_IBlogUserPermission as IBlogUserPermission, type index$8_IColsUnSelected as IColsUnSelected, type index$8_IDataDiscussTaskJob as IDataDiscussTaskJob, type index$8_IDataNotification as IDataNotification, type index$8_IDataUser as IDataUser, type index$8_IDepartment as IDepartment, type index$8_IDepartmentMember as IDepartmentMember, type index$8_IDevice as IDevice, type index$8_IDeviceLog as IDeviceLog, type index$8_IDeviceLogELS as IDeviceLogELS, type index$8_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$8_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$8_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$8_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$8_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$8_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$8_IDomain as IDomain, type index$8_IEmailRawManager as IEmailRawManager, type index$8_IFile as IFile, type index$8_IFilterStore as IFilterStore, type index$8_IGPMProfile as IGPMProfile, type index$8_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$8_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$8_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$8_IHistoryTaskCanva as IHistoryTaskCanva, type index$8_IIncreaseValueTask as IIncreaseValueTask, type index$8_IInstagramAccountRaw as IInstagramAccountRaw, type index$8_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$8_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$8_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$8_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$8_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$8_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$8_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$8_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$8_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$8_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$8_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$8_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$8_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$8_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$8_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$8_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$8_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$8_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$8_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$8_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$8_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$8_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$8_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$8_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$8_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$8_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$8_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$8_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$8_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$8_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$8_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$8_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$8_IInstagramReportPostNew as IInstagramReportPostNew, type index$8_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$8_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$8_IInstagramReportPostReel as IInstagramReportPostReel, type index$8_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$8_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$8_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$8_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$8_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$8_IInstagramReportPostStory as IInstagramReportPostStory, type index$8_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$8_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$8_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$8_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$8_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$8_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$8_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$8_IInstagramSettingPost as IInstagramSettingPost, type index$8_ILark as ILark, type index$8_ILarkTeam as ILarkTeam, type index$8_IManagerImageAI as IManagerImageAI, type index$8_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$8_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$8_IManagerSheet as IManagerSheet, type index$8_IManagerSheetChildren as IManagerSheetChildren, type index$8_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$8_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$8_IManagerSheetGroup as IManagerSheetGroup, type index$8_IManagerWork as IManagerWork, type index$8_IOtpConfirm as IOtpConfirm, type index$8_IOtpCreateSession as IOtpCreateSession, type index$8_IOtpSend as IOtpSend, type index$8_IPC as IPC, type index$8_IPCLog as IPCLog, type index$8_IPCLogELS as IPCLogELS, type index$8_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$8_IProxy as IProxy, type index$8_IResponseLogin as IResponseLogin, type index$8_IRole as IRole, type index$8_IRoleFeature as IRoleFeature, type index$8_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$8_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$8_ISettingTool as ISettingTool, type index$8_ISheetImportExportSocial as ISheetImportExportSocial, type index$8_ISheetWork as ISheetWork, type index$8_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$8_ISheetWorkManager as ISheetWorkManager, type index$8_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$8_ISheetWorksCategory as ISheetWorksCategory, type index$8_ISheetsTool as ISheetsTool, type index$8_ISocialTaskManager as ISocialTaskManager, type index$8_ITag as ITag, type index$8_ITaskAIContent as ITaskAIContent, type index$8_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$8_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$8_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$8_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$8_ITaskAIItemAction as ITaskAIItemAction, type index$8_ITaskAIItemGroup as ITaskAIItemGroup, type index$8_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$8_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$8_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$8_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$8_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$8_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$8_ITaskInstagramFollow as ITaskInstagramFollow, type index$8_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$8_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$8_ITaskInstagramPost as ITaskInstagramPost, type index$8_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$8_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$8_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$8_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$8_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$8_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$8_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$8_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$8_ITaskJob as ITaskJob, type index$8_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$8_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$8_ITaskJobCheckList as ITaskJobCheckList, type index$8_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$8_ITaskJobDiscuss as ITaskJobDiscuss, type index$8_ITaskJobLabel as ITaskJobLabel, type index$8_ITaskJobPermission as ITaskJobPermission, type index$8_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$8_ITaskJobUserPermission as ITaskJobUserPermission, type index$8_ITaskJobsGroup as ITaskJobsGroup, type index$8_ITaskThreadsFollow as ITaskThreadsFollow, type index$8_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$8_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$8_ITaskThreadsPost as ITaskThreadsPost, type index$8_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$8_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$8_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$8_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$8_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$8_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$8_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$8_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$8_ITeam as ITeam, type index$8_ITeamMember as ITeamMember, type index$8_ITeamRole as ITeamRole, type index$8_IThreadsAccountRaw as IThreadsAccountRaw, type index$8_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$8_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$8_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$8_IThreadsHistoryChange as IThreadsHistoryChange, type index$8_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$8_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$8_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$8_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$8_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$8_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$8_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$8_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$8_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$8_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$8_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$8_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$8_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$8_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$8_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$8_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$8_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$8_IThreadsReportPost as IThreadsReportPost, type index$8_IThreadsReportPostELS as IThreadsReportPostELS, type index$8_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$8_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$8_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$8_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$8_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$8_IThreadsSettingPost as IThreadsSettingPost, type index$8_IToken as IToken, type index$8_ITrackingModel as ITrackingModel, type index$8_ITrackingTime as ITrackingTime, type index$8_IUser as IUser, type index$8_IUserRole as IUserRole, type index$8_IViewDeviceByPC as IViewDeviceByPC, type index$8_IVoiceGenerated as IVoiceGenerated, type index$8_IVoiceLanguage as IVoiceLanguage, type index$8_IVoiceSettingDelay as IVoiceSettingDelay, type index$8_IVoiceStores as IVoiceStores, index$b as Permission, index$4 as Socials, index$5 as Tool, type index$8_UpdateDeviceDto as UpdateDeviceDto, type index$8_UpdatePCDto as UpdatePCDto, type index$8_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6 as Workspace };
|
|
2536
2536
|
}
|
|
2537
2537
|
|
|
2538
2538
|
interface UpdatePCDto {
|
|
@@ -2633,18 +2633,16 @@ interface FilterPCDto extends IFilterBaseDto {
|
|
|
2633
2633
|
statusControl: EStatusPCControl[];
|
|
2634
2634
|
}
|
|
2635
2635
|
|
|
2636
|
-
interface IPC extends IBaseModel, ITrackingModel
|
|
2636
|
+
interface IPC extends IBaseModel, IAssignUser, ITrackingModel {
|
|
2637
2637
|
name: string;
|
|
2638
2638
|
alias: string;
|
|
2639
2639
|
machineGUID: string;
|
|
2640
2640
|
ip: string;
|
|
2641
2641
|
maxDevice: number;
|
|
2642
2642
|
os: string;
|
|
2643
|
-
timeActive: Date;
|
|
2644
2643
|
status: EStatusPC;
|
|
2645
2644
|
statusControl: EStatusPCControl;
|
|
2646
2645
|
statusChangeDate: Date;
|
|
2647
|
-
userAssign: string | IUser;
|
|
2648
2646
|
note: string;
|
|
2649
2647
|
startStop: EStartStop;
|
|
2650
2648
|
isNotifyConnection: boolean;
|
|
@@ -2652,7 +2650,7 @@ interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2652
2650
|
listEmailNotify: string[];
|
|
2653
2651
|
}
|
|
2654
2652
|
|
|
2655
|
-
interface IPCLog extends IBaseModel, ITrackingModel
|
|
2653
|
+
interface IPCLog extends IBaseModel, ITrackingModel {
|
|
2656
2654
|
pc: string | IPC;
|
|
2657
2655
|
device: string | IDevice;
|
|
2658
2656
|
source: EPCLogSource;
|
|
@@ -2682,7 +2680,7 @@ interface IAccountAIContentTag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
2682
2680
|
color: string;
|
|
2683
2681
|
}
|
|
2684
2682
|
|
|
2685
|
-
interface ILark extends IBaseModel, ITrackingModel
|
|
2683
|
+
interface ILark extends IBaseModel, ITrackingModel {
|
|
2686
2684
|
name: string;
|
|
2687
2685
|
botHook: string;
|
|
2688
2686
|
typeObject: ELarkObject;
|
|
@@ -2692,12 +2690,12 @@ interface ILark extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2692
2690
|
typeNotification: ELarkTypeNotification;
|
|
2693
2691
|
}
|
|
2694
2692
|
|
|
2695
|
-
interface ILarkTeam extends IBaseModel, ITrackingModel
|
|
2693
|
+
interface ILarkTeam extends IBaseModel, ITrackingModel {
|
|
2696
2694
|
lark: ILark | string;
|
|
2697
2695
|
team: ITeam | string;
|
|
2698
2696
|
}
|
|
2699
2697
|
|
|
2700
|
-
interface ITaskJobsGroup extends IBaseModel, ITrackingModel
|
|
2698
|
+
interface ITaskJobsGroup extends IBaseModel, ITrackingModel {
|
|
2701
2699
|
tjg_name: string;
|
|
2702
2700
|
tjg_slug: string;
|
|
2703
2701
|
tjg_otherNumber: number;
|
|
@@ -2721,7 +2719,7 @@ interface ITaskJobLabel {
|
|
|
2721
2719
|
slug: string;
|
|
2722
2720
|
color: string;
|
|
2723
2721
|
}
|
|
2724
|
-
interface ITaskJob extends IBaseModel, ITrackingModel
|
|
2722
|
+
interface ITaskJob extends IBaseModel, ITrackingModel {
|
|
2725
2723
|
tj_name: string;
|
|
2726
2724
|
tj_slug: string;
|
|
2727
2725
|
tj_desc: string;
|
|
@@ -2737,19 +2735,19 @@ interface ITaskJob extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2737
2735
|
tj_priorityPoint: number;
|
|
2738
2736
|
}
|
|
2739
2737
|
|
|
2740
|
-
interface ITaskJobPermission extends IBaseModel, ITrackingModel
|
|
2738
|
+
interface ITaskJobPermission extends IBaseModel, ITrackingModel {
|
|
2741
2739
|
taskJob: string | ITaskJob;
|
|
2742
2740
|
typePermission: 'Department' | 'Team' | 'User';
|
|
2743
2741
|
refInstanceID: string;
|
|
2744
2742
|
}
|
|
2745
2743
|
|
|
2746
|
-
interface IBlogCategory extends IBaseModel, ITrackingModel
|
|
2744
|
+
interface IBlogCategory extends IBaseModel, ITrackingModel {
|
|
2747
2745
|
bc_name: string;
|
|
2748
2746
|
bc_desc: string;
|
|
2749
2747
|
bc_slug: string;
|
|
2750
2748
|
}
|
|
2751
2749
|
|
|
2752
|
-
interface IBlog extends IBaseModel, ITrackingModel
|
|
2750
|
+
interface IBlog extends IBaseModel, ITrackingModel {
|
|
2753
2751
|
blog_name: string;
|
|
2754
2752
|
blog_thumb: string;
|
|
2755
2753
|
blog_desc: string;
|
|
@@ -2761,17 +2759,17 @@ interface IBlog extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2761
2759
|
blog_category: string | IBlogCategory;
|
|
2762
2760
|
}
|
|
2763
2761
|
|
|
2764
|
-
interface IBlogDepartmentPermission extends IBaseModel, ITrackingModel
|
|
2762
|
+
interface IBlogDepartmentPermission extends IBaseModel, ITrackingModel {
|
|
2765
2763
|
blog: string | IBlog;
|
|
2766
2764
|
department: string | IDepartment;
|
|
2767
2765
|
}
|
|
2768
2766
|
|
|
2769
|
-
interface IBlogTeamPermission extends IBaseModel, ITrackingModel
|
|
2767
|
+
interface IBlogTeamPermission extends IBaseModel, ITrackingModel {
|
|
2770
2768
|
blog: string | IBlog;
|
|
2771
2769
|
team: string | ITeam;
|
|
2772
2770
|
}
|
|
2773
2771
|
|
|
2774
|
-
interface IBlogUserPermission extends IBaseModel, ITrackingModel
|
|
2772
|
+
interface IBlogUserPermission extends IBaseModel, ITrackingModel {
|
|
2775
2773
|
blog: string | IBlog;
|
|
2776
2774
|
user: string | IUser;
|
|
2777
2775
|
}
|
|
@@ -2785,37 +2783,37 @@ declare namespace index$7 {
|
|
|
2785
2783
|
export type { index$7_IBlog as IBlog, index$7_IBlogCategory as IBlogCategory, index$7_IBlogDepartmentPermission as IBlogDepartmentPermission, index$7_IBlogTeamPermission as IBlogTeamPermission, index$7_IBlogUserPermission as IBlogUserPermission };
|
|
2786
2784
|
}
|
|
2787
2785
|
|
|
2788
|
-
interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel
|
|
2786
|
+
interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel {
|
|
2789
2787
|
taskJob: string | ITaskJob;
|
|
2790
2788
|
blog: string | IBlog;
|
|
2791
2789
|
}
|
|
2792
2790
|
|
|
2793
|
-
interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel
|
|
2791
|
+
interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel {
|
|
2794
2792
|
taskJob: string | ITaskJob;
|
|
2795
2793
|
blog: string | IBlog;
|
|
2796
2794
|
}
|
|
2797
2795
|
|
|
2798
|
-
interface ITaskJobDepartmentPermission extends IBaseModel, ITrackingModel
|
|
2796
|
+
interface ITaskJobDepartmentPermission extends IBaseModel, ITrackingModel {
|
|
2799
2797
|
taskJob: string | ITaskJob;
|
|
2800
2798
|
department: string | IDepartment;
|
|
2801
2799
|
}
|
|
2802
2800
|
|
|
2803
|
-
interface ITaskJobTeamPermission extends IBaseModel, ITrackingModel
|
|
2801
|
+
interface ITaskJobTeamPermission extends IBaseModel, ITrackingModel {
|
|
2804
2802
|
taskJob: string | ITaskJob;
|
|
2805
2803
|
team: string | ITeam;
|
|
2806
2804
|
}
|
|
2807
2805
|
|
|
2808
|
-
interface ITaskJobUserPermission extends IBaseModel, ITrackingModel
|
|
2806
|
+
interface ITaskJobUserPermission extends IBaseModel, ITrackingModel {
|
|
2809
2807
|
taskJob: string | ITaskJob;
|
|
2810
2808
|
user: string | IUser;
|
|
2811
2809
|
}
|
|
2812
2810
|
|
|
2813
|
-
interface ISheetWorksCategory extends IBaseModel, ITrackingModel
|
|
2811
|
+
interface ISheetWorksCategory extends IBaseModel, ITrackingModel {
|
|
2814
2812
|
swc_name: string;
|
|
2815
2813
|
swc_desc: string;
|
|
2816
2814
|
}
|
|
2817
2815
|
|
|
2818
|
-
interface IManagerWork extends IBaseModel, ITrackingModel
|
|
2816
|
+
interface IManagerWork extends IBaseModel, ITrackingModel {
|
|
2819
2817
|
mw_name: string;
|
|
2820
2818
|
mw_department: string | IDepartment;
|
|
2821
2819
|
mw_team: string | ITeam;
|
|
@@ -2835,7 +2833,7 @@ interface IManagerWork extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2835
2833
|
mw_note: string;
|
|
2836
2834
|
}
|
|
2837
2835
|
|
|
2838
|
-
interface ISheetWork extends IBaseModel, ITrackingModel
|
|
2836
|
+
interface ISheetWork extends IBaseModel, ITrackingModel {
|
|
2839
2837
|
sw_name: string;
|
|
2840
2838
|
sw_url: string;
|
|
2841
2839
|
sw_desc: string;
|
|
@@ -2859,17 +2857,17 @@ interface ISheetWork extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2859
2857
|
sw_classify: ETypeSheetWorkClassify;
|
|
2860
2858
|
}
|
|
2861
2859
|
|
|
2862
|
-
interface ISheetWorkDepartmentPermission extends IBaseModel, ITrackingModel
|
|
2860
|
+
interface ISheetWorkDepartmentPermission extends IBaseModel, ITrackingModel {
|
|
2863
2861
|
sheetWork: string | ISheetWork;
|
|
2864
2862
|
department: string | IDepartment;
|
|
2865
2863
|
}
|
|
2866
2864
|
|
|
2867
|
-
interface ISheetWorkUserPermission extends IBaseModel, ITrackingModel
|
|
2865
|
+
interface ISheetWorkUserPermission extends IBaseModel, ITrackingModel {
|
|
2868
2866
|
sheetWork: string | ISheetWork;
|
|
2869
2867
|
user: string | IDepartment;
|
|
2870
2868
|
}
|
|
2871
2869
|
|
|
2872
|
-
interface ISheetWorkManager extends IBaseModel, ITrackingModel
|
|
2870
|
+
interface ISheetWorkManager extends IBaseModel, ITrackingModel {
|
|
2873
2871
|
sheetWork: ISheetWork | string;
|
|
2874
2872
|
idea: IManagerWork | string;
|
|
2875
2873
|
niche: IManagerWork | string;
|
|
@@ -2915,7 +2913,7 @@ declare namespace index$6 {
|
|
|
2915
2913
|
export type { index$6_IDomain as IDomain, index$6_ILark as ILark, index$6_ILarkTeam as ILarkTeam, index$6_IManagerWork as IManagerWork, index$6_ISheetWork as ISheetWork, index$6_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, index$6_ISheetWorkManager as ISheetWorkManager, index$6_ISheetWorkUserPermission as ISheetWorkUserPermission, index$6_ISheetWorksCategory as ISheetWorksCategory, index$6_ITag as ITag, index$6_ITaskJob as ITaskJob, index$6_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, index$6_ITaskJobBlogAttached as ITaskJobBlogAttached, index$6_ITaskJobCheckList as ITaskJobCheckList, index$6_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$6_ITaskJobDiscuss as ITaskJobDiscuss, index$6_ITaskJobLabel as ITaskJobLabel, index$6_ITaskJobPermission as ITaskJobPermission, index$6_ITaskJobTeamPermission as ITaskJobTeamPermission, index$6_ITaskJobUserPermission as ITaskJobUserPermission, index$6_ITaskJobsGroup as ITaskJobsGroup };
|
|
2916
2914
|
}
|
|
2917
2915
|
|
|
2918
|
-
interface IAccountAIContent extends IBaseModel, ITrackingModel
|
|
2916
|
+
interface IAccountAIContent extends IBaseModel, ITrackingModel {
|
|
2919
2917
|
listGroupsAI: string[] | IAccountAIContentGroup[];
|
|
2920
2918
|
ideaManagerWork: string | IManagerWork;
|
|
2921
2919
|
nicheManagerWork: string[] | IManagerWork[];
|
|
@@ -2929,7 +2927,7 @@ interface IAccountAIContent extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2929
2927
|
status: EStatusActive;
|
|
2930
2928
|
}
|
|
2931
2929
|
|
|
2932
|
-
interface IAccountEmail extends IBaseModel, ITrackingModel
|
|
2930
|
+
interface IAccountEmail extends IBaseModel, ITrackingModel {
|
|
2933
2931
|
sheetUrl: string;
|
|
2934
2932
|
sheetName: string;
|
|
2935
2933
|
email: string;
|
|
@@ -2941,7 +2939,7 @@ interface IAccountEmail extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2941
2939
|
note: string;
|
|
2942
2940
|
}
|
|
2943
2941
|
|
|
2944
|
-
interface IAccountAIContentInfo extends IBaseModel, ITrackingModel
|
|
2942
|
+
interface IAccountAIContentInfo extends IBaseModel, ITrackingModel {
|
|
2945
2943
|
model: EAIModelContent;
|
|
2946
2944
|
provider: string;
|
|
2947
2945
|
versionModel: EAIVersionGPT | EAIVersionPerplexity;
|
|
@@ -2951,12 +2949,12 @@ interface IAccountAIContentInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2951
2949
|
status: EStatusAccountAI;
|
|
2952
2950
|
}
|
|
2953
2951
|
|
|
2954
|
-
interface IAccountAIContentGroup extends IBaseModel, ITrackingModel
|
|
2952
|
+
interface IAccountAIContentGroup extends IBaseModel, ITrackingModel {
|
|
2955
2953
|
name: string;
|
|
2956
2954
|
slug: string;
|
|
2957
2955
|
}
|
|
2958
2956
|
|
|
2959
|
-
interface IAccountAIContentChannel extends IBaseModel, ITrackingModel
|
|
2957
|
+
interface IAccountAIContentChannel extends IBaseModel, ITrackingModel {
|
|
2960
2958
|
name: string;
|
|
2961
2959
|
url: string;
|
|
2962
2960
|
color: string;
|
|
@@ -2965,17 +2963,17 @@ interface IAccountAIContentChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2965
2963
|
status: EStatusChannel;
|
|
2966
2964
|
}
|
|
2967
2965
|
|
|
2968
|
-
interface IAccountAIContentMemberAssigned extends IBaseModel, ITrackingModel
|
|
2966
|
+
interface IAccountAIContentMemberAssigned extends IBaseModel, ITrackingModel {
|
|
2969
2967
|
accountAI: string | IAccountAIContent;
|
|
2970
2968
|
member: string | IUser;
|
|
2971
2969
|
}
|
|
2972
2970
|
|
|
2973
|
-
interface IAccountAIImageTag extends IBaseModel, ITrackingModel
|
|
2971
|
+
interface IAccountAIImageTag extends IBaseModel, ITrackingModel {
|
|
2974
2972
|
name: string;
|
|
2975
2973
|
color: string;
|
|
2976
2974
|
}
|
|
2977
2975
|
|
|
2978
|
-
interface IAccountAIImageChannel extends IBaseModel, ITrackingModel
|
|
2976
|
+
interface IAccountAIImageChannel extends IBaseModel, ITrackingModel {
|
|
2979
2977
|
model: EAIModelImage;
|
|
2980
2978
|
name: string;
|
|
2981
2979
|
url: string;
|
|
@@ -2984,12 +2982,12 @@ interface IAccountAIImageChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2984
2982
|
note: string;
|
|
2985
2983
|
}
|
|
2986
2984
|
|
|
2987
|
-
interface IAccountAIImageGroup extends IBaseModel, ITrackingModel
|
|
2985
|
+
interface IAccountAIImageGroup extends IBaseModel, ITrackingModel {
|
|
2988
2986
|
name: string;
|
|
2989
2987
|
slug: string;
|
|
2990
2988
|
}
|
|
2991
2989
|
|
|
2992
|
-
interface IAccountAIImageInfo extends IBaseModel, ITrackingModel
|
|
2990
|
+
interface IAccountAIImageInfo extends IBaseModel, ITrackingModel {
|
|
2993
2991
|
model: EAIModelImage;
|
|
2994
2992
|
provider: string;
|
|
2995
2993
|
versionModel: EAIVersionImage;
|
|
@@ -2999,7 +2997,7 @@ interface IAccountAIImageInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2999
2997
|
status: EStatusAccountAI;
|
|
3000
2998
|
}
|
|
3001
2999
|
|
|
3002
|
-
interface IAccountAIImage extends IBaseModel, ITrackingModel
|
|
3000
|
+
interface IAccountAIImage extends IBaseModel, ITrackingModel {
|
|
3003
3001
|
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
3004
3002
|
ideaManagerWork: string | IManagerWork;
|
|
3005
3003
|
nicheManagerWork: string[] | IManagerWork[];
|
|
@@ -3013,17 +3011,17 @@ interface IAccountAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3013
3011
|
status: EStatusActive;
|
|
3014
3012
|
}
|
|
3015
3013
|
|
|
3016
|
-
interface IAccountAIImageMemberAssigned extends IBaseModel, ITrackingModel
|
|
3014
|
+
interface IAccountAIImageMemberAssigned extends IBaseModel, ITrackingModel {
|
|
3017
3015
|
accountAI: string | IAccountAIImage;
|
|
3018
3016
|
member: string | IUser;
|
|
3019
3017
|
}
|
|
3020
3018
|
|
|
3021
|
-
interface IAccountAIVoiceTag extends IBaseModel, ITrackingModel
|
|
3019
|
+
interface IAccountAIVoiceTag extends IBaseModel, ITrackingModel {
|
|
3022
3020
|
name: string;
|
|
3023
3021
|
color: string;
|
|
3024
3022
|
}
|
|
3025
3023
|
|
|
3026
|
-
interface IAccountAIVoiceChannel extends IBaseModel, ITrackingModel
|
|
3024
|
+
interface IAccountAIVoiceChannel extends IBaseModel, ITrackingModel {
|
|
3027
3025
|
model: EAIModelVoice;
|
|
3028
3026
|
name: string;
|
|
3029
3027
|
url: string;
|
|
@@ -3032,12 +3030,12 @@ interface IAccountAIVoiceChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3032
3030
|
note: string;
|
|
3033
3031
|
}
|
|
3034
3032
|
|
|
3035
|
-
interface IAccountAIVoiceGroup extends IBaseModel, ITrackingModel
|
|
3033
|
+
interface IAccountAIVoiceGroup extends IBaseModel, ITrackingModel {
|
|
3036
3034
|
name: string;
|
|
3037
3035
|
slug: string;
|
|
3038
3036
|
}
|
|
3039
3037
|
|
|
3040
|
-
interface IAccountAIVoiceInfo extends IBaseModel, ITrackingModel
|
|
3038
|
+
interface IAccountAIVoiceInfo extends IBaseModel, ITrackingModel {
|
|
3041
3039
|
model: EAIModelVoice;
|
|
3042
3040
|
provider: string;
|
|
3043
3041
|
versionModel: EAIVersionVoice;
|
|
@@ -3047,7 +3045,7 @@ interface IAccountAIVoiceInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3047
3045
|
status: EStatusAccountAI;
|
|
3048
3046
|
}
|
|
3049
3047
|
|
|
3050
|
-
interface IAccountAIVoice extends IBaseModel, ITrackingModel
|
|
3048
|
+
interface IAccountAIVoice extends IBaseModel, ITrackingModel {
|
|
3051
3049
|
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
3052
3050
|
ideaManagerWork: string | IManagerWork;
|
|
3053
3051
|
nicheManagerWork: string[] | IManagerWork[];
|
|
@@ -3061,12 +3059,12 @@ interface IAccountAIVoice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3061
3059
|
status: EStatusActive;
|
|
3062
3060
|
}
|
|
3063
3061
|
|
|
3064
|
-
interface IAccountAIVoiceMemberAssigned extends IBaseModel, ITrackingModel
|
|
3062
|
+
interface IAccountAIVoiceMemberAssigned extends IBaseModel, ITrackingModel {
|
|
3065
3063
|
accountAI: string | IAccountAIVoice;
|
|
3066
3064
|
member: string | IUser;
|
|
3067
3065
|
}
|
|
3068
3066
|
|
|
3069
|
-
interface IAccountCanva extends IBaseModel,
|
|
3067
|
+
interface IAccountCanva extends IBaseModel, IAssignUser, ITrackingModel {
|
|
3070
3068
|
sheetUrl: string;
|
|
3071
3069
|
sheetName: string;
|
|
3072
3070
|
email: string;
|
|
@@ -3076,7 +3074,7 @@ interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<
|
|
|
3076
3074
|
note: string;
|
|
3077
3075
|
}
|
|
3078
3076
|
|
|
3079
|
-
interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel
|
|
3077
|
+
interface IAccountCHPlayICloud extends IBaseModel, IAssignUser, ITrackingModel {
|
|
3080
3078
|
sheetUrl: string;
|
|
3081
3079
|
sheetName: string;
|
|
3082
3080
|
os: ETypeDeviceOS;
|
|
@@ -3090,12 +3088,10 @@ interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3090
3088
|
newEmailRecover: string;
|
|
3091
3089
|
statusChange: EStatusChangeInfo;
|
|
3092
3090
|
status: EStatusAccountCHPlayICloud;
|
|
3093
|
-
timeLastUsed: Date;
|
|
3094
|
-
lastUserUsed: string | IUser;
|
|
3095
3091
|
note: string;
|
|
3096
3092
|
}
|
|
3097
3093
|
|
|
3098
|
-
interface IAccountDrive extends IBaseModel, ITrackingModel
|
|
3094
|
+
interface IAccountDrive extends IBaseModel, IAssignUser, ITrackingModel {
|
|
3099
3095
|
sheetUrl: string;
|
|
3100
3096
|
sheetName: string;
|
|
3101
3097
|
currentSpace: string;
|
|
@@ -3103,19 +3099,17 @@ interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3103
3099
|
email: string;
|
|
3104
3100
|
password: string;
|
|
3105
3101
|
code2FA: string;
|
|
3106
|
-
timeLastUsed: Date;
|
|
3107
|
-
lastUserUsed: string | IUser;
|
|
3108
3102
|
status: EStatusAccountDrive;
|
|
3109
3103
|
note: string;
|
|
3110
3104
|
}
|
|
3111
3105
|
|
|
3112
|
-
interface IAccountEmailTag extends IBaseModel, ITrackingModel
|
|
3106
|
+
interface IAccountEmailTag extends IBaseModel, ITrackingModel {
|
|
3113
3107
|
email: string;
|
|
3114
3108
|
typeTag: EEmailTagType | string;
|
|
3115
3109
|
model: EAIModelContent | EAIModelImage | EAIModelVoice;
|
|
3116
3110
|
}
|
|
3117
3111
|
|
|
3118
|
-
interface IProxy extends IBaseModel, ITrackingModel
|
|
3112
|
+
interface IProxy extends IBaseModel, IAssignUser, ITrackingModel {
|
|
3119
3113
|
sheetUrl: string;
|
|
3120
3114
|
sheetName: string;
|
|
3121
3115
|
typeNewIp: EStatusProxyNewIP;
|
|
@@ -3136,22 +3130,20 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3136
3130
|
startDate: Date;
|
|
3137
3131
|
endDate: Date;
|
|
3138
3132
|
note: string;
|
|
3139
|
-
timeLastUsed: Date;
|
|
3140
|
-
lastUserUsed: string | IUser;
|
|
3141
3133
|
}
|
|
3142
3134
|
|
|
3143
|
-
interface IAccountEmailProxy extends IBaseModel, ITrackingModel
|
|
3135
|
+
interface IAccountEmailProxy extends IBaseModel, ITrackingModel {
|
|
3144
3136
|
accountEmail: string | IAccountEmail;
|
|
3145
3137
|
proxy: string | IProxy;
|
|
3146
3138
|
}
|
|
3147
3139
|
|
|
3148
|
-
interface IAccountEmailTaskWork extends IBaseModel, ITrackingModel
|
|
3140
|
+
interface IAccountEmailTaskWork extends IBaseModel, ITrackingModel {
|
|
3149
3141
|
accountEmail: string;
|
|
3150
3142
|
idea: string | IManagerWork;
|
|
3151
3143
|
niches: string[] | IManagerWork[];
|
|
3152
3144
|
}
|
|
3153
3145
|
|
|
3154
|
-
interface IAccountVPN extends IBaseModel, ITrackingModel
|
|
3146
|
+
interface IAccountVPN extends IBaseModel, IAssignUser, ITrackingModel {
|
|
3155
3147
|
sheetUrl: string;
|
|
3156
3148
|
sheetName: string;
|
|
3157
3149
|
oldEmail: string;
|
|
@@ -3170,8 +3162,6 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3170
3162
|
startDate: Date;
|
|
3171
3163
|
endDate: Date;
|
|
3172
3164
|
note: string;
|
|
3173
|
-
timeLastUsed: Date;
|
|
3174
|
-
lastUserUsed: string | IUser;
|
|
3175
3165
|
}
|
|
3176
3166
|
|
|
3177
3167
|
declare enum ETypeBrowser {
|
|
@@ -3185,12 +3175,12 @@ declare enum ETypePcOS {
|
|
|
3185
3175
|
Mac = "Mac"
|
|
3186
3176
|
}
|
|
3187
3177
|
|
|
3188
|
-
interface IAccountVPSGroup extends IBaseModel, ITrackingModel
|
|
3178
|
+
interface IAccountVPSGroup extends IBaseModel, ITrackingModel {
|
|
3189
3179
|
name: string;
|
|
3190
3180
|
description: string;
|
|
3191
3181
|
}
|
|
3192
3182
|
|
|
3193
|
-
interface IAccountVPS extends IBaseModel, ITrackingModel
|
|
3183
|
+
interface IAccountVPS extends IBaseModel, ITrackingModel {
|
|
3194
3184
|
group: string | IAccountVPSGroup;
|
|
3195
3185
|
ip: string;
|
|
3196
3186
|
port: string;
|
|
@@ -3234,7 +3224,7 @@ interface IAccountVPSSocial extends IBaseModel {
|
|
|
3234
3224
|
typeSocial: ETypeSocial;
|
|
3235
3225
|
}
|
|
3236
3226
|
|
|
3237
|
-
interface IManagerImageAI extends IBaseModel, ITrackingModel
|
|
3227
|
+
interface IManagerImageAI extends IBaseModel, ITrackingModel {
|
|
3238
3228
|
folderName: string;
|
|
3239
3229
|
typeSocial: ETypeSocial;
|
|
3240
3230
|
model: EAIModelImage;
|
|
@@ -3242,7 +3232,7 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3242
3232
|
niches: IManagerWork[] | string[];
|
|
3243
3233
|
}
|
|
3244
3234
|
|
|
3245
|
-
interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel
|
|
3235
|
+
interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel {
|
|
3246
3236
|
ideaId: string;
|
|
3247
3237
|
nicheId: string;
|
|
3248
3238
|
typeManagerWork: ETypeManagerWorkClassify;
|
|
@@ -3255,13 +3245,13 @@ interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3255
3245
|
followings: number;
|
|
3256
3246
|
}
|
|
3257
3247
|
|
|
3258
|
-
interface IAccountSocialGroup extends IBaseModel, ITrackingModel
|
|
3248
|
+
interface IAccountSocialGroup extends IBaseModel, ITrackingModel {
|
|
3259
3249
|
typeSocial: ETypeSocial;
|
|
3260
3250
|
name: string;
|
|
3261
3251
|
description: string;
|
|
3262
3252
|
}
|
|
3263
3253
|
|
|
3264
|
-
interface IInstagramAccountRaw extends IBaseModel, ITrackingModel
|
|
3254
|
+
interface IInstagramAccountRaw extends IBaseModel, IAssignUser, ITrackingModel, IAccountSocialBase {
|
|
3265
3255
|
accountID: number;
|
|
3266
3256
|
group: IAccountSocialGroup | string;
|
|
3267
3257
|
nameAppCloneSocial: string;
|
|
@@ -3340,8 +3330,6 @@ interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser>, IAccou
|
|
|
3340
3330
|
emailRecover: string;
|
|
3341
3331
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
|
3342
3332
|
timeLoginEmail: Date;
|
|
3343
|
-
timeLastUsed: Date;
|
|
3344
|
-
lastUserUsed: string | IUser;
|
|
3345
3333
|
statusSyncAccount: EStatusAccountSocialSync;
|
|
3346
3334
|
timeSyncAccount: Date;
|
|
3347
3335
|
isAccountRun: boolean;
|
|
@@ -3352,7 +3340,7 @@ interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser>, IAccou
|
|
|
3352
3340
|
noteConnectDevice: string;
|
|
3353
3341
|
}
|
|
3354
3342
|
|
|
3355
|
-
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel
|
|
3343
|
+
interface IInstagramHistoryGroup extends IBaseModel, ITrackingModel {
|
|
3356
3344
|
sheetUrl: string;
|
|
3357
3345
|
sheetName: string;
|
|
3358
3346
|
account: string | IInstagramAccountRaw;
|
|
@@ -3402,10 +3390,10 @@ interface IInstagramHistoryGroupStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
3402
3390
|
timeAction: Date;
|
|
3403
3391
|
note: string;
|
|
3404
3392
|
}
|
|
3405
|
-
interface IInstagramHistoryGroupELS extends IInstagramHistoryGroupStoreIdxELS {
|
|
3393
|
+
interface IInstagramHistoryGroupELS extends IInstagramHistoryGroupStoreIdxELS, IBaseELS {
|
|
3406
3394
|
}
|
|
3407
3395
|
|
|
3408
|
-
interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel
|
|
3396
|
+
interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel {
|
|
3409
3397
|
sheetUrl: string;
|
|
3410
3398
|
sheetName: string;
|
|
3411
3399
|
account: string | IInstagramAccountRaw;
|
|
@@ -3413,7 +3401,7 @@ interface IInstagramHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3413
3401
|
timeAction: Date;
|
|
3414
3402
|
note: string;
|
|
3415
3403
|
}
|
|
3416
|
-
interface IInstagramHistoryAutoSyncStoreIdxELS extends
|
|
3404
|
+
interface IInstagramHistoryAutoSyncStoreIdxELS extends IBaseStoreIdxELS {
|
|
3417
3405
|
sheetInfo: IBaseRefFieldELS & {
|
|
3418
3406
|
url: string;
|
|
3419
3407
|
name: string;
|
|
@@ -3460,10 +3448,10 @@ interface IInstagramHistoryAutoSyncStoreIdxELS extends IBaseELS {
|
|
|
3460
3448
|
timeAction: Date;
|
|
3461
3449
|
note: string;
|
|
3462
3450
|
}
|
|
3463
|
-
interface IInstagramHistoryAutoSyncELS extends IInstagramHistoryAutoSyncStoreIdxELS {
|
|
3451
|
+
interface IInstagramHistoryAutoSyncELS extends IInstagramHistoryAutoSyncStoreIdxELS, IBaseELS {
|
|
3464
3452
|
}
|
|
3465
3453
|
|
|
3466
|
-
interface IInstagramHistoryCreateNew extends IBaseModel, ITrackingModel
|
|
3454
|
+
interface IInstagramHistoryCreateNew extends IBaseModel, ITrackingModel {
|
|
3467
3455
|
sheetUrl: string;
|
|
3468
3456
|
sheetName: string;
|
|
3469
3457
|
account: string | IInstagramAccountRaw;
|
|
@@ -3522,10 +3510,10 @@ interface IInstagramHistoryCreateNewStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
3522
3510
|
timeAction: Date;
|
|
3523
3511
|
note: string;
|
|
3524
3512
|
}
|
|
3525
|
-
interface IInstagramHistoryCreateNewELS extends IInstagramHistoryCreateNewStoreIdxELS {
|
|
3513
|
+
interface IInstagramHistoryCreateNewELS extends IInstagramHistoryCreateNewStoreIdxELS, IBaseELS {
|
|
3526
3514
|
}
|
|
3527
3515
|
|
|
3528
|
-
interface IInstagramHistoryChangeInfo extends IBaseModel, ITrackingModel
|
|
3516
|
+
interface IInstagramHistoryChangeInfo extends IBaseModel, ITrackingModel {
|
|
3529
3517
|
sheetUrl: string;
|
|
3530
3518
|
sheetName: string;
|
|
3531
3519
|
account: string | IInstagramAccountRaw;
|
|
@@ -3570,7 +3558,7 @@ interface IInstagramHistoryChangeInfo extends IBaseModel, ITrackingModel<IUser>
|
|
|
3570
3558
|
timeAction: Date;
|
|
3571
3559
|
note: string;
|
|
3572
3560
|
}
|
|
3573
|
-
interface IInstagramHistoryChangeInfoStoreIdxELS extends
|
|
3561
|
+
interface IInstagramHistoryChangeInfoStoreIdxELS extends IBaseStoreIdxELS {
|
|
3574
3562
|
changeType: ETypeSocialChangeInfoInstagram;
|
|
3575
3563
|
sheetInfo: IBaseRefFieldELS & {
|
|
3576
3564
|
url: string;
|
|
@@ -3663,10 +3651,10 @@ interface IInstagramHistoryChangeInfoStoreIdxELS extends IBaseELS {
|
|
|
3663
3651
|
timeAction: Date;
|
|
3664
3652
|
note: string;
|
|
3665
3653
|
}
|
|
3666
|
-
interface IInstagramHistoryChangeInfoELS extends IInstagramHistoryChangeInfoStoreIdxELS {
|
|
3654
|
+
interface IInstagramHistoryChangeInfoELS extends IInstagramHistoryChangeInfoStoreIdxELS, IBaseELS {
|
|
3667
3655
|
}
|
|
3668
3656
|
|
|
3669
|
-
interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel
|
|
3657
|
+
interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel {
|
|
3670
3658
|
account: IInstagramAccountRaw | string;
|
|
3671
3659
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3672
3660
|
timezone: ETimeZone;
|
|
@@ -3675,7 +3663,7 @@ interface IInstagramSettingInteractBlockUser extends IBaseModel, ITrackingModel<
|
|
|
3675
3663
|
timeStopStart: Date;
|
|
3676
3664
|
}
|
|
3677
3665
|
|
|
3678
|
-
interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel
|
|
3666
|
+
interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel {
|
|
3679
3667
|
account: IInstagramAccountRaw | string;
|
|
3680
3668
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3681
3669
|
timezone: ETimeZone;
|
|
@@ -3714,7 +3702,7 @@ interface IInstagramSettingInteractFollow extends IBaseModel, ITrackingModel<IUs
|
|
|
3714
3702
|
isSkipBioNoneEnglish: boolean;
|
|
3715
3703
|
}
|
|
3716
3704
|
|
|
3717
|
-
interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
3705
|
+
interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingModel {
|
|
3718
3706
|
account: IInstagramAccountRaw | string;
|
|
3719
3707
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3720
3708
|
timezone: ETimeZone;
|
|
@@ -3737,7 +3725,7 @@ interface IInstagramSettingInteractReplyComment extends IBaseModel, ITrackingMod
|
|
|
3737
3725
|
isReplyCommentsPostOfMe: boolean;
|
|
3738
3726
|
}
|
|
3739
3727
|
|
|
3740
|
-
interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingModel
|
|
3728
|
+
interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingModel {
|
|
3741
3729
|
account: IInstagramAccountRaw | string;
|
|
3742
3730
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3743
3731
|
timezone: ETimeZone;
|
|
@@ -3755,7 +3743,7 @@ interface IInstagramSettingInteractReplyMessage extends IBaseModel, ITrackingMod
|
|
|
3755
3743
|
isSkipReplyIfOnlyIcons: boolean;
|
|
3756
3744
|
}
|
|
3757
3745
|
|
|
3758
|
-
interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel
|
|
3746
|
+
interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel {
|
|
3759
3747
|
account: IInstagramAccountRaw | string;
|
|
3760
3748
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3761
3749
|
timezone: ETimeZone;
|
|
@@ -3779,7 +3767,7 @@ interface IInstagramSettingInteractUnFollow extends IBaseModel, ITrackingModel<I
|
|
|
3779
3767
|
numberInteractTo: number;
|
|
3780
3768
|
}
|
|
3781
3769
|
|
|
3782
|
-
interface IInstagramSettingPost extends IBaseModel, ITrackingModel
|
|
3770
|
+
interface IInstagramSettingPost extends IBaseModel, ITrackingModel {
|
|
3783
3771
|
account: IInstagramAccountRaw | string;
|
|
3784
3772
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
3785
3773
|
timezone: ETimeZone;
|
|
@@ -3798,7 +3786,7 @@ interface ISettingRunTimeInstagramPost {
|
|
|
3798
3786
|
isEdit: boolean;
|
|
3799
3787
|
}
|
|
3800
3788
|
|
|
3801
|
-
interface IInstagramReportInteractBlockUser extends IBaseModel,
|
|
3789
|
+
interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
3802
3790
|
sheetUrl: string;
|
|
3803
3791
|
sheetName: string;
|
|
3804
3792
|
account: IInstagramAccountRaw | string;
|
|
@@ -3902,7 +3890,7 @@ interface IInstagramReportInteractBlockUserStoreIdxELS extends IBaseStoreIdxELS
|
|
|
3902
3890
|
schedulePostTime: Date;
|
|
3903
3891
|
}
|
|
3904
3892
|
|
|
3905
|
-
interface IInstagramReportInteractFollow extends IBaseModel,
|
|
3893
|
+
interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
3906
3894
|
sheet: string | ISheetsTool;
|
|
3907
3895
|
account: IInstagramAccountRaw | string;
|
|
3908
3896
|
accountProxy: string | IProxy;
|
|
@@ -4042,7 +4030,7 @@ interface IInstagramReportInteractFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
4042
4030
|
};
|
|
4043
4031
|
}
|
|
4044
4032
|
|
|
4045
|
-
interface IInstagramReportInteractReplyComment extends IBaseModel,
|
|
4033
|
+
interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4046
4034
|
account: IInstagramAccountRaw | string;
|
|
4047
4035
|
accountProxy: string | IProxy;
|
|
4048
4036
|
accountVPN: string | IAccountVPN;
|
|
@@ -4149,7 +4137,7 @@ interface IInstagramReportInteractReplyCommentStoreIdxELS extends IBaseStoreIdxE
|
|
|
4149
4137
|
schedulePostTime: Date;
|
|
4150
4138
|
}
|
|
4151
4139
|
|
|
4152
|
-
interface IInstagramReportInteractReplyMessage extends IBaseModel,
|
|
4140
|
+
interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4153
4141
|
account: IInstagramAccountRaw | string;
|
|
4154
4142
|
accountProxy: string | IProxy;
|
|
4155
4143
|
accountVPN: string | IAccountVPN;
|
|
@@ -4250,7 +4238,7 @@ interface IInstagramReportInteractReplyMessageStoreIdxELS extends IBaseStoreIdxE
|
|
|
4250
4238
|
schedulePostTime: Date;
|
|
4251
4239
|
}
|
|
4252
4240
|
|
|
4253
|
-
interface IInstagramReportInteractUnFollow extends IBaseModel,
|
|
4241
|
+
interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4254
4242
|
account: IInstagramAccountRaw | string;
|
|
4255
4243
|
accountProxy: string | IProxy;
|
|
4256
4244
|
accountVPN: string | IAccountVPN;
|
|
@@ -4375,7 +4363,7 @@ interface IInstagramReportInteractUnFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
4375
4363
|
numberInteractTo: number;
|
|
4376
4364
|
}
|
|
4377
4365
|
|
|
4378
|
-
interface IInstagramReportPostHighLight extends IBaseModel,
|
|
4366
|
+
interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4379
4367
|
account: string | IInstagramAccountRaw;
|
|
4380
4368
|
accountProxy: string | IProxy;
|
|
4381
4369
|
accountVPN: string | IAccountVPN;
|
|
@@ -4534,7 +4522,7 @@ interface IInstagramReportPostHighLightStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
4534
4522
|
taskCanvaId: string;
|
|
4535
4523
|
}
|
|
4536
4524
|
|
|
4537
|
-
interface IInstagramReportPostNew extends IBaseModel,
|
|
4525
|
+
interface IInstagramReportPostNew extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4538
4526
|
account: string | IInstagramAccountRaw;
|
|
4539
4527
|
accountProxy: string | IProxy;
|
|
4540
4528
|
accountVPN: string | IAccountVPN;
|
|
@@ -4750,7 +4738,7 @@ interface IInstagramReportPostNewStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
4750
4738
|
taskCanvaId: string;
|
|
4751
4739
|
}
|
|
4752
4740
|
|
|
4753
|
-
interface IInstagramReportPostSquare extends IBaseModel,
|
|
4741
|
+
interface IInstagramReportPostSquare extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4754
4742
|
account: string | IInstagramAccountRaw;
|
|
4755
4743
|
accountProxy: string | IProxy;
|
|
4756
4744
|
accountVPN: string | IAccountVPN;
|
|
@@ -4961,7 +4949,7 @@ interface IInstagramReportPostSquareStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
4961
4949
|
taskCanvaId: string;
|
|
4962
4950
|
}
|
|
4963
4951
|
|
|
4964
|
-
interface IInstagramReportPostReel extends IBaseModel,
|
|
4952
|
+
interface IInstagramReportPostReel extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
4965
4953
|
account: string | IInstagramAccountRaw;
|
|
4966
4954
|
accountProxy: string | IProxy;
|
|
4967
4955
|
accountVPN: string | IAccountVPN;
|
|
@@ -5140,7 +5128,7 @@ interface IInstagramReportPostReelStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
5140
5128
|
taskCanvaId: string;
|
|
5141
5129
|
}
|
|
5142
5130
|
|
|
5143
|
-
interface IInstagramReportPostStory extends IBaseModel,
|
|
5131
|
+
interface IInstagramReportPostStory extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
5144
5132
|
account: string | IInstagramAccountRaw;
|
|
5145
5133
|
accountProxy: string | IProxy;
|
|
5146
5134
|
accountVPN: string | IAccountVPN;
|
|
@@ -5311,7 +5299,7 @@ interface IInstagramReportPostStoryStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
5311
5299
|
taskCanvaId: string;
|
|
5312
5300
|
}
|
|
5313
5301
|
|
|
5314
|
-
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel
|
|
5302
|
+
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel {
|
|
5315
5303
|
sheetUrl: string;
|
|
5316
5304
|
sheetName: string;
|
|
5317
5305
|
sheetType: string;
|
|
@@ -5400,7 +5388,7 @@ interface ITaskInstagramBlockUserStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
5400
5388
|
listHiddenUserName: string[];
|
|
5401
5389
|
}
|
|
5402
5390
|
|
|
5403
|
-
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel
|
|
5391
|
+
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel {
|
|
5404
5392
|
sheetUrl: string;
|
|
5405
5393
|
sheetName: string;
|
|
5406
5394
|
sheetType: string;
|
|
@@ -5537,12 +5525,12 @@ interface ITaskInstagramChangeInfoStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
5537
5525
|
newUrlImageCover: string;
|
|
5538
5526
|
}
|
|
5539
5527
|
|
|
5540
|
-
interface IManagerSheetGroup extends IBaseModel, ITrackingModel
|
|
5528
|
+
interface IManagerSheetGroup extends IBaseModel, ITrackingModel {
|
|
5541
5529
|
name: string;
|
|
5542
5530
|
slug: string;
|
|
5543
5531
|
}
|
|
5544
5532
|
|
|
5545
|
-
interface IManagerSheet extends IBaseModel, ITrackingModel
|
|
5533
|
+
interface IManagerSheet extends IBaseModel, ITrackingModel {
|
|
5546
5534
|
key: string;
|
|
5547
5535
|
typeSocial: ETypeSocial;
|
|
5548
5536
|
group: string | IManagerSheetGroup;
|
|
@@ -5552,7 +5540,7 @@ interface IManagerSheet extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5552
5540
|
isActive: boolean;
|
|
5553
5541
|
}
|
|
5554
5542
|
|
|
5555
|
-
interface IManagerSheetChildren extends IBaseModel, ITrackingModel
|
|
5543
|
+
interface IManagerSheetChildren extends IBaseModel, ITrackingModel {
|
|
5556
5544
|
managerSheet: string | IManagerSheet;
|
|
5557
5545
|
url: string;
|
|
5558
5546
|
name: string;
|
|
@@ -5592,7 +5580,7 @@ interface ITaskAIItemGroup {
|
|
|
5592
5580
|
listChannelsAI: Array<string> | Array<IAccountAIContentChannel>;
|
|
5593
5581
|
status: EStatusTaskAIContent;
|
|
5594
5582
|
}
|
|
5595
|
-
interface ITaskAIContent extends IBaseModel, ITrackingModel
|
|
5583
|
+
interface ITaskAIContent extends IBaseModel, ITrackingModel {
|
|
5596
5584
|
accountAI: string | IAccountAIContent;
|
|
5597
5585
|
sheetID: string;
|
|
5598
5586
|
sheetUrl: string;
|
|
@@ -5614,7 +5602,7 @@ interface ITaskAIContent extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5614
5602
|
status: EStatusTaskAIContent;
|
|
5615
5603
|
}
|
|
5616
5604
|
|
|
5617
|
-
interface ITaskAIImageCanvaThreads extends IBaseModel, ITrackingModel
|
|
5605
|
+
interface ITaskAIImageCanvaThreads extends IBaseModel, ITrackingModel {
|
|
5618
5606
|
sheetID: string;
|
|
5619
5607
|
sheetUrl: string;
|
|
5620
5608
|
sheetName: string;
|
|
@@ -5636,7 +5624,7 @@ interface ITaskAIImageCanvaThreads extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5636
5624
|
statusCanva: EStatusTaskCanva;
|
|
5637
5625
|
}
|
|
5638
5626
|
|
|
5639
|
-
interface ITaskAIImageCanvaInstagram extends IBaseModel, ITrackingModel
|
|
5627
|
+
interface ITaskAIImageCanvaInstagram extends IBaseModel, ITrackingModel {
|
|
5640
5628
|
sheetID: string;
|
|
5641
5629
|
sheetUrl: string;
|
|
5642
5630
|
sheetName: string;
|
|
@@ -5658,7 +5646,7 @@ interface ITaskAIImageCanvaInstagram extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5658
5646
|
statusCanva: EStatusTaskCanva;
|
|
5659
5647
|
}
|
|
5660
5648
|
|
|
5661
|
-
interface ITaskAIImageVoiceCanvaThreads extends IBaseModel, ITrackingModel
|
|
5649
|
+
interface ITaskAIImageVoiceCanvaThreads extends IBaseModel, ITrackingModel {
|
|
5662
5650
|
sheetID: string;
|
|
5663
5651
|
sheetUrl: string;
|
|
5664
5652
|
sheetName: string;
|
|
@@ -5723,7 +5711,7 @@ interface ITaskAIImageVoiceCanvaThreads extends IBaseModel, ITrackingModel<IUser
|
|
|
5723
5711
|
statusCanva: EStatusTaskCanva;
|
|
5724
5712
|
}
|
|
5725
5713
|
|
|
5726
|
-
interface ITaskAIImageVoiceCanvaInstagram extends IBaseModel, ITrackingModel
|
|
5714
|
+
interface ITaskAIImageVoiceCanvaInstagram extends IBaseModel, ITrackingModel {
|
|
5727
5715
|
sheetID: string;
|
|
5728
5716
|
sheetUrl: string;
|
|
5729
5717
|
sheetName: string;
|
|
@@ -5788,19 +5776,19 @@ interface ITaskAIImageVoiceCanvaInstagram extends IBaseModel, ITrackingModel<IUs
|
|
|
5788
5776
|
statusCanva: EStatusTaskCanva;
|
|
5789
5777
|
}
|
|
5790
5778
|
|
|
5791
|
-
interface IVoiceLanguage extends IBaseModel, ITrackingModel
|
|
5779
|
+
interface IVoiceLanguage extends IBaseModel, ITrackingModel {
|
|
5792
5780
|
vl_name: string;
|
|
5793
5781
|
vl_key: ETypeVoiceLanguage;
|
|
5794
5782
|
}
|
|
5795
5783
|
|
|
5796
|
-
interface IVoiceStores extends IBaseModel, ITrackingModel
|
|
5784
|
+
interface IVoiceStores extends IBaseModel, ITrackingModel {
|
|
5797
5785
|
vs_name: string;
|
|
5798
5786
|
vs_avatar: string;
|
|
5799
5787
|
vs_audio: string;
|
|
5800
5788
|
vs_language: IVoiceLanguage | string;
|
|
5801
5789
|
}
|
|
5802
5790
|
|
|
5803
|
-
interface IVoiceGenerated extends IBaseModel, ITrackingModel
|
|
5791
|
+
interface IVoiceGenerated extends IBaseModel, ITrackingModel {
|
|
5804
5792
|
vg_content: Array<{
|
|
5805
5793
|
prompt: string;
|
|
5806
5794
|
voiceStore: IVoiceStores | string;
|
|
@@ -5814,12 +5802,12 @@ interface IVoiceGenerated extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5814
5802
|
vg_audio: string;
|
|
5815
5803
|
}
|
|
5816
5804
|
|
|
5817
|
-
interface IVoiceSettingDelay extends IBaseModel, ITrackingModel
|
|
5805
|
+
interface IVoiceSettingDelay extends IBaseModel, ITrackingModel {
|
|
5818
5806
|
vsd_symbol: string;
|
|
5819
5807
|
vsd_timeDelay: number;
|
|
5820
5808
|
}
|
|
5821
5809
|
|
|
5822
|
-
interface ISheetsTool extends IBaseModel, ITrackingModel
|
|
5810
|
+
interface ISheetsTool extends IBaseModel, IAssignUser, ITrackingModel {
|
|
5823
5811
|
typeSocial: ETypeSocial;
|
|
5824
5812
|
type: ESheetToolInstagram;
|
|
5825
5813
|
url: string;
|
|
@@ -5832,8 +5820,6 @@ interface ISheetsTool extends IBaseModel, ITrackingModel<IUser> {
|
|
|
5832
5820
|
timeCrawl: ESheetToolTimeCrawl;
|
|
5833
5821
|
totalRows: number;
|
|
5834
5822
|
totalCols: number;
|
|
5835
|
-
timeLastUsed: Date;
|
|
5836
|
-
lastUserUsed: string | IUser;
|
|
5837
5823
|
}
|
|
5838
5824
|
|
|
5839
5825
|
interface FindAutoFillDeviceDto {
|
|
@@ -6654,7 +6640,7 @@ declare namespace index$5 {
|
|
|
6654
6640
|
export type { index$5_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$5_AddAccountForDeviceDto as AddAccountForDeviceDto, index$5_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$5_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$5_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$5_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$5_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$5_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$5_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$5_FilterDeviceDto as FilterDeviceDto, index$5_FilterDeviceLogDto as FilterDeviceLogDto, index$5_FilterPCDto as FilterPCDto, index$5_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$5_FindDeviceDto as FindDeviceDto, index$5_FindDeviceLogDto as FindDeviceLogDto, index$5_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$5_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$5_FindOverviewDeviceLog as FindOverviewDeviceLog, index$5_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$5_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$5_FindOverviewPCDto as FindOverviewPCDto, index$5_FindPCDetail as FindPCDetail, index$5_FindPCDto as FindPCDto, index$5_FindReplaceDeviceDto as FindReplaceDeviceDto, 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_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, index$5_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, index$5_IDeviceSettingForProxy as IDeviceSettingForProxy, index$5_IDeviceSettingForVPN as IDeviceSettingForVPN, index$5_IEmailRawManager as IEmailRawManager, 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_IPCLog as IPCLog, index$5_IPCLogELS as IPCLogELS, index$5_IPCLogStoreIdxELS as IPCLogStoreIdxELS, index$5_IProxy as IProxy, index$5_ISettingTool as ISettingTool, 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_IViewDeviceByPC as IViewDeviceByPC, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores, index$5_UpdateDeviceDto as UpdateDeviceDto, index$5_UpdatePCDto as UpdatePCDto, index$5_ViewDetailDeviceDto as ViewDetailDeviceDto };
|
|
6655
6641
|
}
|
|
6656
6642
|
|
|
6657
|
-
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel
|
|
6643
|
+
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel {
|
|
6658
6644
|
sheet: string | ISheetsTool;
|
|
6659
6645
|
account: string | IInstagramAccountRaw;
|
|
6660
6646
|
timezone: ETimeZone;
|
|
@@ -6735,7 +6721,7 @@ interface ITaskInstagramFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
6735
6721
|
listUsernameFollow: string[];
|
|
6736
6722
|
}
|
|
6737
6723
|
|
|
6738
|
-
interface ITaskInstagramPost extends IBaseModel, ITrackingModel
|
|
6724
|
+
interface ITaskInstagramPost extends IBaseModel, ITrackingModel {
|
|
6739
6725
|
sheet: string | ISheetsTool;
|
|
6740
6726
|
account: string | IInstagramAccountRaw;
|
|
6741
6727
|
timezone: ETimeZone;
|
|
@@ -6941,7 +6927,7 @@ interface ITaskInstagramPostStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
6941
6927
|
linkPost: string;
|
|
6942
6928
|
}
|
|
6943
6929
|
|
|
6944
|
-
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel
|
|
6930
|
+
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel {
|
|
6945
6931
|
sheet: string | ISheetsTool;
|
|
6946
6932
|
account: string | IInstagramAccountRaw;
|
|
6947
6933
|
timezone: ETimeZone;
|
|
@@ -7037,7 +7023,7 @@ interface ITaskInstagramReplyCommentStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
7037
7023
|
statusStep2: EStatusTaskToolSocials;
|
|
7038
7024
|
}
|
|
7039
7025
|
|
|
7040
|
-
interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel
|
|
7026
|
+
interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel {
|
|
7041
7027
|
sheet: string | ISheetsTool;
|
|
7042
7028
|
account: string | IInstagramAccountRaw;
|
|
7043
7029
|
timezone: ETimeZone;
|
|
@@ -7133,7 +7119,7 @@ interface ITaskInstagramReplyMessageStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
7133
7119
|
statusStep2: EStatusTaskToolSocials;
|
|
7134
7120
|
}
|
|
7135
7121
|
|
|
7136
|
-
interface IInstagramDashboardFollower extends IBaseModel, ITrackingModel
|
|
7122
|
+
interface IInstagramDashboardFollower extends IBaseModel, ITrackingModel {
|
|
7137
7123
|
accountId: string;
|
|
7138
7124
|
postNews: number;
|
|
7139
7125
|
postReel: number;
|
|
@@ -7163,7 +7149,7 @@ interface IInstagramDashboardFollowerELS extends IBaseELS {
|
|
|
7163
7149
|
followings: number;
|
|
7164
7150
|
}
|
|
7165
7151
|
|
|
7166
|
-
interface IThreadsAccountRaw extends IBaseModel, ITrackingModel
|
|
7152
|
+
interface IThreadsAccountRaw extends IBaseModel, IAssignUser, ITrackingModel, IAccountSocialBase {
|
|
7167
7153
|
accountInstagram: string | IInstagramAccountRaw;
|
|
7168
7154
|
accountID: number;
|
|
7169
7155
|
group: IAccountSocialGroup | string;
|
|
@@ -7198,8 +7184,6 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser>, IAccount
|
|
|
7198
7184
|
totalLinkBio: string[];
|
|
7199
7185
|
statusChangeBio: string;
|
|
7200
7186
|
timeChangeBio: Date;
|
|
7201
|
-
timeLastUsed: Date;
|
|
7202
|
-
lastUserUsed: string | IUser;
|
|
7203
7187
|
statusSyncAccount: EStatusAccountSocialSync;
|
|
7204
7188
|
timeSyncAccount: Date;
|
|
7205
7189
|
isAccountRun: boolean;
|
|
@@ -7210,7 +7194,7 @@ interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser>, IAccount
|
|
|
7210
7194
|
noteConnectDevice: string;
|
|
7211
7195
|
}
|
|
7212
7196
|
|
|
7213
|
-
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel
|
|
7197
|
+
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel {
|
|
7214
7198
|
sheetUrl: string;
|
|
7215
7199
|
sheetName: string;
|
|
7216
7200
|
account: string | IThreadsAccountRaw;
|
|
@@ -7277,7 +7261,7 @@ interface IThreadsHistoryAutoSyncELS extends IBaseELS {
|
|
|
7277
7261
|
note: string;
|
|
7278
7262
|
}
|
|
7279
7263
|
|
|
7280
|
-
interface IThreadsHistoryCreateNew extends IBaseModel, ITrackingModel
|
|
7264
|
+
interface IThreadsHistoryCreateNew extends IBaseModel, ITrackingModel {
|
|
7281
7265
|
sheetUrl: string;
|
|
7282
7266
|
sheetName: string;
|
|
7283
7267
|
account: string | IThreadsAccountRaw;
|
|
@@ -7351,7 +7335,7 @@ interface IThreadsHistoryCreateNewELS extends IBaseELS {
|
|
|
7351
7335
|
note: string;
|
|
7352
7336
|
}
|
|
7353
7337
|
|
|
7354
|
-
interface IThreadsHistoryChange extends IBaseModel, ITrackingModel
|
|
7338
|
+
interface IThreadsHistoryChange extends IBaseModel, ITrackingModel {
|
|
7355
7339
|
sheetUrl: string;
|
|
7356
7340
|
sheetName: string;
|
|
7357
7341
|
account: string | IThreadsAccountRaw;
|
|
@@ -7487,7 +7471,7 @@ interface IThreadsHistoryChangeInfoELS extends IBaseELS {
|
|
|
7487
7471
|
note: string;
|
|
7488
7472
|
}
|
|
7489
7473
|
|
|
7490
|
-
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel
|
|
7474
|
+
interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel {
|
|
7491
7475
|
sheetUrl: string;
|
|
7492
7476
|
sheetName: string;
|
|
7493
7477
|
account: string | IThreadsAccountRaw;
|
|
@@ -7550,7 +7534,7 @@ interface IThreadsHistoryGroupELS extends IBaseELS {
|
|
|
7550
7534
|
note: string;
|
|
7551
7535
|
}
|
|
7552
7536
|
|
|
7553
|
-
interface IThreadsReportPost extends IBaseModel, ITrackingModel
|
|
7537
|
+
interface IThreadsReportPost extends IBaseModel, ITrackingModel {
|
|
7554
7538
|
account: IThreadsAccountRaw | string;
|
|
7555
7539
|
sheet: string | ISheetsTool;
|
|
7556
7540
|
rowId: string;
|
|
@@ -7658,7 +7642,7 @@ interface IThreadsReportPostStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
7658
7642
|
schedulePostTime: Date;
|
|
7659
7643
|
}
|
|
7660
7644
|
|
|
7661
|
-
interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel
|
|
7645
|
+
interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel {
|
|
7662
7646
|
account: IThreadsAccountRaw | string;
|
|
7663
7647
|
sheet: string | ISheetsTool;
|
|
7664
7648
|
follower: number;
|
|
@@ -7738,7 +7722,7 @@ interface IThreadsReportInteractFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
7738
7722
|
schedulePostTime: Date;
|
|
7739
7723
|
}
|
|
7740
7724
|
|
|
7741
|
-
interface IThreadsReportInteractUnFollow extends IBaseModel, ITrackingModel
|
|
7725
|
+
interface IThreadsReportInteractUnFollow extends IBaseModel, ITrackingModel {
|
|
7742
7726
|
account: IThreadsAccountRaw | string;
|
|
7743
7727
|
sheet: string | ISheetsTool;
|
|
7744
7728
|
follower: number;
|
|
@@ -7818,7 +7802,7 @@ interface IThreadsReportInteractUnFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
7818
7802
|
schedulePostTime: Date;
|
|
7819
7803
|
}
|
|
7820
7804
|
|
|
7821
|
-
interface IThreadsReportInteractReplyMessage extends IBaseModel,
|
|
7805
|
+
interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTime, ITrackingModel {
|
|
7822
7806
|
account: IThreadsAccountRaw | string;
|
|
7823
7807
|
sheet: string | ISheetsTool;
|
|
7824
7808
|
receiverName: string;
|
|
@@ -7895,7 +7879,7 @@ interface IThreadsReportInteractReplyMessageStoreIdxELS extends IBaseStoreIdxELS
|
|
|
7895
7879
|
schedulePostTime: Date;
|
|
7896
7880
|
}
|
|
7897
7881
|
|
|
7898
|
-
interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel
|
|
7882
|
+
interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel {
|
|
7899
7883
|
account: IThreadsAccountRaw | string;
|
|
7900
7884
|
sheet: string | ISheetsTool;
|
|
7901
7885
|
content: string;
|
|
@@ -7975,7 +7959,7 @@ interface IThreadsReportInteractReplyCommentStoreIdxELS extends IBaseStoreIdxELS
|
|
|
7975
7959
|
schedulePostTime: Date;
|
|
7976
7960
|
}
|
|
7977
7961
|
|
|
7978
|
-
interface IThreadsSettingPost extends IBaseModel, ITrackingModel
|
|
7962
|
+
interface IThreadsSettingPost extends IBaseModel, ITrackingModel {
|
|
7979
7963
|
account: IThreadsAccountRaw | string;
|
|
7980
7964
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
7981
7965
|
timezone: ETimeZone;
|
|
@@ -7988,7 +7972,7 @@ interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
7988
7972
|
delayTimeCommentTo: number;
|
|
7989
7973
|
}
|
|
7990
7974
|
|
|
7991
|
-
interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel
|
|
7975
|
+
interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel {
|
|
7992
7976
|
account: IThreadsAccountRaw | string;
|
|
7993
7977
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
7994
7978
|
timezone: ETimeZone;
|
|
@@ -8027,7 +8011,7 @@ interface IThreadsSettingInteractFollow extends IBaseModel, ITrackingModel<IUser
|
|
|
8027
8011
|
isSkipBioNoneEnglish: boolean;
|
|
8028
8012
|
}
|
|
8029
8013
|
|
|
8030
|
-
interface IThreadsSettingInteractUnFollow extends IBaseModel, ITrackingModel
|
|
8014
|
+
interface IThreadsSettingInteractUnFollow extends IBaseModel, ITrackingModel {
|
|
8031
8015
|
account: IThreadsAccountRaw | string;
|
|
8032
8016
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
8033
8017
|
timezone: ETimeZone;
|
|
@@ -8049,7 +8033,7 @@ interface IThreadsSettingInteractUnFollow extends IBaseModel, ITrackingModel<IUs
|
|
|
8049
8033
|
isInteractBeforeUnFollow: boolean;
|
|
8050
8034
|
}
|
|
8051
8035
|
|
|
8052
|
-
interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
8036
|
+
interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel {
|
|
8053
8037
|
account: IThreadsAccountRaw | string;
|
|
8054
8038
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
8055
8039
|
timezone: ETimeZone;
|
|
@@ -8073,7 +8057,7 @@ interface IThreadsSettingInteractReplyComment extends IBaseModel, ITrackingModel
|
|
|
8073
8057
|
status: EStatusActive;
|
|
8074
8058
|
}
|
|
8075
8059
|
|
|
8076
|
-
interface IThreadsSettingInteractReplyMessage extends IBaseModel, ITrackingModel
|
|
8060
|
+
interface IThreadsSettingInteractReplyMessage extends IBaseModel, ITrackingModel {
|
|
8077
8061
|
account: IThreadsAccountRaw | string;
|
|
8078
8062
|
dayOfWeeks: Array<EDayOfWeek>;
|
|
8079
8063
|
timezone: ETimeZone;
|
|
@@ -8091,7 +8075,7 @@ interface IThreadsSettingInteractReplyMessage extends IBaseModel, ITrackingModel
|
|
|
8091
8075
|
isSkipReplyIfOnlyIcons: boolean;
|
|
8092
8076
|
}
|
|
8093
8077
|
|
|
8094
|
-
interface ITaskThreadsPost extends IBaseModel, ITrackingModel
|
|
8078
|
+
interface ITaskThreadsPost extends IBaseModel, ITrackingModel {
|
|
8095
8079
|
sheet: string | ISheetsTool;
|
|
8096
8080
|
account: string | IThreadsAccountRaw;
|
|
8097
8081
|
timezone: ETimeZone;
|
|
@@ -8219,7 +8203,7 @@ interface ITaskThreadsPostStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
8219
8203
|
linkPost: string;
|
|
8220
8204
|
}
|
|
8221
8205
|
|
|
8222
|
-
interface ITaskThreadsFollow extends IBaseModel, ITrackingModel
|
|
8206
|
+
interface ITaskThreadsFollow extends IBaseModel, ITrackingModel {
|
|
8223
8207
|
sheet: string | ISheetsTool;
|
|
8224
8208
|
account: string | IThreadsAccountRaw;
|
|
8225
8209
|
timezone: ETimeZone;
|
|
@@ -8300,7 +8284,7 @@ interface ITaskThreadsFollowStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
8300
8284
|
listUsernameFollow: string[];
|
|
8301
8285
|
}
|
|
8302
8286
|
|
|
8303
|
-
interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel
|
|
8287
|
+
interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel {
|
|
8304
8288
|
sheet: string | ISheetsTool;
|
|
8305
8289
|
account: string | IThreadsAccountRaw;
|
|
8306
8290
|
timezone: ETimeZone;
|
|
@@ -8396,7 +8380,7 @@ interface ITaskThreadsReplyCommentStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
8396
8380
|
statusStep2: EStatusTaskToolSocials;
|
|
8397
8381
|
}
|
|
8398
8382
|
|
|
8399
|
-
interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel
|
|
8383
|
+
interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel {
|
|
8400
8384
|
sheet: string | ISheetsTool;
|
|
8401
8385
|
account: string | IThreadsAccountRaw;
|
|
8402
8386
|
timezone: ETimeZone;
|
|
@@ -8492,7 +8476,7 @@ interface ITaskThreadsReplyMessageStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
8492
8476
|
statusStep2: EStatusTaskToolSocials;
|
|
8493
8477
|
}
|
|
8494
8478
|
|
|
8495
|
-
interface ISocialTaskManager extends IBaseModel, ITrackingModel
|
|
8479
|
+
interface ISocialTaskManager extends IBaseModel, ITrackingModel {
|
|
8496
8480
|
deviceKey: string;
|
|
8497
8481
|
timeExecute: Date;
|
|
8498
8482
|
keyTimeSetting: string;
|
|
@@ -8504,7 +8488,7 @@ interface ISocialTaskManager extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8504
8488
|
taskId: string;
|
|
8505
8489
|
}
|
|
8506
8490
|
|
|
8507
|
-
interface ISheetImportExportSocial extends IBaseModel, ITrackingModel
|
|
8491
|
+
interface ISheetImportExportSocial extends IBaseModel, ITrackingModel {
|
|
8508
8492
|
typeSocial: ETypeSocial;
|
|
8509
8493
|
accountSocialId: string;
|
|
8510
8494
|
sheetUrl: string;
|
|
@@ -8650,19 +8634,19 @@ declare namespace index$4 {
|
|
|
8650
8634
|
export type { index$4_IAccountSocialBase as IAccountSocialBase, index$4_IAccountSocialGroup as IAccountSocialGroup, index$4_IIncreaseValueTask as IIncreaseValueTask, index$4_IInstagramAccountRaw as IInstagramAccountRaw, index$4_IInstagramDashboardFollower as IInstagramDashboardFollower, index$4_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, index$4_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, index$4_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, index$4_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, index$4_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, index$4_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, index$4_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, index$4_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, index$4_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, index$4_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, index$4_IInstagramHistoryGroup as IInstagramHistoryGroup, index$4_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, index$4_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, index$4_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$4_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, index$4_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, index$4_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$4_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, index$4_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, index$4_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$4_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, index$4_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, index$4_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$4_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, index$4_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, index$4_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, index$4_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, index$4_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, index$4_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$4_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, index$4_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, index$4_IInstagramReportPostNew as IInstagramReportPostNew, index$4_IInstagramReportPostNewELS as IInstagramReportPostNewELS, index$4_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, index$4_IInstagramReportPostReel as IInstagramReportPostReel, index$4_IInstagramReportPostReelELS as IInstagramReportPostReelELS, index$4_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, index$4_IInstagramReportPostSquare as IInstagramReportPostSquare, index$4_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, index$4_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, index$4_IInstagramReportPostStory as IInstagramReportPostStory, index$4_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, index$4_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, index$4_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$4_IInstagramSettingPost as IInstagramSettingPost, index$4_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, index$4_ISettingRunTimeSocial as ISettingRunTimeSocial, index$4_ISheetImportExportSocial as ISheetImportExportSocial, index$4_ISocialTaskManager as ISocialTaskManager, index$4_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$4_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, index$4_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, index$4_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$4_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, index$4_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, index$4_ITaskInstagramFollow as ITaskInstagramFollow, index$4_ITaskInstagramFollowELS as ITaskInstagramFollowELS, index$4_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, index$4_ITaskInstagramPost as ITaskInstagramPost, index$4_ITaskInstagramPostELS as ITaskInstagramPostELS, index$4_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, index$4_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$4_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, index$4_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, index$4_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, index$4_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, index$4_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, index$4_ITaskThreadsFollow as ITaskThreadsFollow, index$4_ITaskThreadsFollowELS as ITaskThreadsFollowELS, index$4_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, index$4_ITaskThreadsPost as ITaskThreadsPost, index$4_ITaskThreadsPostELS as ITaskThreadsPostELS, index$4_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, index$4_ITaskThreadsReplyComment as ITaskThreadsReplyComment, index$4_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, index$4_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, index$4_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, index$4_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, index$4_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, index$4_IThreadsAccountRaw as IThreadsAccountRaw, index$4_IThreadsDashboardFollower as IThreadsDashboardFollower, index$4_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, index$4_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, index$4_IThreadsHistoryChange as IThreadsHistoryChange, index$4_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, index$4_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, index$4_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, index$4_IThreadsHistoryGroup as IThreadsHistoryGroup, index$4_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, index$4_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$4_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, index$4_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, index$4_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$4_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, index$4_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, index$4_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$4_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, index$4_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, index$4_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, index$4_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, index$4_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, index$4_IThreadsReportPost as IThreadsReportPost, index$4_IThreadsReportPostELS as IThreadsReportPostELS, index$4_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$4_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$4_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$4_IThreadsSettingPost as IThreadsSettingPost };
|
|
8651
8635
|
}
|
|
8652
8636
|
|
|
8653
|
-
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel
|
|
8637
|
+
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel {
|
|
8654
8638
|
typeSocial: ETypeSocial;
|
|
8655
8639
|
accountSocial: string | IAccountSocialBase;
|
|
8656
8640
|
managerImageAI: string | IManagerImageAI;
|
|
8657
8641
|
}
|
|
8658
8642
|
|
|
8659
|
-
interface IManagerImageAIItemStore extends IBaseModel, ITrackingModel
|
|
8643
|
+
interface IManagerImageAIItemStore extends IBaseModel, ITrackingModel {
|
|
8660
8644
|
file: IFile | string;
|
|
8661
8645
|
managerImage: IManagerImageAI | string;
|
|
8662
8646
|
typeFolderStore: EFolderImageAI;
|
|
8663
8647
|
}
|
|
8664
8648
|
|
|
8665
|
-
interface IManagerSheetChildrenGroup extends IBaseModel, ITrackingModel
|
|
8649
|
+
interface IManagerSheetChildrenGroup extends IBaseModel, ITrackingModel {
|
|
8666
8650
|
sheetChildren: string | IManagerSheetChildren;
|
|
8667
8651
|
name: string;
|
|
8668
8652
|
slug: string;
|
|
@@ -8670,7 +8654,7 @@ interface IManagerSheetChildrenGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8670
8654
|
listChannelsAI: string[] | IAccountAIContentChannel[];
|
|
8671
8655
|
}
|
|
8672
8656
|
|
|
8673
|
-
interface IManagerSheetChildrenGroupItem extends IBaseModel, ITrackingModel
|
|
8657
|
+
interface IManagerSheetChildrenGroupItem extends IBaseModel, ITrackingModel {
|
|
8674
8658
|
group: string | IManagerSheetChildrenGroup;
|
|
8675
8659
|
order: number;
|
|
8676
8660
|
columnSymbol: string;
|
|
@@ -8680,7 +8664,7 @@ interface IManagerSheetChildrenGroupItem extends IBaseModel, ITrackingModel<IUse
|
|
|
8680
8664
|
keyWordsBlank: string;
|
|
8681
8665
|
}
|
|
8682
8666
|
|
|
8683
|
-
interface IEmailRawManager extends IBaseModel, ITrackingModel
|
|
8667
|
+
interface IEmailRawManager extends IBaseModel, ITrackingModel {
|
|
8684
8668
|
statusImport: string;
|
|
8685
8669
|
timeImport: Date;
|
|
8686
8670
|
oldEmail: string;
|
|
@@ -8730,7 +8714,7 @@ interface ISettingTool extends IBaseModel {
|
|
|
8730
8714
|
};
|
|
8731
8715
|
}
|
|
8732
8716
|
|
|
8733
|
-
interface IDevice extends IBaseModel, ITrackingModel
|
|
8717
|
+
interface IDevice extends IBaseModel, IAssignUser, ITrackingModel {
|
|
8734
8718
|
idea: string | IManagerWork;
|
|
8735
8719
|
niche: string | IManagerWork;
|
|
8736
8720
|
pc: IPC | string;
|
|
@@ -8776,11 +8760,9 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8776
8760
|
noteFix: string;
|
|
8777
8761
|
timeChangeDevice: Date;
|
|
8778
8762
|
timeLoginCHPlayICloud: Date;
|
|
8779
|
-
timeLastUsed: Date;
|
|
8780
|
-
lastUserUsed: string | IUser;
|
|
8781
8763
|
}
|
|
8782
8764
|
|
|
8783
|
-
interface IDeviceLog extends IBaseModel, ITrackingModel
|
|
8765
|
+
interface IDeviceLog extends IBaseModel, ITrackingModel {
|
|
8784
8766
|
eventDateStartTime: Date;
|
|
8785
8767
|
statusStart: EStatusDeviceLog;
|
|
8786
8768
|
eventDateEndTime: Date;
|
|
@@ -8838,29 +8820,29 @@ interface IDeviceLogStoreIdxELS extends IBaseStoreIdxELS {
|
|
|
8838
8820
|
descriptionBug: string;
|
|
8839
8821
|
}
|
|
8840
8822
|
|
|
8841
|
-
interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel
|
|
8823
|
+
interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel {
|
|
8842
8824
|
device: string | IDevice;
|
|
8843
8825
|
typeSocial: AutoEnums.Types.ETypeSocial;
|
|
8844
8826
|
accountSocial: string | IAccountSocialBase;
|
|
8845
8827
|
isActive: boolean;
|
|
8846
8828
|
}
|
|
8847
8829
|
|
|
8848
|
-
interface IDeviceSettingForCHPlayICloud extends IBaseModel, ITrackingModel
|
|
8830
|
+
interface IDeviceSettingForCHPlayICloud extends IBaseModel, ITrackingModel {
|
|
8849
8831
|
device: string | IDevice;
|
|
8850
8832
|
accountCHPlayICloud: IAccountCHPlayICloud | string;
|
|
8851
8833
|
}
|
|
8852
8834
|
|
|
8853
|
-
interface IDeviceSettingForProxy extends IBaseModel, ITrackingModel
|
|
8835
|
+
interface IDeviceSettingForProxy extends IBaseModel, ITrackingModel {
|
|
8854
8836
|
device: string | IDevice;
|
|
8855
8837
|
proxy: IProxy | string;
|
|
8856
8838
|
}
|
|
8857
8839
|
|
|
8858
|
-
interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel
|
|
8840
|
+
interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel {
|
|
8859
8841
|
device: string | IDevice;
|
|
8860
8842
|
accountVPN: string | IAccountVPN;
|
|
8861
8843
|
}
|
|
8862
8844
|
|
|
8863
|
-
interface IAccountSocialBase extends IBaseModel, ITrackingModel
|
|
8845
|
+
interface IAccountSocialBase extends IBaseModel, ITrackingModel {
|
|
8864
8846
|
accountID: number;
|
|
8865
8847
|
group: IAccountSocialGroup | string;
|
|
8866
8848
|
nameAppCloneSocial: string;
|
|
@@ -8877,7 +8859,7 @@ interface IAccountSocialBase extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8877
8859
|
email?: string;
|
|
8878
8860
|
}
|
|
8879
8861
|
|
|
8880
|
-
interface IHistoryTaskCanva extends IBaseModel, ITrackingModel
|
|
8862
|
+
interface IHistoryTaskCanva extends IBaseModel, ITrackingModel {
|
|
8881
8863
|
sheetID: string;
|
|
8882
8864
|
sheetUrl: string;
|
|
8883
8865
|
sheetName: string;
|
|
@@ -8917,7 +8899,7 @@ interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8917
8899
|
note: string;
|
|
8918
8900
|
}
|
|
8919
8901
|
|
|
8920
|
-
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel
|
|
8902
|
+
interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel {
|
|
8921
8903
|
sheetID: string;
|
|
8922
8904
|
sheetUrl: string;
|
|
8923
8905
|
sheetName: string;
|
|
@@ -8946,7 +8928,7 @@ interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
8946
8928
|
note: string;
|
|
8947
8929
|
}
|
|
8948
8930
|
|
|
8949
|
-
interface IHistoryTaskAIVoice extends IBaseModel, ITrackingModel
|
|
8931
|
+
interface IHistoryTaskAIVoice extends IBaseModel, ITrackingModel {
|
|
8950
8932
|
sheetID: string;
|
|
8951
8933
|
sheetUrl: string;
|
|
8952
8934
|
sheetName: string;
|
|
@@ -9062,6 +9044,7 @@ type index$1_IAccountVPN = IAccountVPN;
|
|
|
9062
9044
|
type index$1_IAccountVPS = IAccountVPS;
|
|
9063
9045
|
type index$1_IAccountVPSGroup = IAccountVPSGroup;
|
|
9064
9046
|
type index$1_IAccountVPSSocial = IAccountVPSSocial;
|
|
9047
|
+
type index$1_IAssignUser = IAssignUser;
|
|
9065
9048
|
type index$1_IAuthLogin = IAuthLogin;
|
|
9066
9049
|
type index$1_IAuthResetPassword = IAuthResetPassword;
|
|
9067
9050
|
type index$1_IBaseModel = IBaseModel;
|
|
@@ -9256,9 +9239,8 @@ type index$1_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyM
|
|
|
9256
9239
|
type index$1_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
9257
9240
|
type index$1_IThreadsSettingPost = IThreadsSettingPost;
|
|
9258
9241
|
type index$1_IToken = IToken;
|
|
9259
|
-
type index$1_ITrackingModel
|
|
9260
|
-
type index$
|
|
9261
|
-
type index$1_ITrackingUserAction = ITrackingUserAction;
|
|
9242
|
+
type index$1_ITrackingModel = ITrackingModel;
|
|
9243
|
+
type index$1_ITrackingTime = ITrackingTime;
|
|
9262
9244
|
type index$1_IUser = IUser;
|
|
9263
9245
|
type index$1_IUserRole = IUserRole;
|
|
9264
9246
|
type index$1_IViewDeviceByPC = IViewDeviceByPC;
|
|
@@ -9270,7 +9252,7 @@ type index$1_UpdateDeviceDto = UpdateDeviceDto;
|
|
|
9270
9252
|
type index$1_UpdatePCDto = UpdatePCDto;
|
|
9271
9253
|
type index$1_ViewDetailDeviceDto = ViewDetailDeviceDto;
|
|
9272
9254
|
declare namespace index$1 {
|
|
9273
|
-
export { type index$1_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$1_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$1_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$1_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$2 as Auth, index$a as Common, type index$1_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$1_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$1_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$1_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$1_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, type index$1_FilterDeviceDto as FilterDeviceDto, type index$1_FilterDeviceLogDto as FilterDeviceLogDto, type index$1_FilterPCDto as FilterPCDto, type index$1_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$1_FindDeviceDto as FindDeviceDto, type index$1_FindDeviceLogDto as FindDeviceLogDto, type index$1_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$1_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$1_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$1_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$1_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$1_FindOverviewPCDto as FindOverviewPCDto, type index$1_FindPCDetail as FindPCDetail, type index$1_FindPCDto as FindPCDto, type index$1_FindReplaceDeviceDto as FindReplaceDeviceDto, index$7 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_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$1_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, 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_IEmailRawManager as IEmailRawManager, 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_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, 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_IPCLog as IPCLog, type index$1_IPCLogELS as IPCLogELS, type index$1_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISettingTool as ISettingTool, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, 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_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, 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_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, 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_IThreadsDashboardFollower as IThreadsDashboardFollower, 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_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, 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_IViewDeviceByPC as IViewDeviceByPC, 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$b as Permission, index$4 as Socials, index$5 as Tool, type index$1_UpdateDeviceDto as UpdateDeviceDto, type index$1_UpdatePCDto as UpdatePCDto, type index$1_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6 as Workspace };
|
|
9255
|
+
export { type index$1_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$1_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$1_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$1_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$2 as Auth, index$a as Common, type index$1_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$1_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$1_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$1_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$1_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, type index$1_FilterDeviceDto as FilterDeviceDto, type index$1_FilterDeviceLogDto as FilterDeviceLogDto, type index$1_FilterPCDto as FilterPCDto, type index$1_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$1_FindDeviceDto as FindDeviceDto, type index$1_FindDeviceLogDto as FindDeviceLogDto, type index$1_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$1_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$1_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$1_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$1_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$1_FindOverviewPCDto as FindOverviewPCDto, type index$1_FindPCDetail as FindPCDetail, type index$1_FindPCDto as FindPCDto, type index$1_FindReplaceDeviceDto as FindReplaceDeviceDto, index$7 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_IAssignUser as IAssignUser, 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_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$1_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, 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_IEmailRawManager as IEmailRawManager, 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_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, 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_IPCLog as IPCLog, type index$1_IPCLogELS as IPCLogELS, type index$1_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISettingTool as ISettingTool, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, 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_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, 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_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, 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_IThreadsDashboardFollower as IThreadsDashboardFollower, 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_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, 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_ITrackingTime as ITrackingTime, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IViewDeviceByPC as IViewDeviceByPC, 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$b as Permission, index$4 as Socials, index$5 as Tool, type index$1_UpdateDeviceDto as UpdateDeviceDto, type index$1_UpdatePCDto as UpdatePCDto, type index$1_ViewDetailDeviceDto as ViewDetailDeviceDto, index$6 as Workspace };
|
|
9274
9256
|
}
|
|
9275
9257
|
|
|
9276
9258
|
interface IUserInfoAssignment {
|
|
@@ -16459,4 +16441,4 @@ declare namespace index {
|
|
|
16459
16441
|
export type { index_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, index_CheckSendMessageLark as CheckSendMessageLark, index_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index_CreateAccountVPSDto as CreateAccountVPSDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, index_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, index_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, index_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, index_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, index_CreateLarkDto as CreateLarkDto, index_CreateManagerWorkDto as CreateManagerWorkDto, index_CreateProxyDto as CreateProxyDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetToolDto as CreateSheetToolDto, index_CreateSheetWorkDto as CreateSheetWorkDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTasksJobDto as CreateTasksJobDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBaseSocialDto as FilterBaseSocialDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindForReviewDto as FindForReviewDto, index_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewRoleDto as FindOverviewRoleDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index_FindOverviewUserDto as FindOverviewUserDto, index_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index_FindProxyDto as FindProxyDto, index_FindRoleDetailDto as FindRoleDetailDto, index_FindRoleDto as FindRoleDto, index_FindRoleOfMe as FindRoleOfMe, index_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTasksJobDto as FindTasksJobDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseELS as IBaseELS, index_IBaseOverview as IBaseOverview, index_IBaseRefFieldELS as IBaseRefFieldELS, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IBaseStoreIdxELS as IBaseStoreIdxELS, index_IFilterAssignDto as IFilterAssignDto, index_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index_IFilterBaseDto as IFilterBaseDto, index_IFilterSettingAccountSocialFindForSettingDto as IFilterSettingAccountSocialFindForSettingDto, index_IFindBaseDto as IFindBaseDto, index_ISettingAccountSocialDto as ISettingAccountSocialDto, index_IUserInfoAssignment as IUserInfoAssignment, index_ImportAccountVPSDto as ImportAccountVPSDto, index_ImportDto as ImportDto, index_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, index_ImportManagerWorkDto as ImportManagerWorkDto, index_ImportSheetWorkDto as ImportSheetWorkDto, index_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index_OverviewSheetsToolDto as OverviewSheetsToolDto, index_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, index_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index_UpdateAccountVPSDto as UpdateAccountVPSDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, index_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, index_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, index_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, index_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdateManagerWorkDto as UpdateManagerWorkDto, index_UpdateProxyDto as UpdateProxyDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetWorkDto as UpdateSheetWorkDto, index_UpdateSheetsToolDto as UpdateSheetsToolDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTasksJobDto as UpdateTasksJobDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto, index_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto };
|
|
16460
16442
|
}
|
|
16461
16443
|
|
|
16462
|
-
export { index$j as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$k as AutoConstants, index as AutoDto, index$d as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$8 as AutoInterfaces, index$9 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$c as AutoTypes, index$i as Base, type ChangeInfoInstagramAccountRawDto, type CheckSendMessageLark, index$a as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerWorkDto, 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 CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, 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, EPCLogLevel, EPCLogSource, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeEmail, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusLoginEmail, EStatusMailWork, EStatusPC, EStatusPCControl, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeFilter, ETimeZone, EToolName, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, 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 FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, 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 FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, 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 FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, 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 FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewPCDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDetail, 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 FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$7 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 IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDeviceLogStoreIdxELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IEmailRawManager, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryAutoSyncStoreIdxELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryChangeInfoStoreIdxELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryCreateNewStoreIdxELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramHistoryGroupStoreIdxELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractBlockUserStoreIdxELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractFollowStoreIdxELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyCommentStoreIdxELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractReplyMessageStoreIdxELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportInteractUnFollowStoreIdxELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostHighLightStoreIdxELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostNewStoreIdxELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostReelStoreIdxELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostSquareStoreIdxELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramReportPostStoryStoreIdxELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, 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 IPCLog, type IPCLogELS, type IPCLogStoreIdxELS, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISettingTool, type ISheetImportExportSocial, 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 ITaskInstagramBlockUserStoreIdxELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramChangeInfoStoreIdxELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramFollowStoreIdxELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramPostStoreIdxELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyCommentStoreIdxELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskInstagramReplyMessageStoreIdxELS, 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 ITaskThreadsFollowStoreIdxELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsPostStoreIdxELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyCommentStoreIdxELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITaskThreadsReplyMessageStoreIdxELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractFollowStoreIdxELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyCommentStoreIdxELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractReplyMessageStoreIdxELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportInteractUnFollowStoreIdxELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, 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 IViewDeviceByPC, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$h as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$b as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$g as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$f as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$e as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, 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 UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, index$6 as Workspace };
|
|
16444
|
+
export { index$j as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$k as AutoConstants, index as AutoDto, index$d as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$8 as AutoInterfaces, index$9 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$c as AutoTypes, index$i as Base, type ChangeInfoInstagramAccountRawDto, type CheckSendMessageLark, index$a as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerWorkDto, 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 CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, 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, EPCLogLevel, EPCLogSource, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeEmail, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusLoginEmail, EStatusMailWork, EStatusPC, EStatusPCControl, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeFilter, ETimeZone, EToolName, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, 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 FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, 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 FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, 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 FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, 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 FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewPCDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDetail, 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 FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$7 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 IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDeviceLogStoreIdxELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IEmailRawManager, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryAutoSyncStoreIdxELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryChangeInfoStoreIdxELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryCreateNewStoreIdxELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramHistoryGroupStoreIdxELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractBlockUserStoreIdxELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractFollowStoreIdxELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyCommentStoreIdxELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractReplyMessageStoreIdxELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportInteractUnFollowStoreIdxELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostHighLightStoreIdxELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostNewStoreIdxELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostReelStoreIdxELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostSquareStoreIdxELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramReportPostStoryStoreIdxELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, 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 IPCLog, type IPCLogELS, type IPCLogStoreIdxELS, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISettingTool, type ISheetImportExportSocial, 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 ITaskInstagramBlockUserStoreIdxELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramChangeInfoStoreIdxELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramFollowStoreIdxELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramPostStoreIdxELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyCommentStoreIdxELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskInstagramReplyMessageStoreIdxELS, 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 ITaskThreadsFollowStoreIdxELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsPostStoreIdxELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyCommentStoreIdxELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITaskThreadsReplyMessageStoreIdxELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractFollowStoreIdxELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyCommentStoreIdxELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractReplyMessageStoreIdxELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportInteractUnFollowStoreIdxELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewDeviceByPC, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$h as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$b as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$g as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$f as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$e as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, 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 UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, index$6 as Workspace };
|