automation-lib 6.6.373 → 6.6.376

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/commit.bat CHANGED
@@ -7,10 +7,10 @@ git add .
7
7
  echo Committing changes...
8
8
  set /p commit_message="Enter commit message: "
9
9
  git commit -m "%commit_message%"
10
- timeout /t 2 /nobreak >nul
10
+ sleep 2
11
11
 
12
12
  :: Push changes to the 'main' branch of the 'cp' remote
13
- git pull hs main
13
+ git pull origin toan
14
14
 
15
15
  :: Read the current version from package.json
16
16
  for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
@@ -41,10 +41,10 @@ echo New version: %newVersion%
41
41
  call npm run pub
42
42
 
43
43
  git add .
44
- timeout /t 1 /nobreak >nul
44
+ sleep 1
45
45
  git commit -m "%commit_message%"
46
- timeout /t 2 /nobreak >nul
46
+ sleep 2
47
47
 
48
- git push hs main
48
+ git push origin toan
49
49
 
50
50
 
package/dist/index.d.mts CHANGED
@@ -1390,6 +1390,21 @@ declare enum ETypeDeviceOS {
1390
1390
  IOS = "IOS",
1391
1391
  Android = "Android"
1392
1392
  }
1393
+ declare enum EFilterOptionDevice {
1394
+ DeviceOldKey = "deviceOldKey",
1395
+ DeviceNewKey = "deviceNewKey",
1396
+ Name = "name",
1397
+ PCName = "pcName",
1398
+ HubConnection = "hubConnection",
1399
+ CreatedBy = "createdBy",
1400
+ DepartmentCreator = "departmentCreator",
1401
+ TeamCreator = "teamCreator",
1402
+ LeaderCreator = "leaderCreator",
1403
+ UserAssign = "userAssign",
1404
+ DepartmentAssign = "departmentAssign",
1405
+ TeamAssign = "teamAssign",
1406
+ LeaderAssign = "leaderAssign"
1407
+ }
1393
1408
 
1394
1409
  declare enum ETypeExport {
1395
1410
  Append = "Append",
@@ -1516,6 +1531,8 @@ declare enum ETypeVoiceLanguage {
1516
1531
  English = "en"
1517
1532
  }
1518
1533
 
1534
+ type index$d_EFilterOptionDevice = EFilterOptionDevice;
1535
+ declare const index$d_EFilterOptionDevice: typeof EFilterOptionDevice;
1519
1536
  type index$d_ETypeAccountInstagramSetting = ETypeAccountInstagramSetting;
1520
1537
  declare const index$d_ETypeAccountInstagramSetting: typeof ETypeAccountInstagramSetting;
1521
1538
  type index$d_ETypeAccountVPN = ETypeAccountVPN;
@@ -1573,7 +1590,7 @@ declare const index$d_ETypeTimeFilter: typeof ETypeTimeFilter;
1573
1590
  type index$d_ETypeVoiceLanguage = ETypeVoiceLanguage;
1574
1591
  declare const index$d_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
1575
1592
  declare namespace index$d {
1576
- export { index$d_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$d_ETypeAccountVPN as ETypeAccountVPN, index$d_ETypeBrowser as ETypeBrowser, index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeDevice as ETypeDevice, index$d_ETypeDeviceOS as ETypeDeviceOS, index$d_ETypeExport as ETypeExport, index$d_ETypeGenerate as ETypeGenerate, index$d_ETypeImportExport as ETypeImportExport, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypePcOS as ETypePcOS, index$d_ETypePin as ETypePin, index$d_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$d_ETypeProxy as ETypeProxy, index$d_ETypeProxyChecked as ETypeProxyChecked, index$d_ETypeProxyCountry as ETypeProxyCountry, index$d_ETypeProxyNewIP as ETypeProxyNewIP, index$d_ETypeProxyProvider as ETypeProxyProvider, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$d_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$d_ETypeSocialCreateNew as ETypeSocialCreateNew, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
1593
+ export { index$d_EFilterOptionDevice as EFilterOptionDevice, index$d_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$d_ETypeAccountVPN as ETypeAccountVPN, index$d_ETypeBrowser as ETypeBrowser, index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeDevice as ETypeDevice, index$d_ETypeDeviceOS as ETypeDeviceOS, index$d_ETypeExport as ETypeExport, index$d_ETypeGenerate as ETypeGenerate, index$d_ETypeImportExport as ETypeImportExport, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypePcOS as ETypePcOS, index$d_ETypePin as ETypePin, index$d_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$d_ETypeProxy as ETypeProxy, index$d_ETypeProxyChecked as ETypeProxyChecked, index$d_ETypeProxyCountry as ETypeProxyCountry, index$d_ETypeProxyNewIP as ETypeProxyNewIP, index$d_ETypeProxyProvider as ETypeProxyProvider, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$d_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$d_ETypeSocialCreateNew as ETypeSocialCreateNew, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
1577
1594
  }
1578
1595
 
1579
1596
  declare enum EStatusDeviceLog {
@@ -1648,6 +1665,8 @@ type index$c_EEmailTagType = EEmailTagType;
1648
1665
  declare const index$c_EEmailTagType: typeof EEmailTagType;
1649
1666
  type index$c_EFile = EFile;
1650
1667
  declare const index$c_EFile: typeof EFile;
1668
+ type index$c_EFilterOptionDevice = EFilterOptionDevice;
1669
+ declare const index$c_EFilterOptionDevice: typeof EFilterOptionDevice;
1651
1670
  type index$c_EGender = EGender;
1652
1671
  declare const index$c_EGender: typeof EGender;
1653
1672
  type index$c_EHaveData = EHaveData;
@@ -1853,7 +1872,7 @@ declare const index$c_EYesNo: typeof EYesNo;
1853
1872
  type index$c_PCLogTimeRange = PCLogTimeRange;
1854
1873
  declare const index$c_PCLogTimeRange: typeof PCLogTimeRange;
1855
1874
  declare namespace index$c {
1856
- export { index$h as AI, index$g as Base, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPCLogLevel as EPCLogLevel, index$c_EPCLogSource as EPCLogSource, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_EStartStop as EStartStop, index$c_EStatusAccountSocialCheckAuth as EStatusAccountSocialCheckAuth, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRaw as EStatusAccountSocialRaw, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountSocialSyncInstagramThreads as EStatusAccountSocialSyncInstagramThreads, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceKey as EStatusDeviceKey, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEditPost as EStatusEditPost, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusGenerate as EStatusGenerate, index$c_EStatusImportAccountSocial as EStatusImportAccountSocial, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusPCControl as EStatusPCControl, index$c_EStatusPost as EStatusPost, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUse as EStatusUse, index$c_EStatusUser as EStatusUser, index$c_ETimeFilter as ETimeFilter, index$c_ETimeZone as ETimeZone, index$c_EToolName as EToolName, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeBrowser as ETypeBrowser, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeGenerate as ETypeGenerate, index$c_ETypeImportExport as ETypeImportExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePcOS as ETypePcOS, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$c_EYesNo as EYesNo, index$f as Lark, index$c_PCLogTimeRange as PCLogTimeRange, index$e as Status, index$d as Types };
1875
+ export { index$h as AI, index$g as Base, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EFilterOptionDevice as EFilterOptionDevice, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPCLogLevel as EPCLogLevel, index$c_EPCLogSource as EPCLogSource, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_EStartStop as EStartStop, index$c_EStatusAccountSocialCheckAuth as EStatusAccountSocialCheckAuth, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRaw as EStatusAccountSocialRaw, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountSocialSyncInstagramThreads as EStatusAccountSocialSyncInstagramThreads, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceKey as EStatusDeviceKey, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEditPost as EStatusEditPost, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusGenerate as EStatusGenerate, index$c_EStatusImportAccountSocial as EStatusImportAccountSocial, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusPCControl as EStatusPCControl, index$c_EStatusPost as EStatusPost, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUse as EStatusUse, index$c_EStatusUser as EStatusUser, index$c_ETimeFilter as ETimeFilter, index$c_ETimeZone as ETimeZone, index$c_EToolName as EToolName, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeBrowser as ETypeBrowser, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeGenerate as ETypeGenerate, index$c_ETypeImportExport as ETypeImportExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePcOS as ETypePcOS, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$c_EYesNo as EYesNo, index$f as Lark, index$c_PCLogTimeRange as PCLogTimeRange, index$e as Status, index$d as Types };
1857
1876
  }
1858
1877
 
1859
1878
  type TFilter = 'direct' | 'ref';
@@ -22081,4 +22100,4 @@ declare namespace index {
22081
22100
  export type { index_ExportDto as ExportDto, index_FilterBaseDto as FilterBaseDto, index_FilterBaseSocialDto as FilterBaseSocialDto, 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_IFindBaseDto as IFindBaseDto, index_IUserInfoAssignment as IUserInfoAssignment, index_ImportDto as ImportDto };
22082
22101
  }
22083
22102
 
22084
- export { index$h as AI, type AccountAICreateDto, type AccountAIImportDto, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialInstagramChildrenDto, type AddBulkManualContentSocialThreadsChildrenDto, type AddCommentReportManagerDto, type AddManualContentSocialInstagramChildrenDto, type AddManualContentSocialThreadsChildrenDto, type AddProxyManualDto, type AddSheetToolToPCBrowserDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$8 as Auth, index$i as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, type AvatarCoverDetailInstagramDto, index$g as Base, type BulkUpdateReportManagerDto, type BulkUpdateStatusEmailManagerDto, type CanvaAvatarDetailInstagramDto, type CanvaCoverDetailInstagramDto, type CanvaDetailInstagramDto, type CheckSendMessageLark, index$9 as Common, type CountTotalNumberTaskAIAvatarCoverCanvaInstagramDto, type CountTotalNumberTaskAIImageVideoVoiceCanvaInstagramDto, type CreateAccountEmailDto, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogCategorySystemDto, type CreateBlogDto, type CreateBlogPostDto, type CreateBlogsCategoryDto, type CreateCommentBlogPostDto, type CreateDepartmentDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIInstagramDto, type CreateManagerImageAIThreadsDto, type CreateManagerWorkDto, type CreateModuleWebSiteDto, type CreatePCBrowserDto, type CreatePCPhoneDto, type CreateProxyAddToEmailDto, type CreateProxyDto, type CreateReportManagerDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskThreadsChangeInfoDto, type CreateTaskWorkflowDto, type CreateTaskWorkflowGroupDto, type CreateTasksJobDto, type CreateTeamDto, type CreateTokenJsonGroupDto, type CreateTokenJsonManagerDto, type CreateUserDto, type DataActionChangeInfoInstagramAccountRawDto, type DataActionChangeInfoThreadsAccountRawDto, type DataImportAccountCHPlayICloudDto, type DataImportAccountCanvaDto, type DataImportAccountDriveDto, type DataImportAccountVPNDto, type DataImportEmailRawManagerDto, type DataImportInstagramAccountRawDto, type DataImportManagerWorkDto, type DataImportSheetWorkDto, type DataPCBrowserAndSheetPostAvatarCoverCanvaInstagramDto, type DataPCBrowserAndSheetPostImageVideoVoiceCanvaInstagramDto, type DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto, type DataUpsertAvatarCoverCanvaInstagramDto, type DataUpsertImageVideoVoiceCanvaInstagramDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIVersionGPT, EAIVersionPerplexity, EAccountAIContentChannelStatus, EAccountAIModelApiStatus, EAccountAIModelBrowserPlan, EAccountAIModelCreditStatus, EAccountAIModelLocation, EAccountAIModelStatus, EAccountAIModelType, EAccountAIModelTypeContent, EAccountAISync, EAccountAITypeEmail, EAccountDriveType, EAccountGPTModel, EAccountGeminiModel, EAccountInstagramTypeChangeInfo, EAccountThreadsTypeChangeInfo, EAccountTypeUseDrive, EBlockSource, EBlockType, EBlogCategoryState, EBlogPostState, EBlogPostStatus, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFilterOptionAccountAI, EFilterOptionAccountCHPlayICloud, EFilterOptionAccountCanva, EFilterOptionAccountDrive, EFilterOptionAccountVPN, EFilterOptionDepartment, EFilterOptionRole, EFilterOptionTeam, EFilterOptionUser, EGender, EHaveData, EHistorySyncSheetPostStatus, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIInstagramFolder, EManagerImageAIInstagramLog, EManagerImageAIInstagramModel, EManagerImageAIThreadsFolder, EManagerImageAIThreadsLog, EManagerImageAIThreadsModel, EManualContentSocialInstagramStatusPost, EManualContentSocialInstagramStatusTask, EManualContentSocialInstagramTypePost, EManualContentSocialThreadsStatusPost, EManualContentSocialThreadsStatusTask, EManualContentSocialThreadsTypePost, EMediaTypeLibraryPost, EModelImageVideo, ENotificationType, EObjectName, EPCBrowserSheetModule, EPCLogLevel, EPCLogSource, EPositionUser, EPriority, EProcessingEmailManager, ERatioImage, EReportManagerAssignStatus, EReportManagerPriority, EReportManagerStatus, EReportManagerType, ERotationTokenJsonManager, EScreenResolution, ESendNotiStatusBlogPost, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRow, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusAddOnVPS, EStatusBlog, EStatusBrowserEmailManager, EStatusChangeInfo, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceKey, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusEmailLogin, EStatusEmailManager, EStatusEmailManagerChangeInfo, EStatusExecuteCommon, EStatusGenerate, EStatusImapApp, EStatusImportAccountSocial, EStatusImportEmailManager, EStatusInstagramImageLog, EStatusLark, EStatusMailWork, EStatusNode, EStatusPC, EStatusPCControl, EStatusPost, EStatusProfileEmailManager, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusRunTaskEmailManager, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusThreadsImageLog, EStatusTokenJsonManager, EStatusUse, EStatusUser, ESyncStatusAccountDrive, ETaskAIAvatarCoverCanvaStep, ETaskAIImageVideoVoiceCanvaStep, ETaskGenerateAIType, ETaskGenerateModelType, ETaskInstagramChangeInfoLogStatus, ETaskInstagramChangeInfoProcessStep, ETaskInstagramPostLogStatus, ETaskInstagramPostProcessStep, ETaskInstagramPostStyle, ETaskInstagramPostType, ETaskInstagramPostTypeRun, ETaskStatus, ETaskThreadsChangeInfoLogStatus, ETaskThreadsChangeInfoProcessStep, ETaskThreadsPostLogStatus, ETaskThreadsPostProcessStep, ETaskThreadsPostStyle, ETaskThreadsPostType, ETaskThreadsPostTypeRun, ETaskWorkflowNodeCategory, ETaskWorkflowNodeInstagram, ETaskWorkflowNodeThreads, ETaskWorkflowRunStatus, ETaskWorkflowStatus, ETaskWorkflowTypeNode, ETimeFilter, ETimeRangeNotifiReportManager, ETimeZone, ETokenJsonManagerHealth, EToolName, ETypeAccountInstagramSetting, ETypeAccountThreadsSetting, ETypeAccountVPN, ETypeBrowser, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeEmailChangeInfo, ETypeEmailManager, ETypeExport, ETypeFileReportManager, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePaymentAccountVPN, ETypePcOS, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EVPSCore, EVPSExtension, EVPSOs, EVPSRam, EVPSStatus, EVPSStatusConnection, EVPSStatusGpmLoginEmail, EVPSStatusReplace, EVPSStatusRestart, EVPSTimeRestart, EViewedReportManager, EVisibleTeamBlogCategory, EYesNo, type EditStatusImageItemInstagramDto, type EditStatusImageItemThreadsDto, type EditStatusManualContentSocialInstagramChildrenItemPost, type EditStatusManualContentSocialThreadsChildrenItemPost, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIGoogleDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountEmailManagerDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogCategorySystemDto, type FilterBlogDto, type FilterBlogPostDto, type FilterBlogViewHistoryDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, 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 FilterInstagramSettingPostDto, type FilterIpAccessDto, type FilterIpBlacklistDto, type FilterIpWhitelistDto, type FilterLarkDto, type FilterManagerImageAIInstagramDto, type FilterManagerImageAIThreadsDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterManualContentSocialInstagramDto, type FilterManualContentSocialThreadsDto, type FilterPCBrowserDto, type FilterPCPhoneDto, type FilterPCPhoneLogDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterReportManagerDto, type FilterRoleDto, type FilterSheetToolForPCBrowserDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIAvatarCoverCanvaInstagramDto, type FilterTaskAIContentDto, type FilterTaskAIImageVideoVoiceCanvaInstagramDto, type FilterTaskAIImageVideoVoiceCanvaThreadsDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramPostDto, type FilterTaskThreadsChangeInfoDto, type FilterTaskThreadsPostDto, type FilterTaskWorkflowDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportPostDto, type FilterThreadsSettingPostDto, type FilterTokenJsonManagerDto, type FilterUserDto, type FilterVisitorLogDto, type FindAccountAIContentChannelDto, type FindAccountAIDto, 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 FindBlogCategoryDetailSystemDto, type FindBlogCategoryDto, type FindBlogCategorySystemDto, type FindBlogDto, type FindBlogPostDto, type FindBlogViewHistoryDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindCommentBlogPostDto, type FindDepartmentDto, type FindDetailAccountAIDto, type FindDetailBlogPostDto, type FindDetailBySlugBlogPostDto, type FindDetailEmailRawManagerDto, type FindDetailReportManagerDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindEmailRawAddToVPSDto, type FindEmailRawManagerDto, type FindEmailRawManagerLogDetailDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingPostDto, type FindIpAccessDto, type FindIpBlacklistDto, type FindIpWhitelistDto, type FindLarkDto, type FindListAccountForManualContentSocialInstagramDto, type FindListAccountForManualContentSocialThreadsDto, type FindListVPSForEmailRawManagerDto, type FindManagerImageAIInstagramDto, type FindManagerImageAIThreadsDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindManualContentSocialInstagramDto, type FindManualContentSocialThreadsDto, type FindMemberForAddTeamDto, type FindModuleWebsiteDto, type FindMultiAccountAIContentDto, type FindNotiReportGroupedDto, type FindNotiReportManagerDto, type FindNotificationPermissionDto, 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 FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIAvatarCoverCanvaInstagramDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVideoVoiceCanvaThreadsDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskThreadsChangeInfoDto, type FindOverViewTaskThreadsPostDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountAIChannelDto, type FindOverviewAccountAIDto, type FindOverviewAccountAIGoogleDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountEmailManagerDto, 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 FindOverviewManagerImageAIInstagramDto, type FindOverviewManagerImageAIThreadsDto, type FindOverviewManagerSheetDto, type FindOverviewManualContentSocialInstagramDto, type FindOverviewManualContentSocialThreadsDto, type FindOverviewPCBrowserDto, type FindOverviewPCPhoneDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryAutoSyncDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCBrowserDto, type FindPCPhoneDetail, type FindPCPhoneDto, type FindPCPhoneLogDto, type FindPcBrowserForPcViewScreenDto, type FindPcPhoneForViewScreenDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProcessAccountSocialOtpDto, type FindProcessChangeEmailDto, type FindProcessLoginDto, type FindProxyDto, type FindProxySelectionForEmailDto, type FindReplaceDeviceDto, type FindReportManagerAssignmentDto, type FindReportManagerCommentDto, type FindReportManagerDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetToolForPCBrowserDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTagsUserBlogPostDto, type FindTaskAIAvatarCoverCanvaInstagramDto, type FindTaskAIContentDto, type FindTaskAIImageVideoVoiceCanvaInstagramDto, type FindTaskAIImageVideoVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramPostDto, type FindTaskManualContentSocialInstagramDto, type FindTaskManualContentSocialThreadsDto, type FindTaskThreadsChangeInfoDto, type FindTaskThreadsPostDto, type FindTaskWorkflowDto, type FindTaskWorkflowGroupDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingPostDto, type FindTokenJsonGroupDto, type FindTokenJsonManagerDto, type FindUserDto, type FindViewBySlugBlogPostDto, type FindVisitorLogDto, index$2 as Forum, type IAccountAI, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentChannelNiche, type IAccountAIModelContent, type IAccountAIModelImageVideo, type IAccountAIModelVoice, type IAccountAIProxy, 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 IAccountVPSListJob, type IAccountVPSProvider, type IAccountVPSSocial, type IAccountVpsChange, type IAssignTeam, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogCategoryPermission, type IBlogCategorySystem, type IBlogComment, type IBlogDepartmentPermission, type IBlogPost, type IBlogPostPermission, type IBlogTeamPermission, type IBlogUserPermission, type IBlogViewHistory, type IBrowserGPM, 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 IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailRawManagerLog, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistorySyncSheetPost, type IHistoryTaskAIContent, type IIDriveE2Credentials, type IInboxAction, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramCheckpoint, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramEgoCheck, type IInstagramEndWorkflow, type IInstagramFeedSurf, type IInstagramFollowTarget, type IInstagramGesture, 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 IInstagramHumanDelay, type IInstagramInboxManager, type IInstagramMyNetworkInteract, type IInstagramMySettingsCollection, type IInstagramNavigation, type IInstagramNotificationBar, type IInstagramPostAfterEngagement, type IInstagramPostInteract, type IInstagramPreBlockAndBlock, type IInstagramProcessRequests, type IInstagramReelsSurfer, type IInstagramReplyComment, type IInstagramReplyMessage, 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 IInstagramSettingConfigBlock, type IInstagramSettingConfigEgoCheck, type IInstagramSettingConfigFeedSurf, type IInstagramSettingConfigFollowTarget, type IInstagramSettingConfigGesture, type IInstagramSettingConfigHumanDelay, type IInstagramSettingConfigInboxManager, type IInstagramSettingConfigMyNetwork, type IInstagramSettingConfigMySettings, type IInstagramSettingConfigNavigation, type IInstagramSettingConfigNotificationBar, type IInstagramSettingConfigPostAfterEngagement, type IInstagramSettingConfigPostInteract, type IInstagramSettingConfigProcessRequests, type IInstagramSettingConfigReelsSurfer, type IInstagramSettingConfigReplyComment, type IInstagramSettingConfigReplyMessage, type IInstagramSettingConfigStoryViewer, type IInstagramSettingConfigStrangerVisit, type IInstagramSettingConfigUnfollow, type IInstagramSettingPost, type IInstagramStoryViewer, type IInstagramStrangerProfileVisit, type IInstagramTaskSocialAutoPosts, type IInstagramUnfollow, type IIpAccess, type IIpBlacklist, type IIpWhitelist, type ILark, type ILarkTeam, type IMailWork, type IManagerImageAIInstagram, type IManagerImageAIInstagramFolderStore, type IManagerImageAIInstagramItemStore, type IManagerImageAIInstagramLog, type IManagerImageAIInstagramUserAttached, type IManagerImageAIThreads, type IManagerImageAIThreadsFolderStore, type IManagerImageAIThreadsItemStore, type IManagerImageAIThreadsLog, type IManagerImageAIThreadsUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentSocialInstagram, type IManualContentSocialInstagramChildren, type IManualContentSocialInstagramChildrenItemPost, type IManualContentSocialInstagramNiche, type IManualContentSocialInstagramRunTime, type IManualContentSocialThreads, type IManualContentSocialThreadsChildren, type IManualContentSocialThreadsChildrenItemPost, type IManualContentSocialThreadsNiche, type IManualContentSocialThreadsRunTime, type IModuleWebSite, type INotificationViewAllPermission, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPCBrowser, type IPCBrowserLog, type IPCBrowserLogELS, type IPCBrowserLogStoreIdxELS, type IPCBrowserSheetTool, type IPCPhone, type IPCPhoneDeviceConnect, type IPCPhoneLog, type IPCPhoneLogELS, type IPCPhoneLogStoreIdxELS, type IPreFollowHomeFeed, type IPreFollowProfileTab, type IPreFollowReels, type IPreFollowSearch, type IPreFollowSourceActions, type IProxy, type IReplyCommentReportSpam, type IReplyCommentRound, type IReplyMessageRound, type IReportManager, type IReportManagerAssignment, type IReportManagerComment, type IReportManagerNotification, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetToolSheetInfo, type ISheetToolUsername, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISheetsToolHistory, type ISocialTaskManager, type ISystemNotification, type ITag, type ITaskAIAccountAI, type ITaskAIAccountCanva, type ITaskAIAccountDrive, type ITaskAIAccountProxy, type ITaskAIAvatarCoverCanvaInstagramStep, type ITaskAIAvatarCoverInstagram, type ITaskAIAvatarCoverThreads, type ITaskAICanvaInstagramStep, type ITaskAIContent, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIImageVideoVoiceInstagramStep, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoLog, type ITaskInstagramChangeInfoWorkflowInteract, type ITaskInstagramPost, type ITaskInstagramPostLog, type ITaskInstagramPostWorkflowInteract, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocialInstagram, type ITaskManualContentSocialThreads, type ITaskThreadsChangeInfo, type ITaskThreadsChangeInfoLog, type ITaskThreadsChangeInfoWorkflowInteract, type ITaskThreadsPost, type ITaskThreadsPostLog, type ITaskThreadsPostWorkflowInteract, type ITaskWorkflow, type ITaskWorkflowGroup, type ITaskWorkflowLog, type ITaskWorkflowLogDetail, type ITaskWorkflowLogNodeDetail, type ITaskWorkflowNodeInstagram, type ITaskWorkflowNodeThreads, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryChangeInfoStoreIdxELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingPost, type IToken, type ITokenJsonGroup, type ITokenJsonManager, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewChildBlogCategorySystemDto, type IViewCountNumberStatusBlogPostDto, type IViewCountNumberStatusReportManager, type IViewDeviceByPCPhone, type IViewViewableBlogPostDto, type IVisitorLog, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImageVideoVoiceDetailInstagramDto, type ImportAccountCHPlayICloudRequestDto, type ImportAccountCanvaRequestDto, type ImportAccountDriveRequestDto, type ImportAccountVPNRequestDto, type ImportAccountVPSDto, type ImportDto, type ImportEmailRawManagerDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportManagerWorkRequestDto, type ImportSheetWorkDto, type ImportSheetWorkRequestDto, index$f as Lark, type ListManualContentSocialChildrenDto, type ListManualContentSocialInstagramChildrenDto, type ListManualContentSocialThreadsChildrenDto, type LoadDataChangeInfoInstagramAccountRawDto, type LoadDataChangeInfoThreadsAccountRawDto, type LoadInfoByDeviceSheetToolDto, type LoadInfoSheetToolDto, type NotiUserStatus, type OverviewSheetsToolDto, PCLogTimeRange, index$a as Permission, type ReplaceAccountVSPDto, type ResultImportAccountCHPlayICloudDto, type ResultImportAccountCanvaDto, type ResultImportAccountDriveDto, type ResultImportAccountVPNDto, type ResultImportEmailRawManagerDto, type ResultImportInstagramAccountRawDto, type ResultImportManagerWorkDto, type ResultImportSheetWorkDto, type ResultSyncSheetPostImageVideoVoiceCanvaInstagramDto, index$3 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialInstagramForRunDto, type StoreTaskManualContentSocialThreadsForRunDto, type TActionRole, type TCompare, type TFilter, type TargetAccountInstagramDto, index$4 as Tool, type TotalNumberTaskInstagramChangeInfoDto, type TotalNumberTaskInstagramPostDto, type TotalNumberTaskThreadsChangeInfoDto, type TotalNumberTaskThreadsPostDto, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateArchiveChildCategorySystemDto, type UpdateBlogCategorySystemDto, type UpdateBlogDto, type UpdateBlogPostDto, type UpdateBlogsCategoryDto, type UpdateChildCategoryOrderSystemDto, type UpdateChildCategorySystemDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateEmailRawManagerDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCBrowserDto, type UpdatePCPhoneDto, type UpdateProxyDto, type UpdateProxyListForEmailDto, type UpdateReportManagerDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskThreadsChangeInfoDto, type UpdateTaskWorkflowDto, type UpdateTaskWorkflowGroupDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateTokenJsonGroupDto, type UpdateTokenJsonManagerDto, type UpdateUserDto, type UpsertManualContentSocialInstagramChildrenDto, type UpsertManualContentSocialInstagramChildrenItemPostDto, type UpsertManualContentSocialInstagramDto, type UpsertManualContentSocialThreadsChildrenDto, type UpsertManualContentSocialThreadsChildrenItemPostDto, type UpsertManualContentSocialThreadsDto, type ViewAsyncManualContentSocialInstagramDto, type ViewAsyncManualContentSocialThreadsDto, type ViewAutoSyncInformationManualContentSocialInstagramDto, type ViewAutoSyncInformationManualContentThreadsDto, type ViewDetailDeviceDto, type ViewDetailFolderInstagramDto, type ViewDetailFolderThreadsDto, type ViewDetailSheetsToolDto, type ViewDetailTaskInstagramChangeInfoDto, type ViewDetailTaskInstagramChangeInfoLogDto, type ViewDetailTaskInstagramChangeInfoWorkflowInteractDto, type ViewDetailTaskInstagramPostDto, type ViewDetailTaskInstagramPostLogDto, type ViewDetailTaskInstagramPostWorkflowInteractDto, type ViewDetailTaskThreadsChangeInfoDto, type ViewDetailTaskThreadsChangeInfoLogDto, type ViewDetailTaskThreadsChangeInfoWorkflowInteractDto, type ViewDetailTaskThreadsPostDto, type ViewDetailTaskThreadsPostLogDto, type ViewDetailTaskThreadsPostWorkflowInteractDto, type ViewListGPMProfileDto, type ViewPCBrowserDetailDto, type ViewSettingInstagramOfAccountDto, index$5 as Workspace };
22103
+ export { index$h as AI, type AccountAICreateDto, type AccountAIImportDto, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialInstagramChildrenDto, type AddBulkManualContentSocialThreadsChildrenDto, type AddCommentReportManagerDto, type AddManualContentSocialInstagramChildrenDto, type AddManualContentSocialThreadsChildrenDto, type AddProxyManualDto, type AddSheetToolToPCBrowserDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$8 as Auth, index$i as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, type AvatarCoverDetailInstagramDto, index$g as Base, type BulkUpdateReportManagerDto, type BulkUpdateStatusEmailManagerDto, type CanvaAvatarDetailInstagramDto, type CanvaCoverDetailInstagramDto, type CanvaDetailInstagramDto, type CheckSendMessageLark, index$9 as Common, type CountTotalNumberTaskAIAvatarCoverCanvaInstagramDto, type CountTotalNumberTaskAIImageVideoVoiceCanvaInstagramDto, type CreateAccountEmailDto, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogCategorySystemDto, type CreateBlogDto, type CreateBlogPostDto, type CreateBlogsCategoryDto, type CreateCommentBlogPostDto, type CreateDepartmentDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIInstagramDto, type CreateManagerImageAIThreadsDto, type CreateManagerWorkDto, type CreateModuleWebSiteDto, type CreatePCBrowserDto, type CreatePCPhoneDto, type CreateProxyAddToEmailDto, type CreateProxyDto, type CreateReportManagerDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskThreadsChangeInfoDto, type CreateTaskWorkflowDto, type CreateTaskWorkflowGroupDto, type CreateTasksJobDto, type CreateTeamDto, type CreateTokenJsonGroupDto, type CreateTokenJsonManagerDto, type CreateUserDto, type DataActionChangeInfoInstagramAccountRawDto, type DataActionChangeInfoThreadsAccountRawDto, type DataImportAccountCHPlayICloudDto, type DataImportAccountCanvaDto, type DataImportAccountDriveDto, type DataImportAccountVPNDto, type DataImportEmailRawManagerDto, type DataImportInstagramAccountRawDto, type DataImportManagerWorkDto, type DataImportSheetWorkDto, type DataPCBrowserAndSheetPostAvatarCoverCanvaInstagramDto, type DataPCBrowserAndSheetPostImageVideoVoiceCanvaInstagramDto, type DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto, type DataUpsertAvatarCoverCanvaInstagramDto, type DataUpsertImageVideoVoiceCanvaInstagramDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIVersionGPT, EAIVersionPerplexity, EAccountAIContentChannelStatus, EAccountAIModelApiStatus, EAccountAIModelBrowserPlan, EAccountAIModelCreditStatus, EAccountAIModelLocation, EAccountAIModelStatus, EAccountAIModelType, EAccountAIModelTypeContent, EAccountAISync, EAccountAITypeEmail, EAccountDriveType, EAccountGPTModel, EAccountGeminiModel, EAccountInstagramTypeChangeInfo, EAccountThreadsTypeChangeInfo, EAccountTypeUseDrive, EBlockSource, EBlockType, EBlogCategoryState, EBlogPostState, EBlogPostStatus, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFilterOptionAccountAI, EFilterOptionAccountCHPlayICloud, EFilterOptionAccountCanva, EFilterOptionAccountDrive, EFilterOptionAccountVPN, EFilterOptionDepartment, EFilterOptionDevice, EFilterOptionRole, EFilterOptionTeam, EFilterOptionUser, EGender, EHaveData, EHistorySyncSheetPostStatus, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIInstagramFolder, EManagerImageAIInstagramLog, EManagerImageAIInstagramModel, EManagerImageAIThreadsFolder, EManagerImageAIThreadsLog, EManagerImageAIThreadsModel, EManualContentSocialInstagramStatusPost, EManualContentSocialInstagramStatusTask, EManualContentSocialInstagramTypePost, EManualContentSocialThreadsStatusPost, EManualContentSocialThreadsStatusTask, EManualContentSocialThreadsTypePost, EMediaTypeLibraryPost, EModelImageVideo, ENotificationType, EObjectName, EPCBrowserSheetModule, EPCLogLevel, EPCLogSource, EPositionUser, EPriority, EProcessingEmailManager, ERatioImage, EReportManagerAssignStatus, EReportManagerPriority, EReportManagerStatus, EReportManagerType, ERotationTokenJsonManager, EScreenResolution, ESendNotiStatusBlogPost, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRow, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusAddOnVPS, EStatusBlog, EStatusBrowserEmailManager, EStatusChangeInfo, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceKey, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusEmailLogin, EStatusEmailManager, EStatusEmailManagerChangeInfo, EStatusExecuteCommon, EStatusGenerate, EStatusImapApp, EStatusImportAccountSocial, EStatusImportEmailManager, EStatusInstagramImageLog, EStatusLark, EStatusMailWork, EStatusNode, EStatusPC, EStatusPCControl, EStatusPost, EStatusProfileEmailManager, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusRunTaskEmailManager, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusThreadsImageLog, EStatusTokenJsonManager, EStatusUse, EStatusUser, ESyncStatusAccountDrive, ETaskAIAvatarCoverCanvaStep, ETaskAIImageVideoVoiceCanvaStep, ETaskGenerateAIType, ETaskGenerateModelType, ETaskInstagramChangeInfoLogStatus, ETaskInstagramChangeInfoProcessStep, ETaskInstagramPostLogStatus, ETaskInstagramPostProcessStep, ETaskInstagramPostStyle, ETaskInstagramPostType, ETaskInstagramPostTypeRun, ETaskStatus, ETaskThreadsChangeInfoLogStatus, ETaskThreadsChangeInfoProcessStep, ETaskThreadsPostLogStatus, ETaskThreadsPostProcessStep, ETaskThreadsPostStyle, ETaskThreadsPostType, ETaskThreadsPostTypeRun, ETaskWorkflowNodeCategory, ETaskWorkflowNodeInstagram, ETaskWorkflowNodeThreads, ETaskWorkflowRunStatus, ETaskWorkflowStatus, ETaskWorkflowTypeNode, ETimeFilter, ETimeRangeNotifiReportManager, ETimeZone, ETokenJsonManagerHealth, EToolName, ETypeAccountInstagramSetting, ETypeAccountThreadsSetting, ETypeAccountVPN, ETypeBrowser, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeEmailChangeInfo, ETypeEmailManager, ETypeExport, ETypeFileReportManager, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePaymentAccountVPN, ETypePcOS, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EVPSCore, EVPSExtension, EVPSOs, EVPSRam, EVPSStatus, EVPSStatusConnection, EVPSStatusGpmLoginEmail, EVPSStatusReplace, EVPSStatusRestart, EVPSTimeRestart, EViewedReportManager, EVisibleTeamBlogCategory, EYesNo, type EditStatusImageItemInstagramDto, type EditStatusImageItemThreadsDto, type EditStatusManualContentSocialInstagramChildrenItemPost, type EditStatusManualContentSocialThreadsChildrenItemPost, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIGoogleDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountEmailManagerDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogCategorySystemDto, type FilterBlogDto, type FilterBlogPostDto, type FilterBlogViewHistoryDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, 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 FilterInstagramSettingPostDto, type FilterIpAccessDto, type FilterIpBlacklistDto, type FilterIpWhitelistDto, type FilterLarkDto, type FilterManagerImageAIInstagramDto, type FilterManagerImageAIThreadsDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterManualContentSocialInstagramDto, type FilterManualContentSocialThreadsDto, type FilterPCBrowserDto, type FilterPCPhoneDto, type FilterPCPhoneLogDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterReportManagerDto, type FilterRoleDto, type FilterSheetToolForPCBrowserDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIAvatarCoverCanvaInstagramDto, type FilterTaskAIContentDto, type FilterTaskAIImageVideoVoiceCanvaInstagramDto, type FilterTaskAIImageVideoVoiceCanvaThreadsDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramPostDto, type FilterTaskThreadsChangeInfoDto, type FilterTaskThreadsPostDto, type FilterTaskWorkflowDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportPostDto, type FilterThreadsSettingPostDto, type FilterTokenJsonManagerDto, type FilterUserDto, type FilterVisitorLogDto, type FindAccountAIContentChannelDto, type FindAccountAIDto, 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 FindBlogCategoryDetailSystemDto, type FindBlogCategoryDto, type FindBlogCategorySystemDto, type FindBlogDto, type FindBlogPostDto, type FindBlogViewHistoryDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindCommentBlogPostDto, type FindDepartmentDto, type FindDetailAccountAIDto, type FindDetailBlogPostDto, type FindDetailBySlugBlogPostDto, type FindDetailEmailRawManagerDto, type FindDetailReportManagerDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindEmailRawAddToVPSDto, type FindEmailRawManagerDto, type FindEmailRawManagerLogDetailDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingPostDto, type FindIpAccessDto, type FindIpBlacklistDto, type FindIpWhitelistDto, type FindLarkDto, type FindListAccountForManualContentSocialInstagramDto, type FindListAccountForManualContentSocialThreadsDto, type FindListVPSForEmailRawManagerDto, type FindManagerImageAIInstagramDto, type FindManagerImageAIThreadsDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindManualContentSocialInstagramDto, type FindManualContentSocialThreadsDto, type FindMemberForAddTeamDto, type FindModuleWebsiteDto, type FindMultiAccountAIContentDto, type FindNotiReportGroupedDto, type FindNotiReportManagerDto, type FindNotificationPermissionDto, 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 FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIAvatarCoverCanvaInstagramDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVideoVoiceCanvaThreadsDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskThreadsChangeInfoDto, type FindOverViewTaskThreadsPostDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountAIChannelDto, type FindOverviewAccountAIDto, type FindOverviewAccountAIGoogleDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountEmailManagerDto, 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 FindOverviewManagerImageAIInstagramDto, type FindOverviewManagerImageAIThreadsDto, type FindOverviewManagerSheetDto, type FindOverviewManualContentSocialInstagramDto, type FindOverviewManualContentSocialThreadsDto, type FindOverviewPCBrowserDto, type FindOverviewPCPhoneDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryAutoSyncDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCBrowserDto, type FindPCPhoneDetail, type FindPCPhoneDto, type FindPCPhoneLogDto, type FindPcBrowserForPcViewScreenDto, type FindPcPhoneForViewScreenDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProcessAccountSocialOtpDto, type FindProcessChangeEmailDto, type FindProcessLoginDto, type FindProxyDto, type FindProxySelectionForEmailDto, type FindReplaceDeviceDto, type FindReportManagerAssignmentDto, type FindReportManagerCommentDto, type FindReportManagerDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetToolForPCBrowserDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTagsUserBlogPostDto, type FindTaskAIAvatarCoverCanvaInstagramDto, type FindTaskAIContentDto, type FindTaskAIImageVideoVoiceCanvaInstagramDto, type FindTaskAIImageVideoVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramPostDto, type FindTaskManualContentSocialInstagramDto, type FindTaskManualContentSocialThreadsDto, type FindTaskThreadsChangeInfoDto, type FindTaskThreadsPostDto, type FindTaskWorkflowDto, type FindTaskWorkflowGroupDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingPostDto, type FindTokenJsonGroupDto, type FindTokenJsonManagerDto, type FindUserDto, type FindViewBySlugBlogPostDto, type FindVisitorLogDto, index$2 as Forum, type IAccountAI, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentChannelNiche, type IAccountAIModelContent, type IAccountAIModelImageVideo, type IAccountAIModelVoice, type IAccountAIProxy, 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 IAccountVPSListJob, type IAccountVPSProvider, type IAccountVPSSocial, type IAccountVpsChange, type IAssignTeam, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogCategoryPermission, type IBlogCategorySystem, type IBlogComment, type IBlogDepartmentPermission, type IBlogPost, type IBlogPostPermission, type IBlogTeamPermission, type IBlogUserPermission, type IBlogViewHistory, type IBrowserGPM, 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 IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailRawManagerLog, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistorySyncSheetPost, type IHistoryTaskAIContent, type IIDriveE2Credentials, type IInboxAction, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramCheckpoint, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramEgoCheck, type IInstagramEndWorkflow, type IInstagramFeedSurf, type IInstagramFollowTarget, type IInstagramGesture, 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 IInstagramHumanDelay, type IInstagramInboxManager, type IInstagramMyNetworkInteract, type IInstagramMySettingsCollection, type IInstagramNavigation, type IInstagramNotificationBar, type IInstagramPostAfterEngagement, type IInstagramPostInteract, type IInstagramPreBlockAndBlock, type IInstagramProcessRequests, type IInstagramReelsSurfer, type IInstagramReplyComment, type IInstagramReplyMessage, 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 IInstagramSettingConfigBlock, type IInstagramSettingConfigEgoCheck, type IInstagramSettingConfigFeedSurf, type IInstagramSettingConfigFollowTarget, type IInstagramSettingConfigGesture, type IInstagramSettingConfigHumanDelay, type IInstagramSettingConfigInboxManager, type IInstagramSettingConfigMyNetwork, type IInstagramSettingConfigMySettings, type IInstagramSettingConfigNavigation, type IInstagramSettingConfigNotificationBar, type IInstagramSettingConfigPostAfterEngagement, type IInstagramSettingConfigPostInteract, type IInstagramSettingConfigProcessRequests, type IInstagramSettingConfigReelsSurfer, type IInstagramSettingConfigReplyComment, type IInstagramSettingConfigReplyMessage, type IInstagramSettingConfigStoryViewer, type IInstagramSettingConfigStrangerVisit, type IInstagramSettingConfigUnfollow, type IInstagramSettingPost, type IInstagramStoryViewer, type IInstagramStrangerProfileVisit, type IInstagramTaskSocialAutoPosts, type IInstagramUnfollow, type IIpAccess, type IIpBlacklist, type IIpWhitelist, type ILark, type ILarkTeam, type IMailWork, type IManagerImageAIInstagram, type IManagerImageAIInstagramFolderStore, type IManagerImageAIInstagramItemStore, type IManagerImageAIInstagramLog, type IManagerImageAIInstagramUserAttached, type IManagerImageAIThreads, type IManagerImageAIThreadsFolderStore, type IManagerImageAIThreadsItemStore, type IManagerImageAIThreadsLog, type IManagerImageAIThreadsUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentSocialInstagram, type IManualContentSocialInstagramChildren, type IManualContentSocialInstagramChildrenItemPost, type IManualContentSocialInstagramNiche, type IManualContentSocialInstagramRunTime, type IManualContentSocialThreads, type IManualContentSocialThreadsChildren, type IManualContentSocialThreadsChildrenItemPost, type IManualContentSocialThreadsNiche, type IManualContentSocialThreadsRunTime, type IModuleWebSite, type INotificationViewAllPermission, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPCBrowser, type IPCBrowserLog, type IPCBrowserLogELS, type IPCBrowserLogStoreIdxELS, type IPCBrowserSheetTool, type IPCPhone, type IPCPhoneDeviceConnect, type IPCPhoneLog, type IPCPhoneLogELS, type IPCPhoneLogStoreIdxELS, type IPreFollowHomeFeed, type IPreFollowProfileTab, type IPreFollowReels, type IPreFollowSearch, type IPreFollowSourceActions, type IProxy, type IReplyCommentReportSpam, type IReplyCommentRound, type IReplyMessageRound, type IReportManager, type IReportManagerAssignment, type IReportManagerComment, type IReportManagerNotification, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetToolSheetInfo, type ISheetToolUsername, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISheetsToolHistory, type ISocialTaskManager, type ISystemNotification, type ITag, type ITaskAIAccountAI, type ITaskAIAccountCanva, type ITaskAIAccountDrive, type ITaskAIAccountProxy, type ITaskAIAvatarCoverCanvaInstagramStep, type ITaskAIAvatarCoverInstagram, type ITaskAIAvatarCoverThreads, type ITaskAICanvaInstagramStep, type ITaskAIContent, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIImageVideoVoiceInstagramStep, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoLog, type ITaskInstagramChangeInfoWorkflowInteract, type ITaskInstagramPost, type ITaskInstagramPostLog, type ITaskInstagramPostWorkflowInteract, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocialInstagram, type ITaskManualContentSocialThreads, type ITaskThreadsChangeInfo, type ITaskThreadsChangeInfoLog, type ITaskThreadsChangeInfoWorkflowInteract, type ITaskThreadsPost, type ITaskThreadsPostLog, type ITaskThreadsPostWorkflowInteract, type ITaskWorkflow, type ITaskWorkflowGroup, type ITaskWorkflowLog, type ITaskWorkflowLogDetail, type ITaskWorkflowLogNodeDetail, type ITaskWorkflowNodeInstagram, type ITaskWorkflowNodeThreads, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryChangeInfoStoreIdxELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingPost, type IToken, type ITokenJsonGroup, type ITokenJsonManager, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewChildBlogCategorySystemDto, type IViewCountNumberStatusBlogPostDto, type IViewCountNumberStatusReportManager, type IViewDeviceByPCPhone, type IViewViewableBlogPostDto, type IVisitorLog, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImageVideoVoiceDetailInstagramDto, type ImportAccountCHPlayICloudRequestDto, type ImportAccountCanvaRequestDto, type ImportAccountDriveRequestDto, type ImportAccountVPNRequestDto, type ImportAccountVPSDto, type ImportDto, type ImportEmailRawManagerDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportManagerWorkRequestDto, type ImportSheetWorkDto, type ImportSheetWorkRequestDto, index$f as Lark, type ListManualContentSocialChildrenDto, type ListManualContentSocialInstagramChildrenDto, type ListManualContentSocialThreadsChildrenDto, type LoadDataChangeInfoInstagramAccountRawDto, type LoadDataChangeInfoThreadsAccountRawDto, type LoadInfoByDeviceSheetToolDto, type LoadInfoSheetToolDto, type NotiUserStatus, type OverviewSheetsToolDto, PCLogTimeRange, index$a as Permission, type ReplaceAccountVSPDto, type ResultImportAccountCHPlayICloudDto, type ResultImportAccountCanvaDto, type ResultImportAccountDriveDto, type ResultImportAccountVPNDto, type ResultImportEmailRawManagerDto, type ResultImportInstagramAccountRawDto, type ResultImportManagerWorkDto, type ResultImportSheetWorkDto, type ResultSyncSheetPostImageVideoVoiceCanvaInstagramDto, index$3 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialInstagramForRunDto, type StoreTaskManualContentSocialThreadsForRunDto, type TActionRole, type TCompare, type TFilter, type TargetAccountInstagramDto, index$4 as Tool, type TotalNumberTaskInstagramChangeInfoDto, type TotalNumberTaskInstagramPostDto, type TotalNumberTaskThreadsChangeInfoDto, type TotalNumberTaskThreadsPostDto, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateArchiveChildCategorySystemDto, type UpdateBlogCategorySystemDto, type UpdateBlogDto, type UpdateBlogPostDto, type UpdateBlogsCategoryDto, type UpdateChildCategoryOrderSystemDto, type UpdateChildCategorySystemDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateEmailRawManagerDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCBrowserDto, type UpdatePCPhoneDto, type UpdateProxyDto, type UpdateProxyListForEmailDto, type UpdateReportManagerDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskThreadsChangeInfoDto, type UpdateTaskWorkflowDto, type UpdateTaskWorkflowGroupDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateTokenJsonGroupDto, type UpdateTokenJsonManagerDto, type UpdateUserDto, type UpsertManualContentSocialInstagramChildrenDto, type UpsertManualContentSocialInstagramChildrenItemPostDto, type UpsertManualContentSocialInstagramDto, type UpsertManualContentSocialThreadsChildrenDto, type UpsertManualContentSocialThreadsChildrenItemPostDto, type UpsertManualContentSocialThreadsDto, type ViewAsyncManualContentSocialInstagramDto, type ViewAsyncManualContentSocialThreadsDto, type ViewAutoSyncInformationManualContentSocialInstagramDto, type ViewAutoSyncInformationManualContentThreadsDto, type ViewDetailDeviceDto, type ViewDetailFolderInstagramDto, type ViewDetailFolderThreadsDto, type ViewDetailSheetsToolDto, type ViewDetailTaskInstagramChangeInfoDto, type ViewDetailTaskInstagramChangeInfoLogDto, type ViewDetailTaskInstagramChangeInfoWorkflowInteractDto, type ViewDetailTaskInstagramPostDto, type ViewDetailTaskInstagramPostLogDto, type ViewDetailTaskInstagramPostWorkflowInteractDto, type ViewDetailTaskThreadsChangeInfoDto, type ViewDetailTaskThreadsChangeInfoLogDto, type ViewDetailTaskThreadsChangeInfoWorkflowInteractDto, type ViewDetailTaskThreadsPostDto, type ViewDetailTaskThreadsPostLogDto, type ViewDetailTaskThreadsPostWorkflowInteractDto, type ViewListGPMProfileDto, type ViewPCBrowserDetailDto, type ViewSettingInstagramOfAccountDto, index$5 as Workspace };
package/dist/index.d.ts CHANGED
@@ -1390,6 +1390,21 @@ declare enum ETypeDeviceOS {
1390
1390
  IOS = "IOS",
1391
1391
  Android = "Android"
1392
1392
  }
1393
+ declare enum EFilterOptionDevice {
1394
+ DeviceOldKey = "deviceOldKey",
1395
+ DeviceNewKey = "deviceNewKey",
1396
+ Name = "name",
1397
+ PCName = "pcName",
1398
+ HubConnection = "hubConnection",
1399
+ CreatedBy = "createdBy",
1400
+ DepartmentCreator = "departmentCreator",
1401
+ TeamCreator = "teamCreator",
1402
+ LeaderCreator = "leaderCreator",
1403
+ UserAssign = "userAssign",
1404
+ DepartmentAssign = "departmentAssign",
1405
+ TeamAssign = "teamAssign",
1406
+ LeaderAssign = "leaderAssign"
1407
+ }
1393
1408
 
1394
1409
  declare enum ETypeExport {
1395
1410
  Append = "Append",
@@ -1516,6 +1531,8 @@ declare enum ETypeVoiceLanguage {
1516
1531
  English = "en"
1517
1532
  }
1518
1533
 
1534
+ type index$d_EFilterOptionDevice = EFilterOptionDevice;
1535
+ declare const index$d_EFilterOptionDevice: typeof EFilterOptionDevice;
1519
1536
  type index$d_ETypeAccountInstagramSetting = ETypeAccountInstagramSetting;
1520
1537
  declare const index$d_ETypeAccountInstagramSetting: typeof ETypeAccountInstagramSetting;
1521
1538
  type index$d_ETypeAccountVPN = ETypeAccountVPN;
@@ -1573,7 +1590,7 @@ declare const index$d_ETypeTimeFilter: typeof ETypeTimeFilter;
1573
1590
  type index$d_ETypeVoiceLanguage = ETypeVoiceLanguage;
1574
1591
  declare const index$d_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
1575
1592
  declare namespace index$d {
1576
- export { index$d_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$d_ETypeAccountVPN as ETypeAccountVPN, index$d_ETypeBrowser as ETypeBrowser, index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeDevice as ETypeDevice, index$d_ETypeDeviceOS as ETypeDeviceOS, index$d_ETypeExport as ETypeExport, index$d_ETypeGenerate as ETypeGenerate, index$d_ETypeImportExport as ETypeImportExport, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypePcOS as ETypePcOS, index$d_ETypePin as ETypePin, index$d_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$d_ETypeProxy as ETypeProxy, index$d_ETypeProxyChecked as ETypeProxyChecked, index$d_ETypeProxyCountry as ETypeProxyCountry, index$d_ETypeProxyNewIP as ETypeProxyNewIP, index$d_ETypeProxyProvider as ETypeProxyProvider, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$d_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$d_ETypeSocialCreateNew as ETypeSocialCreateNew, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
1593
+ export { index$d_EFilterOptionDevice as EFilterOptionDevice, index$d_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$d_ETypeAccountVPN as ETypeAccountVPN, index$d_ETypeBrowser as ETypeBrowser, index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeDevice as ETypeDevice, index$d_ETypeDeviceOS as ETypeDeviceOS, index$d_ETypeExport as ETypeExport, index$d_ETypeGenerate as ETypeGenerate, index$d_ETypeImportExport as ETypeImportExport, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypePcOS as ETypePcOS, index$d_ETypePin as ETypePin, index$d_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$d_ETypeProxy as ETypeProxy, index$d_ETypeProxyChecked as ETypeProxyChecked, index$d_ETypeProxyCountry as ETypeProxyCountry, index$d_ETypeProxyNewIP as ETypeProxyNewIP, index$d_ETypeProxyProvider as ETypeProxyProvider, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$d_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$d_ETypeSocialCreateNew as ETypeSocialCreateNew, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
1577
1594
  }
1578
1595
 
1579
1596
  declare enum EStatusDeviceLog {
@@ -1648,6 +1665,8 @@ type index$c_EEmailTagType = EEmailTagType;
1648
1665
  declare const index$c_EEmailTagType: typeof EEmailTagType;
1649
1666
  type index$c_EFile = EFile;
1650
1667
  declare const index$c_EFile: typeof EFile;
1668
+ type index$c_EFilterOptionDevice = EFilterOptionDevice;
1669
+ declare const index$c_EFilterOptionDevice: typeof EFilterOptionDevice;
1651
1670
  type index$c_EGender = EGender;
1652
1671
  declare const index$c_EGender: typeof EGender;
1653
1672
  type index$c_EHaveData = EHaveData;
@@ -1853,7 +1872,7 @@ declare const index$c_EYesNo: typeof EYesNo;
1853
1872
  type index$c_PCLogTimeRange = PCLogTimeRange;
1854
1873
  declare const index$c_PCLogTimeRange: typeof PCLogTimeRange;
1855
1874
  declare namespace index$c {
1856
- export { index$h as AI, index$g as Base, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPCLogLevel as EPCLogLevel, index$c_EPCLogSource as EPCLogSource, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_EStartStop as EStartStop, index$c_EStatusAccountSocialCheckAuth as EStatusAccountSocialCheckAuth, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRaw as EStatusAccountSocialRaw, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountSocialSyncInstagramThreads as EStatusAccountSocialSyncInstagramThreads, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceKey as EStatusDeviceKey, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEditPost as EStatusEditPost, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusGenerate as EStatusGenerate, index$c_EStatusImportAccountSocial as EStatusImportAccountSocial, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusPCControl as EStatusPCControl, index$c_EStatusPost as EStatusPost, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUse as EStatusUse, index$c_EStatusUser as EStatusUser, index$c_ETimeFilter as ETimeFilter, index$c_ETimeZone as ETimeZone, index$c_EToolName as EToolName, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeBrowser as ETypeBrowser, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeGenerate as ETypeGenerate, index$c_ETypeImportExport as ETypeImportExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePcOS as ETypePcOS, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$c_EYesNo as EYesNo, index$f as Lark, index$c_PCLogTimeRange as PCLogTimeRange, index$e as Status, index$d as Types };
1875
+ export { index$h as AI, index$g as Base, index$c_EAIVersionGPT as EAIVersionGPT, index$c_EAIVersionPerplexity as EAIVersionPerplexity, index$c_EDayOfWeek as EDayOfWeek, index$c_EDeviceResetTime as EDeviceResetTime, index$c_EEmailTagType as EEmailTagType, index$c_EFile as EFile, index$c_EFilterOptionDevice as EFilterOptionDevice, index$c_EGender as EGender, index$c_EHaveData as EHaveData, index$c_EInputTypeFilter as EInputTypeFilter, index$c_ELarkNotiAccountTool as ELarkNotiAccountTool, index$c_ELarkNotiBase as ELarkNotiBase, index$c_ELarkNotiCreateNew as ELarkNotiCreateNew, index$c_ELarkNotiDuplicateAll as ELarkNotiDuplicateAll, index$c_ELarkNotiInstagramDetail as ELarkNotiInstagramDetail, index$c_ELarkNotiManagerSheet as ELarkNotiManagerSheet, index$c_ELarkNotiRunAppDevice as ELarkNotiRunAppDevice, index$c_ELarkNotiSocialImport as ELarkNotiSocialImport, index$c_ELarkNotiToolDevice as ELarkNotiToolDevice, index$c_ELarkObject as ELarkObject, index$c_ELarkTypeNotification as ELarkTypeNotification, index$c_EObjectName as EObjectName, index$c_EPCLogLevel as EPCLogLevel, index$c_EPCLogSource as EPCLogSource, index$c_EPositionUser as EPositionUser, index$c_EPriority as EPriority, index$c_EStartStop as EStartStop, index$c_EStatusAccountSocialCheckAuth as EStatusAccountSocialCheckAuth, index$c_EStatusAccountSocialFolderName as EStatusAccountSocialFolderName, index$c_EStatusAccountSocialLogin as EStatusAccountSocialLogin, index$c_EStatusAccountSocialLoginEmail as EStatusAccountSocialLoginEmail, index$c_EStatusAccountSocialRaw as EStatusAccountSocialRaw, index$c_EStatusAccountSocialRun as EStatusAccountSocialRun, index$c_EStatusAccountSocialSetting as EStatusAccountSocialSetting, index$c_EStatusAccountSocialSync as EStatusAccountSocialSync, index$c_EStatusAccountSocialSyncInstagramThreads as EStatusAccountSocialSyncInstagramThreads, index$c_EStatusActive as EStatusActive, index$c_EStatusBlog as EStatusBlog, index$c_EStatusChangeInfo as EStatusChangeInfo, index$c_EStatusCommon as EStatusCommon, index$c_EStatusCreateNew as EStatusCreateNew, index$c_EStatusDeviceChangeName as EStatusDeviceChangeName, index$c_EStatusDeviceChangeNew as EStatusDeviceChangeNew, index$c_EStatusDeviceConnectPC as EStatusDeviceConnectPC, index$c_EStatusDeviceConnectWifi as EStatusDeviceConnectWifi, index$c_EStatusDeviceHubStatus as EStatusDeviceHubStatus, index$c_EStatusDeviceKey as EStatusDeviceKey, index$c_EStatusDeviceLog as EStatusDeviceLog, index$c_EStatusDeviceLoginCHPlayICloud as EStatusDeviceLoginCHPlayICloud, index$c_EStatusDeviceReplace as EStatusDeviceReplace, index$c_EStatusDeviceRunningSocial as EStatusDeviceRunningSocial, index$c_EStatusDeviceSetup as EStatusDeviceSetup, index$c_EStatusDeviceSetupSettingTask as EStatusDeviceSetupSettingTask, index$c_EStatusDeviceSync as EStatusDeviceSync, index$c_EStatusEditPost as EStatusEditPost, index$c_EStatusExecuteCommon as EStatusExecuteCommon, index$c_EStatusGenerate as EStatusGenerate, index$c_EStatusImportAccountSocial as EStatusImportAccountSocial, index$c_EStatusLark as EStatusLark, index$c_EStatusMailWork as EStatusMailWork, index$c_EStatusPC as EStatusPC, index$c_EStatusPCControl as EStatusPCControl, index$c_EStatusPost as EStatusPost, index$c_EStatusRole as EStatusRole, index$c_EStatusSheetWork as EStatusSheetWork, index$c_EStatusTaskAIContent as EStatusTaskAIContent, index$c_EStatusTaskAvatarCover as EStatusTaskAvatarCover, index$c_EStatusTaskJob as EStatusTaskJob, index$c_EStatusTaskJobGroup as EStatusTaskJobGroup, index$c_EStatusTaskScript as EStatusTaskScript, index$c_EStatusTaskToolSocials as EStatusTaskToolSocials, index$c_EStatusTeam as EStatusTeam, index$c_EStatusUse as EStatusUse, index$c_EStatusUser as EStatusUser, index$c_ETimeFilter as ETimeFilter, index$c_ETimeZone as ETimeZone, index$c_EToolName as EToolName, index$c_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$c_ETypeAccountVPN as ETypeAccountVPN, index$c_ETypeBrowser as ETypeBrowser, index$c_ETypeCanva as ETypeCanva, index$c_ETypeColumnManagerWork as ETypeColumnManagerWork, index$c_ETypeDevice as ETypeDevice, index$c_ETypeDeviceLog as ETypeDeviceLog, index$c_ETypeDeviceOS as ETypeDeviceOS, index$c_ETypeExport as ETypeExport, index$c_ETypeGenerate as ETypeGenerate, index$c_ETypeImportExport as ETypeImportExport, index$c_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$c_ETypeManagerWorkType as ETypeManagerWorkType, index$c_ETypePcOS as ETypePcOS, index$c_ETypePin as ETypePin, index$c_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$c_ETypeProxy as ETypeProxy, index$c_ETypeProxyChecked as ETypeProxyChecked, index$c_ETypeProxyCountry as ETypeProxyCountry, index$c_ETypeProxyNewIP as ETypeProxyNewIP, index$c_ETypeProxyProvider as ETypeProxyProvider, index$c_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$c_ETypeSheetWorkPin as ETypeSheetWorkPin, index$c_ETypeSocial as ETypeSocial, index$c_ETypeSocialChangeInfoInstagram as ETypeSocialChangeInfoInstagram, index$c_ETypeSocialChangeInfoThreads as ETypeSocialChangeInfoThreads, index$c_ETypeSocialCreateNew as ETypeSocialCreateNew, index$c_ETypeTaskID as ETypeTaskID, index$c_ETypeTimeFilter as ETypeTimeFilter, index$c_ETypeVoiceLanguage as ETypeVoiceLanguage, index$c_EYesNo as EYesNo, index$f as Lark, index$c_PCLogTimeRange as PCLogTimeRange, index$e as Status, index$d as Types };
1857
1876
  }
1858
1877
 
1859
1878
  type TFilter = 'direct' | 'ref';
@@ -22081,4 +22100,4 @@ declare namespace index {
22081
22100
  export type { index_ExportDto as ExportDto, index_FilterBaseDto as FilterBaseDto, index_FilterBaseSocialDto as FilterBaseSocialDto, 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_IFindBaseDto as IFindBaseDto, index_IUserInfoAssignment as IUserInfoAssignment, index_ImportDto as ImportDto };
22082
22101
  }
22083
22102
 
22084
- export { index$h as AI, type AccountAICreateDto, type AccountAIImportDto, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialInstagramChildrenDto, type AddBulkManualContentSocialThreadsChildrenDto, type AddCommentReportManagerDto, type AddManualContentSocialInstagramChildrenDto, type AddManualContentSocialThreadsChildrenDto, type AddProxyManualDto, type AddSheetToolToPCBrowserDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$8 as Auth, index$i as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, type AvatarCoverDetailInstagramDto, index$g as Base, type BulkUpdateReportManagerDto, type BulkUpdateStatusEmailManagerDto, type CanvaAvatarDetailInstagramDto, type CanvaCoverDetailInstagramDto, type CanvaDetailInstagramDto, type CheckSendMessageLark, index$9 as Common, type CountTotalNumberTaskAIAvatarCoverCanvaInstagramDto, type CountTotalNumberTaskAIImageVideoVoiceCanvaInstagramDto, type CreateAccountEmailDto, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogCategorySystemDto, type CreateBlogDto, type CreateBlogPostDto, type CreateBlogsCategoryDto, type CreateCommentBlogPostDto, type CreateDepartmentDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIInstagramDto, type CreateManagerImageAIThreadsDto, type CreateManagerWorkDto, type CreateModuleWebSiteDto, type CreatePCBrowserDto, type CreatePCPhoneDto, type CreateProxyAddToEmailDto, type CreateProxyDto, type CreateReportManagerDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskThreadsChangeInfoDto, type CreateTaskWorkflowDto, type CreateTaskWorkflowGroupDto, type CreateTasksJobDto, type CreateTeamDto, type CreateTokenJsonGroupDto, type CreateTokenJsonManagerDto, type CreateUserDto, type DataActionChangeInfoInstagramAccountRawDto, type DataActionChangeInfoThreadsAccountRawDto, type DataImportAccountCHPlayICloudDto, type DataImportAccountCanvaDto, type DataImportAccountDriveDto, type DataImportAccountVPNDto, type DataImportEmailRawManagerDto, type DataImportInstagramAccountRawDto, type DataImportManagerWorkDto, type DataImportSheetWorkDto, type DataPCBrowserAndSheetPostAvatarCoverCanvaInstagramDto, type DataPCBrowserAndSheetPostImageVideoVoiceCanvaInstagramDto, type DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto, type DataUpsertAvatarCoverCanvaInstagramDto, type DataUpsertImageVideoVoiceCanvaInstagramDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIVersionGPT, EAIVersionPerplexity, EAccountAIContentChannelStatus, EAccountAIModelApiStatus, EAccountAIModelBrowserPlan, EAccountAIModelCreditStatus, EAccountAIModelLocation, EAccountAIModelStatus, EAccountAIModelType, EAccountAIModelTypeContent, EAccountAISync, EAccountAITypeEmail, EAccountDriveType, EAccountGPTModel, EAccountGeminiModel, EAccountInstagramTypeChangeInfo, EAccountThreadsTypeChangeInfo, EAccountTypeUseDrive, EBlockSource, EBlockType, EBlogCategoryState, EBlogPostState, EBlogPostStatus, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFilterOptionAccountAI, EFilterOptionAccountCHPlayICloud, EFilterOptionAccountCanva, EFilterOptionAccountDrive, EFilterOptionAccountVPN, EFilterOptionDepartment, EFilterOptionRole, EFilterOptionTeam, EFilterOptionUser, EGender, EHaveData, EHistorySyncSheetPostStatus, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIInstagramFolder, EManagerImageAIInstagramLog, EManagerImageAIInstagramModel, EManagerImageAIThreadsFolder, EManagerImageAIThreadsLog, EManagerImageAIThreadsModel, EManualContentSocialInstagramStatusPost, EManualContentSocialInstagramStatusTask, EManualContentSocialInstagramTypePost, EManualContentSocialThreadsStatusPost, EManualContentSocialThreadsStatusTask, EManualContentSocialThreadsTypePost, EMediaTypeLibraryPost, EModelImageVideo, ENotificationType, EObjectName, EPCBrowserSheetModule, EPCLogLevel, EPCLogSource, EPositionUser, EPriority, EProcessingEmailManager, ERatioImage, EReportManagerAssignStatus, EReportManagerPriority, EReportManagerStatus, EReportManagerType, ERotationTokenJsonManager, EScreenResolution, ESendNotiStatusBlogPost, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRow, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusAddOnVPS, EStatusBlog, EStatusBrowserEmailManager, EStatusChangeInfo, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceKey, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusEmailLogin, EStatusEmailManager, EStatusEmailManagerChangeInfo, EStatusExecuteCommon, EStatusGenerate, EStatusImapApp, EStatusImportAccountSocial, EStatusImportEmailManager, EStatusInstagramImageLog, EStatusLark, EStatusMailWork, EStatusNode, EStatusPC, EStatusPCControl, EStatusPost, EStatusProfileEmailManager, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusRunTaskEmailManager, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusThreadsImageLog, EStatusTokenJsonManager, EStatusUse, EStatusUser, ESyncStatusAccountDrive, ETaskAIAvatarCoverCanvaStep, ETaskAIImageVideoVoiceCanvaStep, ETaskGenerateAIType, ETaskGenerateModelType, ETaskInstagramChangeInfoLogStatus, ETaskInstagramChangeInfoProcessStep, ETaskInstagramPostLogStatus, ETaskInstagramPostProcessStep, ETaskInstagramPostStyle, ETaskInstagramPostType, ETaskInstagramPostTypeRun, ETaskStatus, ETaskThreadsChangeInfoLogStatus, ETaskThreadsChangeInfoProcessStep, ETaskThreadsPostLogStatus, ETaskThreadsPostProcessStep, ETaskThreadsPostStyle, ETaskThreadsPostType, ETaskThreadsPostTypeRun, ETaskWorkflowNodeCategory, ETaskWorkflowNodeInstagram, ETaskWorkflowNodeThreads, ETaskWorkflowRunStatus, ETaskWorkflowStatus, ETaskWorkflowTypeNode, ETimeFilter, ETimeRangeNotifiReportManager, ETimeZone, ETokenJsonManagerHealth, EToolName, ETypeAccountInstagramSetting, ETypeAccountThreadsSetting, ETypeAccountVPN, ETypeBrowser, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeEmailChangeInfo, ETypeEmailManager, ETypeExport, ETypeFileReportManager, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePaymentAccountVPN, ETypePcOS, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EVPSCore, EVPSExtension, EVPSOs, EVPSRam, EVPSStatus, EVPSStatusConnection, EVPSStatusGpmLoginEmail, EVPSStatusReplace, EVPSStatusRestart, EVPSTimeRestart, EViewedReportManager, EVisibleTeamBlogCategory, EYesNo, type EditStatusImageItemInstagramDto, type EditStatusImageItemThreadsDto, type EditStatusManualContentSocialInstagramChildrenItemPost, type EditStatusManualContentSocialThreadsChildrenItemPost, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIGoogleDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountEmailManagerDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogCategorySystemDto, type FilterBlogDto, type FilterBlogPostDto, type FilterBlogViewHistoryDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, 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 FilterInstagramSettingPostDto, type FilterIpAccessDto, type FilterIpBlacklistDto, type FilterIpWhitelistDto, type FilterLarkDto, type FilterManagerImageAIInstagramDto, type FilterManagerImageAIThreadsDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterManualContentSocialInstagramDto, type FilterManualContentSocialThreadsDto, type FilterPCBrowserDto, type FilterPCPhoneDto, type FilterPCPhoneLogDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterReportManagerDto, type FilterRoleDto, type FilterSheetToolForPCBrowserDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIAvatarCoverCanvaInstagramDto, type FilterTaskAIContentDto, type FilterTaskAIImageVideoVoiceCanvaInstagramDto, type FilterTaskAIImageVideoVoiceCanvaThreadsDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramPostDto, type FilterTaskThreadsChangeInfoDto, type FilterTaskThreadsPostDto, type FilterTaskWorkflowDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportPostDto, type FilterThreadsSettingPostDto, type FilterTokenJsonManagerDto, type FilterUserDto, type FilterVisitorLogDto, type FindAccountAIContentChannelDto, type FindAccountAIDto, 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 FindBlogCategoryDetailSystemDto, type FindBlogCategoryDto, type FindBlogCategorySystemDto, type FindBlogDto, type FindBlogPostDto, type FindBlogViewHistoryDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindCommentBlogPostDto, type FindDepartmentDto, type FindDetailAccountAIDto, type FindDetailBlogPostDto, type FindDetailBySlugBlogPostDto, type FindDetailEmailRawManagerDto, type FindDetailReportManagerDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindEmailRawAddToVPSDto, type FindEmailRawManagerDto, type FindEmailRawManagerLogDetailDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingPostDto, type FindIpAccessDto, type FindIpBlacklistDto, type FindIpWhitelistDto, type FindLarkDto, type FindListAccountForManualContentSocialInstagramDto, type FindListAccountForManualContentSocialThreadsDto, type FindListVPSForEmailRawManagerDto, type FindManagerImageAIInstagramDto, type FindManagerImageAIThreadsDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindManualContentSocialInstagramDto, type FindManualContentSocialThreadsDto, type FindMemberForAddTeamDto, type FindModuleWebsiteDto, type FindMultiAccountAIContentDto, type FindNotiReportGroupedDto, type FindNotiReportManagerDto, type FindNotificationPermissionDto, 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 FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIAvatarCoverCanvaInstagramDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVideoVoiceCanvaThreadsDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskThreadsChangeInfoDto, type FindOverViewTaskThreadsPostDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountAIChannelDto, type FindOverviewAccountAIDto, type FindOverviewAccountAIGoogleDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountEmailManagerDto, 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 FindOverviewManagerImageAIInstagramDto, type FindOverviewManagerImageAIThreadsDto, type FindOverviewManagerSheetDto, type FindOverviewManualContentSocialInstagramDto, type FindOverviewManualContentSocialThreadsDto, type FindOverviewPCBrowserDto, type FindOverviewPCPhoneDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryAutoSyncDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCBrowserDto, type FindPCPhoneDetail, type FindPCPhoneDto, type FindPCPhoneLogDto, type FindPcBrowserForPcViewScreenDto, type FindPcPhoneForViewScreenDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProcessAccountSocialOtpDto, type FindProcessChangeEmailDto, type FindProcessLoginDto, type FindProxyDto, type FindProxySelectionForEmailDto, type FindReplaceDeviceDto, type FindReportManagerAssignmentDto, type FindReportManagerCommentDto, type FindReportManagerDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetToolForPCBrowserDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTagsUserBlogPostDto, type FindTaskAIAvatarCoverCanvaInstagramDto, type FindTaskAIContentDto, type FindTaskAIImageVideoVoiceCanvaInstagramDto, type FindTaskAIImageVideoVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramPostDto, type FindTaskManualContentSocialInstagramDto, type FindTaskManualContentSocialThreadsDto, type FindTaskThreadsChangeInfoDto, type FindTaskThreadsPostDto, type FindTaskWorkflowDto, type FindTaskWorkflowGroupDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingPostDto, type FindTokenJsonGroupDto, type FindTokenJsonManagerDto, type FindUserDto, type FindViewBySlugBlogPostDto, type FindVisitorLogDto, index$2 as Forum, type IAccountAI, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentChannelNiche, type IAccountAIModelContent, type IAccountAIModelImageVideo, type IAccountAIModelVoice, type IAccountAIProxy, 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 IAccountVPSListJob, type IAccountVPSProvider, type IAccountVPSSocial, type IAccountVpsChange, type IAssignTeam, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogCategoryPermission, type IBlogCategorySystem, type IBlogComment, type IBlogDepartmentPermission, type IBlogPost, type IBlogPostPermission, type IBlogTeamPermission, type IBlogUserPermission, type IBlogViewHistory, type IBrowserGPM, 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 IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailRawManagerLog, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistorySyncSheetPost, type IHistoryTaskAIContent, type IIDriveE2Credentials, type IInboxAction, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramCheckpoint, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramEgoCheck, type IInstagramEndWorkflow, type IInstagramFeedSurf, type IInstagramFollowTarget, type IInstagramGesture, 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 IInstagramHumanDelay, type IInstagramInboxManager, type IInstagramMyNetworkInteract, type IInstagramMySettingsCollection, type IInstagramNavigation, type IInstagramNotificationBar, type IInstagramPostAfterEngagement, type IInstagramPostInteract, type IInstagramPreBlockAndBlock, type IInstagramProcessRequests, type IInstagramReelsSurfer, type IInstagramReplyComment, type IInstagramReplyMessage, 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 IInstagramSettingConfigBlock, type IInstagramSettingConfigEgoCheck, type IInstagramSettingConfigFeedSurf, type IInstagramSettingConfigFollowTarget, type IInstagramSettingConfigGesture, type IInstagramSettingConfigHumanDelay, type IInstagramSettingConfigInboxManager, type IInstagramSettingConfigMyNetwork, type IInstagramSettingConfigMySettings, type IInstagramSettingConfigNavigation, type IInstagramSettingConfigNotificationBar, type IInstagramSettingConfigPostAfterEngagement, type IInstagramSettingConfigPostInteract, type IInstagramSettingConfigProcessRequests, type IInstagramSettingConfigReelsSurfer, type IInstagramSettingConfigReplyComment, type IInstagramSettingConfigReplyMessage, type IInstagramSettingConfigStoryViewer, type IInstagramSettingConfigStrangerVisit, type IInstagramSettingConfigUnfollow, type IInstagramSettingPost, type IInstagramStoryViewer, type IInstagramStrangerProfileVisit, type IInstagramTaskSocialAutoPosts, type IInstagramUnfollow, type IIpAccess, type IIpBlacklist, type IIpWhitelist, type ILark, type ILarkTeam, type IMailWork, type IManagerImageAIInstagram, type IManagerImageAIInstagramFolderStore, type IManagerImageAIInstagramItemStore, type IManagerImageAIInstagramLog, type IManagerImageAIInstagramUserAttached, type IManagerImageAIThreads, type IManagerImageAIThreadsFolderStore, type IManagerImageAIThreadsItemStore, type IManagerImageAIThreadsLog, type IManagerImageAIThreadsUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentSocialInstagram, type IManualContentSocialInstagramChildren, type IManualContentSocialInstagramChildrenItemPost, type IManualContentSocialInstagramNiche, type IManualContentSocialInstagramRunTime, type IManualContentSocialThreads, type IManualContentSocialThreadsChildren, type IManualContentSocialThreadsChildrenItemPost, type IManualContentSocialThreadsNiche, type IManualContentSocialThreadsRunTime, type IModuleWebSite, type INotificationViewAllPermission, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPCBrowser, type IPCBrowserLog, type IPCBrowserLogELS, type IPCBrowserLogStoreIdxELS, type IPCBrowserSheetTool, type IPCPhone, type IPCPhoneDeviceConnect, type IPCPhoneLog, type IPCPhoneLogELS, type IPCPhoneLogStoreIdxELS, type IPreFollowHomeFeed, type IPreFollowProfileTab, type IPreFollowReels, type IPreFollowSearch, type IPreFollowSourceActions, type IProxy, type IReplyCommentReportSpam, type IReplyCommentRound, type IReplyMessageRound, type IReportManager, type IReportManagerAssignment, type IReportManagerComment, type IReportManagerNotification, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetToolSheetInfo, type ISheetToolUsername, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISheetsToolHistory, type ISocialTaskManager, type ISystemNotification, type ITag, type ITaskAIAccountAI, type ITaskAIAccountCanva, type ITaskAIAccountDrive, type ITaskAIAccountProxy, type ITaskAIAvatarCoverCanvaInstagramStep, type ITaskAIAvatarCoverInstagram, type ITaskAIAvatarCoverThreads, type ITaskAICanvaInstagramStep, type ITaskAIContent, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIImageVideoVoiceInstagramStep, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoLog, type ITaskInstagramChangeInfoWorkflowInteract, type ITaskInstagramPost, type ITaskInstagramPostLog, type ITaskInstagramPostWorkflowInteract, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocialInstagram, type ITaskManualContentSocialThreads, type ITaskThreadsChangeInfo, type ITaskThreadsChangeInfoLog, type ITaskThreadsChangeInfoWorkflowInteract, type ITaskThreadsPost, type ITaskThreadsPostLog, type ITaskThreadsPostWorkflowInteract, type ITaskWorkflow, type ITaskWorkflowGroup, type ITaskWorkflowLog, type ITaskWorkflowLogDetail, type ITaskWorkflowLogNodeDetail, type ITaskWorkflowNodeInstagram, type ITaskWorkflowNodeThreads, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryChangeInfoStoreIdxELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingPost, type IToken, type ITokenJsonGroup, type ITokenJsonManager, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewChildBlogCategorySystemDto, type IViewCountNumberStatusBlogPostDto, type IViewCountNumberStatusReportManager, type IViewDeviceByPCPhone, type IViewViewableBlogPostDto, type IVisitorLog, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImageVideoVoiceDetailInstagramDto, type ImportAccountCHPlayICloudRequestDto, type ImportAccountCanvaRequestDto, type ImportAccountDriveRequestDto, type ImportAccountVPNRequestDto, type ImportAccountVPSDto, type ImportDto, type ImportEmailRawManagerDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportManagerWorkRequestDto, type ImportSheetWorkDto, type ImportSheetWorkRequestDto, index$f as Lark, type ListManualContentSocialChildrenDto, type ListManualContentSocialInstagramChildrenDto, type ListManualContentSocialThreadsChildrenDto, type LoadDataChangeInfoInstagramAccountRawDto, type LoadDataChangeInfoThreadsAccountRawDto, type LoadInfoByDeviceSheetToolDto, type LoadInfoSheetToolDto, type NotiUserStatus, type OverviewSheetsToolDto, PCLogTimeRange, index$a as Permission, type ReplaceAccountVSPDto, type ResultImportAccountCHPlayICloudDto, type ResultImportAccountCanvaDto, type ResultImportAccountDriveDto, type ResultImportAccountVPNDto, type ResultImportEmailRawManagerDto, type ResultImportInstagramAccountRawDto, type ResultImportManagerWorkDto, type ResultImportSheetWorkDto, type ResultSyncSheetPostImageVideoVoiceCanvaInstagramDto, index$3 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialInstagramForRunDto, type StoreTaskManualContentSocialThreadsForRunDto, type TActionRole, type TCompare, type TFilter, type TargetAccountInstagramDto, index$4 as Tool, type TotalNumberTaskInstagramChangeInfoDto, type TotalNumberTaskInstagramPostDto, type TotalNumberTaskThreadsChangeInfoDto, type TotalNumberTaskThreadsPostDto, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateArchiveChildCategorySystemDto, type UpdateBlogCategorySystemDto, type UpdateBlogDto, type UpdateBlogPostDto, type UpdateBlogsCategoryDto, type UpdateChildCategoryOrderSystemDto, type UpdateChildCategorySystemDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateEmailRawManagerDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCBrowserDto, type UpdatePCPhoneDto, type UpdateProxyDto, type UpdateProxyListForEmailDto, type UpdateReportManagerDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskThreadsChangeInfoDto, type UpdateTaskWorkflowDto, type UpdateTaskWorkflowGroupDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateTokenJsonGroupDto, type UpdateTokenJsonManagerDto, type UpdateUserDto, type UpsertManualContentSocialInstagramChildrenDto, type UpsertManualContentSocialInstagramChildrenItemPostDto, type UpsertManualContentSocialInstagramDto, type UpsertManualContentSocialThreadsChildrenDto, type UpsertManualContentSocialThreadsChildrenItemPostDto, type UpsertManualContentSocialThreadsDto, type ViewAsyncManualContentSocialInstagramDto, type ViewAsyncManualContentSocialThreadsDto, type ViewAutoSyncInformationManualContentSocialInstagramDto, type ViewAutoSyncInformationManualContentThreadsDto, type ViewDetailDeviceDto, type ViewDetailFolderInstagramDto, type ViewDetailFolderThreadsDto, type ViewDetailSheetsToolDto, type ViewDetailTaskInstagramChangeInfoDto, type ViewDetailTaskInstagramChangeInfoLogDto, type ViewDetailTaskInstagramChangeInfoWorkflowInteractDto, type ViewDetailTaskInstagramPostDto, type ViewDetailTaskInstagramPostLogDto, type ViewDetailTaskInstagramPostWorkflowInteractDto, type ViewDetailTaskThreadsChangeInfoDto, type ViewDetailTaskThreadsChangeInfoLogDto, type ViewDetailTaskThreadsChangeInfoWorkflowInteractDto, type ViewDetailTaskThreadsPostDto, type ViewDetailTaskThreadsPostLogDto, type ViewDetailTaskThreadsPostWorkflowInteractDto, type ViewListGPMProfileDto, type ViewPCBrowserDetailDto, type ViewSettingInstagramOfAccountDto, index$5 as Workspace };
22103
+ export { index$h as AI, type AccountAICreateDto, type AccountAIImportDto, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialInstagramChildrenDto, type AddBulkManualContentSocialThreadsChildrenDto, type AddCommentReportManagerDto, type AddManualContentSocialInstagramChildrenDto, type AddManualContentSocialThreadsChildrenDto, type AddProxyManualDto, type AddSheetToolToPCBrowserDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$8 as Auth, index$i as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, type AvatarCoverDetailInstagramDto, index$g as Base, type BulkUpdateReportManagerDto, type BulkUpdateStatusEmailManagerDto, type CanvaAvatarDetailInstagramDto, type CanvaCoverDetailInstagramDto, type CanvaDetailInstagramDto, type CheckSendMessageLark, index$9 as Common, type CountTotalNumberTaskAIAvatarCoverCanvaInstagramDto, type CountTotalNumberTaskAIImageVideoVoiceCanvaInstagramDto, type CreateAccountEmailDto, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogCategorySystemDto, type CreateBlogDto, type CreateBlogPostDto, type CreateBlogsCategoryDto, type CreateCommentBlogPostDto, type CreateDepartmentDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIInstagramDto, type CreateManagerImageAIThreadsDto, type CreateManagerWorkDto, type CreateModuleWebSiteDto, type CreatePCBrowserDto, type CreatePCPhoneDto, type CreateProxyAddToEmailDto, type CreateProxyDto, type CreateReportManagerDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskThreadsChangeInfoDto, type CreateTaskWorkflowDto, type CreateTaskWorkflowGroupDto, type CreateTasksJobDto, type CreateTeamDto, type CreateTokenJsonGroupDto, type CreateTokenJsonManagerDto, type CreateUserDto, type DataActionChangeInfoInstagramAccountRawDto, type DataActionChangeInfoThreadsAccountRawDto, type DataImportAccountCHPlayICloudDto, type DataImportAccountCanvaDto, type DataImportAccountDriveDto, type DataImportAccountVPNDto, type DataImportEmailRawManagerDto, type DataImportInstagramAccountRawDto, type DataImportManagerWorkDto, type DataImportSheetWorkDto, type DataPCBrowserAndSheetPostAvatarCoverCanvaInstagramDto, type DataPCBrowserAndSheetPostImageVideoVoiceCanvaInstagramDto, type DataRefreshDataSheetToolImageVideoVoiceCanvaInstagramDto, type DataUpsertAvatarCoverCanvaInstagramDto, type DataUpsertImageVideoVoiceCanvaInstagramDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIVersionGPT, EAIVersionPerplexity, EAccountAIContentChannelStatus, EAccountAIModelApiStatus, EAccountAIModelBrowserPlan, EAccountAIModelCreditStatus, EAccountAIModelLocation, EAccountAIModelStatus, EAccountAIModelType, EAccountAIModelTypeContent, EAccountAISync, EAccountAITypeEmail, EAccountDriveType, EAccountGPTModel, EAccountGeminiModel, EAccountInstagramTypeChangeInfo, EAccountThreadsTypeChangeInfo, EAccountTypeUseDrive, EBlockSource, EBlockType, EBlogCategoryState, EBlogPostState, EBlogPostStatus, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFilterOptionAccountAI, EFilterOptionAccountCHPlayICloud, EFilterOptionAccountCanva, EFilterOptionAccountDrive, EFilterOptionAccountVPN, EFilterOptionDepartment, EFilterOptionDevice, EFilterOptionRole, EFilterOptionTeam, EFilterOptionUser, EGender, EHaveData, EHistorySyncSheetPostStatus, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIInstagramFolder, EManagerImageAIInstagramLog, EManagerImageAIInstagramModel, EManagerImageAIThreadsFolder, EManagerImageAIThreadsLog, EManagerImageAIThreadsModel, EManualContentSocialInstagramStatusPost, EManualContentSocialInstagramStatusTask, EManualContentSocialInstagramTypePost, EManualContentSocialThreadsStatusPost, EManualContentSocialThreadsStatusTask, EManualContentSocialThreadsTypePost, EMediaTypeLibraryPost, EModelImageVideo, ENotificationType, EObjectName, EPCBrowserSheetModule, EPCLogLevel, EPCLogSource, EPositionUser, EPriority, EProcessingEmailManager, ERatioImage, EReportManagerAssignStatus, EReportManagerPriority, EReportManagerStatus, EReportManagerType, ERotationTokenJsonManager, EScreenResolution, ESendNotiStatusBlogPost, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRow, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusAddOnVPS, EStatusBlog, EStatusBrowserEmailManager, EStatusChangeInfo, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceKey, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusEmailLogin, EStatusEmailManager, EStatusEmailManagerChangeInfo, EStatusExecuteCommon, EStatusGenerate, EStatusImapApp, EStatusImportAccountSocial, EStatusImportEmailManager, EStatusInstagramImageLog, EStatusLark, EStatusMailWork, EStatusNode, EStatusPC, EStatusPCControl, EStatusPost, EStatusProfileEmailManager, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusRunTaskEmailManager, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusThreadsImageLog, EStatusTokenJsonManager, EStatusUse, EStatusUser, ESyncStatusAccountDrive, ETaskAIAvatarCoverCanvaStep, ETaskAIImageVideoVoiceCanvaStep, ETaskGenerateAIType, ETaskGenerateModelType, ETaskInstagramChangeInfoLogStatus, ETaskInstagramChangeInfoProcessStep, ETaskInstagramPostLogStatus, ETaskInstagramPostProcessStep, ETaskInstagramPostStyle, ETaskInstagramPostType, ETaskInstagramPostTypeRun, ETaskStatus, ETaskThreadsChangeInfoLogStatus, ETaskThreadsChangeInfoProcessStep, ETaskThreadsPostLogStatus, ETaskThreadsPostProcessStep, ETaskThreadsPostStyle, ETaskThreadsPostType, ETaskThreadsPostTypeRun, ETaskWorkflowNodeCategory, ETaskWorkflowNodeInstagram, ETaskWorkflowNodeThreads, ETaskWorkflowRunStatus, ETaskWorkflowStatus, ETaskWorkflowTypeNode, ETimeFilter, ETimeRangeNotifiReportManager, ETimeZone, ETokenJsonManagerHealth, EToolName, ETypeAccountInstagramSetting, ETypeAccountThreadsSetting, ETypeAccountVPN, ETypeBrowser, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeEmailChangeInfo, ETypeEmailManager, ETypeExport, ETypeFileReportManager, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePaymentAccountVPN, ETypePcOS, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EVPSCore, EVPSExtension, EVPSOs, EVPSRam, EVPSStatus, EVPSStatusConnection, EVPSStatusGpmLoginEmail, EVPSStatusReplace, EVPSStatusRestart, EVPSTimeRestart, EViewedReportManager, EVisibleTeamBlogCategory, EYesNo, type EditStatusImageItemInstagramDto, type EditStatusImageItemThreadsDto, type EditStatusManualContentSocialInstagramChildrenItemPost, type EditStatusManualContentSocialThreadsChildrenItemPost, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIGoogleDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountEmailManagerDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogCategorySystemDto, type FilterBlogDto, type FilterBlogPostDto, type FilterBlogViewHistoryDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, 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 FilterInstagramSettingPostDto, type FilterIpAccessDto, type FilterIpBlacklistDto, type FilterIpWhitelistDto, type FilterLarkDto, type FilterManagerImageAIInstagramDto, type FilterManagerImageAIThreadsDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterManualContentSocialInstagramDto, type FilterManualContentSocialThreadsDto, type FilterPCBrowserDto, type FilterPCPhoneDto, type FilterPCPhoneLogDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterReportManagerDto, type FilterRoleDto, type FilterSheetToolForPCBrowserDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIAvatarCoverCanvaInstagramDto, type FilterTaskAIContentDto, type FilterTaskAIImageVideoVoiceCanvaInstagramDto, type FilterTaskAIImageVideoVoiceCanvaThreadsDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramPostDto, type FilterTaskThreadsChangeInfoDto, type FilterTaskThreadsPostDto, type FilterTaskWorkflowDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportPostDto, type FilterThreadsSettingPostDto, type FilterTokenJsonManagerDto, type FilterUserDto, type FilterVisitorLogDto, type FindAccountAIContentChannelDto, type FindAccountAIDto, 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 FindBlogCategoryDetailSystemDto, type FindBlogCategoryDto, type FindBlogCategorySystemDto, type FindBlogDto, type FindBlogPostDto, type FindBlogViewHistoryDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindCommentBlogPostDto, type FindDepartmentDto, type FindDetailAccountAIDto, type FindDetailBlogPostDto, type FindDetailBySlugBlogPostDto, type FindDetailEmailRawManagerDto, type FindDetailReportManagerDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindEmailRawAddToVPSDto, type FindEmailRawManagerDto, type FindEmailRawManagerLogDetailDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingPostDto, type FindIpAccessDto, type FindIpBlacklistDto, type FindIpWhitelistDto, type FindLarkDto, type FindListAccountForManualContentSocialInstagramDto, type FindListAccountForManualContentSocialThreadsDto, type FindListVPSForEmailRawManagerDto, type FindManagerImageAIInstagramDto, type FindManagerImageAIThreadsDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindManualContentSocialInstagramDto, type FindManualContentSocialThreadsDto, type FindMemberForAddTeamDto, type FindModuleWebsiteDto, type FindMultiAccountAIContentDto, type FindNotiReportGroupedDto, type FindNotiReportManagerDto, type FindNotificationPermissionDto, 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 FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIAvatarCoverCanvaInstagramDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVideoVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVideoVoiceCanvaThreadsDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskThreadsChangeInfoDto, type FindOverViewTaskThreadsPostDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountAIChannelDto, type FindOverviewAccountAIDto, type FindOverviewAccountAIGoogleDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountEmailManagerDto, 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 FindOverviewManagerImageAIInstagramDto, type FindOverviewManagerImageAIThreadsDto, type FindOverviewManagerSheetDto, type FindOverviewManualContentSocialInstagramDto, type FindOverviewManualContentSocialThreadsDto, type FindOverviewPCBrowserDto, type FindOverviewPCPhoneDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryAutoSyncDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCBrowserDto, type FindPCPhoneDetail, type FindPCPhoneDto, type FindPCPhoneLogDto, type FindPcBrowserForPcViewScreenDto, type FindPcPhoneForViewScreenDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProcessAccountSocialOtpDto, type FindProcessChangeEmailDto, type FindProcessLoginDto, type FindProxyDto, type FindProxySelectionForEmailDto, type FindReplaceDeviceDto, type FindReportManagerAssignmentDto, type FindReportManagerCommentDto, type FindReportManagerDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetToolForPCBrowserDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTagsUserBlogPostDto, type FindTaskAIAvatarCoverCanvaInstagramDto, type FindTaskAIContentDto, type FindTaskAIImageVideoVoiceCanvaInstagramDto, type FindTaskAIImageVideoVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramPostDto, type FindTaskManualContentSocialInstagramDto, type FindTaskManualContentSocialThreadsDto, type FindTaskThreadsChangeInfoDto, type FindTaskThreadsPostDto, type FindTaskWorkflowDto, type FindTaskWorkflowGroupDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingPostDto, type FindTokenJsonGroupDto, type FindTokenJsonManagerDto, type FindUserDto, type FindViewBySlugBlogPostDto, type FindVisitorLogDto, index$2 as Forum, type IAccountAI, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentChannelNiche, type IAccountAIModelContent, type IAccountAIModelImageVideo, type IAccountAIModelVoice, type IAccountAIProxy, 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 IAccountVPSListJob, type IAccountVPSProvider, type IAccountVPSSocial, type IAccountVpsChange, type IAssignTeam, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogCategoryPermission, type IBlogCategorySystem, type IBlogComment, type IBlogDepartmentPermission, type IBlogPost, type IBlogPostPermission, type IBlogTeamPermission, type IBlogUserPermission, type IBlogViewHistory, type IBrowserGPM, 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 IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailRawManagerLog, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistorySyncSheetPost, type IHistoryTaskAIContent, type IIDriveE2Credentials, type IInboxAction, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramCheckpoint, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramEgoCheck, type IInstagramEndWorkflow, type IInstagramFeedSurf, type IInstagramFollowTarget, type IInstagramGesture, 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 IInstagramHumanDelay, type IInstagramInboxManager, type IInstagramMyNetworkInteract, type IInstagramMySettingsCollection, type IInstagramNavigation, type IInstagramNotificationBar, type IInstagramPostAfterEngagement, type IInstagramPostInteract, type IInstagramPreBlockAndBlock, type IInstagramProcessRequests, type IInstagramReelsSurfer, type IInstagramReplyComment, type IInstagramReplyMessage, 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 IInstagramSettingConfigBlock, type IInstagramSettingConfigEgoCheck, type IInstagramSettingConfigFeedSurf, type IInstagramSettingConfigFollowTarget, type IInstagramSettingConfigGesture, type IInstagramSettingConfigHumanDelay, type IInstagramSettingConfigInboxManager, type IInstagramSettingConfigMyNetwork, type IInstagramSettingConfigMySettings, type IInstagramSettingConfigNavigation, type IInstagramSettingConfigNotificationBar, type IInstagramSettingConfigPostAfterEngagement, type IInstagramSettingConfigPostInteract, type IInstagramSettingConfigProcessRequests, type IInstagramSettingConfigReelsSurfer, type IInstagramSettingConfigReplyComment, type IInstagramSettingConfigReplyMessage, type IInstagramSettingConfigStoryViewer, type IInstagramSettingConfigStrangerVisit, type IInstagramSettingConfigUnfollow, type IInstagramSettingPost, type IInstagramStoryViewer, type IInstagramStrangerProfileVisit, type IInstagramTaskSocialAutoPosts, type IInstagramUnfollow, type IIpAccess, type IIpBlacklist, type IIpWhitelist, type ILark, type ILarkTeam, type IMailWork, type IManagerImageAIInstagram, type IManagerImageAIInstagramFolderStore, type IManagerImageAIInstagramItemStore, type IManagerImageAIInstagramLog, type IManagerImageAIInstagramUserAttached, type IManagerImageAIThreads, type IManagerImageAIThreadsFolderStore, type IManagerImageAIThreadsItemStore, type IManagerImageAIThreadsLog, type IManagerImageAIThreadsUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentSocialInstagram, type IManualContentSocialInstagramChildren, type IManualContentSocialInstagramChildrenItemPost, type IManualContentSocialInstagramNiche, type IManualContentSocialInstagramRunTime, type IManualContentSocialThreads, type IManualContentSocialThreadsChildren, type IManualContentSocialThreadsChildrenItemPost, type IManualContentSocialThreadsNiche, type IManualContentSocialThreadsRunTime, type IModuleWebSite, type INotificationViewAllPermission, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPCBrowser, type IPCBrowserLog, type IPCBrowserLogELS, type IPCBrowserLogStoreIdxELS, type IPCBrowserSheetTool, type IPCPhone, type IPCPhoneDeviceConnect, type IPCPhoneLog, type IPCPhoneLogELS, type IPCPhoneLogStoreIdxELS, type IPreFollowHomeFeed, type IPreFollowProfileTab, type IPreFollowReels, type IPreFollowSearch, type IPreFollowSourceActions, type IProxy, type IReplyCommentReportSpam, type IReplyCommentRound, type IReplyMessageRound, type IReportManager, type IReportManagerAssignment, type IReportManagerComment, type IReportManagerNotification, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISheetImportExportSocial, type ISheetToolSheetInfo, type ISheetToolUsername, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISheetsToolHistory, type ISocialTaskManager, type ISystemNotification, type ITag, type ITaskAIAccountAI, type ITaskAIAccountCanva, type ITaskAIAccountDrive, type ITaskAIAccountProxy, type ITaskAIAvatarCoverCanvaInstagramStep, type ITaskAIAvatarCoverInstagram, type ITaskAIAvatarCoverThreads, type ITaskAICanvaInstagramStep, type ITaskAIContent, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIImageVideoVoiceInstagramStep, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoLog, type ITaskInstagramChangeInfoWorkflowInteract, type ITaskInstagramPost, type ITaskInstagramPostLog, type ITaskInstagramPostWorkflowInteract, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocialInstagram, type ITaskManualContentSocialThreads, type ITaskThreadsChangeInfo, type ITaskThreadsChangeInfoLog, type ITaskThreadsChangeInfoWorkflowInteract, type ITaskThreadsPost, type ITaskThreadsPostLog, type ITaskThreadsPostWorkflowInteract, type ITaskWorkflow, type ITaskWorkflowGroup, type ITaskWorkflowLog, type ITaskWorkflowLogDetail, type ITaskWorkflowLogNodeDetail, type ITaskWorkflowNodeInstagram, type ITaskWorkflowNodeThreads, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryChangeInfoStoreIdxELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingPost, type IToken, type ITokenJsonGroup, type ITokenJsonManager, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewChildBlogCategorySystemDto, type IViewCountNumberStatusBlogPostDto, type IViewCountNumberStatusReportManager, type IViewDeviceByPCPhone, type IViewViewableBlogPostDto, type IVisitorLog, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImageVideoVoiceDetailInstagramDto, type ImportAccountCHPlayICloudRequestDto, type ImportAccountCanvaRequestDto, type ImportAccountDriveRequestDto, type ImportAccountVPNRequestDto, type ImportAccountVPSDto, type ImportDto, type ImportEmailRawManagerDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportManagerWorkRequestDto, type ImportSheetWorkDto, type ImportSheetWorkRequestDto, index$f as Lark, type ListManualContentSocialChildrenDto, type ListManualContentSocialInstagramChildrenDto, type ListManualContentSocialThreadsChildrenDto, type LoadDataChangeInfoInstagramAccountRawDto, type LoadDataChangeInfoThreadsAccountRawDto, type LoadInfoByDeviceSheetToolDto, type LoadInfoSheetToolDto, type NotiUserStatus, type OverviewSheetsToolDto, PCLogTimeRange, index$a as Permission, type ReplaceAccountVSPDto, type ResultImportAccountCHPlayICloudDto, type ResultImportAccountCanvaDto, type ResultImportAccountDriveDto, type ResultImportAccountVPNDto, type ResultImportEmailRawManagerDto, type ResultImportInstagramAccountRawDto, type ResultImportManagerWorkDto, type ResultImportSheetWorkDto, type ResultSyncSheetPostImageVideoVoiceCanvaInstagramDto, index$3 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialInstagramForRunDto, type StoreTaskManualContentSocialThreadsForRunDto, type TActionRole, type TCompare, type TFilter, type TargetAccountInstagramDto, index$4 as Tool, type TotalNumberTaskInstagramChangeInfoDto, type TotalNumberTaskInstagramPostDto, type TotalNumberTaskThreadsChangeInfoDto, type TotalNumberTaskThreadsPostDto, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateArchiveChildCategorySystemDto, type UpdateBlogCategorySystemDto, type UpdateBlogDto, type UpdateBlogPostDto, type UpdateBlogsCategoryDto, type UpdateChildCategoryOrderSystemDto, type UpdateChildCategorySystemDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateEmailRawManagerDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCBrowserDto, type UpdatePCPhoneDto, type UpdateProxyDto, type UpdateProxyListForEmailDto, type UpdateReportManagerDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskThreadsChangeInfoDto, type UpdateTaskWorkflowDto, type UpdateTaskWorkflowGroupDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateTokenJsonGroupDto, type UpdateTokenJsonManagerDto, type UpdateUserDto, type UpsertManualContentSocialInstagramChildrenDto, type UpsertManualContentSocialInstagramChildrenItemPostDto, type UpsertManualContentSocialInstagramDto, type UpsertManualContentSocialThreadsChildrenDto, type UpsertManualContentSocialThreadsChildrenItemPostDto, type UpsertManualContentSocialThreadsDto, type ViewAsyncManualContentSocialInstagramDto, type ViewAsyncManualContentSocialThreadsDto, type ViewAutoSyncInformationManualContentSocialInstagramDto, type ViewAutoSyncInformationManualContentThreadsDto, type ViewDetailDeviceDto, type ViewDetailFolderInstagramDto, type ViewDetailFolderThreadsDto, type ViewDetailSheetsToolDto, type ViewDetailTaskInstagramChangeInfoDto, type ViewDetailTaskInstagramChangeInfoLogDto, type ViewDetailTaskInstagramChangeInfoWorkflowInteractDto, type ViewDetailTaskInstagramPostDto, type ViewDetailTaskInstagramPostLogDto, type ViewDetailTaskInstagramPostWorkflowInteractDto, type ViewDetailTaskThreadsChangeInfoDto, type ViewDetailTaskThreadsChangeInfoLogDto, type ViewDetailTaskThreadsChangeInfoWorkflowInteractDto, type ViewDetailTaskThreadsPostDto, type ViewDetailTaskThreadsPostLogDto, type ViewDetailTaskThreadsPostWorkflowInteractDto, type ViewListGPMProfileDto, type ViewPCBrowserDetailDto, type ViewSettingInstagramOfAccountDto, index$5 as Workspace };
package/dist/index.js CHANGED
@@ -64,6 +64,7 @@ __export(index_exports, {
64
64
  EFilterOptionAccountDrive: () => EFilterOptionAccountDrive,
65
65
  EFilterOptionAccountVPN: () => EFilterOptionAccountVPN,
66
66
  EFilterOptionDepartment: () => EFilterOptionDepartment,
67
+ EFilterOptionDevice: () => EFilterOptionDevice,
67
68
  EFilterOptionRole: () => EFilterOptionRole,
68
69
  EFilterOptionTeam: () => EFilterOptionTeam,
69
70
  EFilterOptionUser: () => EFilterOptionUser,
@@ -801,6 +802,7 @@ __export(enums_exports, {
801
802
  EDeviceResetTime: () => EDeviceResetTime,
802
803
  EEmailTagType: () => EEmailTagType,
803
804
  EFile: () => EFile,
805
+ EFilterOptionDevice: () => EFilterOptionDevice,
804
806
  EGender: () => EGender,
805
807
  EHaveData: () => EHaveData,
806
808
  EInputTypeFilter: () => EInputTypeFilter,
@@ -1840,6 +1842,7 @@ var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
1840
1842
  // src/enums/types/index.ts
1841
1843
  var types_exports = {};
1842
1844
  __export(types_exports, {
1845
+ EFilterOptionDevice: () => EFilterOptionDevice,
1843
1846
  ETypeAccountInstagramSetting: () => ETypeAccountInstagramSetting,
1844
1847
  ETypeAccountVPN: () => ETypeAccountVPN,
1845
1848
  ETypeBrowser: () => ETypeBrowser,
@@ -1944,6 +1947,22 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
1944
1947
  ETypeDeviceOS2["Android"] = "Android";
1945
1948
  return ETypeDeviceOS2;
1946
1949
  })(ETypeDeviceOS || {});
1950
+ var EFilterOptionDevice = /* @__PURE__ */ ((EFilterOptionDevice2) => {
1951
+ EFilterOptionDevice2["DeviceOldKey"] = "deviceOldKey";
1952
+ EFilterOptionDevice2["DeviceNewKey"] = "deviceNewKey";
1953
+ EFilterOptionDevice2["Name"] = "name";
1954
+ EFilterOptionDevice2["PCName"] = "pcName";
1955
+ EFilterOptionDevice2["HubConnection"] = "hubConnection";
1956
+ EFilterOptionDevice2["CreatedBy"] = "createdBy";
1957
+ EFilterOptionDevice2["DepartmentCreator"] = "departmentCreator";
1958
+ EFilterOptionDevice2["TeamCreator"] = "teamCreator";
1959
+ EFilterOptionDevice2["LeaderCreator"] = "leaderCreator";
1960
+ EFilterOptionDevice2["UserAssign"] = "userAssign";
1961
+ EFilterOptionDevice2["DepartmentAssign"] = "departmentAssign";
1962
+ EFilterOptionDevice2["TeamAssign"] = "teamAssign";
1963
+ EFilterOptionDevice2["LeaderAssign"] = "leaderAssign";
1964
+ return EFilterOptionDevice2;
1965
+ })(EFilterOptionDevice || {});
1947
1966
 
1948
1967
  // src/enums/types/ETypeExport.enum.ts
1949
1968
  var ETypeExport = /* @__PURE__ */ ((ETypeExport2) => {
@@ -3809,6 +3828,7 @@ __export(interfaces_exports, {
3809
3828
  EFilterOptionAccountDrive,
3810
3829
  EFilterOptionAccountVPN,
3811
3830
  EFilterOptionDepartment,
3831
+ EFilterOptionDevice,
3812
3832
  EFilterOptionRole,
3813
3833
  EFilterOptionTeam,
3814
3834
  EFilterOptionUser,
package/dist/index.mjs CHANGED
@@ -527,6 +527,7 @@ __export(enums_exports, {
527
527
  EDeviceResetTime: () => EDeviceResetTime,
528
528
  EEmailTagType: () => EEmailTagType,
529
529
  EFile: () => EFile,
530
+ EFilterOptionDevice: () => EFilterOptionDevice,
530
531
  EGender: () => EGender,
531
532
  EHaveData: () => EHaveData,
532
533
  EInputTypeFilter: () => EInputTypeFilter,
@@ -1566,6 +1567,7 @@ var EStatusTaskJobGroup = /* @__PURE__ */ ((EStatusTaskJobGroup2) => {
1566
1567
  // src/enums/types/index.ts
1567
1568
  var types_exports = {};
1568
1569
  __export(types_exports, {
1570
+ EFilterOptionDevice: () => EFilterOptionDevice,
1569
1571
  ETypeAccountInstagramSetting: () => ETypeAccountInstagramSetting,
1570
1572
  ETypeAccountVPN: () => ETypeAccountVPN,
1571
1573
  ETypeBrowser: () => ETypeBrowser,
@@ -1670,6 +1672,22 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
1670
1672
  ETypeDeviceOS2["Android"] = "Android";
1671
1673
  return ETypeDeviceOS2;
1672
1674
  })(ETypeDeviceOS || {});
1675
+ var EFilterOptionDevice = /* @__PURE__ */ ((EFilterOptionDevice2) => {
1676
+ EFilterOptionDevice2["DeviceOldKey"] = "deviceOldKey";
1677
+ EFilterOptionDevice2["DeviceNewKey"] = "deviceNewKey";
1678
+ EFilterOptionDevice2["Name"] = "name";
1679
+ EFilterOptionDevice2["PCName"] = "pcName";
1680
+ EFilterOptionDevice2["HubConnection"] = "hubConnection";
1681
+ EFilterOptionDevice2["CreatedBy"] = "createdBy";
1682
+ EFilterOptionDevice2["DepartmentCreator"] = "departmentCreator";
1683
+ EFilterOptionDevice2["TeamCreator"] = "teamCreator";
1684
+ EFilterOptionDevice2["LeaderCreator"] = "leaderCreator";
1685
+ EFilterOptionDevice2["UserAssign"] = "userAssign";
1686
+ EFilterOptionDevice2["DepartmentAssign"] = "departmentAssign";
1687
+ EFilterOptionDevice2["TeamAssign"] = "teamAssign";
1688
+ EFilterOptionDevice2["LeaderAssign"] = "leaderAssign";
1689
+ return EFilterOptionDevice2;
1690
+ })(EFilterOptionDevice || {});
1673
1691
 
1674
1692
  // src/enums/types/ETypeExport.enum.ts
1675
1693
  var ETypeExport = /* @__PURE__ */ ((ETypeExport2) => {
@@ -3534,6 +3552,7 @@ export {
3534
3552
  EFilterOptionAccountDrive,
3535
3553
  EFilterOptionAccountVPN,
3536
3554
  EFilterOptionDepartment,
3555
+ EFilterOptionDevice,
3537
3556
  EFilterOptionRole,
3538
3557
  EFilterOptionTeam,
3539
3558
  EFilterOptionUser,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.373",
3
+ "version": "6.6.376",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",