automation-lib 5.5.12 → 5.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2257,34 +2257,88 @@ declare namespace index$8 {
2257
2257
  export type { index$8_IAuthLogin as IAuthLogin, index$8_IAuthResetPassword as IAuthResetPassword, index$8_IOtpConfirm as IOtpConfirm, index$8_IOtpCreateSession as IOtpCreateSession, index$8_IOtpSend as IOtpSend, index$8_IToken as IToken };
2258
2258
  }
2259
2259
 
2260
- interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel {
2261
- ideaId: string;
2262
- nicheId: string;
2263
- typeManagerWork: ETypeManagerWorkClassify;
2260
+ interface ApplyTimeDashboardDto {
2261
+ /**
2262
+ * Time aggregation type for dashboard data
2263
+ *
2264
+ * @description Determines how the data will be grouped and aggregated:
2265
+ * - 'Daily': Groups data by day (max 90 days range)
2266
+ * - 'Weekly': Groups data by week (max 210 days range)
2267
+ * - 'Monthly': Groups data by month (max 900 days range)
2268
+ * - 'Quarterly': Groups data by quarter (max 2700 days range)
2269
+ * - 'Yearly': Groups data by year (max 10950 days range)
2270
+ */
2271
+ typeTime: 'Daily' | 'Weekly' | 'Monthly' | 'Quarterly' | 'Yearly';
2272
+ timeFrom: Date;
2273
+ timeTo: Date;
2274
+ }
2275
+
2276
+ interface ISettingAccountSocialDto {
2264
2277
  accountId: string;
2265
- postNews: number;
2266
- postReel: number;
2267
- postStory: number;
2268
- postSquare: number;
2269
- followers: number;
2270
- followings: number;
2278
+ username: string;
2279
+ groupName: string;
2280
+ hasSetting: boolean;
2281
+ statusAccount: EStatusAccountSocialRaw;
2282
+ isStart: boolean;
2283
+ }
2284
+ interface IFilterSettingAccountSocialFindForSettingDto {
2285
+ accountStatus: EStatusAccountSocialRaw[];
2286
+ accountGroup: string[];
2287
+ hasSetting: EHaveData[];
2288
+ startStop: EStartStop[];
2271
2289
  }
2272
2290
 
2273
- interface IPC extends IBaseModel, IAssignUser, ITrackingModel {
2291
+ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
2292
+ }
2293
+ interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
2294
+ }
2295
+ interface FindAccountSocialGroupDto extends IFindBaseDto {
2296
+ typeSocial: ETypeSocial;
2274
2297
  name: string;
2275
- alias: string;
2276
- machineGUID: string;
2277
- ip: string;
2278
- maxDevice: number;
2279
- os: string;
2280
- status: EStatusPC;
2281
- statusControl: EStatusPCControl;
2282
- timeStatusChange: Date;
2283
- note: string;
2284
- startStop: EStartStop;
2285
- isNotifyConnection: boolean;
2286
- isNotifyDeviceConnection: boolean;
2287
- listEmailNotify: string[];
2298
+ description: string;
2299
+ numberAccounts: number;
2300
+ }
2301
+ interface FindAccountSocialGroupPopupSocialDto {
2302
+ id: string;
2303
+ idea: string;
2304
+ niche: string;
2305
+ type: ETypeManagerWorkClassify;
2306
+ pcName: string;
2307
+ deviceInfo: {
2308
+ id: string;
2309
+ deviceKey: string;
2310
+ deviceName: string;
2311
+ deviceOS: ETypeDeviceOS;
2312
+ deviceModel: string;
2313
+ };
2314
+ accountInfo: {
2315
+ id: string;
2316
+ accountID: string;
2317
+ username: string;
2318
+ fullname: string;
2319
+ email: string;
2320
+ numberFollower: number;
2321
+ numberFollowing: number;
2322
+ statusLoginAppClone: EStatusAccountSocialLogin;
2323
+ status: EStatusAccountSocialRaw;
2324
+ typeAppClone: string;
2325
+ nameAppClone: string;
2326
+ nameAppCloneSocial: string;
2327
+ folderNameImage: string;
2328
+ };
2329
+ createdAt: Date;
2330
+ updatedAt: Date;
2331
+ createdBy: string;
2332
+ updatedBy: string;
2333
+ }
2334
+ interface FilterAccountSocialGroupDto extends IFilterBaseDto {
2335
+ name: string;
2336
+ }
2337
+
2338
+ interface IAccountSocialGroup extends IBaseModel, ITrackingModel {
2339
+ typeSocial: ETypeSocial;
2340
+ name: string;
2341
+ description: string;
2288
2342
  }
2289
2343
 
2290
2344
  interface IDataUser {
@@ -2353,14 +2407,21 @@ type index$6_AddToDeviceAccountVPNDto = AddToDeviceAccountVPNDto;
2353
2407
  type index$6_AddToDeviceProxyDto = AddToDeviceProxyDto;
2354
2408
  type index$6_ApplyAutoFillDeviceDto = ApplyAutoFillDeviceDto;
2355
2409
  type index$6_ApplyReplaceDeviceDto = ApplyReplaceDeviceDto;
2410
+ type index$6_ApplyTimeDashboardDto = ApplyTimeDashboardDto;
2356
2411
  type index$6_AutoFillAssignedMemberInstagramAccountRawDto = AutoFillAssignedMemberInstagramAccountRawDto;
2412
+ type index$6_AutoFillAssignedMemberThreadsAccountRawDto = AutoFillAssignedMemberThreadsAccountRawDto;
2357
2413
  type index$6_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
2358
2414
  type index$6_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
2359
2415
  type index$6_AutoFillOverviewTaskInstagramBlockUserDto = AutoFillOverviewTaskInstagramBlockUserDto;
2416
+ type index$6_AutoFillOverviewThreadsAccountRawDto = AutoFillOverviewThreadsAccountRawDto;
2360
2417
  type index$6_AutoFillTaskInstagramBlockUserDto = AutoFillTaskInstagramBlockUserDto;
2418
+ type index$6_AutoFillThreadsAccountRawDto = AutoFillThreadsAccountRawDto;
2361
2419
  type index$6_ChangeInfoInstagramAccountRawDto = ChangeInfoInstagramAccountRawDto;
2362
2420
  type index$6_CheckSendMessageLark = CheckSendMessageLark;
2421
+ type index$6_CreateAccountSocialGroupDto = CreateAccountSocialGroupDto;
2363
2422
  type index$6_CreateAccountVPSDto = CreateAccountVPSDto;
2423
+ type index$6_CreateBlogDto = CreateBlogDto;
2424
+ type index$6_CreateBlogsCategoryDto = CreateBlogsCategoryDto;
2364
2425
  type index$6_CreateDepartmentDto = CreateDepartmentDto;
2365
2426
  type index$6_CreateInstagramSettingInteractFollowDto = CreateInstagramSettingInteractFollowDto;
2366
2427
  type index$6_CreateInstagramSettingInteractReplyCommentDto = CreateInstagramSettingInteractReplyCommentDto;
@@ -2369,6 +2430,7 @@ type index$6_CreateInstagramSettingInteractUnFollowDto = CreateInstagramSettingI
2369
2430
  type index$6_CreateInstagramSettingPostDto = CreateInstagramSettingPostDto;
2370
2431
  type index$6_CreateLarkDto = CreateLarkDto;
2371
2432
  type index$6_CreateManagerImageAIDto = CreateManagerImageAIDto;
2433
+ type index$6_CreateManagerWorkDto = CreateManagerWorkDto;
2372
2434
  type index$6_CreateProxyDto = CreateProxyDto;
2373
2435
  type index$6_CreateRoleDto = CreateRoleDto;
2374
2436
  type index$6_CreateSheetToolDto = CreateSheetToolDto;
@@ -2384,6 +2446,7 @@ type index$6_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
2384
2446
  type index$6_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
2385
2447
  type index$6_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
2386
2448
  type index$6_CreateTaskThreadsReplyMessageDto = CreateTaskThreadsReplyMessageDto;
2449
+ type index$6_CreateTasksJobDto = CreateTasksJobDto;
2387
2450
  type index$6_CreateTeamDto = CreateTeamDto;
2388
2451
  type index$6_CreateUserDto = CreateUserDto;
2389
2452
  type index$6_DataImportInstagramAccountRawDto = DataImportInstagramAccountRawDto;
@@ -2435,14 +2498,20 @@ type index$6_FilterAccountCanvaDto = FilterAccountCanvaDto;
2435
2498
  type index$6_FilterAccountDriveDto = FilterAccountDriveDto;
2436
2499
  type index$6_FilterAccountEmailDto = FilterAccountEmailDto;
2437
2500
  type index$6_FilterAccountEmailManagerDto = FilterAccountEmailManagerDto;
2501
+ type index$6_FilterAccountSocialGroupDto = FilterAccountSocialGroupDto;
2438
2502
  type index$6_FilterAccountVPNDto = FilterAccountVPNDto;
2439
2503
  type index$6_FilterAccountVPSDto = FilterAccountVPSDto;
2440
2504
  type index$6_FilterAccountVPSGroupDto = FilterAccountVPSGroupDto;
2505
+ type index$6_FilterBlogCategoryDto = FilterBlogCategoryDto;
2506
+ type index$6_FilterBlogDto = FilterBlogDto;
2507
+ type index$6_FilterCheckerAccountInstagramDashboardFollowerDto = FilterCheckerAccountInstagramDashboardFollowerDto;
2508
+ type index$6_FilterCheckerAccountThreadsDashboardFollowerDto = FilterCheckerAccountThreadsDashboardFollowerDto;
2441
2509
  type index$6_FilterDepartmentDto = FilterDepartmentDto;
2442
2510
  type index$6_FilterDeviceDto = FilterDeviceDto;
2443
2511
  type index$6_FilterDeviceLogDto = FilterDeviceLogDto;
2444
2512
  type index$6_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
2445
2513
  type index$6_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
2514
+ type index$6_FilterInstagramDashboardFollowerDto = FilterInstagramDashboardFollowerDto;
2446
2515
  type index$6_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
2447
2516
  type index$6_FilterInstagramHistoryChangeInfoDto = FilterInstagramHistoryChangeInfoDto;
2448
2517
  type index$6_FilterInstagramHistoryCreateNewDto = FilterInstagramHistoryCreateNewDto;
@@ -2469,8 +2538,11 @@ type index$6_FilterInstagramSettingUnFollowDto = FilterInstagramSettingUnFollowD
2469
2538
  type index$6_FilterLarkDto = FilterLarkDto;
2470
2539
  type index$6_FilterManagerImageAIDto = FilterManagerImageAIDto;
2471
2540
  type index$6_FilterManagerSheetDto = FilterManagerSheetDto;
2541
+ type index$6_FilterManagerWorkDto = FilterManagerWorkDto;
2472
2542
  type index$6_FilterManualContentSocialDto = FilterManualContentSocialDto;
2473
2543
  type index$6_FilterPCDto = FilterPCDto;
2544
+ type index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto = FilterPerformanceBreakdownInstagramDashboardFollowerDto;
2545
+ type index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto = FilterPerformanceBreakdownThreadsDashboardFollowerDto;
2474
2546
  type index$6_FilterProxyDto = FilterProxyDto;
2475
2547
  type index$6_FilterRoleDto = FilterRoleDto;
2476
2548
  type index$6_FilterSheetWorkCategoryDto = FilterSheetWorkCategoryDto;
@@ -2489,6 +2561,9 @@ type index$6_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
2489
2561
  type index$6_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
2490
2562
  type index$6_FilterTaskThreadsReplyMessageDto = FilterTaskThreadsReplyMessageDto;
2491
2563
  type index$6_FilterTeamDto = FilterTeamDto;
2564
+ type index$6_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
2565
+ type index$6_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
2566
+ type index$6_FilterThreadsDashboardFollowerDto = FilterThreadsDashboardFollowerDto;
2492
2567
  type index$6_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
2493
2568
  type index$6_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
2494
2569
  type index$6_FilterThreadsReportInteractReplyMessageDto = FilterThreadsReportInteractReplyMessageDto;
@@ -2504,17 +2579,27 @@ type index$6_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
2504
2579
  type index$6_FindAccountCanvaDto = FindAccountCanvaDto;
2505
2580
  type index$6_FindAccountDriveDto = FindAccountDriveDto;
2506
2581
  type index$6_FindAccountEmailDto = FindAccountEmailDto;
2582
+ type index$6_FindAccountForCheckerInstagramDashboard = FindAccountForCheckerInstagramDashboard;
2583
+ type index$6_FindAccountForCheckerThreadsDashboard = FindAccountForCheckerThreadsDashboard;
2584
+ type index$6_FindAccountSocialGroupDto = FindAccountSocialGroupDto;
2585
+ type index$6_FindAccountSocialGroupPopupSocialDto = FindAccountSocialGroupPopupSocialDto;
2507
2586
  type index$6_FindAccountVPNDto = FindAccountVPNDto;
2508
2587
  type index$6_FindAccountVPSDto = FindAccountVPSDto;
2509
2588
  type index$6_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
2510
2589
  type index$6_FindAccountVPSGroupPopupDto = FindAccountVPSGroupPopupDto;
2511
2590
  type index$6_FindAutoFillDeviceDto = FindAutoFillDeviceDto;
2591
+ type index$6_FindBlogCategoryDto = FindBlogCategoryDto;
2592
+ type index$6_FindBlogDto = FindBlogDto;
2593
+ type index$6_FindCheckerAccountInstagramDashboardFollowerDto = FindCheckerAccountInstagramDashboardFollowerDto;
2594
+ type index$6_FindCheckerAccountThreadsDashboardFollowerDto = FindCheckerAccountThreadsDashboardFollowerDto;
2512
2595
  type index$6_FindDepartmentDto = FindDepartmentDto;
2513
2596
  type index$6_FindDeviceAvailableForAddAccountVPNDto = FindDeviceAvailableForAddAccountVPNDto;
2514
2597
  type index$6_FindDeviceAvailableForAddCHPlayICloudDto = FindDeviceAvailableForAddCHPlayICloudDto;
2515
2598
  type index$6_FindDeviceAvailableForAddProxyDto = FindDeviceAvailableForAddProxyDto;
2516
2599
  type index$6_FindDeviceDto = FindDeviceDto;
2517
2600
  type index$6_FindDeviceLogDto = FindDeviceLogDto;
2601
+ type index$6_FindGrowthInstagramDashboardFollowerDto = FindGrowthInstagramDashboardFollowerDto;
2602
+ type index$6_FindGrowthThreadsDashboardFollowerDto = FindGrowthThreadsDashboardFollowerDto;
2518
2603
  type index$6_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto = FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto;
2519
2604
  type index$6_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
2520
2605
  type index$6_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
@@ -2531,6 +2616,7 @@ type index$6_FindLarkDto = FindLarkDto;
2531
2616
  type index$6_FindListAccountSocialForManualContentAdd = FindListAccountSocialForManualContentAdd;
2532
2617
  type index$6_FindManagerImageAIDto = FindManagerImageAIDto;
2533
2618
  type index$6_FindManagerSheetDto = FindManagerSheetDto;
2619
+ type index$6_FindManagerWorkDto = FindManagerWorkDto;
2534
2620
  type index$6_FindManualContentSocialDto = FindManualContentSocialDto;
2535
2621
  type index$6_FindMemberForAddTeamDto = FindMemberForAddTeamDto;
2536
2622
  type index$6_FindOverViewDepartmentDto = FindOverViewDepartmentDto;
@@ -2564,6 +2650,8 @@ type index$6_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto
2564
2650
  type index$6_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
2565
2651
  type index$6_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
2566
2652
  type index$6_FindOverViewTaskThreadsReplyMessageDto = FindOverViewTaskThreadsReplyMessageDto;
2653
+ type index$6_FindOverViewThreadsAccountDto = FindOverViewThreadsAccountDto;
2654
+ type index$6_FindOverViewThreadsAccountRowDto = FindOverViewThreadsAccountRowDto;
2567
2655
  type index$6_FindOverViewThreadsReportInteractFollowDto = FindOverViewThreadsReportInteractFollowDto;
2568
2656
  type index$6_FindOverViewThreadsReportInteractReplyCommentDto = FindOverViewThreadsReportInteractReplyCommentDto;
2569
2657
  type index$6_FindOverViewThreadsReportInteractReplyMessageDto = FindOverViewThreadsReportInteractReplyMessageDto;
@@ -2586,6 +2674,7 @@ type index$6_FindOverviewDeviceDetailDto = FindOverviewDeviceDetailDto;
2586
2674
  type index$6_FindOverviewDeviceLog = FindOverviewDeviceLog;
2587
2675
  type index$6_FindOverviewDeviceSocialMediaAccountDto = FindOverviewDeviceSocialMediaAccountDto;
2588
2676
  type index$6_FindOverviewDeviceSocialMediaActiveLockedDto = FindOverviewDeviceSocialMediaActiveLockedDto;
2677
+ type index$6_FindOverviewInstagramDashboardFollowerDto = FindOverviewInstagramDashboardFollowerDto;
2589
2678
  type index$6_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
2590
2679
  type index$6_FindOverviewInstagramHistoryChangeInfoDto = FindOverviewInstagramHistoryChangeInfoDto;
2591
2680
  type index$6_FindOverviewInstagramHistoryCreateNewDto = FindOverviewInstagramHistoryCreateNewDto;
@@ -2596,9 +2685,14 @@ type index$6_FindOverviewPCDto = FindOverviewPCDto;
2596
2685
  type index$6_FindOverviewProxyDto = FindOverviewProxyDto;
2597
2686
  type index$6_FindOverviewRoleDto = FindOverviewRoleDto;
2598
2687
  type index$6_FindOverviewTeamDto = FindOverviewTeamDto;
2688
+ type index$6_FindOverviewThreadsDashboardFollowerDto = FindOverviewThreadsDashboardFollowerDto;
2599
2689
  type index$6_FindOverviewUserDto = FindOverviewUserDto;
2600
2690
  type index$6_FindPCDetail = FindPCDetail;
2601
2691
  type index$6_FindPCDto = FindPCDto;
2692
+ type index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto = FindPerformanceBreakdownInstagramDashboardFollowerDto;
2693
+ type index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto = FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto;
2694
+ type index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto = FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto;
2695
+ type index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto = FindPerformanceBreakdownThreadsDashboardFollowerDto;
2602
2696
  type index$6_FindProxyDto = FindProxyDto;
2603
2697
  type index$6_FindReplaceDeviceDto = FindReplaceDeviceDto;
2604
2698
  type index$6_FindRoleDetailDto = FindRoleDetailDto;
@@ -2620,7 +2714,10 @@ type index$6_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
2620
2714
  type index$6_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
2621
2715
  type index$6_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
2622
2716
  type index$6_FindTaskThreadsReplyMessageDto = FindTaskThreadsReplyMessageDto;
2717
+ type index$6_FindTasksJobDto = FindTasksJobDto;
2623
2718
  type index$6_FindTeamDto = FindTeamDto;
2719
+ type index$6_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
2720
+ type index$6_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
2624
2721
  type index$6_FindThreadsSettingInteractFollowDto = FindThreadsSettingInteractFollowDto;
2625
2722
  type index$6_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInteractReplyCommentDto;
2626
2723
  type index$6_FindThreadsSettingInteractReplyMessageDto = FindThreadsSettingInteractReplyMessageDto;
@@ -2676,6 +2773,7 @@ type index$6_IEmailProxy = IEmailProxy;
2676
2773
  type index$6_IEmailRawManager = IEmailRawManager;
2677
2774
  type index$6_IEmailVPS = IEmailVPS;
2678
2775
  type index$6_IFile = IFile;
2776
+ type index$6_IFilterSettingAccountSocialFindForSettingDto = IFilterSettingAccountSocialFindForSettingDto;
2679
2777
  type index$6_IFilterStore = IFilterStore;
2680
2778
  type index$6_IGPMProfile = IGPMProfile;
2681
2779
  type index$6_IHistoryTaskAIContent = IHistoryTaskAIContent;
@@ -2735,6 +2833,7 @@ type index$6_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFoll
2735
2833
  type index$6_IInstagramSettingPost = IInstagramSettingPost;
2736
2834
  type index$6_ILark = ILark;
2737
2835
  type index$6_ILarkTeam = ILarkTeam;
2836
+ type index$6_IMailWork = IMailWork;
2738
2837
  type index$6_IManagerImageAI = IManagerImageAI;
2739
2838
  type index$6_IManagerImageAIItemStore = IManagerImageAIItemStore;
2740
2839
  type index$6_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
@@ -2759,6 +2858,7 @@ type index$6_IProxy = IProxy;
2759
2858
  type index$6_IResponseLogin = IResponseLogin;
2760
2859
  type index$6_IRole = IRole;
2761
2860
  type index$6_IRoleFeature = IRoleFeature;
2861
+ type index$6_ISettingAccountSocialDto = ISettingAccountSocialDto;
2762
2862
  type index$6_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
2763
2863
  type index$6_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
2764
2864
  type index$6_ISettingTool = ISettingTool;
@@ -2824,6 +2924,14 @@ type index$6_ITeamMember = ITeamMember;
2824
2924
  type index$6_ITeamRole = ITeamRole;
2825
2925
  type index$6_IThreadsAccountRaw = IThreadsAccountRaw;
2826
2926
  type index$6_IThreadsDashboardFollower = IThreadsDashboardFollower;
2927
+ type index$6_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
2928
+ type index$6_IThreadsHistoryAutoSyncELS = IThreadsHistoryAutoSyncELS;
2929
+ type index$6_IThreadsHistoryChange = IThreadsHistoryChange;
2930
+ type index$6_IThreadsHistoryChangeInfoELS = IThreadsHistoryChangeInfoELS;
2931
+ type index$6_IThreadsHistoryCreateNew = IThreadsHistoryCreateNew;
2932
+ type index$6_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
2933
+ type index$6_IThreadsHistoryGroup = IThreadsHistoryGroup;
2934
+ type index$6_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
2827
2935
  type index$6_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
2828
2936
  type index$6_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
2829
2937
  type index$6_IThreadsReportInteractFollowStoreIdxELS = IThreadsReportInteractFollowStoreIdxELS;
@@ -2856,6 +2964,7 @@ type index$6_IVoiceSettingDelay = IVoiceSettingDelay;
2856
2964
  type index$6_IVoiceStores = IVoiceStores;
2857
2965
  type index$6_ImportAccountVPSDto = ImportAccountVPSDto;
2858
2966
  type index$6_ImportInstagramAccountRawDto = ImportInstagramAccountRawDto;
2967
+ type index$6_ImportManagerWorkDto = ImportManagerWorkDto;
2859
2968
  type index$6_ImportSheetWorkDto = ImportSheetWorkDto;
2860
2969
  type index$6_ListManualContentSocialChildrenDto = ListManualContentSocialChildrenDto;
2861
2970
  type index$6_LoadInfoUrlSheetToolDto = LoadInfoUrlSheetToolDto;
@@ -2864,9 +2973,13 @@ type index$6_PayloadUrlSheetToolDto = PayloadUrlSheetToolDto;
2864
2973
  type index$6_ReplaceAccountVSPDto = ReplaceAccountVSPDto;
2865
2974
  type index$6_ResultChangeInfoInstagramAccountRawDto = ResultChangeInfoInstagramAccountRawDto;
2866
2975
  type index$6_ResultImportInstagramAccountRawDto = ResultImportInstagramAccountRawDto;
2976
+ type index$6_StatisticsManagerWorkDto = StatisticsManagerWorkDto;
2867
2977
  type index$6_StatisticsSheetWorkDto = StatisticsSheetWorkDto;
2868
2978
  type index$6_StoreTaskManualContentSocialForRunDto = StoreTaskManualContentSocialForRunDto;
2979
+ type index$6_UpdateAccountSocialGroupDto = UpdateAccountSocialGroupDto;
2869
2980
  type index$6_UpdateAccountVPSDto = UpdateAccountVPSDto;
2981
+ type index$6_UpdateBlogDto = UpdateBlogDto;
2982
+ type index$6_UpdateBlogsCategoryDto = UpdateBlogsCategoryDto;
2870
2983
  type index$6_UpdateDepartmentDto = UpdateDepartmentDto;
2871
2984
  type index$6_UpdateDeviceDto = UpdateDeviceDto;
2872
2985
  type index$6_UpdateInstagramSettingInteractFollowDto = UpdateInstagramSettingInteractFollowDto;
@@ -2875,6 +2988,7 @@ type index$6_UpdateInstagramSettingInteractReplyMessageDto = UpdateInstagramSett
2875
2988
  type index$6_UpdateInstagramSettingInteractUnFollowDto = UpdateInstagramSettingInteractUnFollowDto;
2876
2989
  type index$6_UpdateInstagramSettingPostDto = UpdateInstagramSettingPostDto;
2877
2990
  type index$6_UpdateLarkDto = UpdateLarkDto;
2991
+ type index$6_UpdateManagerWorkDto = UpdateManagerWorkDto;
2878
2992
  type index$6_UpdatePCDto = UpdatePCDto;
2879
2993
  type index$6_UpdateProxyDto = UpdateProxyDto;
2880
2994
  type index$6_UpdateRoleDto = UpdateRoleDto;
@@ -2891,6 +3005,7 @@ type index$6_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
2891
3005
  type index$6_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
2892
3006
  type index$6_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
2893
3007
  type index$6_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
3008
+ type index$6_UpdateTasksJobDto = UpdateTasksJobDto;
2894
3009
  type index$6_UpdateTeamDto = UpdateTeamDto;
2895
3010
  type index$6_UpdateUserDto = UpdateUserDto;
2896
3011
  type index$6_UpsertManualContentSocialChildrenDto = UpsertManualContentSocialChildrenDto;
@@ -2901,7 +3016,7 @@ type index$6_ViewDetailDeviceDto = ViewDetailDeviceDto;
2901
3016
  type index$6_ViewDetailSheetsToolDto = ViewDetailSheetsToolDto;
2902
3017
  type index$6_ViewSettingInstagramOfAccountDto = ViewSettingInstagramOfAccountDto;
2903
3018
  declare namespace index$6 {
2904
- export { type index$6_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$6_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$6_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$8 as Auth, type index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$6_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$6_CheckSendMessageLark as CheckSendMessageLark, index$9 as Common, type index$6_CreateAccountVPSDto as CreateAccountVPSDto, type index$6_CreateDepartmentDto as CreateDepartmentDto, type index$6_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$6_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$6_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$6_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$6_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$6_CreateLarkDto as CreateLarkDto, type index$6_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$6_CreateProxyDto as CreateProxyDto, type index$6_CreateRoleDto as CreateRoleDto, type index$6_CreateSheetToolDto as CreateSheetToolDto, type index$6_CreateSheetWorkDto as CreateSheetWorkDto, type index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$6_CreateTeamDto as CreateTeamDto, type index$6_CreateUserDto as CreateUserDto, type index$6_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, type index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_EManagerImageAIFolder as EManagerImageAIFolder, index$6_EManagerImageAIModel as EManagerImageAIModel, index$6_EManualContentStatusPost as EManualContentStatusPost, index$6_EManualContentStatusTask as EManualContentStatusTask, index$6_EManualContentTypePost as EManualContentTypePost, index$6_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$6_EStatusAccountCanva as EStatusAccountCanva, index$6_EStatusAccountDrive as EStatusAccountDrive, index$6_EStatusAccountVPN as EStatusAccountVPN, index$6_EStatusEmail as EStatusEmail, index$6_EStatusProxyChecked as EStatusProxyChecked, index$6_EStatusProxyNewIP as EStatusProxyNewIP, index$6_EStatusTaskAIContent as EStatusTaskAIContent, index$6_EStatusVPS as EStatusVPS, index$6_EStatusVPSReplace as EStatusVPSReplace, index$6_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$6_ETaskGenerateAIType as ETaskGenerateAIType, index$6_ETypeRatioImage as ETypeRatioImage, index$6_ETypeSettingInstagram as ETypeSettingInstagram, type index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$6_FilterAccountDriveDto as FilterAccountDriveDto, type index$6_FilterAccountEmailDto as FilterAccountEmailDto, type index$6_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$6_FilterAccountVPNDto as FilterAccountVPNDto, type index$6_FilterAccountVPSDto as FilterAccountVPSDto, type index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$6_FilterDepartmentDto as FilterDepartmentDto, type index$6_FilterDeviceDto as FilterDeviceDto, type index$6_FilterDeviceLogDto as FilterDeviceLogDto, type index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$6_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$6_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$6_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$6_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$6_FilterLarkDto as FilterLarkDto, type index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$6_FilterManagerSheetDto as FilterManagerSheetDto, type index$6_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$6_FilterPCDto as FilterPCDto, type index$6_FilterProxyDto as FilterProxyDto, type index$6_FilterRoleDto as FilterRoleDto, type index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, type index$6_FilterSheetWorkDto as FilterSheetWorkDto, type index$6_FilterSheetsToolDto as FilterSheetsToolDto, type index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$6_FilterTeamDto as FilterTeamDto, type index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$6_FilterUserDto as FilterUserDto, type index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$6_FindAccountCanvaDto as FindAccountCanvaDto, type index$6_FindAccountDriveDto as FindAccountDriveDto, type index$6_FindAccountEmailDto as FindAccountEmailDto, type index$6_FindAccountVPNDto as FindAccountVPNDto, type index$6_FindAccountVPSDto as FindAccountVPSDto, type index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$6_FindDepartmentDto as FindDepartmentDto, type index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$6_FindDeviceDto as FindDeviceDto, type index$6_FindDeviceLogDto as FindDeviceLogDto, type index$6_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$6_FindLarkDto as FindLarkDto, type index$6_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$6_FindManagerImageAIDto as FindManagerImageAIDto, type index$6_FindManagerSheetDto as FindManagerSheetDto, type index$6_FindManualContentSocialDto as FindManualContentSocialDto, type index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, type index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, type index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$6_FindOverViewLarkDto as FindOverViewLarkDto, type index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$6_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$6_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$6_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$6_FindOverviewPCDto as FindOverviewPCDto, type index$6_FindOverviewProxyDto as FindOverviewProxyDto, type index$6_FindOverviewRoleDto as FindOverviewRoleDto, type index$6_FindOverviewTeamDto as FindOverviewTeamDto, type index$6_FindOverviewUserDto as FindOverviewUserDto, type index$6_FindPCDetail as FindPCDetail, type index$6_FindPCDto as FindPCDto, type index$6_FindProxyDto as FindProxyDto, type index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$6_FindRoleDetailDto as FindRoleDetailDto, type index$6_FindRoleDto as FindRoleDto, type index$6_FindRoleOfMe as FindRoleOfMe, type index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, type index$6_FindSheetWorkDto as FindSheetWorkDto, type index$6_FindSheetsToolDto as FindSheetsToolDto, type index$6_FindTaskAIContentDto as FindTaskAIContentDto, type index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$6_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$6_FindTeamDto as FindTeamDto, type index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$6_FindUserDto as FindUserDto, index$5 as Forum, type index$6_IAccountAIContent as IAccountAIContent, type index$6_IAccountAIContentChannel as IAccountAIContentChannel, type index$6_IAccountAIContentGroup as IAccountAIContentGroup, type index$6_IAccountAIContentInfo as IAccountAIContentInfo, type index$6_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$6_IAccountAIContentTag as IAccountAIContentTag, type index$6_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountSocialBase as IAccountSocialBase, type index$6_IAccountSocialGroup as IAccountSocialGroup, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountVPSSocial as IAccountVPSSocial, type index$6_IAssignUser as IAssignUser, type index$6_IAuthLogin as IAuthLogin, type index$6_IAuthResetPassword as IAuthResetPassword, type index$6_IBaseModel as IBaseModel, type index$6_IBlog as IBlog, type index$6_IBlogCategory as IBlogCategory, type index$6_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$6_IBlogTeamPermission as IBlogTeamPermission, type index$6_IBlogUserPermission as IBlogUserPermission, type index$6_IColsUnSelected as IColsUnSelected, type index$6_IDataDiscussTaskJob as IDataDiscussTaskJob, type index$6_IDataNotification as IDataNotification, type index$6_IDataUser as IDataUser, type index$6_IDepartment as IDepartment, type index$6_IDepartmentMember as IDepartmentMember, type index$6_IDevice as IDevice, type index$6_IDeviceLog as IDeviceLog, type index$6_IDeviceLogELS as IDeviceLogELS, type index$6_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$6_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$6_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$6_IDomain as IDomain, type index$6_IEmailAccountSocial as IEmailAccountSocial, type index$6_IEmailProxy as IEmailProxy, type index$6_IEmailRawManager as IEmailRawManager, type index$6_IEmailVPS as IEmailVPS, type index$6_IFile as IFile, type index$6_IFilterStore as IFilterStore, type index$6_IGPMProfile as IGPMProfile, type index$6_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$6_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$6_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$6_IIncreaseValueTask as IIncreaseValueTask, type index$6_IInstagramAccountRaw as IInstagramAccountRaw, type index$6_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$6_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$6_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$6_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$6_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$6_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$6_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$6_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$6_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$6_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$6_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$6_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$6_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$6_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$6_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$6_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$6_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$6_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$6_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$6_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$6_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$6_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$6_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$6_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$6_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$6_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$6_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$6_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$6_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$6_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$6_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$6_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$6_IInstagramReportPostNew as IInstagramReportPostNew, type index$6_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$6_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$6_IInstagramReportPostReel as IInstagramReportPostReel, type index$6_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$6_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$6_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$6_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$6_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$6_IInstagramReportPostStory as IInstagramReportPostStory, type index$6_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$6_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$6_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$6_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$6_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$6_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$6_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$6_IInstagramSettingPost as IInstagramSettingPost, type index$6_ILark as ILark, type index$6_ILarkTeam as ILarkTeam, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IManagerWork as IManagerWork, type index$6_IManualContentRunTime as IManualContentRunTime, type index$6_IManualContentSocial as IManualContentSocial, type index$6_IManualContentSocialChildren as IManualContentSocialChildren, type index$6_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$6_IOtpConfirm as IOtpConfirm, type index$6_IOtpCreateSession as IOtpCreateSession, type index$6_IOtpSend as IOtpSend, type index$6_IPC as IPC, type index$6_IPCLog as IPCLog, type index$6_IPCLogELS as IPCLogELS, type index$6_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$6_IProxy as IProxy, type index$6_IResponseLogin as IResponseLogin, type index$6_IRole as IRole, type index$6_IRoleFeature as IRoleFeature, type index$6_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$6_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$6_ISettingTool as ISettingTool, type index$6_ISheetImportExportSocial as ISheetImportExportSocial, type index$6_ISheetWork as ISheetWork, type index$6_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$6_ISheetWorkManager as ISheetWorkManager, type index$6_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$6_ISheetWorksCategory as ISheetWorksCategory, type index$6_ISheetsTool as ISheetsTool, type index$6_ISocialTaskManager as ISocialTaskManager, type index$6_ITag as ITag, type index$6_ITaskAIContent as ITaskAIContent, type index$6_ITaskAIImageCanva as ITaskAIImageCanva, type index$6_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$6_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$6_ITaskAIItemAction as ITaskAIItemAction, type index$6_ITaskAIItemGroup as ITaskAIItemGroup, type index$6_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$6_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$6_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$6_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$6_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$6_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$6_ITaskInstagramFollow as ITaskInstagramFollow, type index$6_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$6_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$6_ITaskInstagramPost as ITaskInstagramPost, type index$6_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$6_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$6_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$6_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$6_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$6_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$6_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$6_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$6_ITaskJob as ITaskJob, type index$6_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$6_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$6_ITaskJobCheckList as ITaskJobCheckList, type index$6_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$6_ITaskJobDiscuss as ITaskJobDiscuss, type index$6_ITaskJobLabel as ITaskJobLabel, type index$6_ITaskJobPermission as ITaskJobPermission, type index$6_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$6_ITaskJobUserPermission as ITaskJobUserPermission, type index$6_ITaskJobsGroup as ITaskJobsGroup, type index$6_ITaskManualContentSocial as ITaskManualContentSocial, type index$6_ITaskThreadsFollow as ITaskThreadsFollow, type index$6_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$6_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$6_ITaskThreadsPost as ITaskThreadsPost, type index$6_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$6_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$6_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$6_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$6_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$6_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$6_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$6_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$6_ITeam as ITeam, type index$6_ITeamMember as ITeamMember, type index$6_ITeamRole as ITeamRole, type index$6_IThreadsAccountRaw as IThreadsAccountRaw, type index$6_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$6_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$6_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$6_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$6_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$6_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$6_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$6_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$6_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$6_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$6_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$6_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$6_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$6_IThreadsReportPost as IThreadsReportPost, type index$6_IThreadsReportPostELS as IThreadsReportPostELS, type index$6_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$6_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$6_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$6_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$6_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$6_IThreadsSettingPost as IThreadsSettingPost, type index$6_IToken as IToken, type index$6_ITrackingModel as ITrackingModel, type index$6_ITrackingTime as ITrackingTime, type index$6_IUser as IUser, type index$6_IUserRole as IUserRole, type index$6_IViewDeviceByPC as IViewDeviceByPC, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, type index$6_ImportAccountVPSDto as ImportAccountVPSDto, type index$6_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$6_ImportSheetWorkDto as ImportSheetWorkDto, type index$6_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$a as Permission, type index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$6_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$6_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$2 as Socials, type index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, type index$6_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, index$3 as Tool, type index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$6_UpdateDepartmentDto as UpdateDepartmentDto, type index$6_UpdateDeviceDto as UpdateDeviceDto, type index$6_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$6_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$6_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$6_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$6_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$6_UpdateLarkDto as UpdateLarkDto, type index$6_UpdatePCDto as UpdatePCDto, type index$6_UpdateProxyDto as UpdateProxyDto, type index$6_UpdateRoleDto as UpdateRoleDto, type index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, type index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$6_UpdateTeamDto as UpdateTeamDto, type index$6_UpdateUserDto as UpdateUserDto, type index$6_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$6_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$6_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$6_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$6_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$6_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto, type index$6_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto, index$4 as Workspace };
3019
+ export { type index$6_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$6_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$6_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, type index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$8 as Auth, type index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, type index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, type index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, type index$6_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$6_CheckSendMessageLark as CheckSendMessageLark, index$9 as Common, type index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, type index$6_CreateAccountVPSDto as CreateAccountVPSDto, type index$6_CreateBlogDto as CreateBlogDto, type index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, type index$6_CreateDepartmentDto as CreateDepartmentDto, type index$6_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$6_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$6_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$6_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$6_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$6_CreateLarkDto as CreateLarkDto, type index$6_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$6_CreateManagerWorkDto as CreateManagerWorkDto, type index$6_CreateProxyDto as CreateProxyDto, type index$6_CreateRoleDto as CreateRoleDto, type index$6_CreateSheetToolDto as CreateSheetToolDto, type index$6_CreateSheetWorkDto as CreateSheetWorkDto, type index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$6_CreateTasksJobDto as CreateTasksJobDto, type index$6_CreateTeamDto as CreateTeamDto, type index$6_CreateUserDto as CreateUserDto, type index$6_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, type index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_EManagerImageAIFolder as EManagerImageAIFolder, index$6_EManagerImageAIModel as EManagerImageAIModel, index$6_EManualContentStatusPost as EManualContentStatusPost, index$6_EManualContentStatusTask as EManualContentStatusTask, index$6_EManualContentTypePost as EManualContentTypePost, index$6_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$6_EStatusAccountCanva as EStatusAccountCanva, index$6_EStatusAccountDrive as EStatusAccountDrive, index$6_EStatusAccountVPN as EStatusAccountVPN, index$6_EStatusEmail as EStatusEmail, index$6_EStatusProxyChecked as EStatusProxyChecked, index$6_EStatusProxyNewIP as EStatusProxyNewIP, index$6_EStatusTaskAIContent as EStatusTaskAIContent, index$6_EStatusVPS as EStatusVPS, index$6_EStatusVPSReplace as EStatusVPSReplace, index$6_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$6_ETaskGenerateAIType as ETaskGenerateAIType, index$6_ETypeRatioImage as ETypeRatioImage, index$6_ETypeSettingInstagram as ETypeSettingInstagram, type index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$6_FilterAccountDriveDto as FilterAccountDriveDto, type index$6_FilterAccountEmailDto as FilterAccountEmailDto, type index$6_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, type index$6_FilterAccountVPNDto as FilterAccountVPNDto, type index$6_FilterAccountVPSDto as FilterAccountVPSDto, type index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, type index$6_FilterBlogDto as FilterBlogDto, type index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, type index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, type index$6_FilterDepartmentDto as FilterDepartmentDto, type index$6_FilterDeviceDto as FilterDeviceDto, type index$6_FilterDeviceLogDto as FilterDeviceLogDto, type index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, type index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$6_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$6_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$6_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$6_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$6_FilterLarkDto as FilterLarkDto, type index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$6_FilterManagerSheetDto as FilterManagerSheetDto, type index$6_FilterManagerWorkDto as FilterManagerWorkDto, type index$6_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$6_FilterPCDto as FilterPCDto, type index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, type index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, type index$6_FilterProxyDto as FilterProxyDto, type index$6_FilterRoleDto as FilterRoleDto, type index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, type index$6_FilterSheetWorkDto as FilterSheetWorkDto, type index$6_FilterSheetsToolDto as FilterSheetsToolDto, type index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$6_FilterTeamDto as FilterTeamDto, type index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, type index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, type index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, type index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$6_FilterUserDto as FilterUserDto, type index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$6_FindAccountCanvaDto as FindAccountCanvaDto, type index$6_FindAccountDriveDto as FindAccountDriveDto, type index$6_FindAccountEmailDto as FindAccountEmailDto, type index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, type index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, type index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, type index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, type index$6_FindAccountVPNDto as FindAccountVPNDto, type index$6_FindAccountVPSDto as FindAccountVPSDto, type index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$6_FindBlogCategoryDto as FindBlogCategoryDto, type index$6_FindBlogDto as FindBlogDto, type index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, type index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, type index$6_FindDepartmentDto as FindDepartmentDto, type index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$6_FindDeviceDto as FindDeviceDto, type index$6_FindDeviceLogDto as FindDeviceLogDto, type index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, type index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, type index$6_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$6_FindLarkDto as FindLarkDto, type index$6_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$6_FindManagerImageAIDto as FindManagerImageAIDto, type index$6_FindManagerSheetDto as FindManagerSheetDto, type index$6_FindManagerWorkDto as FindManagerWorkDto, type index$6_FindManualContentSocialDto as FindManualContentSocialDto, type index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, type index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, type index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$6_FindOverViewLarkDto as FindOverViewLarkDto, type index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, type index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, type index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$6_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, type index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$6_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$6_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$6_FindOverviewPCDto as FindOverviewPCDto, type index$6_FindOverviewProxyDto as FindOverviewProxyDto, type index$6_FindOverviewRoleDto as FindOverviewRoleDto, type index$6_FindOverviewTeamDto as FindOverviewTeamDto, type index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, type index$6_FindOverviewUserDto as FindOverviewUserDto, type index$6_FindPCDetail as FindPCDetail, type index$6_FindPCDto as FindPCDto, type index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, type index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, type index$6_FindProxyDto as FindProxyDto, type index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$6_FindRoleDetailDto as FindRoleDetailDto, type index$6_FindRoleDto as FindRoleDto, type index$6_FindRoleOfMe as FindRoleOfMe, type index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, type index$6_FindSheetWorkDto as FindSheetWorkDto, type index$6_FindSheetsToolDto as FindSheetsToolDto, type index$6_FindTaskAIContentDto as FindTaskAIContentDto, type index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$6_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$6_FindTasksJobDto as FindTasksJobDto, type index$6_FindTeamDto as FindTeamDto, type index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, type index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, type index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$6_FindUserDto as FindUserDto, index$2 as Forum, type index$6_IAccountAIContent as IAccountAIContent, type index$6_IAccountAIContentChannel as IAccountAIContentChannel, type index$6_IAccountAIContentGroup as IAccountAIContentGroup, type index$6_IAccountAIContentInfo as IAccountAIContentInfo, type index$6_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$6_IAccountAIContentTag as IAccountAIContentTag, type index$6_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$6_IAccountCanva as IAccountCanva, type index$6_IAccountDrive as IAccountDrive, type index$6_IAccountEmail as IAccountEmail, type index$6_IAccountEmailProxy as IAccountEmailProxy, type index$6_IAccountEmailTag as IAccountEmailTag, type index$6_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$6_IAccountSocialBase as IAccountSocialBase, type index$6_IAccountSocialGroup as IAccountSocialGroup, type index$6_IAccountVPN as IAccountVPN, type index$6_IAccountVPS as IAccountVPS, type index$6_IAccountVPSGroup as IAccountVPSGroup, type index$6_IAccountVPSSocial as IAccountVPSSocial, type index$6_IAssignUser as IAssignUser, type index$6_IAuthLogin as IAuthLogin, type index$6_IAuthResetPassword as IAuthResetPassword, type index$6_IBaseModel as IBaseModel, type index$6_IBlog as IBlog, type index$6_IBlogCategory as IBlogCategory, type index$6_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$6_IBlogTeamPermission as IBlogTeamPermission, type index$6_IBlogUserPermission as IBlogUserPermission, type index$6_IColsUnSelected as IColsUnSelected, type index$6_IDataDiscussTaskJob as IDataDiscussTaskJob, type index$6_IDataNotification as IDataNotification, type index$6_IDataUser as IDataUser, type index$6_IDepartment as IDepartment, type index$6_IDepartmentMember as IDepartmentMember, type index$6_IDevice as IDevice, type index$6_IDeviceLog as IDeviceLog, type index$6_IDeviceLogELS as IDeviceLogELS, type index$6_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$6_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$6_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$6_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$6_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$6_IDomain as IDomain, type index$6_IEmailAccountSocial as IEmailAccountSocial, type index$6_IEmailProxy as IEmailProxy, type index$6_IEmailRawManager as IEmailRawManager, type index$6_IEmailVPS as IEmailVPS, type index$6_IFile as IFile, type index$6_IFilterSettingAccountSocialFindForSettingDto as IFilterSettingAccountSocialFindForSettingDto, type index$6_IFilterStore as IFilterStore, type index$6_IGPMProfile as IGPMProfile, type index$6_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$6_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$6_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$6_IIncreaseValueTask as IIncreaseValueTask, type index$6_IInstagramAccountRaw as IInstagramAccountRaw, type index$6_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$6_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$6_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$6_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$6_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$6_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$6_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$6_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$6_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$6_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$6_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$6_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$6_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$6_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$6_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$6_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$6_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$6_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$6_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$6_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$6_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$6_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$6_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$6_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$6_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$6_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$6_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$6_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$6_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$6_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$6_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$6_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$6_IInstagramReportPostNew as IInstagramReportPostNew, type index$6_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$6_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$6_IInstagramReportPostReel as IInstagramReportPostReel, type index$6_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$6_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$6_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$6_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$6_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$6_IInstagramReportPostStory as IInstagramReportPostStory, type index$6_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$6_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$6_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$6_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$6_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$6_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$6_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$6_IInstagramSettingPost as IInstagramSettingPost, type index$6_ILark as ILark, type index$6_ILarkTeam as ILarkTeam, type index$6_IMailWork as IMailWork, type index$6_IManagerImageAI as IManagerImageAI, type index$6_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$6_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$6_IManagerSheet as IManagerSheet, type index$6_IManagerSheetChildren as IManagerSheetChildren, type index$6_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$6_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$6_IManagerSheetGroup as IManagerSheetGroup, type index$6_IManagerWork as IManagerWork, type index$6_IManualContentRunTime as IManualContentRunTime, type index$6_IManualContentSocial as IManualContentSocial, type index$6_IManualContentSocialChildren as IManualContentSocialChildren, type index$6_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$6_IOtpConfirm as IOtpConfirm, type index$6_IOtpCreateSession as IOtpCreateSession, type index$6_IOtpSend as IOtpSend, type index$6_IPC as IPC, type index$6_IPCLog as IPCLog, type index$6_IPCLogELS as IPCLogELS, type index$6_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$6_IProxy as IProxy, type index$6_IResponseLogin as IResponseLogin, type index$6_IRole as IRole, type index$6_IRoleFeature as IRoleFeature, type index$6_ISettingAccountSocialDto as ISettingAccountSocialDto, type index$6_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$6_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$6_ISettingTool as ISettingTool, type index$6_ISheetImportExportSocial as ISheetImportExportSocial, type index$6_ISheetWork as ISheetWork, type index$6_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$6_ISheetWorkManager as ISheetWorkManager, type index$6_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$6_ISheetWorksCategory as ISheetWorksCategory, type index$6_ISheetsTool as ISheetsTool, type index$6_ISocialTaskManager as ISocialTaskManager, type index$6_ITag as ITag, type index$6_ITaskAIContent as ITaskAIContent, type index$6_ITaskAIImageCanva as ITaskAIImageCanva, type index$6_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$6_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$6_ITaskAIItemAction as ITaskAIItemAction, type index$6_ITaskAIItemGroup as ITaskAIItemGroup, type index$6_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$6_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$6_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$6_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$6_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$6_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$6_ITaskInstagramFollow as ITaskInstagramFollow, type index$6_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$6_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$6_ITaskInstagramPost as ITaskInstagramPost, type index$6_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$6_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$6_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$6_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$6_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$6_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$6_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$6_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$6_ITaskJob as ITaskJob, type index$6_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$6_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$6_ITaskJobCheckList as ITaskJobCheckList, type index$6_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$6_ITaskJobDiscuss as ITaskJobDiscuss, type index$6_ITaskJobLabel as ITaskJobLabel, type index$6_ITaskJobPermission as ITaskJobPermission, type index$6_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$6_ITaskJobUserPermission as ITaskJobUserPermission, type index$6_ITaskJobsGroup as ITaskJobsGroup, type index$6_ITaskManualContentSocial as ITaskManualContentSocial, type index$6_ITaskThreadsFollow as ITaskThreadsFollow, type index$6_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$6_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$6_ITaskThreadsPost as ITaskThreadsPost, type index$6_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$6_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$6_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$6_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$6_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$6_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$6_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$6_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$6_ITeam as ITeam, type index$6_ITeamMember as ITeamMember, type index$6_ITeamRole as ITeamRole, type index$6_IThreadsAccountRaw as IThreadsAccountRaw, type index$6_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$6_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$6_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$6_IThreadsHistoryChange as IThreadsHistoryChange, type index$6_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$6_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$6_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$6_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$6_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$6_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$6_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$6_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$6_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$6_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$6_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$6_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$6_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$6_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$6_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$6_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$6_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$6_IThreadsReportPost as IThreadsReportPost, type index$6_IThreadsReportPostELS as IThreadsReportPostELS, type index$6_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$6_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$6_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$6_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$6_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$6_IThreadsSettingPost as IThreadsSettingPost, type index$6_IToken as IToken, type index$6_ITrackingModel as ITrackingModel, type index$6_ITrackingTime as ITrackingTime, type index$6_IUser as IUser, type index$6_IUserRole as IUserRole, type index$6_IViewDeviceByPC as IViewDeviceByPC, type index$6_IVoiceGenerated as IVoiceGenerated, type index$6_IVoiceLanguage as IVoiceLanguage, type index$6_IVoiceSettingDelay as IVoiceSettingDelay, type index$6_IVoiceStores as IVoiceStores, type index$6_ImportAccountVPSDto as ImportAccountVPSDto, type index$6_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$6_ImportManagerWorkDto as ImportManagerWorkDto, type index$6_ImportSheetWorkDto as ImportSheetWorkDto, type index$6_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$a as Permission, type index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$6_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$6_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$3 as Socials, type index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, type index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, type index$6_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, index$4 as Tool, type index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, type index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$6_UpdateBlogDto as UpdateBlogDto, type index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, type index$6_UpdateDepartmentDto as UpdateDepartmentDto, type index$6_UpdateDeviceDto as UpdateDeviceDto, type index$6_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$6_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$6_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$6_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$6_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$6_UpdateLarkDto as UpdateLarkDto, type index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, type index$6_UpdatePCDto as UpdatePCDto, type index$6_UpdateProxyDto as UpdateProxyDto, type index$6_UpdateRoleDto as UpdateRoleDto, type index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, type index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$6_UpdateTasksJobDto as UpdateTasksJobDto, type index$6_UpdateTeamDto as UpdateTeamDto, type index$6_UpdateUserDto as UpdateUserDto, type index$6_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$6_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$6_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$6_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$6_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$6_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto, type index$6_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto, index$5 as Workspace };
2905
3020
  }
2906
3021
 
2907
3022
  interface UpdatePCDto {
@@ -3002,6 +3117,23 @@ interface FilterPCDto extends IFilterBaseDto {
3002
3117
  statusControl: EStatusPCControl[];
3003
3118
  }
3004
3119
 
3120
+ interface IPC extends IBaseModel, IAssignUser, ITrackingModel {
3121
+ name: string;
3122
+ alias: string;
3123
+ machineGUID: string;
3124
+ ip: string;
3125
+ maxDevice: number;
3126
+ os: string;
3127
+ status: EStatusPC;
3128
+ statusControl: EStatusPCControl;
3129
+ timeStatusChange: Date;
3130
+ note: string;
3131
+ startStop: EStartStop;
3132
+ isNotifyConnection: boolean;
3133
+ isNotifyDeviceConnection: boolean;
3134
+ listEmailNotify: string[];
3135
+ }
3136
+
3005
3137
  interface IPCLog extends IBaseModel, ITrackingModel {
3006
3138
  pc: string | IPC;
3007
3139
  device: string | IDevice;
@@ -3032,6 +3164,83 @@ interface IAccountAIContentTag extends IBaseModel {
3032
3164
  color: string;
3033
3165
  }
3034
3166
 
3167
+ interface IManagerWork extends IBaseModel, ITrackingModel {
3168
+ mw_name: string;
3169
+ mw_department: string | IDepartment;
3170
+ mw_team: string | ITeam;
3171
+ mw_user: string | IUser;
3172
+ mw_type: ETypeManagerWorkType;
3173
+ mw_classify: ETypeManagerWorkClassify;
3174
+ mw_priority: EPriority;
3175
+ mw_status: EStatusSheetWork;
3176
+ mw_parent: string | IManagerWork;
3177
+ mw_pin: boolean;
3178
+ mw_meaning: string;
3179
+ mw_quote1: string;
3180
+ mw_quote2: string;
3181
+ mw_quote3: string;
3182
+ mw_desc: string;
3183
+ mw_socialLinked: ETypeSocial[];
3184
+ mw_note: string;
3185
+ }
3186
+
3187
+ interface ISheetWorksCategory extends IBaseModel, ITrackingModel {
3188
+ swc_name: string;
3189
+ swc_desc: string;
3190
+ }
3191
+
3192
+ interface ISheetWork extends IBaseModel, ITrackingModel {
3193
+ sw_name: string;
3194
+ sw_url: string;
3195
+ sw_desc: string;
3196
+ sw_emails: string[];
3197
+ sw_note: string;
3198
+ sw_typeSocial: ETypeSocial;
3199
+ sw_parent: ISheetWork | string;
3200
+ sw_level: 'Project' | 'Job' | 'SubJob';
3201
+ sw_priority: EPriority;
3202
+ sw_status: EStatusSheetWork;
3203
+ sw_category: string | ISheetWorksCategory;
3204
+ sw_idea: string | IManagerWork;
3205
+ sw_niche: string | IManagerWork;
3206
+ sw_subNiche: string | IManagerWork;
3207
+ sw_department: string | IDepartment;
3208
+ sw_team: string | ITeam;
3209
+ sw_user: string | IUser;
3210
+ sw_pinLove: boolean;
3211
+ sw_pinGim: boolean;
3212
+ sw_pinLike: boolean;
3213
+ sw_classify: ETypeSheetWorkClassify;
3214
+ }
3215
+
3216
+ interface IDomain extends IBaseModel {
3217
+ domain_manager?: IManagerWork | string;
3218
+ domain_sheetWork?: ISheetWork | string;
3219
+ domain_name: string;
3220
+ domain_color: string;
3221
+ }
3222
+
3223
+ interface ISheetWorkManager extends IBaseModel, ITrackingModel {
3224
+ sheetWork: ISheetWork | string;
3225
+ idea: IManagerWork | string;
3226
+ niche: IManagerWork | string;
3227
+ subNiche: IManagerWork | string;
3228
+ }
3229
+
3230
+ interface ITag extends IBaseModel {
3231
+ tag_manager?: IManagerWork | string;
3232
+ tag_sheetWork?: ISheetWork | string;
3233
+ tag_name: string;
3234
+ tag_color: string;
3235
+ }
3236
+
3237
+ interface IMailWork extends IBaseModel {
3238
+ email: string;
3239
+ status: EStatusMailWork;
3240
+ addedAt: Date;
3241
+ sheetWork: ISheetWork | string;
3242
+ }
3243
+
3035
3244
  interface CreateLarkDto extends Partial<ILark> {
3036
3245
  name: string;
3037
3246
  desc: string;
@@ -3101,125 +3310,82 @@ interface ILarkTeam extends IBaseModel, ITrackingModel {
3101
3310
  team: ITeam | string;
3102
3311
  }
3103
3312
 
3104
- interface ITaskJobsGroup extends IBaseModel, ITrackingModel {
3105
- tjg_name: string;
3106
- tjg_slug: string;
3107
- tjg_otherNumber: number;
3108
- tjg_status: EStatusTaskJobGroup;
3109
- }
3110
-
3111
- interface ITaskJobDiscuss {
3112
- userId: string;
3113
- userName: string;
3114
- userAvatar: string;
3115
- message: string;
3116
- timeStamp: Date;
3313
+ interface ImportManagerWorkDto {
3314
+ sheetName: string;
3315
+ sheetUrl: string;
3316
+ department: string;
3317
+ team: string;
3318
+ user: string;
3117
3319
  }
3118
- interface ITaskJobCheckList {
3119
- name: string;
3120
- slug: string;
3121
- isDone: boolean;
3320
+ interface CreateManagerWorkDto {
3321
+ mw_name: string;
3322
+ mw_type: ETypeManagerWorkType;
3323
+ mw_priority: EPriority;
3324
+ mw_status?: EStatusSheetWork;
3325
+ mw_parent?: string;
3326
+ mw_desc?: string;
3327
+ mw_department?: string;
3328
+ mw_team?: string;
3329
+ mw_user?: string;
3330
+ mw_sheetWorks?: string[];
3331
+ mw_pin?: boolean;
3332
+ mw_tags?: string[];
3333
+ mw_domains?: string[];
3334
+ }
3335
+ interface UpdateManagerWorkDto extends Partial<CreateManagerWorkDto> {
3336
+ }
3337
+ interface StatisticsManagerWorkDto {
3338
+ totalDepartments: number;
3339
+ totalTeamCreators: number;
3340
+ totalUserMembers: number;
3341
+ totalTM: number;
3342
+ totalNTM: number;
3343
+ totalTypeSocials: number;
3344
+ totalTypeSocialsSync: number;
3345
+ totalTags: number;
3346
+ totalDomains: number;
3347
+ totalSheetGroups: number;
3348
+ totalLinkSheets: number;
3349
+ totalPriorities: number;
3350
+ totalStatuses: number;
3351
+ numberPin: number;
3352
+ totalLevel1: number;
3353
+ numberLike: number;
3354
+ totalLevel2: number;
3355
+ numberLove: number;
3356
+ totalLevel3: number;
3122
3357
  }
3123
- interface ITaskJobLabel {
3124
- name: string;
3125
- slug: string;
3126
- color: string;
3358
+ interface FindManagerWorkDto extends IFindBaseDto, IManagerWork {
3359
+ mw_sheetWorks: ISheetWork[];
3360
+ mw_sheetWorkCategories: ISheetWorksCategory[];
3361
+ mw_tags: ITag[];
3362
+ mw_domains: IDomain[];
3363
+ mw_socialSyncSheetWork: ETypeSocial[];
3127
3364
  }
3128
- interface ITaskJob extends IBaseModel, ITrackingModel {
3129
- tj_name: string;
3130
- tj_slug: string;
3131
- tj_desc: string;
3132
- tj_timeStart: Date;
3133
- tj_timeEnd: Date;
3134
- tj_orderNumber: number;
3135
- tj_group: string | ITaskJobsGroup;
3136
- tj_labels: ITaskJobLabel[];
3137
- tj_checklist: ITaskJobCheckList[];
3138
- tj_discuss: ITaskJobDiscuss[];
3139
- tj_status: EStatusTaskJob;
3140
- tj_priority: EPriority;
3141
- tj_priorityPoint: number;
3365
+ interface FilterManagerWorkDto extends IFilterBaseDto {
3366
+ typePin: Array<'Pin' | 'Like' | 'Love'>;
3367
+ ideas: string[];
3368
+ niches: string[];
3369
+ subNiche: string[];
3370
+ type: ETypeManagerWorkClassify[];
3371
+ tags: string[];
3372
+ domains: string[];
3373
+ ideaPin: string[];
3374
+ nicheLove: string[];
3375
+ subNicheLike: string[];
3376
+ sheetWorks: string[];
3377
+ status: EStatusActive[];
3378
+ departmentsAssigned: string[];
3379
+ teamsAssigned: string[];
3380
+ usersAssigned: string[];
3142
3381
  }
3143
3382
 
3144
- interface IBlogCategory extends IBaseModel, ITrackingModel {
3145
- name: string;
3146
- description: string;
3147
- slug: string;
3148
- }
3149
-
3150
- interface IBlog extends IBaseModel, ITrackingModel {
3151
- name: string;
3152
- thumb: string;
3153
- desc: string;
3154
- slug: string;
3155
- content: string;
3156
- status: string | EStatusBlog;
3157
- priority: EPriority;
3158
- priorityPoint: number;
3159
- category: string | IBlogCategory;
3160
- }
3161
-
3162
- interface IBlogDepartmentPermission extends IBaseModel, ITrackingModel {
3163
- blog: string | IBlog;
3164
- department: string | IDepartment;
3165
- }
3166
-
3167
- interface IBlogTeamPermission extends IBaseModel, ITrackingModel {
3168
- blog: string | IBlog;
3169
- team: string | ITeam;
3170
- }
3171
-
3172
- interface IBlogUserPermission extends IBaseModel, ITrackingModel {
3173
- blog: string | IBlog;
3174
- user: string | IUser;
3175
- }
3176
-
3177
- type index$5_IBlog = IBlog;
3178
- type index$5_IBlogCategory = IBlogCategory;
3179
- type index$5_IBlogDepartmentPermission = IBlogDepartmentPermission;
3180
- type index$5_IBlogTeamPermission = IBlogTeamPermission;
3181
- type index$5_IBlogUserPermission = IBlogUserPermission;
3182
- declare namespace index$5 {
3183
- export type { index$5_IBlog as IBlog, index$5_IBlogCategory as IBlogCategory, index$5_IBlogDepartmentPermission as IBlogDepartmentPermission, index$5_IBlogTeamPermission as IBlogTeamPermission, index$5_IBlogUserPermission as IBlogUserPermission };
3184
- }
3185
-
3186
- interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel {
3187
- taskJob: string | ITaskJob;
3188
- blog: string | IBlog;
3189
- }
3190
-
3191
- interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel {
3192
- taskJob: string | ITaskJob;
3193
- blog: string | IBlog;
3194
- }
3195
-
3196
- interface ITaskJobDepartmentPermission extends IBaseModel, ITrackingModel {
3197
- taskJob: string | ITaskJob;
3198
- department: string | IDepartment;
3199
- }
3200
-
3201
- interface ITaskJobPermission extends IBaseModel, ITrackingModel {
3202
- taskJob: string | ITaskJob;
3203
- typePermission: 'Department' | 'Team' | 'User';
3204
- refInstanceID: string;
3205
- }
3206
-
3207
- interface ITaskJobTeamPermission extends IBaseModel, ITrackingModel {
3208
- taskJob: string | ITaskJob;
3209
- team: string | ITeam;
3210
- }
3211
-
3212
- interface ITaskJobUserPermission extends IBaseModel, ITrackingModel {
3213
- taskJob: string | ITaskJob;
3214
- user: string | IUser;
3215
- }
3216
-
3217
- interface ImportSheetWorkDto {
3218
- sheetName: string;
3219
- sheetUrl: string;
3220
- department: string;
3221
- team: string;
3222
- user: string;
3383
+ interface ImportSheetWorkDto {
3384
+ sheetName: string;
3385
+ sheetUrl: string;
3386
+ department: string;
3387
+ team: string;
3388
+ user: string;
3223
3389
  }
3224
3390
  interface CreateSheetWorkDto {
3225
3391
  sw_name: string;
@@ -3310,123 +3476,192 @@ interface FilterSheetWorkCategoryDto extends IFilterBaseDto {
3310
3476
  typeSocial: ETypeSocial[];
3311
3477
  }
3312
3478
 
3313
- interface ISheetWorksCategory extends IBaseModel, ITrackingModel {
3314
- swc_name: string;
3315
- swc_desc: string;
3479
+ interface ISheetWorkDepartmentPermission extends IBaseModel, ITrackingModel {
3480
+ sheetWork: string | ISheetWork;
3481
+ department: string | IDepartment;
3316
3482
  }
3317
3483
 
3318
- interface IManagerWork extends IBaseModel, ITrackingModel {
3319
- mw_name: string;
3320
- mw_department: string | IDepartment;
3321
- mw_team: string | ITeam;
3322
- mw_user: string | IUser;
3323
- mw_type: ETypeManagerWorkType;
3324
- mw_classify: ETypeManagerWorkClassify;
3325
- mw_priority: EPriority;
3326
- mw_status: EStatusSheetWork;
3327
- mw_parent: string | IManagerWork;
3328
- mw_pin: boolean;
3329
- mw_meaning: string;
3330
- mw_quote1: string;
3331
- mw_quote2: string;
3332
- mw_quote3: string;
3333
- mw_desc: string;
3334
- mw_socialLinked: ETypeSocial[];
3335
- mw_note: string;
3484
+ interface ISheetWorkUserPermission extends IBaseModel, ITrackingModel {
3485
+ sheetWork: string | ISheetWork;
3486
+ user: string | IDepartment;
3336
3487
  }
3337
3488
 
3338
- interface ISheetWork extends IBaseModel, ITrackingModel {
3339
- sw_name: string;
3340
- sw_url: string;
3341
- sw_desc: string;
3342
- sw_emails: string[];
3343
- sw_note: string;
3344
- sw_typeSocial: ETypeSocial;
3345
- sw_parent: ISheetWork | string;
3346
- sw_level: 'Project' | 'Job' | 'SubJob';
3347
- sw_priority: EPriority;
3348
- sw_status: EStatusSheetWork;
3349
- sw_category: string | ISheetWorksCategory;
3350
- sw_idea: string | IManagerWork;
3351
- sw_niche: string | IManagerWork;
3352
- sw_subNiche: string | IManagerWork;
3353
- sw_department: string | IDepartment;
3354
- sw_team: string | ITeam;
3355
- sw_user: string | IUser;
3356
- sw_pinLove: boolean;
3357
- sw_pinGim: boolean;
3358
- sw_pinLike: boolean;
3359
- sw_classify: ETypeSheetWorkClassify;
3489
+ interface CreateTasksJobDto extends Partial<ITaskJob> {
3490
+ tj_name: string;
3491
+ tj_desc?: string;
3492
+ tj_priorityPoint: number;
3493
+ tj_priority: EPriority;
3494
+ tj_status: EStatusTaskJob;
3495
+ tj_timeStart: Date;
3496
+ tj_timeEnd: Date;
3497
+ tj_group: string;
3498
+ tj_checklist?: ITaskJobCheckList[];
3499
+ tj_discuss?: ITaskJobDiscuss[];
3500
+ tj_departmentsPermission?: string[];
3501
+ tj_teamsPermission?: string[];
3502
+ tj_usersPermission?: string[];
3503
+ tj_blogsAttachment?: string[];
3504
+ }
3505
+ interface UpdateTasksJobDto extends Partial<CreateTasksJobDto> {
3506
+ }
3507
+ interface FindTasksJobDto extends IFindBaseDto, ITaskJob {
3508
+ tj_blogsAttachment: IBlog[];
3509
+ tj_departmentsPermission: IDepartment[];
3510
+ tj_teamsPermission: ITeam[];
3511
+ tj_usersPermission: IUser[];
3360
3512
  }
3361
3513
 
3362
- interface ISheetWorkDepartmentPermission extends IBaseModel, ITrackingModel {
3363
- sheetWork: string | ISheetWork;
3514
+ interface ITaskJobsGroup extends IBaseModel, ITrackingModel {
3515
+ tjg_name: string;
3516
+ tjg_slug: string;
3517
+ tjg_otherNumber: number;
3518
+ tjg_status: EStatusTaskJobGroup;
3519
+ }
3520
+
3521
+ interface ITaskJobDiscuss {
3522
+ userId: string;
3523
+ userName: string;
3524
+ userAvatar: string;
3525
+ message: string;
3526
+ timeStamp: Date;
3527
+ }
3528
+ interface ITaskJobCheckList {
3529
+ name: string;
3530
+ slug: string;
3531
+ isDone: boolean;
3532
+ }
3533
+ interface ITaskJobLabel {
3534
+ name: string;
3535
+ slug: string;
3536
+ color: string;
3537
+ }
3538
+ interface ITaskJob extends IBaseModel, ITrackingModel {
3539
+ tj_name: string;
3540
+ tj_slug: string;
3541
+ tj_desc: string;
3542
+ tj_timeStart: Date;
3543
+ tj_timeEnd: Date;
3544
+ tj_orderNumber: number;
3545
+ tj_group: string | ITaskJobsGroup;
3546
+ tj_labels: ITaskJobLabel[];
3547
+ tj_checklist: ITaskJobCheckList[];
3548
+ tj_discuss: ITaskJobDiscuss[];
3549
+ tj_status: EStatusTaskJob;
3550
+ tj_priority: EPriority;
3551
+ tj_priorityPoint: number;
3552
+ }
3553
+
3554
+ interface IBlogCategory extends IBaseModel, ITrackingModel {
3555
+ name: string;
3556
+ description: string;
3557
+ slug: string;
3558
+ }
3559
+
3560
+ interface IBlog extends IBaseModel, ITrackingModel {
3561
+ name: string;
3562
+ thumb: string;
3563
+ desc: string;
3564
+ slug: string;
3565
+ content: string;
3566
+ status: string | EStatusBlog;
3567
+ priority: EPriority;
3568
+ priorityPoint: number;
3569
+ category: string | IBlogCategory;
3570
+ }
3571
+
3572
+ interface IBlogDepartmentPermission extends IBaseModel, ITrackingModel {
3573
+ blog: string | IBlog;
3364
3574
  department: string | IDepartment;
3365
3575
  }
3366
3576
 
3367
- interface ISheetWorkUserPermission extends IBaseModel, ITrackingModel {
3368
- sheetWork: string | ISheetWork;
3369
- user: string | IDepartment;
3577
+ interface IBlogTeamPermission extends IBaseModel, ITrackingModel {
3578
+ blog: string | IBlog;
3579
+ team: string | ITeam;
3370
3580
  }
3371
3581
 
3372
- interface ITag extends IBaseModel {
3373
- tag_manager?: IManagerWork | string;
3374
- tag_sheetWork?: ISheetWork | string;
3375
- tag_name: string;
3376
- tag_color: string;
3582
+ interface IBlogUserPermission extends IBaseModel, ITrackingModel {
3583
+ blog: string | IBlog;
3584
+ user: string | IUser;
3377
3585
  }
3378
3586
 
3379
- interface IDomain extends IBaseModel {
3380
- domain_manager?: IManagerWork | string;
3381
- domain_sheetWork?: ISheetWork | string;
3382
- domain_name: string;
3383
- domain_color: string;
3587
+ interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel {
3588
+ taskJob: string | ITaskJob;
3589
+ blog: string | IBlog;
3384
3590
  }
3385
3591
 
3386
- interface ISheetWorkManager extends IBaseModel, ITrackingModel {
3387
- sheetWork: ISheetWork | string;
3388
- idea: IManagerWork | string;
3389
- niche: IManagerWork | string;
3390
- subNiche: IManagerWork | string;
3592
+ interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel {
3593
+ taskJob: string | ITaskJob;
3594
+ blog: string | IBlog;
3391
3595
  }
3392
3596
 
3393
- type index$4_CheckSendMessageLark = CheckSendMessageLark;
3394
- type index$4_CreateLarkDto = CreateLarkDto;
3395
- type index$4_CreateSheetWorkDto = CreateSheetWorkDto;
3396
- type index$4_FilterLarkDto = FilterLarkDto;
3397
- type index$4_FilterSheetWorkCategoryDto = FilterSheetWorkCategoryDto;
3398
- type index$4_FilterSheetWorkDto = FilterSheetWorkDto;
3399
- type index$4_FindLarkDto = FindLarkDto;
3400
- type index$4_FindOverViewLarkDto = FindOverViewLarkDto;
3401
- type index$4_FindSheetWorkCategoryDto = FindSheetWorkCategoryDto;
3402
- type index$4_FindSheetWorkDto = FindSheetWorkDto;
3403
- type index$4_IDomain = IDomain;
3404
- type index$4_ILark = ILark;
3405
- type index$4_ILarkTeam = ILarkTeam;
3406
- type index$4_IManagerWork = IManagerWork;
3407
- type index$4_ISheetWork = ISheetWork;
3408
- type index$4_ISheetWorkDepartmentPermission = ISheetWorkDepartmentPermission;
3409
- type index$4_ISheetWorkManager = ISheetWorkManager;
3410
- type index$4_ISheetWorkUserPermission = ISheetWorkUserPermission;
3411
- type index$4_ISheetWorksCategory = ISheetWorksCategory;
3412
- type index$4_ITag = ITag;
3413
- type index$4_ITaskJob = ITaskJob;
3414
- type index$4_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
3415
- type index$4_ITaskJobBlogAttached = ITaskJobBlogAttached;
3416
- type index$4_ITaskJobCheckList = ITaskJobCheckList;
3417
- type index$4_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
3418
- type index$4_ITaskJobDiscuss = ITaskJobDiscuss;
3419
- type index$4_ITaskJobLabel = ITaskJobLabel;
3420
- type index$4_ITaskJobPermission = ITaskJobPermission;
3421
- type index$4_ITaskJobTeamPermission = ITaskJobTeamPermission;
3422
- type index$4_ITaskJobUserPermission = ITaskJobUserPermission;
3423
- type index$4_ITaskJobsGroup = ITaskJobsGroup;
3424
- type index$4_ImportSheetWorkDto = ImportSheetWorkDto;
3425
- type index$4_StatisticsSheetWorkDto = StatisticsSheetWorkDto;
3426
- type index$4_UpdateLarkDto = UpdateLarkDto;
3427
- type index$4_UpdateSheetWorkDto = UpdateSheetWorkDto;
3428
- declare namespace index$4 {
3429
- export type { index$4_CheckSendMessageLark as CheckSendMessageLark, index$4_CreateLarkDto as CreateLarkDto, index$4_CreateSheetWorkDto as CreateSheetWorkDto, index$4_FilterLarkDto as FilterLarkDto, index$4_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$4_FilterSheetWorkDto as FilterSheetWorkDto, index$4_FindLarkDto as FindLarkDto, index$4_FindOverViewLarkDto as FindOverViewLarkDto, index$4_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$4_FindSheetWorkDto as FindSheetWorkDto, index$4_IDomain as IDomain, index$4_ILark as ILark, index$4_ILarkTeam as ILarkTeam, index$4_IManagerWork as IManagerWork, index$4_ISheetWork as ISheetWork, index$4_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, index$4_ISheetWorkManager as ISheetWorkManager, index$4_ISheetWorkUserPermission as ISheetWorkUserPermission, index$4_ISheetWorksCategory as ISheetWorksCategory, index$4_ITag as ITag, index$4_ITaskJob as ITaskJob, index$4_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, index$4_ITaskJobBlogAttached as ITaskJobBlogAttached, index$4_ITaskJobCheckList as ITaskJobCheckList, index$4_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$4_ITaskJobDiscuss as ITaskJobDiscuss, index$4_ITaskJobLabel as ITaskJobLabel, index$4_ITaskJobPermission as ITaskJobPermission, index$4_ITaskJobTeamPermission as ITaskJobTeamPermission, index$4_ITaskJobUserPermission as ITaskJobUserPermission, index$4_ITaskJobsGroup as ITaskJobsGroup, index$4_ImportSheetWorkDto as ImportSheetWorkDto, index$4_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$4_UpdateLarkDto as UpdateLarkDto, index$4_UpdateSheetWorkDto as UpdateSheetWorkDto };
3597
+ interface ITaskJobDepartmentPermission extends IBaseModel, ITrackingModel {
3598
+ taskJob: string | ITaskJob;
3599
+ department: string | IDepartment;
3600
+ }
3601
+
3602
+ interface ITaskJobPermission extends IBaseModel, ITrackingModel {
3603
+ taskJob: string | ITaskJob;
3604
+ typePermission: 'Department' | 'Team' | 'User';
3605
+ refInstanceID: string;
3606
+ }
3607
+
3608
+ interface ITaskJobTeamPermission extends IBaseModel, ITrackingModel {
3609
+ taskJob: string | ITaskJob;
3610
+ team: string | ITeam;
3611
+ }
3612
+
3613
+ interface ITaskJobUserPermission extends IBaseModel, ITrackingModel {
3614
+ taskJob: string | ITaskJob;
3615
+ user: string | IUser;
3616
+ }
3617
+
3618
+ type index$5_CheckSendMessageLark = CheckSendMessageLark;
3619
+ type index$5_CreateLarkDto = CreateLarkDto;
3620
+ type index$5_CreateManagerWorkDto = CreateManagerWorkDto;
3621
+ type index$5_CreateSheetWorkDto = CreateSheetWorkDto;
3622
+ type index$5_CreateTasksJobDto = CreateTasksJobDto;
3623
+ type index$5_FilterLarkDto = FilterLarkDto;
3624
+ type index$5_FilterManagerWorkDto = FilterManagerWorkDto;
3625
+ type index$5_FilterSheetWorkCategoryDto = FilterSheetWorkCategoryDto;
3626
+ type index$5_FilterSheetWorkDto = FilterSheetWorkDto;
3627
+ type index$5_FindLarkDto = FindLarkDto;
3628
+ type index$5_FindManagerWorkDto = FindManagerWorkDto;
3629
+ type index$5_FindOverViewLarkDto = FindOverViewLarkDto;
3630
+ type index$5_FindSheetWorkCategoryDto = FindSheetWorkCategoryDto;
3631
+ type index$5_FindSheetWorkDto = FindSheetWorkDto;
3632
+ type index$5_FindTasksJobDto = FindTasksJobDto;
3633
+ type index$5_IDomain = IDomain;
3634
+ type index$5_ILark = ILark;
3635
+ type index$5_ILarkTeam = ILarkTeam;
3636
+ type index$5_IMailWork = IMailWork;
3637
+ type index$5_IManagerWork = IManagerWork;
3638
+ type index$5_ISheetWork = ISheetWork;
3639
+ type index$5_ISheetWorkDepartmentPermission = ISheetWorkDepartmentPermission;
3640
+ type index$5_ISheetWorkManager = ISheetWorkManager;
3641
+ type index$5_ISheetWorkUserPermission = ISheetWorkUserPermission;
3642
+ type index$5_ISheetWorksCategory = ISheetWorksCategory;
3643
+ type index$5_ITag = ITag;
3644
+ type index$5_ITaskJob = ITaskJob;
3645
+ type index$5_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
3646
+ type index$5_ITaskJobBlogAttached = ITaskJobBlogAttached;
3647
+ type index$5_ITaskJobCheckList = ITaskJobCheckList;
3648
+ type index$5_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
3649
+ type index$5_ITaskJobDiscuss = ITaskJobDiscuss;
3650
+ type index$5_ITaskJobLabel = ITaskJobLabel;
3651
+ type index$5_ITaskJobPermission = ITaskJobPermission;
3652
+ type index$5_ITaskJobTeamPermission = ITaskJobTeamPermission;
3653
+ type index$5_ITaskJobUserPermission = ITaskJobUserPermission;
3654
+ type index$5_ITaskJobsGroup = ITaskJobsGroup;
3655
+ type index$5_ImportManagerWorkDto = ImportManagerWorkDto;
3656
+ type index$5_ImportSheetWorkDto = ImportSheetWorkDto;
3657
+ type index$5_StatisticsManagerWorkDto = StatisticsManagerWorkDto;
3658
+ type index$5_StatisticsSheetWorkDto = StatisticsSheetWorkDto;
3659
+ type index$5_UpdateLarkDto = UpdateLarkDto;
3660
+ type index$5_UpdateManagerWorkDto = UpdateManagerWorkDto;
3661
+ type index$5_UpdateSheetWorkDto = UpdateSheetWorkDto;
3662
+ type index$5_UpdateTasksJobDto = UpdateTasksJobDto;
3663
+ declare namespace index$5 {
3664
+ export type { index$5_CheckSendMessageLark as CheckSendMessageLark, index$5_CreateLarkDto as CreateLarkDto, index$5_CreateManagerWorkDto as CreateManagerWorkDto, index$5_CreateSheetWorkDto as CreateSheetWorkDto, index$5_CreateTasksJobDto as CreateTasksJobDto, index$5_FilterLarkDto as FilterLarkDto, index$5_FilterManagerWorkDto as FilterManagerWorkDto, index$5_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$5_FilterSheetWorkDto as FilterSheetWorkDto, index$5_FindLarkDto as FindLarkDto, index$5_FindManagerWorkDto as FindManagerWorkDto, index$5_FindOverViewLarkDto as FindOverViewLarkDto, index$5_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$5_FindSheetWorkDto as FindSheetWorkDto, index$5_FindTasksJobDto as FindTasksJobDto, index$5_IDomain as IDomain, index$5_ILark as ILark, index$5_ILarkTeam as ILarkTeam, index$5_IMailWork as IMailWork, index$5_IManagerWork as IManagerWork, index$5_ISheetWork as ISheetWork, index$5_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, index$5_ISheetWorkManager as ISheetWorkManager, index$5_ISheetWorkUserPermission as ISheetWorkUserPermission, index$5_ISheetWorksCategory as ISheetWorksCategory, index$5_ITag as ITag, index$5_ITaskJob as ITaskJob, index$5_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, index$5_ITaskJobBlogAttached as ITaskJobBlogAttached, index$5_ITaskJobCheckList as ITaskJobCheckList, index$5_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$5_ITaskJobDiscuss as ITaskJobDiscuss, index$5_ITaskJobLabel as ITaskJobLabel, index$5_ITaskJobPermission as ITaskJobPermission, index$5_ITaskJobTeamPermission as ITaskJobTeamPermission, index$5_ITaskJobUserPermission as ITaskJobUserPermission, index$5_ITaskJobsGroup as ITaskJobsGroup, index$5_ImportManagerWorkDto as ImportManagerWorkDto, index$5_ImportSheetWorkDto as ImportSheetWorkDto, index$5_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$5_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$5_UpdateLarkDto as UpdateLarkDto, index$5_UpdateManagerWorkDto as UpdateManagerWorkDto, index$5_UpdateSheetWorkDto as UpdateSheetWorkDto, index$5_UpdateTasksJobDto as UpdateTasksJobDto };
3430
3665
  }
3431
3666
 
3432
3667
  interface IAccountAIContent extends IBaseModel, ITrackingModel {
@@ -4529,17 +4764,34 @@ interface IDeviceSettingForVPN extends IBaseModel, ITrackingModel {
4529
4764
  accountVPN: string | IAccountVPN;
4530
4765
  }
4531
4766
 
4532
- interface IAccountSocialGroup extends IBaseModel, ITrackingModel {
4533
- typeSocial: ETypeSocial;
4534
- name: string;
4535
- description: string;
4767
+ interface IAccountSocialBase extends IBaseModel, ITrackingModel {
4768
+ accountID: number;
4769
+ group: IAccountSocialGroup | string;
4770
+ nameAppCloneSocial: string;
4771
+ accountDeviceTypeAppClone: string;
4772
+ accountDeviceNameAppClone: string;
4773
+ idea: string | IManagerWork;
4774
+ niche: string | IManagerWork;
4775
+ type: ETypeManagerWorkClassify;
4776
+ pc: IPC | string;
4777
+ device: IDevice | string;
4778
+ isActiveOnDevice: boolean;
4779
+ oldUsername?: string;
4780
+ newUsername?: string;
4781
+ email?: string;
4536
4782
  }
4537
4783
 
4538
- interface FindInstagramAccountRawDto extends IFindBaseDto {
4539
- pcInfo: {
4540
- id: string;
4541
- name: string;
4542
- department: string;
4784
+ interface IIncreaseValueTask extends IBaseModel {
4785
+ taskId: string;
4786
+ valueIncrease: number;
4787
+ maxIncrease: number;
4788
+ }
4789
+
4790
+ interface FindInstagramAccountRawDto extends IFindBaseDto {
4791
+ pcInfo: {
4792
+ id: string;
4793
+ name: string;
4794
+ department: string;
4543
4795
  leader: string;
4544
4796
  team: string;
4545
4797
  };
@@ -11428,211 +11680,211 @@ interface IVoiceSettingDelay extends IBaseModel, ITrackingModel {
11428
11680
  vsd_timeDelay: number;
11429
11681
  }
11430
11682
 
11431
- type index$3_ActionLoadInfoUrlSheetToolDto = ActionLoadInfoUrlSheetToolDto;
11432
- type index$3_ActionPopupDeviceAccountDto = ActionPopupDeviceAccountDto;
11433
- type index$3_AddAccountForDeviceDto = AddAccountForDeviceDto;
11434
- type index$3_AddBulkManualContentSocialChildrenDto = AddBulkManualContentSocialChildrenDto;
11435
- type index$3_AddManualContentSocialChildrenDto = AddManualContentSocialChildrenDto;
11436
- type index$3_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
11437
- type index$3_AddToDeviceAccountVPNDto = AddToDeviceAccountVPNDto;
11438
- type index$3_AddToDeviceProxyDto = AddToDeviceProxyDto;
11439
- type index$3_ApplyAutoFillDeviceDto = ApplyAutoFillDeviceDto;
11440
- type index$3_ApplyReplaceDeviceDto = ApplyReplaceDeviceDto;
11441
- type index$3_CreateAccountVPSDto = CreateAccountVPSDto;
11442
- type index$3_CreateManagerImageAIDto = CreateManagerImageAIDto;
11443
- type index$3_CreateProxyDto = CreateProxyDto;
11444
- type index$3_CreateSheetToolDto = CreateSheetToolDto;
11445
- type index$3_CreateTaskAIContentDto = CreateTaskAIContentDto;
11446
- type index$3_DevicePopupListAddAccountDto = DevicePopupListAddAccountDto;
11447
- type index$3_DevicePopupOverviewAccountsDto = DevicePopupOverviewAccountsDto;
11448
- type index$3_DevicePopupOverviewAddAccountDto = DevicePopupOverviewAddAccountDto;
11449
- type index$3_DevicePopupViewAccountInstagramDto = DevicePopupViewAccountInstagramDto;
11450
- type index$3_DevicePopupViewAccountThreadsDto = DevicePopupViewAccountThreadsDto;
11451
- type index$3_EManagerImageAIFolder = EManagerImageAIFolder;
11452
- declare const index$3_EManagerImageAIFolder: typeof EManagerImageAIFolder;
11453
- type index$3_EManagerImageAIModel = EManagerImageAIModel;
11454
- declare const index$3_EManagerImageAIModel: typeof EManagerImageAIModel;
11455
- type index$3_EManualContentStatusPost = EManualContentStatusPost;
11456
- declare const index$3_EManualContentStatusPost: typeof EManualContentStatusPost;
11457
- type index$3_EManualContentStatusTask = EManualContentStatusTask;
11458
- declare const index$3_EManualContentStatusTask: typeof EManualContentStatusTask;
11459
- type index$3_EManualContentTypePost = EManualContentTypePost;
11460
- declare const index$3_EManualContentTypePost: typeof EManualContentTypePost;
11461
- type index$3_EStatusAccountCHPlayICloud = EStatusAccountCHPlayICloud;
11462
- declare const index$3_EStatusAccountCHPlayICloud: typeof EStatusAccountCHPlayICloud;
11463
- type index$3_EStatusAccountCanva = EStatusAccountCanva;
11464
- declare const index$3_EStatusAccountCanva: typeof EStatusAccountCanva;
11465
- type index$3_EStatusAccountDrive = EStatusAccountDrive;
11466
- declare const index$3_EStatusAccountDrive: typeof EStatusAccountDrive;
11467
- type index$3_EStatusAccountVPN = EStatusAccountVPN;
11468
- declare const index$3_EStatusAccountVPN: typeof EStatusAccountVPN;
11469
- type index$3_EStatusEmail = EStatusEmail;
11470
- declare const index$3_EStatusEmail: typeof EStatusEmail;
11471
- type index$3_EStatusProxyChecked = EStatusProxyChecked;
11472
- declare const index$3_EStatusProxyChecked: typeof EStatusProxyChecked;
11473
- type index$3_EStatusProxyNewIP = EStatusProxyNewIP;
11474
- declare const index$3_EStatusProxyNewIP: typeof EStatusProxyNewIP;
11475
- type index$3_EStatusTaskAIContent = EStatusTaskAIContent;
11476
- declare const index$3_EStatusTaskAIContent: typeof EStatusTaskAIContent;
11477
- type index$3_EStatusVPS = EStatusVPS;
11478
- declare const index$3_EStatusVPS: typeof EStatusVPS;
11479
- type index$3_EStatusVPSReplace = EStatusVPSReplace;
11480
- declare const index$3_EStatusVPSReplace: typeof EStatusVPSReplace;
11481
- type index$3_ETaskGenerateAIStatus = ETaskGenerateAIStatus;
11482
- declare const index$3_ETaskGenerateAIStatus: typeof ETaskGenerateAIStatus;
11483
- type index$3_ETaskGenerateAIType = ETaskGenerateAIType;
11484
- declare const index$3_ETaskGenerateAIType: typeof ETaskGenerateAIType;
11485
- type index$3_ETypeRatioImage = ETypeRatioImage;
11486
- declare const index$3_ETypeRatioImage: typeof ETypeRatioImage;
11487
- type index$3_FilterAccountCHPlayICloudDto = FilterAccountCHPlayICloudDto;
11488
- type index$3_FilterAccountCanvaDto = FilterAccountCanvaDto;
11489
- type index$3_FilterAccountDriveDto = FilterAccountDriveDto;
11490
- type index$3_FilterAccountEmailDto = FilterAccountEmailDto;
11491
- type index$3_FilterAccountEmailManagerDto = FilterAccountEmailManagerDto;
11492
- type index$3_FilterAccountVPNDto = FilterAccountVPNDto;
11493
- type index$3_FilterAccountVPSDto = FilterAccountVPSDto;
11494
- type index$3_FilterAccountVPSGroupDto = FilterAccountVPSGroupDto;
11495
- type index$3_FilterDeviceDto = FilterDeviceDto;
11496
- type index$3_FilterDeviceLogDto = FilterDeviceLogDto;
11497
- type index$3_FilterManagerImageAIDto = FilterManagerImageAIDto;
11498
- type index$3_FilterManagerSheetDto = FilterManagerSheetDto;
11499
- type index$3_FilterManualContentSocialDto = FilterManualContentSocialDto;
11500
- type index$3_FilterPCDto = FilterPCDto;
11501
- type index$3_FilterProxyDto = FilterProxyDto;
11502
- type index$3_FilterSheetsToolDto = FilterSheetsToolDto;
11503
- type index$3_FilterTaskAIContentDto = FilterTaskAIContentDto;
11504
- type index$3_FilterTaskAIImageVoiceCanvaInstagramDto = FilterTaskAIImageVoiceCanvaInstagramDto;
11505
- type index$3_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
11506
- type index$3_FindAccountCanvaDto = FindAccountCanvaDto;
11507
- type index$3_FindAccountDriveDto = FindAccountDriveDto;
11508
- type index$3_FindAccountEmailDto = FindAccountEmailDto;
11509
- type index$3_FindAccountVPNDto = FindAccountVPNDto;
11510
- type index$3_FindAccountVPSDto = FindAccountVPSDto;
11511
- type index$3_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
11512
- type index$3_FindAccountVPSGroupPopupDto = FindAccountVPSGroupPopupDto;
11513
- type index$3_FindAutoFillDeviceDto = FindAutoFillDeviceDto;
11514
- type index$3_FindDeviceAvailableForAddAccountVPNDto = FindDeviceAvailableForAddAccountVPNDto;
11515
- type index$3_FindDeviceAvailableForAddCHPlayICloudDto = FindDeviceAvailableForAddCHPlayICloudDto;
11516
- type index$3_FindDeviceAvailableForAddProxyDto = FindDeviceAvailableForAddProxyDto;
11517
- type index$3_FindDeviceDto = FindDeviceDto;
11518
- type index$3_FindDeviceLogDto = FindDeviceLogDto;
11519
- type index$3_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto = FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto;
11520
- type index$3_FindListAccountSocialForManualContentAdd = FindListAccountSocialForManualContentAdd;
11521
- type index$3_FindManagerImageAIDto = FindManagerImageAIDto;
11522
- type index$3_FindManagerSheetDto = FindManagerSheetDto;
11523
- type index$3_FindManualContentSocialDto = FindManualContentSocialDto;
11524
- type index$3_FindOverViewTaskAIContentDto = FindOverViewTaskAIContentDto;
11525
- type index$3_FindOverViewTaskAIImageVoiceCanvaInstagramDto = FindOverViewTaskAIImageVoiceCanvaInstagramDto;
11526
- type index$3_FindOverviewAccountCHPlayICloudDto = FindOverviewAccountCHPlayICloudDto;
11527
- type index$3_FindOverviewAccountCanvaDto = FindOverviewAccountCanvaDto;
11528
- type index$3_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
11529
- type index$3_FindOverviewAccountEmailDto = FindOverviewAccountEmailDto;
11530
- type index$3_FindOverviewAccountEmailManagerDto = FindOverviewAccountEmailManagerDto;
11531
- type index$3_FindOverviewAccountVPNDto = FindOverviewAccountVPNDto;
11532
- type index$3_FindOverviewAccountVPSDto = FindOverviewAccountVPSDto;
11533
- type index$3_FindOverviewDeviceBasicDto = FindOverviewDeviceBasicDto;
11534
- type index$3_FindOverviewDeviceDetailDto = FindOverviewDeviceDetailDto;
11535
- type index$3_FindOverviewDeviceLog = FindOverviewDeviceLog;
11536
- type index$3_FindOverviewDeviceSocialMediaAccountDto = FindOverviewDeviceSocialMediaAccountDto;
11537
- type index$3_FindOverviewDeviceSocialMediaActiveLockedDto = FindOverviewDeviceSocialMediaActiveLockedDto;
11538
- type index$3_FindOverviewManagerImageAIDto = FindOverviewManagerImageAIDto;
11539
- type index$3_FindOverviewManualContentSocialDto = FindOverviewManualContentSocialDto;
11540
- type index$3_FindOverviewPCDto = FindOverviewPCDto;
11541
- type index$3_FindOverviewProxyDto = FindOverviewProxyDto;
11542
- type index$3_FindPCDetail = FindPCDetail;
11543
- type index$3_FindPCDto = FindPCDto;
11544
- type index$3_FindProxyDto = FindProxyDto;
11545
- type index$3_FindReplaceDeviceDto = FindReplaceDeviceDto;
11546
- type index$3_FindSheetsToolDto = FindSheetsToolDto;
11547
- type index$3_FindTaskAIContentDto = FindTaskAIContentDto;
11548
- type index$3_FindTaskAvailableAIContentDto = FindTaskAvailableAIContentDto;
11549
- type index$3_FindTaskManualContentSocialDto = FindTaskManualContentSocialDto;
11550
- type index$3_IAccountAIContent = IAccountAIContent;
11551
- type index$3_IAccountAIContentChannel = IAccountAIContentChannel;
11552
- type index$3_IAccountAIContentGroup = IAccountAIContentGroup;
11553
- type index$3_IAccountAIContentInfo = IAccountAIContentInfo;
11554
- type index$3_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
11555
- type index$3_IAccountAIContentTag = IAccountAIContentTag;
11556
- type index$3_IAccountCHPlayICloud = IAccountCHPlayICloud;
11557
- type index$3_IAccountCanva = IAccountCanva;
11558
- type index$3_IAccountDrive = IAccountDrive;
11559
- type index$3_IAccountEmail = IAccountEmail;
11560
- type index$3_IAccountEmailProxy = IAccountEmailProxy;
11561
- type index$3_IAccountEmailTag = IAccountEmailTag;
11562
- type index$3_IAccountEmailTaskWork = IAccountEmailTaskWork;
11563
- type index$3_IAccountVPN = IAccountVPN;
11564
- type index$3_IAccountVPS = IAccountVPS;
11565
- type index$3_IAccountVPSGroup = IAccountVPSGroup;
11566
- type index$3_IAccountVPSSocial = IAccountVPSSocial;
11567
- type index$3_IDevice = IDevice;
11568
- type index$3_IDeviceLog = IDeviceLog;
11569
- type index$3_IDeviceLogELS = IDeviceLogELS;
11570
- type index$3_IDeviceLogStoreIdxELS = IDeviceLogStoreIdxELS;
11571
- type index$3_IDevicePopupViewAccountSocial = IDevicePopupViewAccountSocial;
11572
- type index$3_IDeviceSettingForAccount = IDeviceSettingForAccount;
11573
- type index$3_IDeviceSettingForCHPlayICloud = IDeviceSettingForCHPlayICloud;
11574
- type index$3_IDeviceSettingForProxy = IDeviceSettingForProxy;
11575
- type index$3_IDeviceSettingForVPN = IDeviceSettingForVPN;
11576
- type index$3_IEmailAccountSocial = IEmailAccountSocial;
11577
- type index$3_IEmailProxy = IEmailProxy;
11578
- type index$3_IEmailRawManager = IEmailRawManager;
11579
- type index$3_IEmailVPS = IEmailVPS;
11580
- type index$3_IGPMProfile = IGPMProfile;
11581
- type index$3_IHistoryTaskAIContent = IHistoryTaskAIContent;
11582
- type index$3_IHistoryTaskAIImageVideoVoiceCanvaInstagram = IHistoryTaskAIImageVideoVoiceCanvaInstagram;
11583
- type index$3_IHistoryTaskAIImageVideoVoiceCanvaThreads = IHistoryTaskAIImageVideoVoiceCanvaThreads;
11584
- type index$3_IManagerImageAI = IManagerImageAI;
11585
- type index$3_IManagerImageAIItemStore = IManagerImageAIItemStore;
11586
- type index$3_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
11587
- type index$3_IManagerSheet = IManagerSheet;
11588
- type index$3_IManagerSheetChildren = IManagerSheetChildren;
11589
- type index$3_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
11590
- type index$3_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
11591
- type index$3_IManagerSheetGroup = IManagerSheetGroup;
11592
- type index$3_IManualContentRunTime = IManualContentRunTime;
11593
- type index$3_IManualContentSocial = IManualContentSocial;
11594
- type index$3_IManualContentSocialChildren = IManualContentSocialChildren;
11595
- type index$3_IManualContentSocialChildrenItemPost = IManualContentSocialChildrenItemPost;
11596
- type index$3_IPC = IPC;
11597
- type index$3_IPCLog = IPCLog;
11598
- type index$3_IPCLogELS = IPCLogELS;
11599
- type index$3_IPCLogStoreIdxELS = IPCLogStoreIdxELS;
11600
- type index$3_IProxy = IProxy;
11601
- type index$3_ISettingTool = ISettingTool;
11602
- type index$3_ISheetsTool = ISheetsTool;
11603
- type index$3_ITaskAIContent = ITaskAIContent;
11604
- type index$3_ITaskAIImageCanva = ITaskAIImageCanva;
11605
- type index$3_ITaskAIImageVideoVoiceCanvaInstagram = ITaskAIImageVideoVoiceCanvaInstagram;
11606
- type index$3_ITaskAIImageVideoVoiceCanvaThreads = ITaskAIImageVideoVoiceCanvaThreads;
11607
- type index$3_ITaskAIItemAction = ITaskAIItemAction;
11608
- type index$3_ITaskAIItemGroup = ITaskAIItemGroup;
11609
- type index$3_ITaskManualContentSocial = ITaskManualContentSocial;
11610
- type index$3_IViewDeviceByPC = IViewDeviceByPC;
11611
- type index$3_IVoiceGenerated = IVoiceGenerated;
11612
- type index$3_IVoiceLanguage = IVoiceLanguage;
11613
- type index$3_IVoiceSettingDelay = IVoiceSettingDelay;
11614
- type index$3_IVoiceStores = IVoiceStores;
11615
- type index$3_ImportAccountVPSDto = ImportAccountVPSDto;
11616
- type index$3_ListManualContentSocialChildrenDto = ListManualContentSocialChildrenDto;
11617
- type index$3_LoadInfoUrlSheetToolDto = LoadInfoUrlSheetToolDto;
11618
- type index$3_OverviewSheetsToolDto = OverviewSheetsToolDto;
11619
- type index$3_PayloadUrlSheetToolDto = PayloadUrlSheetToolDto;
11620
- type index$3_ReplaceAccountVSPDto = ReplaceAccountVSPDto;
11621
- type index$3_StoreTaskManualContentSocialForRunDto = StoreTaskManualContentSocialForRunDto;
11622
- type index$3_UpdateAccountVPSDto = UpdateAccountVPSDto;
11623
- type index$3_UpdateDeviceDto = UpdateDeviceDto;
11624
- type index$3_UpdatePCDto = UpdatePCDto;
11625
- type index$3_UpdateProxyDto = UpdateProxyDto;
11626
- type index$3_UpdateSheetsToolDto = UpdateSheetsToolDto;
11627
- type index$3_UpdateTaskAIContentDto = UpdateTaskAIContentDto;
11628
- type index$3_UpsertManualContentSocialChildrenDto = UpsertManualContentSocialChildrenDto;
11629
- type index$3_UpsertManualContentSocialChildrenItemPostDto = UpsertManualContentSocialChildrenItemPostDto;
11630
- type index$3_UpsertManualContentSocialDto = UpsertManualContentSocialDto;
11631
- type index$3_ViewAutoSyncInformationManualContentDto = ViewAutoSyncInformationManualContentDto;
11632
- type index$3_ViewDetailDeviceDto = ViewDetailDeviceDto;
11633
- type index$3_ViewDetailSheetsToolDto = ViewDetailSheetsToolDto;
11634
- declare namespace index$3 {
11635
- export { type index$3_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$3_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$3_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$3_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$3_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$3_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$3_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$3_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$3_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$3_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, type index$3_CreateAccountVPSDto as CreateAccountVPSDto, type index$3_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$3_CreateProxyDto as CreateProxyDto, type index$3_CreateSheetToolDto as CreateSheetToolDto, type index$3_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$3_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$3_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$3_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$3_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$3_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$3_EManagerImageAIFolder as EManagerImageAIFolder, index$3_EManagerImageAIModel as EManagerImageAIModel, index$3_EManualContentStatusPost as EManualContentStatusPost, index$3_EManualContentStatusTask as EManualContentStatusTask, index$3_EManualContentTypePost as EManualContentTypePost, index$3_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$3_EStatusAccountCanva as EStatusAccountCanva, index$3_EStatusAccountDrive as EStatusAccountDrive, index$3_EStatusAccountVPN as EStatusAccountVPN, index$3_EStatusEmail as EStatusEmail, index$3_EStatusProxyChecked as EStatusProxyChecked, index$3_EStatusProxyNewIP as EStatusProxyNewIP, index$3_EStatusTaskAIContent as EStatusTaskAIContent, index$3_EStatusVPS as EStatusVPS, index$3_EStatusVPSReplace as EStatusVPSReplace, index$3_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$3_ETaskGenerateAIType as ETaskGenerateAIType, index$3_ETypeRatioImage as ETypeRatioImage, type index$3_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$3_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$3_FilterAccountDriveDto as FilterAccountDriveDto, type index$3_FilterAccountEmailDto as FilterAccountEmailDto, type index$3_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$3_FilterAccountVPNDto as FilterAccountVPNDto, type index$3_FilterAccountVPSDto as FilterAccountVPSDto, type index$3_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$3_FilterDeviceDto as FilterDeviceDto, type index$3_FilterDeviceLogDto as FilterDeviceLogDto, type index$3_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$3_FilterManagerSheetDto as FilterManagerSheetDto, type index$3_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$3_FilterPCDto as FilterPCDto, type index$3_FilterProxyDto as FilterProxyDto, type index$3_FilterSheetsToolDto as FilterSheetsToolDto, type index$3_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$3_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$3_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$3_FindAccountCanvaDto as FindAccountCanvaDto, type index$3_FindAccountDriveDto as FindAccountDriveDto, type index$3_FindAccountEmailDto as FindAccountEmailDto, type index$3_FindAccountVPNDto as FindAccountVPNDto, type index$3_FindAccountVPSDto as FindAccountVPSDto, type index$3_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$3_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$3_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$3_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$3_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$3_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$3_FindDeviceDto as FindDeviceDto, type index$3_FindDeviceLogDto as FindDeviceLogDto, type index$3_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$3_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$3_FindManagerImageAIDto as FindManagerImageAIDto, type index$3_FindManagerSheetDto as FindManagerSheetDto, type index$3_FindManualContentSocialDto as FindManualContentSocialDto, type index$3_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$3_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$3_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$3_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$3_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$3_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$3_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$3_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$3_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$3_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$3_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$3_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$3_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$3_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$3_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$3_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$3_FindOverviewPCDto as FindOverviewPCDto, type index$3_FindOverviewProxyDto as FindOverviewProxyDto, type index$3_FindPCDetail as FindPCDetail, type index$3_FindPCDto as FindPCDto, type index$3_FindProxyDto as FindProxyDto, type index$3_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$3_FindSheetsToolDto as FindSheetsToolDto, type index$3_FindTaskAIContentDto as FindTaskAIContentDto, type index$3_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$3_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$3_IAccountAIContent as IAccountAIContent, type index$3_IAccountAIContentChannel as IAccountAIContentChannel, type index$3_IAccountAIContentGroup as IAccountAIContentGroup, type index$3_IAccountAIContentInfo as IAccountAIContentInfo, type index$3_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$3_IAccountAIContentTag as IAccountAIContentTag, type index$3_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$3_IAccountCanva as IAccountCanva, type index$3_IAccountDrive as IAccountDrive, type index$3_IAccountEmail as IAccountEmail, type index$3_IAccountEmailProxy as IAccountEmailProxy, type index$3_IAccountEmailTag as IAccountEmailTag, type index$3_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$3_IAccountVPN as IAccountVPN, type index$3_IAccountVPS as IAccountVPS, type index$3_IAccountVPSGroup as IAccountVPSGroup, type index$3_IAccountVPSSocial as IAccountVPSSocial, type index$3_IDevice as IDevice, type index$3_IDeviceLog as IDeviceLog, type index$3_IDeviceLogELS as IDeviceLogELS, type index$3_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$3_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$3_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$3_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$3_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$3_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$3_IEmailAccountSocial as IEmailAccountSocial, type index$3_IEmailProxy as IEmailProxy, type index$3_IEmailRawManager as IEmailRawManager, type index$3_IEmailVPS as IEmailVPS, type index$3_IGPMProfile as IGPMProfile, type index$3_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$3_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$3_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$3_IManagerImageAI as IManagerImageAI, type index$3_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$3_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$3_IManagerSheet as IManagerSheet, type index$3_IManagerSheetChildren as IManagerSheetChildren, type index$3_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$3_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$3_IManagerSheetGroup as IManagerSheetGroup, type index$3_IManualContentRunTime as IManualContentRunTime, type index$3_IManualContentSocial as IManualContentSocial, type index$3_IManualContentSocialChildren as IManualContentSocialChildren, type index$3_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$3_IPC as IPC, type index$3_IPCLog as IPCLog, type index$3_IPCLogELS as IPCLogELS, type index$3_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$3_IProxy as IProxy, type index$3_ISettingTool as ISettingTool, type index$3_ISheetsTool as ISheetsTool, type index$3_ITaskAIContent as ITaskAIContent, type index$3_ITaskAIImageCanva as ITaskAIImageCanva, type index$3_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$3_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$3_ITaskAIItemAction as ITaskAIItemAction, type index$3_ITaskAIItemGroup as ITaskAIItemGroup, type index$3_ITaskManualContentSocial as ITaskManualContentSocial, type index$3_IViewDeviceByPC as IViewDeviceByPC, type index$3_IVoiceGenerated as IVoiceGenerated, type index$3_IVoiceLanguage as IVoiceLanguage, type index$3_IVoiceSettingDelay as IVoiceSettingDelay, type index$3_IVoiceStores as IVoiceStores, type index$3_ImportAccountVPSDto as ImportAccountVPSDto, type index$3_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$3_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$3_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$3_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, type index$3_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$3_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, type index$3_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$3_UpdateDeviceDto as UpdateDeviceDto, type index$3_UpdatePCDto as UpdatePCDto, type index$3_UpdateProxyDto as UpdateProxyDto, type index$3_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$3_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$3_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$3_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$3_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$3_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$3_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$3_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto };
11683
+ type index$4_ActionLoadInfoUrlSheetToolDto = ActionLoadInfoUrlSheetToolDto;
11684
+ type index$4_ActionPopupDeviceAccountDto = ActionPopupDeviceAccountDto;
11685
+ type index$4_AddAccountForDeviceDto = AddAccountForDeviceDto;
11686
+ type index$4_AddBulkManualContentSocialChildrenDto = AddBulkManualContentSocialChildrenDto;
11687
+ type index$4_AddManualContentSocialChildrenDto = AddManualContentSocialChildrenDto;
11688
+ type index$4_AddToDeviceAccountCHPlayICloudDto = AddToDeviceAccountCHPlayICloudDto;
11689
+ type index$4_AddToDeviceAccountVPNDto = AddToDeviceAccountVPNDto;
11690
+ type index$4_AddToDeviceProxyDto = AddToDeviceProxyDto;
11691
+ type index$4_ApplyAutoFillDeviceDto = ApplyAutoFillDeviceDto;
11692
+ type index$4_ApplyReplaceDeviceDto = ApplyReplaceDeviceDto;
11693
+ type index$4_CreateAccountVPSDto = CreateAccountVPSDto;
11694
+ type index$4_CreateManagerImageAIDto = CreateManagerImageAIDto;
11695
+ type index$4_CreateProxyDto = CreateProxyDto;
11696
+ type index$4_CreateSheetToolDto = CreateSheetToolDto;
11697
+ type index$4_CreateTaskAIContentDto = CreateTaskAIContentDto;
11698
+ type index$4_DevicePopupListAddAccountDto = DevicePopupListAddAccountDto;
11699
+ type index$4_DevicePopupOverviewAccountsDto = DevicePopupOverviewAccountsDto;
11700
+ type index$4_DevicePopupOverviewAddAccountDto = DevicePopupOverviewAddAccountDto;
11701
+ type index$4_DevicePopupViewAccountInstagramDto = DevicePopupViewAccountInstagramDto;
11702
+ type index$4_DevicePopupViewAccountThreadsDto = DevicePopupViewAccountThreadsDto;
11703
+ type index$4_EManagerImageAIFolder = EManagerImageAIFolder;
11704
+ declare const index$4_EManagerImageAIFolder: typeof EManagerImageAIFolder;
11705
+ type index$4_EManagerImageAIModel = EManagerImageAIModel;
11706
+ declare const index$4_EManagerImageAIModel: typeof EManagerImageAIModel;
11707
+ type index$4_EManualContentStatusPost = EManualContentStatusPost;
11708
+ declare const index$4_EManualContentStatusPost: typeof EManualContentStatusPost;
11709
+ type index$4_EManualContentStatusTask = EManualContentStatusTask;
11710
+ declare const index$4_EManualContentStatusTask: typeof EManualContentStatusTask;
11711
+ type index$4_EManualContentTypePost = EManualContentTypePost;
11712
+ declare const index$4_EManualContentTypePost: typeof EManualContentTypePost;
11713
+ type index$4_EStatusAccountCHPlayICloud = EStatusAccountCHPlayICloud;
11714
+ declare const index$4_EStatusAccountCHPlayICloud: typeof EStatusAccountCHPlayICloud;
11715
+ type index$4_EStatusAccountCanva = EStatusAccountCanva;
11716
+ declare const index$4_EStatusAccountCanva: typeof EStatusAccountCanva;
11717
+ type index$4_EStatusAccountDrive = EStatusAccountDrive;
11718
+ declare const index$4_EStatusAccountDrive: typeof EStatusAccountDrive;
11719
+ type index$4_EStatusAccountVPN = EStatusAccountVPN;
11720
+ declare const index$4_EStatusAccountVPN: typeof EStatusAccountVPN;
11721
+ type index$4_EStatusEmail = EStatusEmail;
11722
+ declare const index$4_EStatusEmail: typeof EStatusEmail;
11723
+ type index$4_EStatusProxyChecked = EStatusProxyChecked;
11724
+ declare const index$4_EStatusProxyChecked: typeof EStatusProxyChecked;
11725
+ type index$4_EStatusProxyNewIP = EStatusProxyNewIP;
11726
+ declare const index$4_EStatusProxyNewIP: typeof EStatusProxyNewIP;
11727
+ type index$4_EStatusTaskAIContent = EStatusTaskAIContent;
11728
+ declare const index$4_EStatusTaskAIContent: typeof EStatusTaskAIContent;
11729
+ type index$4_EStatusVPS = EStatusVPS;
11730
+ declare const index$4_EStatusVPS: typeof EStatusVPS;
11731
+ type index$4_EStatusVPSReplace = EStatusVPSReplace;
11732
+ declare const index$4_EStatusVPSReplace: typeof EStatusVPSReplace;
11733
+ type index$4_ETaskGenerateAIStatus = ETaskGenerateAIStatus;
11734
+ declare const index$4_ETaskGenerateAIStatus: typeof ETaskGenerateAIStatus;
11735
+ type index$4_ETaskGenerateAIType = ETaskGenerateAIType;
11736
+ declare const index$4_ETaskGenerateAIType: typeof ETaskGenerateAIType;
11737
+ type index$4_ETypeRatioImage = ETypeRatioImage;
11738
+ declare const index$4_ETypeRatioImage: typeof ETypeRatioImage;
11739
+ type index$4_FilterAccountCHPlayICloudDto = FilterAccountCHPlayICloudDto;
11740
+ type index$4_FilterAccountCanvaDto = FilterAccountCanvaDto;
11741
+ type index$4_FilterAccountDriveDto = FilterAccountDriveDto;
11742
+ type index$4_FilterAccountEmailDto = FilterAccountEmailDto;
11743
+ type index$4_FilterAccountEmailManagerDto = FilterAccountEmailManagerDto;
11744
+ type index$4_FilterAccountVPNDto = FilterAccountVPNDto;
11745
+ type index$4_FilterAccountVPSDto = FilterAccountVPSDto;
11746
+ type index$4_FilterAccountVPSGroupDto = FilterAccountVPSGroupDto;
11747
+ type index$4_FilterDeviceDto = FilterDeviceDto;
11748
+ type index$4_FilterDeviceLogDto = FilterDeviceLogDto;
11749
+ type index$4_FilterManagerImageAIDto = FilterManagerImageAIDto;
11750
+ type index$4_FilterManagerSheetDto = FilterManagerSheetDto;
11751
+ type index$4_FilterManualContentSocialDto = FilterManualContentSocialDto;
11752
+ type index$4_FilterPCDto = FilterPCDto;
11753
+ type index$4_FilterProxyDto = FilterProxyDto;
11754
+ type index$4_FilterSheetsToolDto = FilterSheetsToolDto;
11755
+ type index$4_FilterTaskAIContentDto = FilterTaskAIContentDto;
11756
+ type index$4_FilterTaskAIImageVoiceCanvaInstagramDto = FilterTaskAIImageVoiceCanvaInstagramDto;
11757
+ type index$4_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
11758
+ type index$4_FindAccountCanvaDto = FindAccountCanvaDto;
11759
+ type index$4_FindAccountDriveDto = FindAccountDriveDto;
11760
+ type index$4_FindAccountEmailDto = FindAccountEmailDto;
11761
+ type index$4_FindAccountVPNDto = FindAccountVPNDto;
11762
+ type index$4_FindAccountVPSDto = FindAccountVPSDto;
11763
+ type index$4_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
11764
+ type index$4_FindAccountVPSGroupPopupDto = FindAccountVPSGroupPopupDto;
11765
+ type index$4_FindAutoFillDeviceDto = FindAutoFillDeviceDto;
11766
+ type index$4_FindDeviceAvailableForAddAccountVPNDto = FindDeviceAvailableForAddAccountVPNDto;
11767
+ type index$4_FindDeviceAvailableForAddCHPlayICloudDto = FindDeviceAvailableForAddCHPlayICloudDto;
11768
+ type index$4_FindDeviceAvailableForAddProxyDto = FindDeviceAvailableForAddProxyDto;
11769
+ type index$4_FindDeviceDto = FindDeviceDto;
11770
+ type index$4_FindDeviceLogDto = FindDeviceLogDto;
11771
+ type index$4_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto = FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto;
11772
+ type index$4_FindListAccountSocialForManualContentAdd = FindListAccountSocialForManualContentAdd;
11773
+ type index$4_FindManagerImageAIDto = FindManagerImageAIDto;
11774
+ type index$4_FindManagerSheetDto = FindManagerSheetDto;
11775
+ type index$4_FindManualContentSocialDto = FindManualContentSocialDto;
11776
+ type index$4_FindOverViewTaskAIContentDto = FindOverViewTaskAIContentDto;
11777
+ type index$4_FindOverViewTaskAIImageVoiceCanvaInstagramDto = FindOverViewTaskAIImageVoiceCanvaInstagramDto;
11778
+ type index$4_FindOverviewAccountCHPlayICloudDto = FindOverviewAccountCHPlayICloudDto;
11779
+ type index$4_FindOverviewAccountCanvaDto = FindOverviewAccountCanvaDto;
11780
+ type index$4_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
11781
+ type index$4_FindOverviewAccountEmailDto = FindOverviewAccountEmailDto;
11782
+ type index$4_FindOverviewAccountEmailManagerDto = FindOverviewAccountEmailManagerDto;
11783
+ type index$4_FindOverviewAccountVPNDto = FindOverviewAccountVPNDto;
11784
+ type index$4_FindOverviewAccountVPSDto = FindOverviewAccountVPSDto;
11785
+ type index$4_FindOverviewDeviceBasicDto = FindOverviewDeviceBasicDto;
11786
+ type index$4_FindOverviewDeviceDetailDto = FindOverviewDeviceDetailDto;
11787
+ type index$4_FindOverviewDeviceLog = FindOverviewDeviceLog;
11788
+ type index$4_FindOverviewDeviceSocialMediaAccountDto = FindOverviewDeviceSocialMediaAccountDto;
11789
+ type index$4_FindOverviewDeviceSocialMediaActiveLockedDto = FindOverviewDeviceSocialMediaActiveLockedDto;
11790
+ type index$4_FindOverviewManagerImageAIDto = FindOverviewManagerImageAIDto;
11791
+ type index$4_FindOverviewManualContentSocialDto = FindOverviewManualContentSocialDto;
11792
+ type index$4_FindOverviewPCDto = FindOverviewPCDto;
11793
+ type index$4_FindOverviewProxyDto = FindOverviewProxyDto;
11794
+ type index$4_FindPCDetail = FindPCDetail;
11795
+ type index$4_FindPCDto = FindPCDto;
11796
+ type index$4_FindProxyDto = FindProxyDto;
11797
+ type index$4_FindReplaceDeviceDto = FindReplaceDeviceDto;
11798
+ type index$4_FindSheetsToolDto = FindSheetsToolDto;
11799
+ type index$4_FindTaskAIContentDto = FindTaskAIContentDto;
11800
+ type index$4_FindTaskAvailableAIContentDto = FindTaskAvailableAIContentDto;
11801
+ type index$4_FindTaskManualContentSocialDto = FindTaskManualContentSocialDto;
11802
+ type index$4_IAccountAIContent = IAccountAIContent;
11803
+ type index$4_IAccountAIContentChannel = IAccountAIContentChannel;
11804
+ type index$4_IAccountAIContentGroup = IAccountAIContentGroup;
11805
+ type index$4_IAccountAIContentInfo = IAccountAIContentInfo;
11806
+ type index$4_IAccountAIContentMemberAssigned = IAccountAIContentMemberAssigned;
11807
+ type index$4_IAccountAIContentTag = IAccountAIContentTag;
11808
+ type index$4_IAccountCHPlayICloud = IAccountCHPlayICloud;
11809
+ type index$4_IAccountCanva = IAccountCanva;
11810
+ type index$4_IAccountDrive = IAccountDrive;
11811
+ type index$4_IAccountEmail = IAccountEmail;
11812
+ type index$4_IAccountEmailProxy = IAccountEmailProxy;
11813
+ type index$4_IAccountEmailTag = IAccountEmailTag;
11814
+ type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
11815
+ type index$4_IAccountVPN = IAccountVPN;
11816
+ type index$4_IAccountVPS = IAccountVPS;
11817
+ type index$4_IAccountVPSGroup = IAccountVPSGroup;
11818
+ type index$4_IAccountVPSSocial = IAccountVPSSocial;
11819
+ type index$4_IDevice = IDevice;
11820
+ type index$4_IDeviceLog = IDeviceLog;
11821
+ type index$4_IDeviceLogELS = IDeviceLogELS;
11822
+ type index$4_IDeviceLogStoreIdxELS = IDeviceLogStoreIdxELS;
11823
+ type index$4_IDevicePopupViewAccountSocial = IDevicePopupViewAccountSocial;
11824
+ type index$4_IDeviceSettingForAccount = IDeviceSettingForAccount;
11825
+ type index$4_IDeviceSettingForCHPlayICloud = IDeviceSettingForCHPlayICloud;
11826
+ type index$4_IDeviceSettingForProxy = IDeviceSettingForProxy;
11827
+ type index$4_IDeviceSettingForVPN = IDeviceSettingForVPN;
11828
+ type index$4_IEmailAccountSocial = IEmailAccountSocial;
11829
+ type index$4_IEmailProxy = IEmailProxy;
11830
+ type index$4_IEmailRawManager = IEmailRawManager;
11831
+ type index$4_IEmailVPS = IEmailVPS;
11832
+ type index$4_IGPMProfile = IGPMProfile;
11833
+ type index$4_IHistoryTaskAIContent = IHistoryTaskAIContent;
11834
+ type index$4_IHistoryTaskAIImageVideoVoiceCanvaInstagram = IHistoryTaskAIImageVideoVoiceCanvaInstagram;
11835
+ type index$4_IHistoryTaskAIImageVideoVoiceCanvaThreads = IHistoryTaskAIImageVideoVoiceCanvaThreads;
11836
+ type index$4_IManagerImageAI = IManagerImageAI;
11837
+ type index$4_IManagerImageAIItemStore = IManagerImageAIItemStore;
11838
+ type index$4_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
11839
+ type index$4_IManagerSheet = IManagerSheet;
11840
+ type index$4_IManagerSheetChildren = IManagerSheetChildren;
11841
+ type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
11842
+ type index$4_IManagerSheetChildrenGroupItem = IManagerSheetChildrenGroupItem;
11843
+ type index$4_IManagerSheetGroup = IManagerSheetGroup;
11844
+ type index$4_IManualContentRunTime = IManualContentRunTime;
11845
+ type index$4_IManualContentSocial = IManualContentSocial;
11846
+ type index$4_IManualContentSocialChildren = IManualContentSocialChildren;
11847
+ type index$4_IManualContentSocialChildrenItemPost = IManualContentSocialChildrenItemPost;
11848
+ type index$4_IPC = IPC;
11849
+ type index$4_IPCLog = IPCLog;
11850
+ type index$4_IPCLogELS = IPCLogELS;
11851
+ type index$4_IPCLogStoreIdxELS = IPCLogStoreIdxELS;
11852
+ type index$4_IProxy = IProxy;
11853
+ type index$4_ISettingTool = ISettingTool;
11854
+ type index$4_ISheetsTool = ISheetsTool;
11855
+ type index$4_ITaskAIContent = ITaskAIContent;
11856
+ type index$4_ITaskAIImageCanva = ITaskAIImageCanva;
11857
+ type index$4_ITaskAIImageVideoVoiceCanvaInstagram = ITaskAIImageVideoVoiceCanvaInstagram;
11858
+ type index$4_ITaskAIImageVideoVoiceCanvaThreads = ITaskAIImageVideoVoiceCanvaThreads;
11859
+ type index$4_ITaskAIItemAction = ITaskAIItemAction;
11860
+ type index$4_ITaskAIItemGroup = ITaskAIItemGroup;
11861
+ type index$4_ITaskManualContentSocial = ITaskManualContentSocial;
11862
+ type index$4_IViewDeviceByPC = IViewDeviceByPC;
11863
+ type index$4_IVoiceGenerated = IVoiceGenerated;
11864
+ type index$4_IVoiceLanguage = IVoiceLanguage;
11865
+ type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
11866
+ type index$4_IVoiceStores = IVoiceStores;
11867
+ type index$4_ImportAccountVPSDto = ImportAccountVPSDto;
11868
+ type index$4_ListManualContentSocialChildrenDto = ListManualContentSocialChildrenDto;
11869
+ type index$4_LoadInfoUrlSheetToolDto = LoadInfoUrlSheetToolDto;
11870
+ type index$4_OverviewSheetsToolDto = OverviewSheetsToolDto;
11871
+ type index$4_PayloadUrlSheetToolDto = PayloadUrlSheetToolDto;
11872
+ type index$4_ReplaceAccountVSPDto = ReplaceAccountVSPDto;
11873
+ type index$4_StoreTaskManualContentSocialForRunDto = StoreTaskManualContentSocialForRunDto;
11874
+ type index$4_UpdateAccountVPSDto = UpdateAccountVPSDto;
11875
+ type index$4_UpdateDeviceDto = UpdateDeviceDto;
11876
+ type index$4_UpdatePCDto = UpdatePCDto;
11877
+ type index$4_UpdateProxyDto = UpdateProxyDto;
11878
+ type index$4_UpdateSheetsToolDto = UpdateSheetsToolDto;
11879
+ type index$4_UpdateTaskAIContentDto = UpdateTaskAIContentDto;
11880
+ type index$4_UpsertManualContentSocialChildrenDto = UpsertManualContentSocialChildrenDto;
11881
+ type index$4_UpsertManualContentSocialChildrenItemPostDto = UpsertManualContentSocialChildrenItemPostDto;
11882
+ type index$4_UpsertManualContentSocialDto = UpsertManualContentSocialDto;
11883
+ type index$4_ViewAutoSyncInformationManualContentDto = ViewAutoSyncInformationManualContentDto;
11884
+ type index$4_ViewDetailDeviceDto = ViewDetailDeviceDto;
11885
+ type index$4_ViewDetailSheetsToolDto = ViewDetailSheetsToolDto;
11886
+ declare namespace index$4 {
11887
+ export { type index$4_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$4_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$4_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$4_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$4_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$4_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$4_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$4_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$4_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$4_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, type index$4_CreateAccountVPSDto as CreateAccountVPSDto, type index$4_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$4_CreateProxyDto as CreateProxyDto, type index$4_CreateSheetToolDto as CreateSheetToolDto, type index$4_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$4_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$4_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$4_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$4_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$4_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$4_EManagerImageAIFolder as EManagerImageAIFolder, index$4_EManagerImageAIModel as EManagerImageAIModel, index$4_EManualContentStatusPost as EManualContentStatusPost, index$4_EManualContentStatusTask as EManualContentStatusTask, index$4_EManualContentTypePost as EManualContentTypePost, index$4_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$4_EStatusAccountCanva as EStatusAccountCanva, index$4_EStatusAccountDrive as EStatusAccountDrive, index$4_EStatusAccountVPN as EStatusAccountVPN, index$4_EStatusEmail as EStatusEmail, index$4_EStatusProxyChecked as EStatusProxyChecked, index$4_EStatusProxyNewIP as EStatusProxyNewIP, index$4_EStatusTaskAIContent as EStatusTaskAIContent, index$4_EStatusVPS as EStatusVPS, index$4_EStatusVPSReplace as EStatusVPSReplace, index$4_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$4_ETaskGenerateAIType as ETaskGenerateAIType, index$4_ETypeRatioImage as ETypeRatioImage, type index$4_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$4_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$4_FilterAccountDriveDto as FilterAccountDriveDto, type index$4_FilterAccountEmailDto as FilterAccountEmailDto, type index$4_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$4_FilterAccountVPNDto as FilterAccountVPNDto, type index$4_FilterAccountVPSDto as FilterAccountVPSDto, type index$4_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$4_FilterDeviceDto as FilterDeviceDto, type index$4_FilterDeviceLogDto as FilterDeviceLogDto, type index$4_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$4_FilterManagerSheetDto as FilterManagerSheetDto, type index$4_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$4_FilterPCDto as FilterPCDto, type index$4_FilterProxyDto as FilterProxyDto, type index$4_FilterSheetsToolDto as FilterSheetsToolDto, type index$4_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$4_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$4_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$4_FindAccountCanvaDto as FindAccountCanvaDto, type index$4_FindAccountDriveDto as FindAccountDriveDto, type index$4_FindAccountEmailDto as FindAccountEmailDto, type index$4_FindAccountVPNDto as FindAccountVPNDto, type index$4_FindAccountVPSDto as FindAccountVPSDto, type index$4_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$4_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$4_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$4_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$4_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$4_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$4_FindDeviceDto as FindDeviceDto, type index$4_FindDeviceLogDto as FindDeviceLogDto, type index$4_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$4_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$4_FindManagerImageAIDto as FindManagerImageAIDto, type index$4_FindManagerSheetDto as FindManagerSheetDto, type index$4_FindManualContentSocialDto as FindManualContentSocialDto, type index$4_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$4_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$4_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$4_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$4_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$4_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$4_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$4_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$4_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$4_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$4_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$4_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$4_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$4_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$4_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$4_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$4_FindOverviewPCDto as FindOverviewPCDto, type index$4_FindOverviewProxyDto as FindOverviewProxyDto, type index$4_FindPCDetail as FindPCDetail, type index$4_FindPCDto as FindPCDto, type index$4_FindProxyDto as FindProxyDto, type index$4_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$4_FindSheetsToolDto as FindSheetsToolDto, type index$4_FindTaskAIContentDto as FindTaskAIContentDto, type index$4_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$4_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$4_IAccountAIContent as IAccountAIContent, type index$4_IAccountAIContentChannel as IAccountAIContentChannel, type index$4_IAccountAIContentGroup as IAccountAIContentGroup, type index$4_IAccountAIContentInfo as IAccountAIContentInfo, type index$4_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$4_IAccountAIContentTag as IAccountAIContentTag, type index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$4_IAccountCanva as IAccountCanva, type index$4_IAccountDrive as IAccountDrive, type index$4_IAccountEmail as IAccountEmail, type index$4_IAccountEmailProxy as IAccountEmailProxy, type index$4_IAccountEmailTag as IAccountEmailTag, type index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$4_IAccountVPN as IAccountVPN, type index$4_IAccountVPS as IAccountVPS, type index$4_IAccountVPSGroup as IAccountVPSGroup, type index$4_IAccountVPSSocial as IAccountVPSSocial, type index$4_IDevice as IDevice, type index$4_IDeviceLog as IDeviceLog, type index$4_IDeviceLogELS as IDeviceLogELS, type index$4_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$4_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$4_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$4_IEmailAccountSocial as IEmailAccountSocial, type index$4_IEmailProxy as IEmailProxy, type index$4_IEmailRawManager as IEmailRawManager, type index$4_IEmailVPS as IEmailVPS, type index$4_IGPMProfile as IGPMProfile, type index$4_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$4_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$4_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$4_IManagerImageAI as IManagerImageAI, type index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$4_IManagerSheet as IManagerSheet, type index$4_IManagerSheetChildren as IManagerSheetChildren, type index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$4_IManagerSheetGroup as IManagerSheetGroup, type index$4_IManualContentRunTime as IManualContentRunTime, type index$4_IManualContentSocial as IManualContentSocial, type index$4_IManualContentSocialChildren as IManualContentSocialChildren, type index$4_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$4_IPC as IPC, type index$4_IPCLog as IPCLog, type index$4_IPCLogELS as IPCLogELS, type index$4_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$4_IProxy as IProxy, type index$4_ISettingTool as ISettingTool, type index$4_ISheetsTool as ISheetsTool, type index$4_ITaskAIContent as ITaskAIContent, type index$4_ITaskAIImageCanva as ITaskAIImageCanva, type index$4_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$4_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$4_ITaskAIItemAction as ITaskAIItemAction, type index$4_ITaskAIItemGroup as ITaskAIItemGroup, type index$4_ITaskManualContentSocial as ITaskManualContentSocial, type index$4_IViewDeviceByPC as IViewDeviceByPC, type index$4_IVoiceGenerated as IVoiceGenerated, type index$4_IVoiceLanguage as IVoiceLanguage, type index$4_IVoiceSettingDelay as IVoiceSettingDelay, type index$4_IVoiceStores as IVoiceStores, type index$4_ImportAccountVPSDto as ImportAccountVPSDto, type index$4_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$4_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$4_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$4_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, type index$4_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$4_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, type index$4_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$4_UpdateDeviceDto as UpdateDeviceDto, type index$4_UpdatePCDto as UpdatePCDto, type index$4_UpdateProxyDto as UpdateProxyDto, type index$4_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$4_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$4_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$4_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$4_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$4_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$4_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$4_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto };
11636
11888
  }
11637
11889
 
11638
11890
  interface ITaskInstagramFollow extends IBaseModel, ITrackingModel {
@@ -12714,117 +12966,1169 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
12714
12966
  deviceInfo: {
12715
12967
  key: string;
12716
12968
  name: string;
12717
- type: ETypeDeviceOS;
12969
+ type: ETypeDeviceOS;
12970
+ typeAppClone: string;
12971
+ nameAppClone: string;
12972
+ nameAppCloneSocial: string;
12973
+ };
12974
+ proxyInfo: {
12975
+ id: string;
12976
+ type: ETypeProxy;
12977
+ proxyStr: string;
12978
+ status: string;
12979
+ numberRunDevice: string;
12980
+ };
12981
+ vpnInfo: {
12982
+ id: string;
12983
+ email: string;
12984
+ password: string;
12985
+ code2FA: string;
12986
+ emailRecover: string;
12987
+ type: ETypeAccountVPN;
12988
+ status: EStatusAccountVPN;
12989
+ };
12990
+ }
12991
+ interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
12992
+ idea: string[];
12993
+ niche: string[];
12994
+ type: ETypeManagerWorkClassify[];
12995
+ pc: string[];
12996
+ deviceName: string[];
12997
+ deviceKey: string[];
12998
+ accountGroup: string[];
12999
+ account: string[];
13000
+ sheetName: string[];
13001
+ status: EStatusTaskToolSocials[];
13002
+ }
13003
+
13004
+ interface FilterInstagramDashboardFollowerDto extends IFilterBaseDto, IFilterBaseAccountSocialDto, ApplyTimeDashboardDto {
13005
+ idea: string[];
13006
+ niche: string[];
13007
+ type: ETypeManagerWorkClassify[];
13008
+ pc: string[];
13009
+ deviceName: string[];
13010
+ deviceKey: string[];
13011
+ accountGroup: string[];
13012
+ account: string[];
13013
+ accountStatus: EStatusAccountSocialLogin[];
13014
+ }
13015
+ /**
13016
+ * DTO for applying time filters to Instagram Dashboard Follower analytics
13017
+ *
13018
+ * Time range restrictions based on aggregation type:
13019
+ * - Daily: Maximum 90 days range (3 months)
13020
+ * - Weekly: Maximum 210 days range (~7 months)
13021
+ * - Monthly: Maximum 900 days range (~2.5 years)
13022
+ * - Quarterly: Maximum 2700 days range (~7.5 years)
13023
+ * - Yearly: Maximum 10950 days range (10 years)
13024
+ */
13025
+ interface FindOverviewInstagramDashboardFollowerDto {
13026
+ totalAccounts: number;
13027
+ totalActives: number;
13028
+ totalInActives: number;
13029
+ totalDevices: number;
13030
+ totalIdea: number;
13031
+ totalNiche: number;
13032
+ totalType: number;
13033
+ totalFollower: {
13034
+ total: number;
13035
+ percentage: number;
13036
+ };
13037
+ totalFollowing: {
13038
+ total: number;
13039
+ percentage: number;
13040
+ };
13041
+ totalPostSquare: number;
13042
+ totalPostNews: number;
13043
+ totalPostReel: number;
13044
+ totalPostStory: number;
13045
+ }
13046
+ interface FilterCheckerAccountInstagramDashboardFollowerDto {
13047
+ selectAccount: string;
13048
+ typeTime: 'Daily' | 'Weekly' | 'Monthly';
13049
+ }
13050
+ interface FindGrowthInstagramDashboardFollowerDto {
13051
+ data: Array<{
13052
+ time: string;
13053
+ numberFollowers: number;
13054
+ }>;
13055
+ latestGrowth: number;
13056
+ currentDevice: number;
13057
+ currentFollowers: number;
13058
+ currentIdea: number;
13059
+ currentNiche: number;
13060
+ activeAccounts: number;
13061
+ inactiveAccounts: number;
13062
+ }
13063
+ interface FindCheckerAccountInstagramDashboardFollowerDto {
13064
+ data: Array<{
13065
+ time: string;
13066
+ numberFollowers: number;
13067
+ }>;
13068
+ deviceKey: string;
13069
+ phoneName: string;
13070
+ nameAppClone: string;
13071
+ totalFollowers: number;
13072
+ totalFollowings: number;
13073
+ idea: string;
13074
+ niche: string;
13075
+ type: ETypeManagerWorkClassify;
13076
+ contentPerformance: {
13077
+ totalProductSquare: number;
13078
+ totalProductNews: number;
13079
+ totalProductReel: number;
13080
+ totalProductStory: number;
13081
+ };
13082
+ }
13083
+ interface FindAccountForCheckerInstagramDashboard {
13084
+ id: string;
13085
+ statusLogin: string;
13086
+ newUsername: string;
13087
+ newEmail: string;
13088
+ }
13089
+ interface FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto {
13090
+ totalDevices: number;
13091
+ totalAccounts: number;
13092
+ totalFollower: number;
13093
+ avgGrowth: number;
13094
+ }
13095
+ interface FilterPerformanceBreakdownInstagramDashboardFollowerDto {
13096
+ searchManagerWork: string;
13097
+ sortBy: 'order' | 'name' | 'totalAccounts' | 'totalFollower' | 'avgGrowth';
13098
+ dir: 'ASC' | 'DESC';
13099
+ pagination: {
13100
+ limit: string;
13101
+ page: string;
13102
+ };
13103
+ }
13104
+ interface FindPerformanceBreakdownInstagramDashboardFollowerDto {
13105
+ items: Array<{
13106
+ name: string;
13107
+ order: number;
13108
+ totalAccounts: number;
13109
+ totalFollower: number;
13110
+ avgGrowth: number;
13111
+ }>;
13112
+ totalItems: number;
13113
+ }
13114
+
13115
+ interface IInstagramDashboardFollower extends IBaseModel, ITrackingModel {
13116
+ accountId: string;
13117
+ postNews: number;
13118
+ postReel: number;
13119
+ postStory: number;
13120
+ postSquare: number;
13121
+ followers: number;
13122
+ followings: number;
13123
+ }
13124
+ interface IInstagramDashboardFollowerELS extends IBaseELS {
13125
+ idea: IBaseRefFieldELS;
13126
+ niche: IBaseRefFieldELS;
13127
+ pc: IBaseRefFieldELS;
13128
+ device: IBaseRefFieldELS & {
13129
+ key: string;
13130
+ name: string;
13131
+ model: string;
13132
+ os: ETypeDeviceOS;
13133
+ };
13134
+ accountGroup: IBaseRefFieldELS;
13135
+ account: IBaseRefFieldELS & {
13136
+ status: EStatusAccountSocialLogin;
13137
+ nameAppClone: string;
13138
+ };
13139
+ typeManagerWork: ETypeManagerWorkClassify;
13140
+ postNews: number;
13141
+ postReel: number;
13142
+ postStory: number;
13143
+ postSquare: number;
13144
+ followers: number;
13145
+ followings: number;
13146
+ }
13147
+
13148
+ interface ISheetImportExportSocial extends IBaseModel, ITrackingModel {
13149
+ typeSocial: ETypeSocial;
13150
+ accountSocialId: string;
13151
+ sheetUrl: string;
13152
+ sheetName: string;
13153
+ totalAccounts: number;
13154
+ type: ETypeImportExport;
13155
+ status: string;
13156
+ note: string;
13157
+ }
13158
+
13159
+ interface ISocialTaskManager extends IBaseModel, ITrackingModel {
13160
+ deviceKey: string;
13161
+ timeExecute: Date;
13162
+ keyTimeSetting: string;
13163
+ sheetTool: ISheetsTool | string;
13164
+ accountSocial: string | IAccountSocialBase;
13165
+ status: EStatusTaskToolSocials;
13166
+ typeSocial: ETypeSocial;
13167
+ tableTask: string;
13168
+ taskId: string;
13169
+ }
13170
+
13171
+ interface FilterThreadsDashboardFollowerDto extends IFilterBaseDto, IFilterBaseAccountSocialDto, ApplyTimeDashboardDto {
13172
+ idea: string[];
13173
+ niche: string[];
13174
+ type: ETypeManagerWorkClassify[];
13175
+ pc: string[];
13176
+ deviceName: string[];
13177
+ deviceKey: string[];
13178
+ accountGroup: string[];
13179
+ account: string[];
13180
+ accountStatus: EStatusAccountSocialLogin[];
13181
+ accountSpecific: string[];
13182
+ accountInstagramConnectThreads: string[];
13183
+ }
13184
+ /**
13185
+ * DTO for applying time filters to Instagram Dashboard Follower analytics
13186
+ *
13187
+ * Time range restrictions based on aggregation type:
13188
+ * - Daily: Maximum 90 days range (3 months)
13189
+ * - Weekly: Maximum 210 days range (~7 months)
13190
+ * - Monthly: Maximum 900 days range (~2.5 years)
13191
+ * - Quarterly: Maximum 2700 days range (~7.5 years)
13192
+ * - Yearly: Maximum 10950 days range (10 years)
13193
+ */
13194
+ interface FindOverviewThreadsDashboardFollowerDto {
13195
+ totalActives: number;
13196
+ totalDevices: number;
13197
+ totalIdea: number;
13198
+ totalNiche: number;
13199
+ totalType: number;
13200
+ totalFollower: {
13201
+ total: number;
13202
+ percentage: number;
13203
+ };
13204
+ totalFollowing: {
13205
+ total: number;
13206
+ percentage: number;
13207
+ };
13208
+ totalPostSquare: number;
13209
+ totalPostNews: number;
13210
+ totalPostReel: number;
13211
+ totalHorizontal: number;
13212
+ totalInActives: number;
13213
+ }
13214
+ interface FilterCheckerAccountThreadsDashboardFollowerDto {
13215
+ selectAccount: string;
13216
+ typeTime: 'Daily' | 'Weekly' | 'Monthly';
13217
+ }
13218
+ interface FindGrowthThreadsDashboardFollowerDto {
13219
+ data: Array<{
13220
+ time: string;
13221
+ numberFollowers: number;
13222
+ }>;
13223
+ latestGrowth: number;
13224
+ currentDevice: number;
13225
+ currentFollowers: number;
13226
+ currentIdea: number;
13227
+ currentNiche: number;
13228
+ activeAccounts: number;
13229
+ inactiveAccounts: number;
13230
+ }
13231
+ interface FindCheckerAccountThreadsDashboardFollowerDto {
13232
+ data: Array<{
13233
+ time: string;
13234
+ numberFollowers: number;
13235
+ }>;
13236
+ deviceKey: string;
13237
+ phoneName: string;
13238
+ nameAppClone: string;
13239
+ totalFollowers: number;
13240
+ totalFollowings: number;
13241
+ idea: string;
13242
+ niche: string;
13243
+ type: ETypeManagerWorkClassify;
13244
+ contentPerformance: {
13245
+ totalProductSquare: number;
13246
+ totalProductNews: number;
13247
+ totalProductReel: number;
13248
+ totalProductStory: number;
13249
+ };
13250
+ }
13251
+ interface FindAccountForCheckerThreadsDashboard {
13252
+ id: string;
13253
+ statusLogin: string;
13254
+ newUsername: string;
13255
+ newEmail: string;
13256
+ }
13257
+ interface FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto {
13258
+ totalDevices: number;
13259
+ totalAccounts: number;
13260
+ totalFollower: number;
13261
+ avgGrowth: number;
13262
+ }
13263
+ interface FilterPerformanceBreakdownThreadsDashboardFollowerDto {
13264
+ searchManagerWork: string;
13265
+ sortBy: 'order' | 'name' | 'totalAccounts' | 'totalFollower' | 'avgGrowth';
13266
+ dir: 'ASC' | 'DESC';
13267
+ pagination: {
13268
+ limit: string;
13269
+ page: string;
13270
+ };
13271
+ }
13272
+ interface FindPerformanceBreakdownThreadsDashboardFollowerDto {
13273
+ items: Array<{
13274
+ name: string;
13275
+ order: number;
13276
+ totalAccounts: number;
13277
+ totalFollower: number;
13278
+ avgGrowth: number;
13279
+ }>;
13280
+ totalItems: number;
13281
+ }
13282
+
13283
+ interface IThreadsDashboardFollower extends IBaseModel, ITrackingModel {
13284
+ ideaId: string;
13285
+ nicheId: string;
13286
+ typeManagerWork: ETypeManagerWorkClassify;
13287
+ accountId: string;
13288
+ postNews: number;
13289
+ postReel: number;
13290
+ postStory: number;
13291
+ postSquare: number;
13292
+ followers: number;
13293
+ followings: number;
13294
+ }
13295
+
13296
+ interface FindThreadsAccountRawDto extends IFindBaseDto {
13297
+ pcInfo: {
13298
+ name: string;
13299
+ department: string;
13300
+ leader: string;
13301
+ member: string;
13302
+ };
13303
+ deviceInfo: {
13304
+ id: string;
13305
+ key: string;
13306
+ name: string;
13307
+ type: ETypeDeviceOS;
13308
+ typeAppClone: string;
13309
+ nameAppClone: string;
13310
+ nameAppCloneSocial: string;
13311
+ };
13312
+ isActiveOnDevice: boolean;
13313
+ assignInfo: {
13314
+ department: {
13315
+ id: string;
13316
+ name: string;
13317
+ };
13318
+ leader: {
13319
+ id: string;
13320
+ name: string;
13321
+ };
13322
+ member: {
13323
+ id: string;
13324
+ name: string;
13325
+ };
13326
+ timeUpdate: Date;
13327
+ };
13328
+ statusAutoSyncAccount: {
13329
+ statusSync: EStatusAccountSocialSync;
13330
+ timeSync: Date;
13331
+ };
13332
+ idea: string | IManagerWork;
13333
+ niche: string | IManagerWork;
13334
+ type: ETypeManagerWorkClassify;
13335
+ folderImage: {
13336
+ folderName: string;
13337
+ statusChange: string;
13338
+ timeChange: Date;
13339
+ };
13340
+ accountGroup: string | IAccountSocialGroup;
13341
+ typeSocial: ETypeSocial;
13342
+ accountID: string;
13343
+ historyUserName: {
13344
+ old: string;
13345
+ new: string;
13346
+ statusChange: EStatusChangeInfo;
13347
+ timeChange: Date;
13348
+ };
13349
+ historyFullname: {
13350
+ old: string;
13351
+ new: string;
13352
+ statusChange: EStatusChangeInfo;
13353
+ timeChange: Date;
13354
+ };
13355
+ historyPassword: {
13356
+ old: string;
13357
+ new: string;
13358
+ statusChange: EStatusChangeInfo;
13359
+ timeChange: Date;
13360
+ };
13361
+ history2FA: {
13362
+ old: string;
13363
+ new: string;
13364
+ statusChange: EStatusChangeInfo;
13365
+ timeChange: Date;
13366
+ };
13367
+ historyEmail: {
13368
+ old: string;
13369
+ new: string;
13370
+ statusChange: EStatusChangeInfo;
13371
+ timeChange: Date;
13372
+ };
13373
+ loginSocialStatus: {
13374
+ status: EStatusAccountSocialLogin;
13375
+ time: Date;
13376
+ };
13377
+ accountSetting: {
13378
+ typeAccount: ETypeAccountInstagramSetting;
13379
+ timeChangeTypeAccount: Date;
13380
+ status: EStatusAccountSocialSetting;
13381
+ timeChangeAccount: Date;
13382
+ };
13383
+ avatarInfo: {
13384
+ prompt: string;
13385
+ url: string;
13386
+ statusChange: EStatusChangeInfo;
13387
+ timeChange: Date;
13388
+ };
13389
+ coverInfo: {
13390
+ prompt: string;
13391
+ url: string;
13392
+ statusChange: EStatusChangeInfo;
13393
+ timeChange: Date;
13394
+ };
13395
+ bioContentInfo: {
13396
+ content: string;
13397
+ statusChange: EStatusChangeInfo;
13398
+ timeChange: Date;
13399
+ };
13400
+ bioLinkInfo: {
13401
+ listLink: string[];
13402
+ statusChange: EStatusChangeInfo;
13403
+ timeChange: Date;
13404
+ };
13405
+ interest: {
13406
+ content: string;
13407
+ statusChange: EStatusChangeInfo;
13408
+ timeChange: Date;
13409
+ };
13410
+ loginEmailInfo: {
13411
+ email: string;
13412
+ emailPassword: string;
13413
+ email2FA: string;
13414
+ emailRecover: string;
13415
+ };
13416
+ loginEmailStatus: {
13417
+ status: EStatusAccountSocialLoginEmail;
13418
+ time: Date;
13419
+ };
13420
+ timeAddToDevice: Date;
13421
+ sheetInfo: Array<{
13422
+ sheetUrl: string;
13423
+ sheetName: string;
13424
+ type: ETypeImportExport;
13425
+ timeAction: Date;
13426
+ status: string;
13427
+ totalAccounts: number;
13428
+ departmentCreator: string;
13429
+ leaderCreator: string;
13430
+ teamCreator: string;
13431
+ createdBy: string;
13432
+ }>;
13433
+ listTypeChangeInfo: Array<{
13434
+ sheetUrl: string;
13435
+ sheetName: string;
13436
+ listTypeChangeInfo: string[];
13437
+ timeAction: Date;
13438
+ status: string;
13439
+ departmentCreator: string;
13440
+ leaderCreator: string;
13441
+ teamCreator: string;
13442
+ createdBy: string;
13443
+ }>;
13444
+ }
13445
+ interface AutoFillOverviewThreadsAccountRawDto {
13446
+ idea: {
13447
+ colName: string;
13448
+ colSymbol: string;
13449
+ listValsOnCol: string[];
13450
+ };
13451
+ niche: {
13452
+ colName: string;
13453
+ colSymbol: string;
13454
+ listValsOnCol: string[];
13455
+ };
13456
+ accountID: {
13457
+ colName: string;
13458
+ colSymbol: string;
13459
+ listValsOnCol: string[];
13460
+ };
13461
+ oldUsername: {
13462
+ colName: string;
13463
+ colSymbol: string;
13464
+ listValsOnCol: string[];
13465
+ };
13466
+ }
13467
+ interface FilterThreadsAccountRawDto extends IFilterBaseDto {
13468
+ accountGroup: string[];
13469
+ accountType: string[];
13470
+ idea: string[];
13471
+ niche: string[];
13472
+ createdBy: string[];
13473
+ updatedBy: string[];
13474
+ fileNameSheetImport: string[];
13475
+ accountIDRange: [number, number];
13476
+ accountStatus: EStatusAccountSocialRaw[];
13477
+ loginSocialStatus: EStatusAccountSocialLogin[];
13478
+ loginEmailStatus: EStatusAccountSocialLoginEmail[];
13479
+ accountSettingStatus: EStatusAccountSocialSetting[];
13480
+ statusAutoSyncAccount: EStatusAccountSocialSync[];
13481
+ deviceBrand: string[];
13482
+ usernameChangeStatus: EStatusChangeInfo[];
13483
+ fullNameChangeStatus: EStatusChangeInfo[];
13484
+ passwordChangeStatus: EStatusChangeInfo[];
13485
+ twoFactorAuthChangeStatus: EStatusChangeInfo[];
13486
+ emailChangeStatus: EStatusChangeInfo[];
13487
+ avatarStatus: EStatusAccountSocialRaw[];
13488
+ coverStatus: EStatusAccountSocialRaw[];
13489
+ bioStatus: EStatusAccountSocialRaw[];
13490
+ linksStatus: EStatusAccountSocialRaw[];
13491
+ hasAvatar: EHaveData[];
13492
+ hasCover: EHaveData[];
13493
+ hasBio: EHaveData[];
13494
+ hasLinks: EHaveData[];
13495
+ departmentToAssign: string[];
13496
+ leaderTeamToAssign: string[];
13497
+ memberToAssign: string[];
13498
+ assignmentStatus: string[];
13499
+ statusCreateFolder: string[];
13500
+ }
13501
+ interface FindOverViewThreadsAccountRowDto {
13502
+ totalAccounts: number;
13503
+ totalStatusLogin: {
13504
+ total: number;
13505
+ active: number;
13506
+ inactive: number;
13507
+ blocked: number;
13508
+ waiting: number;
13509
+ };
13510
+ totalIdeas: number;
13511
+ totalNiches: number;
13512
+ totalTypes: {
13513
+ total: number;
13514
+ TM: number;
13515
+ NTM: number;
13516
+ };
13517
+ totalAccountSync: {
13518
+ total: number;
13519
+ done: number;
13520
+ failed: number;
13521
+ new: number;
13522
+ waiting: number;
13523
+ };
13524
+ totalAccountSetting: {
13525
+ total: number;
13526
+ done: number;
13527
+ error: number;
13528
+ unknown: number;
13529
+ };
13530
+ totalStatusCreateFolder: {
13531
+ total: number;
13532
+ done: number;
13533
+ pending: number;
13534
+ failed: number;
13535
+ };
13536
+ totalLoginEmail: {
13537
+ total: number;
13538
+ active: number;
13539
+ inactive: number;
13540
+ blocked: number;
13541
+ };
13542
+ accountsWithAvatar: {
13543
+ total: number;
13544
+ done: number;
13545
+ pending: number;
13546
+ failed: number;
13547
+ waiting: number;
13548
+ };
13549
+ accountsWithBio: {
13550
+ total: number;
13551
+ done: number;
13552
+ pending: number;
13553
+ failed: number;
13554
+ waiting: number;
13555
+ };
13556
+ accountsWithLinks: {
13557
+ total: number;
13558
+ done: number;
13559
+ pending: number;
13560
+ failed: number;
13561
+ waiting: number;
13562
+ };
13563
+ usernameChanged: {
13564
+ total: number;
13565
+ done: number;
13566
+ pending: number;
13567
+ failed: number;
13568
+ waiting: number;
13569
+ };
13570
+ passwordChanged: {
13571
+ total: number;
13572
+ done: number;
13573
+ pending: number;
13574
+ failed: number;
13575
+ waiting: number;
13576
+ };
13577
+ twoFactorAuthChanged: {
13578
+ total: number;
13579
+ done: number;
13580
+ pending: number;
13581
+ failed: number;
13582
+ waiting: number;
13583
+ };
13584
+ emailChanged: {
13585
+ total: number;
13586
+ done: number;
13587
+ pending: number;
13588
+ failed: number;
13589
+ waiting: number;
13590
+ };
13591
+ }
13592
+ interface AutoFillThreadsAccountRawDto {
13593
+ sheet: {
13594
+ url: string;
13595
+ name: string;
13596
+ };
13597
+ accountID: {
13598
+ id: string;
13599
+ val: number;
13600
+ };
13601
+ idea: string;
13602
+ niche: string;
13603
+ oldUsername: string;
13604
+ newUsername: string;
13605
+ newFullname: string;
13606
+ timeExecuteChangeInfo: Date;
13607
+ newBio: string;
13608
+ timeExecuteBio: Date;
13609
+ newPassword: string;
13610
+ timeExecutePassword: Date;
13611
+ new2FA: string;
13612
+ isTurnOn2FA: boolean;
13613
+ timeExecute2FA: Date;
13614
+ newEmail: string;
13615
+ timeExecuteEmail: Date;
13616
+ newLinks: string[];
13617
+ timeExecuteLinks: Date;
13618
+ newAvatar: string;
13619
+ timeExecuteAvatar: Date;
13620
+ newCover: string;
13621
+ timeExecuteCover: Date;
13622
+ }
13623
+ interface AutoFillAssignedMemberThreadsAccountRawDto {
13624
+ listAccountIds: string[];
13625
+ department: string;
13626
+ leader: string;
13627
+ member: string;
13628
+ }
13629
+
13630
+ interface FindThreadsAccountRunDto extends IFindBaseDto {
13631
+ typeSocial: ETypeSocial;
13632
+ idea: string | IManagerWork;
13633
+ niche: string | IManagerWork;
13634
+ type: ETypeManagerWorkClassify;
13635
+ sheetInfo: Array<{
13636
+ sheetUrl: string;
13637
+ sheetName: string;
13638
+ type: ETypeImportExport;
13639
+ timeAction: Date;
13640
+ status: string;
13641
+ totalAccounts: number;
13642
+ departmentCreator: string;
13643
+ leaderCreator: string;
13644
+ teamCreator: string;
13645
+ createdBy: string;
13646
+ }>;
13647
+ runStartDateTime: Date;
13648
+ runEndDateTime: Date;
13649
+ statusRun: EStatusAccountSocialRun;
13650
+ statusConnectDevice: EStatusDeviceConnectPC;
13651
+ noteConnectDevice: string;
13652
+ pcInfo: {
13653
+ id: string;
13654
+ name: string;
13655
+ };
13656
+ deviceInfo: {
13657
+ id: string;
13658
+ key: string;
13659
+ name: string;
13660
+ type: ETypeDeviceOS;
13661
+ typeAppClone: string;
13662
+ nameAppClone: string;
13663
+ nameAppCloneSocial: string;
13664
+ };
13665
+ chPlayInfo: {
13666
+ id: string;
13667
+ email: string;
13668
+ password: string;
13669
+ code2FA: string;
13670
+ emailRecover: string;
13671
+ status: string;
13672
+ };
13673
+ proxyInfo: {
13674
+ id: string;
13675
+ type: ETypeProxy;
13676
+ proxyStr: string;
13677
+ status: string;
13678
+ numberRunDevice: string;
13679
+ };
13680
+ vpnInfo: {
13681
+ id: string;
13682
+ email: string;
13683
+ password: string;
13684
+ code2FA: string;
13685
+ type: ETypeAccountVPN;
13686
+ status: EStatusAccountVPN;
13687
+ };
13688
+ totalPosts: number;
13689
+ totalPostFollower: number;
13690
+ totalPostFollowing: number;
13691
+ timeAddToDevice: Date;
13692
+ }
13693
+ interface FilterThreadsAccountRunDto extends IFilterBaseDto {
13694
+ deviceType: ETypeDeviceOS[];
13695
+ deviceConnectStatus: string[];
13696
+ pcAssignment: string[];
13697
+ proxyType: ETypeProxy[];
13698
+ proxyStatus: string[];
13699
+ teamMember: string[];
13700
+ vpnType: string[];
13701
+ vpnStatus: string[];
13702
+ chPlayStatus: string[];
13703
+ campaignIdea: string[];
13704
+ nicheCategory: string[];
13705
+ accountType: string[];
13706
+ accountGroup: string[];
13707
+ departmentName: string[];
13708
+ leaderTeam: string[];
13709
+ memberRunDeviceAndRunPC: string[];
13710
+ accountIDRange: [number, number];
13711
+ runStatus: string[];
13712
+ loginSocialStatus: string[];
13713
+ emailLoginStatus: string[];
13714
+ createdBy: string[];
13715
+ updatedBy: string[];
13716
+ accountSettingStatus: string[];
13717
+ usernameChangeStatus: string[];
13718
+ passwordChangeStatus: string[];
13719
+ twoFactorAuthChangeStatus: string[];
13720
+ emailChangeStatus: string[];
13721
+ runActiveDateRange: [Date, Date];
13722
+ createdDateRange: [Date, Date];
13723
+ updatedDateRange: [Date, Date];
13724
+ }
13725
+ interface FindOverViewThreadsAccountDto {
13726
+ totalAccounts: number;
13727
+ totalDevices: number;
13728
+ totalPC: number;
13729
+ totalLeader: number;
13730
+ totalMembers: number;
13731
+ totalAccountGroups: number;
13732
+ totalFileSheetName: number;
13733
+ totalUrlSheetPost: number;
13734
+ totalIdea: number;
13735
+ totalNiche: number;
13736
+ totalDeviceAndroid: number;
13737
+ totalDeviceIOS: number;
13738
+ totalAccountsActive: number;
13739
+ totalAccountsInactive: number;
13740
+ totalAccountsBlocked: number;
13741
+ totalEmailLoginActive: number;
13742
+ totalDeviceConnected: number;
13743
+ totalDeviceError: number;
13744
+ totalPosts: number;
13745
+ totalFollowers: number;
13746
+ totalFollowings: number;
13747
+ totalDepartments: number;
13748
+ }
13749
+
13750
+ interface IThreadsAccountRaw extends IBaseModel, IAssignUser, ITrackingModel, IAccountSocialBase {
13751
+ accountInstagram: string | IInstagramAccountRaw;
13752
+ accountID: number;
13753
+ group: IAccountSocialGroup | string;
13754
+ nameAppCloneSocial: string;
13755
+ accountDeviceTypeAppClone: string;
13756
+ accountDeviceNameAppClone: string;
13757
+ idea: string | IManagerWork;
13758
+ niche: string | IManagerWork;
13759
+ type: ETypeManagerWorkClassify;
13760
+ pc: IPC | string;
13761
+ device: IDevice | string;
13762
+ isActiveOnDevice: boolean;
13763
+ status: EStatusAccountSocialRaw;
13764
+ timeAddToDevice: Date;
13765
+ numberFollower: number;
13766
+ numberFollowing: number;
13767
+ folderNameImage: string;
13768
+ statusFolderNameImage: EStatusAccountSocialFolderName;
13769
+ timeFolderNameImage: Date;
13770
+ promptAvatar: string;
13771
+ oldAvatar: string | IFile;
13772
+ newAvatar: string | IFile;
13773
+ statusChangeAvatar: EStatusChangeInfo;
13774
+ timeChangeAvatar: Date;
13775
+ statusLogin: EStatusAccountSocialLogin;
13776
+ timeLogin: Date;
13777
+ statusLoginEmail: EStatusAccountSocialLoginEmail;
13778
+ timeLoginEmail: Date;
13779
+ interestThreads: string;
13780
+ statusChangeInterestThreads: EStatusChangeInfo;
13781
+ timeChangeInterestThreads: Date;
13782
+ totalLinkBio: string[];
13783
+ statusChangeBio: string;
13784
+ timeChangeBio: Date;
13785
+ statusSyncAccount: EStatusAccountSocialSync;
13786
+ timeSyncAccount: Date;
13787
+ isAccountRun: boolean;
13788
+ runStartDateTime: Date;
13789
+ runEndDateTime: Date;
13790
+ statusRun: EStatusAccountSocialRun;
13791
+ statusConnectDevice: EStatusDeviceConnectPC;
13792
+ noteConnectDevice: string;
13793
+ }
13794
+
13795
+ interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel {
13796
+ sheetUrl: string;
13797
+ sheetName: string;
13798
+ account: string | IThreadsAccountRaw;
13799
+ statusSyncAccount?: EStatusAccountSocialSync;
13800
+ timeAction: Date;
13801
+ note: string;
13802
+ }
13803
+ interface IThreadsHistoryAutoSyncELS extends IBaseELS {
13804
+ historyUserName: {
13805
+ old: string;
13806
+ new: string;
13807
+ statusChange: EStatusChangeInfo;
13808
+ timeChange: Date;
13809
+ };
13810
+ historyFullname: {
13811
+ old: string;
13812
+ new: string;
13813
+ statusChange: EStatusChangeInfo;
13814
+ timeChange: Date;
13815
+ };
13816
+ loginStatus: EStatusAccountSocialLogin;
13817
+ statusSyncAccount?: EStatusAccountSocialSync;
13818
+ idea: {
13819
+ id: string;
13820
+ name: string;
13821
+ };
13822
+ niche: {
13823
+ id: string;
13824
+ name: string;
13825
+ };
13826
+ sheet: {
13827
+ url: string;
13828
+ name: string;
13829
+ };
13830
+ type: ETypeManagerWorkClassify;
13831
+ groupAccountSocial: {
13832
+ old: string;
13833
+ new: string;
13834
+ status: string;
13835
+ timeChange: Date;
13836
+ };
13837
+ accountID: string;
13838
+ emailInfo: {
13839
+ email: string;
13840
+ emailPassword: string;
13841
+ email2FA: string;
13842
+ emailRecover: string;
13843
+ };
13844
+ infoSystem: {
13845
+ pcName: string;
13846
+ department: string;
13847
+ leader: string;
13848
+ member: string;
13849
+ };
13850
+ deviceInfo: {
13851
+ key: string;
13852
+ model: string;
13853
+ name: string;
13854
+ os: ETypeDeviceOS;
13855
+ typeAppClone: string;
13856
+ nameAppClone: string;
13857
+ };
13858
+ timeAction: Date;
13859
+ note: string;
13860
+ }
13861
+
13862
+ interface IThreadsHistoryCreateNew extends IBaseModel, ITrackingModel {
13863
+ sheetUrl: string;
13864
+ sheetName: string;
13865
+ account: string | IThreadsAccountRaw;
13866
+ originalEmail: string;
13867
+ originalEmailPassword: string;
13868
+ originalUsername: string;
13869
+ originalFullname: string;
13870
+ originalPassword: string;
13871
+ originalCode2FA: string;
13872
+ timeAction: Date;
13873
+ note: string;
13874
+ }
13875
+ interface IThreadsHistoryCreateNewELS extends IBaseELS {
13876
+ typeCreateNew: ETypeSocialCreateNew;
13877
+ folderName: string;
13878
+ status: EStatusCreateNew;
13879
+ sheet: {
13880
+ url: string;
13881
+ name: string;
13882
+ };
13883
+ idea: {
13884
+ id: string;
13885
+ name: string;
13886
+ };
13887
+ niche: {
13888
+ id: string;
13889
+ name: string;
13890
+ };
13891
+ type: ETypeManagerWorkClassify;
13892
+ groupAccountSocial: {
13893
+ old: string;
13894
+ new: string;
13895
+ status: string;
13896
+ timeChange: Date;
13897
+ };
13898
+ accountID: string;
13899
+ historyUserName: {
13900
+ old: string;
13901
+ new: string;
13902
+ statusChange: EStatusChangeInfo;
13903
+ timeChange: Date;
13904
+ };
13905
+ historyFullname: {
13906
+ old: string;
13907
+ new: string;
13908
+ statusChange: EStatusChangeInfo;
13909
+ timeChange: Date;
13910
+ };
13911
+ emailInfo: {
13912
+ email: string;
13913
+ emailPassword: string;
13914
+ email2FA: string;
13915
+ emailRecover: string;
13916
+ };
13917
+ infoSystem: {
13918
+ pcName: string;
13919
+ department: string;
13920
+ leader: string;
13921
+ member: string;
13922
+ };
13923
+ deviceInfo: {
13924
+ key: string;
13925
+ model: string;
13926
+ name: string;
13927
+ os: ETypeDeviceOS;
13928
+ typeAppClone: string;
13929
+ nameAppClone: string;
13930
+ };
13931
+ timeAction: Date;
13932
+ note: string;
13933
+ }
13934
+
13935
+ interface IThreadsHistoryChange extends IBaseModel, ITrackingModel {
13936
+ sheetUrl: string;
13937
+ sheetName: string;
13938
+ account: string | IThreadsAccountRaw;
13939
+ changeType: ETypeSocialChangeInfoInstagram;
13940
+ oldUsername?: string;
13941
+ newUsername?: string;
13942
+ statusChangeUsername?: EStatusChangeInfo;
13943
+ timeChangeUserName?: Date;
13944
+ oldFullname?: string;
13945
+ newFullname?: string;
13946
+ statusChangeFullname?: EStatusChangeInfo;
13947
+ timeChangeFullname?: Date;
13948
+ oldEmail?: string;
13949
+ newEmail?: string;
13950
+ statusChangeEmail?: EStatusChangeInfo;
13951
+ timeChangeEmail?: Date;
13952
+ oldCode2FA?: string;
13953
+ newCode2FA?: string;
13954
+ statusChange2fa?: EStatusChangeInfo;
13955
+ timeChange2FA?: Date;
13956
+ oldPassword?: string;
13957
+ newPassword?: string;
13958
+ statusChangePassword?: EStatusChangeInfo;
13959
+ timeChangePassword?: Date;
13960
+ promptAvatar?: string;
13961
+ oldAvatar?: string | IFile;
13962
+ newAvatar?: string | IFile;
13963
+ statusChangeAvatar?: EStatusChangeInfo;
13964
+ timeChangeAvatar?: Date;
13965
+ promptCover?: string;
13966
+ oldCover?: string | IFile;
13967
+ newCover?: string | IFile;
13968
+ statusChangeCover?: EStatusChangeInfo;
13969
+ timeChangeCover?: Date;
13970
+ oldBio?: string[];
13971
+ newBio?: string[];
13972
+ statusChangeBio?: EStatusChangeInfo;
13973
+ timeChangeBio?: Date;
13974
+ timeAction: Date;
13975
+ note: string;
13976
+ }
13977
+ interface IThreadsHistoryChangeInfoELS extends IBaseELS {
13978
+ changeType: ETypeSocialChangeInfoInstagram;
13979
+ sheet: {
13980
+ url: string;
13981
+ name: string;
13982
+ };
13983
+ idea: {
13984
+ id: string;
13985
+ name: string;
13986
+ };
13987
+ niche: {
13988
+ id: string;
13989
+ name: string;
13990
+ };
13991
+ type: ETypeManagerWorkClassify;
13992
+ groupAccountSocial: {
13993
+ old: string;
13994
+ new: string;
13995
+ status: string;
13996
+ timeChange: Date;
13997
+ };
13998
+ accountID: string;
13999
+ historyUserName: {
14000
+ old: string;
14001
+ new: string;
14002
+ statusChange: EStatusChangeInfo;
14003
+ timeChange: Date;
14004
+ };
14005
+ historyFullname: {
14006
+ old: string;
14007
+ new: string;
14008
+ statusChange: EStatusChangeInfo;
14009
+ timeChange: Date;
14010
+ };
14011
+ historyPassword: {
14012
+ old: string;
14013
+ new: string;
14014
+ statusChange: EStatusChangeInfo;
14015
+ timeChange: Date;
14016
+ };
14017
+ history2FA: {
14018
+ old: string;
14019
+ new: string;
14020
+ statusChange: EStatusChangeInfo;
14021
+ timeChange: Date;
14022
+ };
14023
+ historyAvatar: {
14024
+ old: string;
14025
+ new: string;
14026
+ statusChange: EStatusChangeInfo;
14027
+ timeChange: Date;
14028
+ };
14029
+ historyCover: {
14030
+ old: string;
14031
+ new: string;
14032
+ statusChange: EStatusChangeInfo;
14033
+ timeChange: Date;
14034
+ };
14035
+ historyEmail: {
14036
+ old: string;
14037
+ new: string;
14038
+ statusChange: EStatusChangeInfo;
14039
+ timeChange: Date;
14040
+ };
14041
+ historyBio: {
14042
+ old: string[];
14043
+ new: string[];
14044
+ statusChange: EStatusChangeInfo;
14045
+ timeChange: Date;
14046
+ };
14047
+ emailInfo: {
14048
+ email: string;
14049
+ emailPassword: string;
14050
+ email2FA: string;
14051
+ emailRecover: string;
14052
+ };
14053
+ infoSystem: {
14054
+ pcName: string;
14055
+ department: string;
14056
+ leader: string;
14057
+ member: string;
14058
+ };
14059
+ deviceInfo: {
14060
+ key: string;
14061
+ model: string;
14062
+ name: string;
14063
+ os: ETypeDeviceOS;
12718
14064
  typeAppClone: string;
12719
14065
  nameAppClone: string;
12720
- nameAppCloneSocial: string;
12721
14066
  };
12722
- proxyInfo: {
14067
+ timeAction: Date;
14068
+ note: string;
14069
+ }
14070
+
14071
+ interface IThreadsHistoryGroup extends IBaseModel, ITrackingModel {
14072
+ sheetUrl: string;
14073
+ sheetName: string;
14074
+ account: string | IThreadsAccountRaw;
14075
+ oldGroup: IAccountSocialGroup | string;
14076
+ newGroup: IAccountSocialGroup | string;
14077
+ timeAction: Date;
14078
+ note: string;
14079
+ }
14080
+ interface IThreadsHistoryGroupELS extends IBaseELS {
14081
+ accountID: string;
14082
+ oldGroup: string;
14083
+ newGroup: string;
14084
+ statusChange: EStatusChangeInfo;
14085
+ sheet: {
14086
+ url: string;
14087
+ name: string;
14088
+ };
14089
+ idea: {
12723
14090
  id: string;
12724
- type: ETypeProxy;
12725
- proxyStr: string;
12726
- status: string;
12727
- numberRunDevice: string;
14091
+ name: string;
12728
14092
  };
12729
- vpnInfo: {
14093
+ niche: {
12730
14094
  id: string;
14095
+ name: string;
14096
+ };
14097
+ type: ETypeManagerWorkClassify;
14098
+ historyUserName: {
14099
+ old: string;
14100
+ new: string;
14101
+ statusChange: EStatusChangeInfo;
14102
+ timeChange: Date;
14103
+ };
14104
+ historyFullname: {
14105
+ old: string;
14106
+ new: string;
14107
+ statusChange: EStatusChangeInfo;
14108
+ timeChange: Date;
14109
+ };
14110
+ emailInfo: {
12731
14111
  email: string;
12732
- password: string;
12733
- code2FA: string;
14112
+ emailPassword: string;
14113
+ email2FA: string;
12734
14114
  emailRecover: string;
12735
- type: ETypeAccountVPN;
12736
- status: EStatusAccountVPN;
12737
14115
  };
12738
- }
12739
- interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
12740
- idea: string[];
12741
- niche: string[];
12742
- type: ETypeManagerWorkClassify[];
12743
- pc: string[];
12744
- deviceName: string[];
12745
- deviceKey: string[];
12746
- accountGroup: string[];
12747
- account: string[];
12748
- sheetName: string[];
12749
- status: EStatusTaskToolSocials[];
12750
- }
12751
-
12752
- interface IInstagramDashboardFollower extends IBaseModel, ITrackingModel {
12753
- accountId: string;
12754
- postNews: number;
12755
- postReel: number;
12756
- postStory: number;
12757
- postSquare: number;
12758
- followers: number;
12759
- followings: number;
12760
- }
12761
- interface IInstagramDashboardFollowerELS extends IBaseELS {
12762
- idea: IBaseRefFieldELS;
12763
- niche: IBaseRefFieldELS;
12764
- pc: IBaseRefFieldELS;
12765
- device: IBaseRefFieldELS & {
14116
+ deviceInfo: {
12766
14117
  key: string;
12767
- name: string;
12768
14118
  model: string;
14119
+ name: string;
12769
14120
  os: ETypeDeviceOS;
12770
- };
12771
- accountGroup: IBaseRefFieldELS;
12772
- account: IBaseRefFieldELS & {
12773
- status: EStatusAccountSocialLogin;
14121
+ typeAppClone: string;
12774
14122
  nameAppClone: string;
12775
14123
  };
12776
- typeManagerWork: ETypeManagerWorkClassify;
12777
- postNews: number;
12778
- postReel: number;
12779
- postStory: number;
12780
- postSquare: number;
12781
- followers: number;
12782
- followings: number;
12783
- }
12784
-
12785
- interface IThreadsAccountRaw extends IBaseModel, IAssignUser, ITrackingModel, IAccountSocialBase {
12786
- accountInstagram: string | IInstagramAccountRaw;
12787
- accountID: number;
12788
- group: IAccountSocialGroup | string;
12789
- nameAppCloneSocial: string;
12790
- accountDeviceTypeAppClone: string;
12791
- accountDeviceNameAppClone: string;
12792
- idea: string | IManagerWork;
12793
- niche: string | IManagerWork;
12794
- type: ETypeManagerWorkClassify;
12795
- pc: IPC | string;
12796
- device: IDevice | string;
12797
- isActiveOnDevice: boolean;
12798
- status: EStatusAccountSocialRaw;
12799
- timeAddToDevice: Date;
12800
- numberFollower: number;
12801
- numberFollowing: number;
12802
- folderNameImage: string;
12803
- statusFolderNameImage: EStatusAccountSocialFolderName;
12804
- timeFolderNameImage: Date;
12805
- promptAvatar: string;
12806
- oldAvatar: string | IFile;
12807
- newAvatar: string | IFile;
12808
- statusChangeAvatar: EStatusChangeInfo;
12809
- timeChangeAvatar: Date;
12810
- statusLogin: EStatusAccountSocialLogin;
12811
- timeLogin: Date;
12812
- statusLoginEmail: EStatusAccountSocialLoginEmail;
12813
- timeLoginEmail: Date;
12814
- interestThreads: string;
12815
- statusChangeInterestThreads: EStatusChangeInfo;
12816
- timeChangeInterestThreads: Date;
12817
- totalLinkBio: string[];
12818
- statusChangeBio: string;
12819
- timeChangeBio: Date;
12820
- statusSyncAccount: EStatusAccountSocialSync;
12821
- timeSyncAccount: Date;
12822
- isAccountRun: boolean;
12823
- runStartDateTime: Date;
12824
- runEndDateTime: Date;
12825
- statusRun: EStatusAccountSocialRun;
12826
- statusConnectDevice: EStatusDeviceConnectPC;
12827
- noteConnectDevice: string;
14124
+ infoSystem: {
14125
+ pcName: string;
14126
+ department: string;
14127
+ leader: string;
14128
+ member: string;
14129
+ };
14130
+ timeAction: Date;
14131
+ note: string;
12828
14132
  }
12829
14133
 
12830
14134
  interface FindOverViewThreadsReportPostDto {
@@ -14848,319 +16152,380 @@ interface ITaskThreadsReplyMessageStoreIdxELS extends IBaseStoreIdxELS {
14848
16152
  statusStep2: EStatusTaskToolSocials;
14849
16153
  }
14850
16154
 
14851
- interface IAccountSocialBase extends IBaseModel, ITrackingModel {
14852
- accountID: number;
14853
- group: IAccountSocialGroup | string;
14854
- nameAppCloneSocial: string;
14855
- accountDeviceTypeAppClone: string;
14856
- accountDeviceNameAppClone: string;
14857
- idea: string | IManagerWork;
14858
- niche: string | IManagerWork;
14859
- type: ETypeManagerWorkClassify;
14860
- pc: IPC | string;
14861
- device: IDevice | string;
14862
- isActiveOnDevice: boolean;
14863
- oldUsername?: string;
14864
- newUsername?: string;
14865
- email?: string;
14866
- }
14867
-
14868
- interface ISocialTaskManager extends IBaseModel, ITrackingModel {
14869
- deviceKey: string;
14870
- timeExecute: Date;
14871
- keyTimeSetting: string;
14872
- sheetTool: ISheetsTool | string;
14873
- accountSocial: string | IAccountSocialBase;
14874
- status: EStatusTaskToolSocials;
14875
- typeSocial: ETypeSocial;
14876
- tableTask: string;
14877
- taskId: string;
14878
- }
14879
-
14880
- interface ISheetImportExportSocial extends IBaseModel, ITrackingModel {
14881
- typeSocial: ETypeSocial;
14882
- accountSocialId: string;
14883
- sheetUrl: string;
14884
- sheetName: string;
14885
- totalAccounts: number;
14886
- type: ETypeImportExport;
14887
- status: string;
14888
- note: string;
14889
- }
14890
-
14891
- interface IIncreaseValueTask extends IBaseModel {
14892
- taskId: string;
14893
- valueIncrease: number;
14894
- maxIncrease: number;
14895
- }
14896
-
14897
- type index$2_AutoFillAssignedMemberInstagramAccountRawDto = AutoFillAssignedMemberInstagramAccountRawDto;
14898
- type index$2_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
14899
- type index$2_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
14900
- type index$2_AutoFillOverviewTaskInstagramBlockUserDto = AutoFillOverviewTaskInstagramBlockUserDto;
14901
- type index$2_AutoFillTaskInstagramBlockUserDto = AutoFillTaskInstagramBlockUserDto;
14902
- type index$2_ChangeInfoInstagramAccountRawDto = ChangeInfoInstagramAccountRawDto;
14903
- type index$2_CreateInstagramSettingInteractFollowDto = CreateInstagramSettingInteractFollowDto;
14904
- type index$2_CreateInstagramSettingInteractReplyCommentDto = CreateInstagramSettingInteractReplyCommentDto;
14905
- type index$2_CreateInstagramSettingInteractReplyMessageDto = CreateInstagramSettingInteractReplyMessageDto;
14906
- type index$2_CreateInstagramSettingInteractUnFollowDto = CreateInstagramSettingInteractUnFollowDto;
14907
- type index$2_CreateInstagramSettingPostDto = CreateInstagramSettingPostDto;
14908
- type index$2_CreateTaskInstagramBlockUserDto = CreateTaskInstagramBlockUserDto;
14909
- type index$2_CreateTaskInstagramChangeInfoDto = CreateTaskInstagramChangeInfoDto;
14910
- type index$2_CreateTaskInstagramFollowDto = CreateTaskInstagramFollowDto;
14911
- type index$2_CreateTaskInstagramPostDto = CreateTaskInstagramPostDto;
14912
- type index$2_CreateTaskInstagramReplyCommentDto = CreateTaskInstagramReplyCommentDto;
14913
- type index$2_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageDto;
14914
- type index$2_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
14915
- type index$2_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
14916
- type index$2_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
14917
- type index$2_CreateTaskThreadsReplyMessageDto = CreateTaskThreadsReplyMessageDto;
14918
- type index$2_DataImportInstagramAccountRawDto = DataImportInstagramAccountRawDto;
14919
- type index$2_ETypeSettingInstagram = ETypeSettingInstagram;
14920
- declare const index$2_ETypeSettingInstagram: typeof ETypeSettingInstagram;
14921
- type index$2_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
14922
- type index$2_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
14923
- type index$2_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
14924
- type index$2_FilterInstagramHistoryChangeInfoDto = FilterInstagramHistoryChangeInfoDto;
14925
- type index$2_FilterInstagramHistoryCreateNewDto = FilterInstagramHistoryCreateNewDto;
14926
- type index$2_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
14927
- type index$2_FilterInstagramReportInteractBlockUserDto = FilterInstagramReportInteractBlockUserDto;
14928
- type index$2_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
14929
- type index$2_FilterInstagramReportInteractReplyCommentDto = FilterInstagramReportInteractReplyCommentDto;
14930
- type index$2_FilterInstagramReportInteractReplyMessageDto = FilterInstagramReportInteractReplyMessageDto;
14931
- type index$2_FilterInstagramReportInteractUnFollowDto = FilterInstagramReportInteractUnFollowDto;
14932
- type index$2_FilterInstagramReportPostHighLightDto = FilterInstagramReportPostHighLightDto;
14933
- type index$2_FilterInstagramReportPostNewDto = FilterInstagramReportPostNewDto;
14934
- type index$2_FilterInstagramReportPostReelDto = FilterInstagramReportPostReelDto;
14935
- type index$2_FilterInstagramReportPostSquareDto = FilterInstagramReportPostSquareDto;
14936
- type index$2_FilterInstagramReportPostStoryDto = FilterInstagramReportPostStoryDto;
14937
- type index$2_FilterInstagramSettingFollowDto = FilterInstagramSettingFollowDto;
14938
- type index$2_FilterInstagramSettingInteractFollowDto = FilterInstagramSettingInteractFollowDto;
14939
- type index$2_FilterInstagramSettingInteractReplyCommentDto = FilterInstagramSettingInteractReplyCommentDto;
14940
- type index$2_FilterInstagramSettingInteractReplyMessageDto = FilterInstagramSettingInteractReplyMessageDto;
14941
- type index$2_FilterInstagramSettingInteractUnFollowDto = FilterInstagramSettingInteractUnFollowDto;
14942
- type index$2_FilterInstagramSettingPostDto = FilterInstagramSettingPostDto;
14943
- type index$2_FilterInstagramSettingReplyCommentDto = FilterInstagramSettingReplyCommentDto;
14944
- type index$2_FilterInstagramSettingReplyMessageDto = FilterInstagramSettingReplyMessageDto;
14945
- type index$2_FilterInstagramSettingUnFollowDto = FilterInstagramSettingUnFollowDto;
14946
- type index$2_FilterTaskInstagramBlockUserDto = FilterTaskInstagramBlockUserDto;
14947
- type index$2_FilterTaskInstagramChangeInfoDto = FilterTaskInstagramChangeInfoDto;
14948
- type index$2_FilterTaskInstagramFollowDto = FilterTaskInstagramFollowDto;
14949
- type index$2_FilterTaskInstagramPostDto = FilterTaskInstagramPostDto;
14950
- type index$2_FilterTaskInstagramReplyCommentDto = FilterTaskInstagramReplyCommentDto;
14951
- type index$2_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageDto;
14952
- type index$2_FilterTaskThreadsFollowDto = FilterTaskThreadsFollowDto;
14953
- type index$2_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
14954
- type index$2_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
14955
- type index$2_FilterTaskThreadsReplyMessageDto = FilterTaskThreadsReplyMessageDto;
14956
- type index$2_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
14957
- type index$2_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
14958
- type index$2_FilterThreadsReportInteractReplyMessageDto = FilterThreadsReportInteractReplyMessageDto;
14959
- type index$2_FilterThreadsReportInteractUnFollowDto = FilterThreadsReportInteractUnFollowDto;
14960
- type index$2_FilterThreadsReportPostDto = FilterThreadsReportPostDto;
14961
- type index$2_FilterThreadsSettingInteractFollowDto = FilterThreadsSettingInteractFollowDto;
14962
- type index$2_FilterThreadsSettingInteractReplyCommentDto = FilterThreadsSettingInteractReplyCommentDto;
14963
- type index$2_FilterThreadsSettingInteractReplyMessageDto = FilterThreadsSettingInteractReplyMessageDto;
14964
- type index$2_FilterThreadsSettingInteractUnFollowDto = FilterThreadsSettingInteractUnFollowDto;
14965
- type index$2_FilterThreadsSettingPostDto = FilterThreadsSettingPostDto;
14966
- type index$2_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
14967
- type index$2_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
14968
- type index$2_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
14969
- type index$2_FindInstagramHistoryChangeInfoDto = FindInstagramHistoryChangeInfoDto;
14970
- type index$2_FindInstagramHistoryCreateNewDto = FindInstagramHistoryCreateNewDto;
14971
- type index$2_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
14972
- type index$2_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
14973
- type index$2_FindInstagramSettingInteractReplyCommentDto = FindInstagramSettingInteractReplyCommentDto;
14974
- type index$2_FindInstagramSettingInteractReplyMessageDto = FindInstagramSettingInteractReplyMessageDto;
14975
- type index$2_FindInstagramSettingInteractUnFollowDto = FindInstagramSettingInteractUnFollowDto;
14976
- type index$2_FindInstagramSettingPostDto = FindInstagramSettingPostDto;
14977
- type index$2_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
14978
- type index$2_FindOverViewInstagramAccountRunDto = FindOverViewInstagramAccountRunDto;
14979
- type index$2_FindOverViewInstagramReportInteractBlockUserDto = FindOverViewInstagramReportInteractBlockUserDto;
14980
- type index$2_FindOverViewInstagramReportInteractFollowDto = FindOverViewInstagramReportInteractFollowDto;
14981
- type index$2_FindOverViewInstagramReportInteractReplyCommentDto = FindOverViewInstagramReportInteractReplyCommentDto;
14982
- type index$2_FindOverViewInstagramReportInteractReplyMessageDto = FindOverViewInstagramReportInteractReplyMessageDto;
14983
- type index$2_FindOverViewInstagramReportInteractUnFollowDto = FindOverViewInstagramReportInteractUnFollowDto;
14984
- type index$2_FindOverViewInstagramReportPostHighLightDto = FindOverViewInstagramReportPostHighLightDto;
14985
- type index$2_FindOverViewInstagramReportPostNewDto = FindOverViewInstagramReportPostNewDto;
14986
- type index$2_FindOverViewInstagramReportPostReelDto = FindOverViewInstagramReportPostReelDto;
14987
- type index$2_FindOverViewInstagramReportPostSquareDto = FindOverViewInstagramReportPostSquareDto;
14988
- type index$2_FindOverViewInstagramReportPostStoryDto = FindOverViewInstagramReportPostStoryDto;
14989
- type index$2_FindOverViewInstagramSettingInteractFollowDto = FindOverViewInstagramSettingInteractFollowDto;
14990
- type index$2_FindOverViewInstagramSettingInteractReplyCommentDto = FindOverViewInstagramSettingInteractReplyCommentDto;
14991
- type index$2_FindOverViewInstagramSettingInteractReplyMessageDto = FindOverViewInstagramSettingInteractReplyMessageDto;
14992
- type index$2_FindOverViewInstagramSettingInteractUnFollowDto = FindOverViewInstagramSettingInteractUnFollowDto;
14993
- type index$2_FindOverViewInstagramSettingPostDto = FindOverViewInstagramSettingPostDto;
14994
- type index$2_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
14995
- type index$2_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
14996
- type index$2_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
14997
- type index$2_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
14998
- type index$2_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
14999
- type index$2_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
15000
- type index$2_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto;
15001
- type index$2_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
15002
- type index$2_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
15003
- type index$2_FindOverViewTaskThreadsReplyMessageDto = FindOverViewTaskThreadsReplyMessageDto;
15004
- type index$2_FindOverViewThreadsReportInteractFollowDto = FindOverViewThreadsReportInteractFollowDto;
15005
- type index$2_FindOverViewThreadsReportInteractReplyCommentDto = FindOverViewThreadsReportInteractReplyCommentDto;
15006
- type index$2_FindOverViewThreadsReportInteractReplyMessageDto = FindOverViewThreadsReportInteractReplyMessageDto;
15007
- type index$2_FindOverViewThreadsReportInteractUnFollowDto = FindOverViewThreadsReportInteractUnFollowDto;
15008
- type index$2_FindOverViewThreadsReportPostDto = FindOverViewThreadsReportPostDto;
15009
- type index$2_FindOverViewThreadsSettingInteractFollowDto = FindOverViewThreadsSettingInteractFollowDto;
15010
- type index$2_FindOverViewThreadsSettingInteractReplyCommentDto = FindOverViewThreadsSettingInteractReplyCommentDto;
15011
- type index$2_FindOverViewThreadsSettingInteractReplyMessageDto = FindOverViewThreadsSettingInteractReplyMessageDto;
15012
- type index$2_FindOverViewThreadsSettingInteractUnFollowDto = FindOverViewThreadsSettingInteractUnFollowDto;
15013
- type index$2_FindOverViewThreadsSettingPostDto = FindOverViewThreadsSettingPostDto;
15014
- type index$2_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
15015
- type index$2_FindOverviewInstagramHistoryChangeInfoDto = FindOverviewInstagramHistoryChangeInfoDto;
15016
- type index$2_FindOverviewInstagramHistoryCreateNewDto = FindOverviewInstagramHistoryCreateNewDto;
15017
- type index$2_FindOverviewInstagramHistoryGroupDto = FindOverviewInstagramHistoryGroupDto;
15018
- type index$2_FindTaskInstagramBlockUserDto = FindTaskInstagramBlockUserDto;
15019
- type index$2_FindTaskInstagramChangeInfoDto = FindTaskInstagramChangeInfoDto;
15020
- type index$2_FindTaskInstagramFollowDto = FindTaskInstagramFollowDto;
15021
- type index$2_FindTaskInstagramPostDto = FindTaskInstagramPostDto;
15022
- type index$2_FindTaskInstagramReplyCommentDto = FindTaskInstagramReplyCommentDto;
15023
- type index$2_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
15024
- type index$2_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
15025
- type index$2_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
15026
- type index$2_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
15027
- type index$2_FindTaskThreadsReplyMessageDto = FindTaskThreadsReplyMessageDto;
15028
- type index$2_FindThreadsSettingInteractFollowDto = FindThreadsSettingInteractFollowDto;
15029
- type index$2_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInteractReplyCommentDto;
15030
- type index$2_FindThreadsSettingInteractReplyMessageDto = FindThreadsSettingInteractReplyMessageDto;
15031
- type index$2_FindThreadsSettingInteractUnFollowDto = FindThreadsSettingInteractUnFollowDto;
15032
- type index$2_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
15033
- type index$2_IAccountSocialBase = IAccountSocialBase;
15034
- type index$2_IAccountSocialGroup = IAccountSocialGroup;
15035
- type index$2_IIncreaseValueTask = IIncreaseValueTask;
15036
- type index$2_IInstagramAccountRaw = IInstagramAccountRaw;
15037
- type index$2_IInstagramDashboardFollower = IInstagramDashboardFollower;
15038
- type index$2_IInstagramDashboardFollowerELS = IInstagramDashboardFollowerELS;
15039
- type index$2_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
15040
- type index$2_IInstagramHistoryAutoSyncELS = IInstagramHistoryAutoSyncELS;
15041
- type index$2_IInstagramHistoryAutoSyncStoreIdxELS = IInstagramHistoryAutoSyncStoreIdxELS;
15042
- type index$2_IInstagramHistoryChangeInfo = IInstagramHistoryChangeInfo;
15043
- type index$2_IInstagramHistoryChangeInfoELS = IInstagramHistoryChangeInfoELS;
15044
- type index$2_IInstagramHistoryChangeInfoStoreIdxELS = IInstagramHistoryChangeInfoStoreIdxELS;
15045
- type index$2_IInstagramHistoryCreateNew = IInstagramHistoryCreateNew;
15046
- type index$2_IInstagramHistoryCreateNewELS = IInstagramHistoryCreateNewELS;
15047
- type index$2_IInstagramHistoryCreateNewStoreIdxELS = IInstagramHistoryCreateNewStoreIdxELS;
15048
- type index$2_IInstagramHistoryGroup = IInstagramHistoryGroup;
15049
- type index$2_IInstagramHistoryGroupELS = IInstagramHistoryGroupELS;
15050
- type index$2_IInstagramHistoryGroupStoreIdxELS = IInstagramHistoryGroupStoreIdxELS;
15051
- type index$2_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
15052
- type index$2_IInstagramReportInteractBlockUserELS = IInstagramReportInteractBlockUserELS;
15053
- type index$2_IInstagramReportInteractBlockUserStoreIdxELS = IInstagramReportInteractBlockUserStoreIdxELS;
15054
- type index$2_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
15055
- type index$2_IInstagramReportInteractFollowELS = IInstagramReportInteractFollowELS;
15056
- type index$2_IInstagramReportInteractFollowStoreIdxELS = IInstagramReportInteractFollowStoreIdxELS;
15057
- type index$2_IInstagramReportInteractReplyComment = IInstagramReportInteractReplyComment;
15058
- type index$2_IInstagramReportInteractReplyCommentELS = IInstagramReportInteractReplyCommentELS;
15059
- type index$2_IInstagramReportInteractReplyCommentStoreIdxELS = IInstagramReportInteractReplyCommentStoreIdxELS;
15060
- type index$2_IInstagramReportInteractReplyMessage = IInstagramReportInteractReplyMessage;
15061
- type index$2_IInstagramReportInteractReplyMessageELS = IInstagramReportInteractReplyMessageELS;
15062
- type index$2_IInstagramReportInteractReplyMessageStoreIdxELS = IInstagramReportInteractReplyMessageStoreIdxELS;
15063
- type index$2_IInstagramReportInteractUnFollow = IInstagramReportInteractUnFollow;
15064
- type index$2_IInstagramReportInteractUnFollowELS = IInstagramReportInteractUnFollowELS;
15065
- type index$2_IInstagramReportInteractUnFollowStoreIdxELS = IInstagramReportInteractUnFollowStoreIdxELS;
15066
- type index$2_IInstagramReportPostHighLight = IInstagramReportPostHighLight;
15067
- type index$2_IInstagramReportPostHighLightELS = IInstagramReportPostHighLightELS;
15068
- type index$2_IInstagramReportPostHighLightStoreIdxELS = IInstagramReportPostHighLightStoreIdxELS;
15069
- type index$2_IInstagramReportPostNew = IInstagramReportPostNew;
15070
- type index$2_IInstagramReportPostNewELS = IInstagramReportPostNewELS;
15071
- type index$2_IInstagramReportPostNewStoreIdxELS = IInstagramReportPostNewStoreIdxELS;
15072
- type index$2_IInstagramReportPostReel = IInstagramReportPostReel;
15073
- type index$2_IInstagramReportPostReelELS = IInstagramReportPostReelELS;
15074
- type index$2_IInstagramReportPostReelStoreIdxELS = IInstagramReportPostReelStoreIdxELS;
15075
- type index$2_IInstagramReportPostSquare = IInstagramReportPostSquare;
15076
- type index$2_IInstagramReportPostSquareELS = IInstagramReportPostSquareELS;
15077
- type index$2_IInstagramReportPostSquareStoreIdxELS = IInstagramReportPostSquareStoreIdxELS;
15078
- type index$2_IInstagramReportPostStory = IInstagramReportPostStory;
15079
- type index$2_IInstagramReportPostStoryELS = IInstagramReportPostStoryELS;
15080
- type index$2_IInstagramReportPostStoryStoreIdxELS = IInstagramReportPostStoryStoreIdxELS;
15081
- type index$2_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
15082
- type index$2_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
15083
- type index$2_IInstagramSettingInteractReplyComment = IInstagramSettingInteractReplyComment;
15084
- type index$2_IInstagramSettingInteractReplyMessage = IInstagramSettingInteractReplyMessage;
15085
- type index$2_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
15086
- type index$2_IInstagramSettingPost = IInstagramSettingPost;
15087
- type index$2_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
15088
- type index$2_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
15089
- type index$2_ISheetImportExportSocial = ISheetImportExportSocial;
15090
- type index$2_ISocialTaskManager = ISocialTaskManager;
15091
- type index$2_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
15092
- type index$2_ITaskInstagramBlockUserELS = ITaskInstagramBlockUserELS;
15093
- type index$2_ITaskInstagramBlockUserStoreIdxELS = ITaskInstagramBlockUserStoreIdxELS;
15094
- type index$2_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
15095
- type index$2_ITaskInstagramChangeInfoELS = ITaskInstagramChangeInfoELS;
15096
- type index$2_ITaskInstagramChangeInfoStoreIdxELS = ITaskInstagramChangeInfoStoreIdxELS;
15097
- type index$2_ITaskInstagramFollow = ITaskInstagramFollow;
15098
- type index$2_ITaskInstagramFollowELS = ITaskInstagramFollowELS;
15099
- type index$2_ITaskInstagramFollowStoreIdxELS = ITaskInstagramFollowStoreIdxELS;
15100
- type index$2_ITaskInstagramPost = ITaskInstagramPost;
15101
- type index$2_ITaskInstagramPostELS = ITaskInstagramPostELS;
15102
- type index$2_ITaskInstagramPostStoreIdxELS = ITaskInstagramPostStoreIdxELS;
15103
- type index$2_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
15104
- type index$2_ITaskInstagramReplyCommentELS = ITaskInstagramReplyCommentELS;
15105
- type index$2_ITaskInstagramReplyCommentStoreIdxELS = ITaskInstagramReplyCommentStoreIdxELS;
15106
- type index$2_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
15107
- type index$2_ITaskInstagramReplyMessageELS = ITaskInstagramReplyMessageELS;
15108
- type index$2_ITaskInstagramReplyMessageStoreIdxELS = ITaskInstagramReplyMessageStoreIdxELS;
15109
- type index$2_ITaskThreadsFollow = ITaskThreadsFollow;
15110
- type index$2_ITaskThreadsFollowELS = ITaskThreadsFollowELS;
15111
- type index$2_ITaskThreadsFollowStoreIdxELS = ITaskThreadsFollowStoreIdxELS;
15112
- type index$2_ITaskThreadsPost = ITaskThreadsPost;
15113
- type index$2_ITaskThreadsPostELS = ITaskThreadsPostELS;
15114
- type index$2_ITaskThreadsPostStoreIdxELS = ITaskThreadsPostStoreIdxELS;
15115
- type index$2_ITaskThreadsReplyComment = ITaskThreadsReplyComment;
15116
- type index$2_ITaskThreadsReplyCommentELS = ITaskThreadsReplyCommentELS;
15117
- type index$2_ITaskThreadsReplyCommentStoreIdxELS = ITaskThreadsReplyCommentStoreIdxELS;
15118
- type index$2_ITaskThreadsReplyMessage = ITaskThreadsReplyMessage;
15119
- type index$2_ITaskThreadsReplyMessageELS = ITaskThreadsReplyMessageELS;
15120
- type index$2_ITaskThreadsReplyMessageStoreIdxELS = ITaskThreadsReplyMessageStoreIdxELS;
15121
- type index$2_IThreadsAccountRaw = IThreadsAccountRaw;
15122
- type index$2_IThreadsDashboardFollower = IThreadsDashboardFollower;
15123
- type index$2_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
15124
- type index$2_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
15125
- type index$2_IThreadsReportInteractFollowStoreIdxELS = IThreadsReportInteractFollowStoreIdxELS;
15126
- type index$2_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
15127
- type index$2_IThreadsReportInteractReplyCommentELS = IThreadsReportInteractReplyCommentELS;
15128
- type index$2_IThreadsReportInteractReplyCommentStoreIdxELS = IThreadsReportInteractReplyCommentStoreIdxELS;
15129
- type index$2_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
15130
- type index$2_IThreadsReportInteractReplyMessageELS = IThreadsReportInteractReplyMessageELS;
15131
- type index$2_IThreadsReportInteractReplyMessageStoreIdxELS = IThreadsReportInteractReplyMessageStoreIdxELS;
15132
- type index$2_IThreadsReportInteractUnFollow = IThreadsReportInteractUnFollow;
15133
- type index$2_IThreadsReportInteractUnFollowELS = IThreadsReportInteractUnFollowELS;
15134
- type index$2_IThreadsReportInteractUnFollowStoreIdxELS = IThreadsReportInteractUnFollowStoreIdxELS;
15135
- type index$2_IThreadsReportPost = IThreadsReportPost;
15136
- type index$2_IThreadsReportPostELS = IThreadsReportPostELS;
15137
- type index$2_IThreadsReportPostStoreIdxELS = IThreadsReportPostStoreIdxELS;
15138
- type index$2_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
15139
- type index$2_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
15140
- type index$2_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyMessage;
15141
- type index$2_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
15142
- type index$2_IThreadsSettingPost = IThreadsSettingPost;
15143
- type index$2_ImportInstagramAccountRawDto = ImportInstagramAccountRawDto;
15144
- type index$2_ResultChangeInfoInstagramAccountRawDto = ResultChangeInfoInstagramAccountRawDto;
15145
- type index$2_ResultImportInstagramAccountRawDto = ResultImportInstagramAccountRawDto;
15146
- type index$2_UpdateInstagramSettingInteractFollowDto = UpdateInstagramSettingInteractFollowDto;
15147
- type index$2_UpdateInstagramSettingInteractReplyCommentDto = UpdateInstagramSettingInteractReplyCommentDto;
15148
- type index$2_UpdateInstagramSettingInteractReplyMessageDto = UpdateInstagramSettingInteractReplyMessageDto;
15149
- type index$2_UpdateInstagramSettingInteractUnFollowDto = UpdateInstagramSettingInteractUnFollowDto;
15150
- type index$2_UpdateInstagramSettingPostDto = UpdateInstagramSettingPostDto;
15151
- type index$2_UpdateTaskInstagramBlockUserDto = UpdateTaskInstagramBlockUserDto;
15152
- type index$2_UpdateTaskInstagramChangeInfoDto = UpdateTaskInstagramChangeInfoDto;
15153
- type index$2_UpdateTaskInstagramFollowDto = UpdateTaskInstagramFollowDto;
15154
- type index$2_UpdateTaskInstagramPostDto = UpdateTaskInstagramPostDto;
15155
- type index$2_UpdateTaskInstagramReplyCommentDto = UpdateTaskInstagramReplyCommentDto;
15156
- type index$2_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageDto;
15157
- type index$2_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
15158
- type index$2_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
15159
- type index$2_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
15160
- type index$2_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
15161
- type index$2_ViewSettingInstagramOfAccountDto = ViewSettingInstagramOfAccountDto;
16155
+ type index$3_ApplyTimeDashboardDto = ApplyTimeDashboardDto;
16156
+ type index$3_AutoFillAssignedMemberInstagramAccountRawDto = AutoFillAssignedMemberInstagramAccountRawDto;
16157
+ type index$3_AutoFillAssignedMemberThreadsAccountRawDto = AutoFillAssignedMemberThreadsAccountRawDto;
16158
+ type index$3_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
16159
+ type index$3_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
16160
+ type index$3_AutoFillOverviewTaskInstagramBlockUserDto = AutoFillOverviewTaskInstagramBlockUserDto;
16161
+ type index$3_AutoFillOverviewThreadsAccountRawDto = AutoFillOverviewThreadsAccountRawDto;
16162
+ type index$3_AutoFillTaskInstagramBlockUserDto = AutoFillTaskInstagramBlockUserDto;
16163
+ type index$3_AutoFillThreadsAccountRawDto = AutoFillThreadsAccountRawDto;
16164
+ type index$3_ChangeInfoInstagramAccountRawDto = ChangeInfoInstagramAccountRawDto;
16165
+ type index$3_CreateAccountSocialGroupDto = CreateAccountSocialGroupDto;
16166
+ type index$3_CreateInstagramSettingInteractFollowDto = CreateInstagramSettingInteractFollowDto;
16167
+ type index$3_CreateInstagramSettingInteractReplyCommentDto = CreateInstagramSettingInteractReplyCommentDto;
16168
+ type index$3_CreateInstagramSettingInteractReplyMessageDto = CreateInstagramSettingInteractReplyMessageDto;
16169
+ type index$3_CreateInstagramSettingInteractUnFollowDto = CreateInstagramSettingInteractUnFollowDto;
16170
+ type index$3_CreateInstagramSettingPostDto = CreateInstagramSettingPostDto;
16171
+ type index$3_CreateTaskInstagramBlockUserDto = CreateTaskInstagramBlockUserDto;
16172
+ type index$3_CreateTaskInstagramChangeInfoDto = CreateTaskInstagramChangeInfoDto;
16173
+ type index$3_CreateTaskInstagramFollowDto = CreateTaskInstagramFollowDto;
16174
+ type index$3_CreateTaskInstagramPostDto = CreateTaskInstagramPostDto;
16175
+ type index$3_CreateTaskInstagramReplyCommentDto = CreateTaskInstagramReplyCommentDto;
16176
+ type index$3_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageDto;
16177
+ type index$3_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
16178
+ type index$3_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
16179
+ type index$3_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
16180
+ type index$3_CreateTaskThreadsReplyMessageDto = CreateTaskThreadsReplyMessageDto;
16181
+ type index$3_DataImportInstagramAccountRawDto = DataImportInstagramAccountRawDto;
16182
+ type index$3_ETypeSettingInstagram = ETypeSettingInstagram;
16183
+ declare const index$3_ETypeSettingInstagram: typeof ETypeSettingInstagram;
16184
+ type index$3_FilterAccountSocialGroupDto = FilterAccountSocialGroupDto;
16185
+ type index$3_FilterCheckerAccountInstagramDashboardFollowerDto = FilterCheckerAccountInstagramDashboardFollowerDto;
16186
+ type index$3_FilterCheckerAccountThreadsDashboardFollowerDto = FilterCheckerAccountThreadsDashboardFollowerDto;
16187
+ type index$3_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
16188
+ type index$3_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
16189
+ type index$3_FilterInstagramDashboardFollowerDto = FilterInstagramDashboardFollowerDto;
16190
+ type index$3_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
16191
+ type index$3_FilterInstagramHistoryChangeInfoDto = FilterInstagramHistoryChangeInfoDto;
16192
+ type index$3_FilterInstagramHistoryCreateNewDto = FilterInstagramHistoryCreateNewDto;
16193
+ type index$3_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
16194
+ type index$3_FilterInstagramReportInteractBlockUserDto = FilterInstagramReportInteractBlockUserDto;
16195
+ type index$3_FilterInstagramReportInteractFollowDto = FilterInstagramReportInteractFollowDto;
16196
+ type index$3_FilterInstagramReportInteractReplyCommentDto = FilterInstagramReportInteractReplyCommentDto;
16197
+ type index$3_FilterInstagramReportInteractReplyMessageDto = FilterInstagramReportInteractReplyMessageDto;
16198
+ type index$3_FilterInstagramReportInteractUnFollowDto = FilterInstagramReportInteractUnFollowDto;
16199
+ type index$3_FilterInstagramReportPostHighLightDto = FilterInstagramReportPostHighLightDto;
16200
+ type index$3_FilterInstagramReportPostNewDto = FilterInstagramReportPostNewDto;
16201
+ type index$3_FilterInstagramReportPostReelDto = FilterInstagramReportPostReelDto;
16202
+ type index$3_FilterInstagramReportPostSquareDto = FilterInstagramReportPostSquareDto;
16203
+ type index$3_FilterInstagramReportPostStoryDto = FilterInstagramReportPostStoryDto;
16204
+ type index$3_FilterInstagramSettingFollowDto = FilterInstagramSettingFollowDto;
16205
+ type index$3_FilterInstagramSettingInteractFollowDto = FilterInstagramSettingInteractFollowDto;
16206
+ type index$3_FilterInstagramSettingInteractReplyCommentDto = FilterInstagramSettingInteractReplyCommentDto;
16207
+ type index$3_FilterInstagramSettingInteractReplyMessageDto = FilterInstagramSettingInteractReplyMessageDto;
16208
+ type index$3_FilterInstagramSettingInteractUnFollowDto = FilterInstagramSettingInteractUnFollowDto;
16209
+ type index$3_FilterInstagramSettingPostDto = FilterInstagramSettingPostDto;
16210
+ type index$3_FilterInstagramSettingReplyCommentDto = FilterInstagramSettingReplyCommentDto;
16211
+ type index$3_FilterInstagramSettingReplyMessageDto = FilterInstagramSettingReplyMessageDto;
16212
+ type index$3_FilterInstagramSettingUnFollowDto = FilterInstagramSettingUnFollowDto;
16213
+ type index$3_FilterPerformanceBreakdownInstagramDashboardFollowerDto = FilterPerformanceBreakdownInstagramDashboardFollowerDto;
16214
+ type index$3_FilterPerformanceBreakdownThreadsDashboardFollowerDto = FilterPerformanceBreakdownThreadsDashboardFollowerDto;
16215
+ type index$3_FilterTaskInstagramBlockUserDto = FilterTaskInstagramBlockUserDto;
16216
+ type index$3_FilterTaskInstagramChangeInfoDto = FilterTaskInstagramChangeInfoDto;
16217
+ type index$3_FilterTaskInstagramFollowDto = FilterTaskInstagramFollowDto;
16218
+ type index$3_FilterTaskInstagramPostDto = FilterTaskInstagramPostDto;
16219
+ type index$3_FilterTaskInstagramReplyCommentDto = FilterTaskInstagramReplyCommentDto;
16220
+ type index$3_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageDto;
16221
+ type index$3_FilterTaskThreadsFollowDto = FilterTaskThreadsFollowDto;
16222
+ type index$3_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
16223
+ type index$3_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
16224
+ type index$3_FilterTaskThreadsReplyMessageDto = FilterTaskThreadsReplyMessageDto;
16225
+ type index$3_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
16226
+ type index$3_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
16227
+ type index$3_FilterThreadsDashboardFollowerDto = FilterThreadsDashboardFollowerDto;
16228
+ type index$3_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
16229
+ type index$3_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
16230
+ type index$3_FilterThreadsReportInteractReplyMessageDto = FilterThreadsReportInteractReplyMessageDto;
16231
+ type index$3_FilterThreadsReportInteractUnFollowDto = FilterThreadsReportInteractUnFollowDto;
16232
+ type index$3_FilterThreadsReportPostDto = FilterThreadsReportPostDto;
16233
+ type index$3_FilterThreadsSettingInteractFollowDto = FilterThreadsSettingInteractFollowDto;
16234
+ type index$3_FilterThreadsSettingInteractReplyCommentDto = FilterThreadsSettingInteractReplyCommentDto;
16235
+ type index$3_FilterThreadsSettingInteractReplyMessageDto = FilterThreadsSettingInteractReplyMessageDto;
16236
+ type index$3_FilterThreadsSettingInteractUnFollowDto = FilterThreadsSettingInteractUnFollowDto;
16237
+ type index$3_FilterThreadsSettingPostDto = FilterThreadsSettingPostDto;
16238
+ type index$3_FindAccountForCheckerInstagramDashboard = FindAccountForCheckerInstagramDashboard;
16239
+ type index$3_FindAccountForCheckerThreadsDashboard = FindAccountForCheckerThreadsDashboard;
16240
+ type index$3_FindAccountSocialGroupDto = FindAccountSocialGroupDto;
16241
+ type index$3_FindAccountSocialGroupPopupSocialDto = FindAccountSocialGroupPopupSocialDto;
16242
+ type index$3_FindCheckerAccountInstagramDashboardFollowerDto = FindCheckerAccountInstagramDashboardFollowerDto;
16243
+ type index$3_FindCheckerAccountThreadsDashboardFollowerDto = FindCheckerAccountThreadsDashboardFollowerDto;
16244
+ type index$3_FindGrowthInstagramDashboardFollowerDto = FindGrowthInstagramDashboardFollowerDto;
16245
+ type index$3_FindGrowthThreadsDashboardFollowerDto = FindGrowthThreadsDashboardFollowerDto;
16246
+ type index$3_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
16247
+ type index$3_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
16248
+ type index$3_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
16249
+ type index$3_FindInstagramHistoryChangeInfoDto = FindInstagramHistoryChangeInfoDto;
16250
+ type index$3_FindInstagramHistoryCreateNewDto = FindInstagramHistoryCreateNewDto;
16251
+ type index$3_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
16252
+ type index$3_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
16253
+ type index$3_FindInstagramSettingInteractReplyCommentDto = FindInstagramSettingInteractReplyCommentDto;
16254
+ type index$3_FindInstagramSettingInteractReplyMessageDto = FindInstagramSettingInteractReplyMessageDto;
16255
+ type index$3_FindInstagramSettingInteractUnFollowDto = FindInstagramSettingInteractUnFollowDto;
16256
+ type index$3_FindInstagramSettingPostDto = FindInstagramSettingPostDto;
16257
+ type index$3_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
16258
+ type index$3_FindOverViewInstagramAccountRunDto = FindOverViewInstagramAccountRunDto;
16259
+ type index$3_FindOverViewInstagramReportInteractBlockUserDto = FindOverViewInstagramReportInteractBlockUserDto;
16260
+ type index$3_FindOverViewInstagramReportInteractFollowDto = FindOverViewInstagramReportInteractFollowDto;
16261
+ type index$3_FindOverViewInstagramReportInteractReplyCommentDto = FindOverViewInstagramReportInteractReplyCommentDto;
16262
+ type index$3_FindOverViewInstagramReportInteractReplyMessageDto = FindOverViewInstagramReportInteractReplyMessageDto;
16263
+ type index$3_FindOverViewInstagramReportInteractUnFollowDto = FindOverViewInstagramReportInteractUnFollowDto;
16264
+ type index$3_FindOverViewInstagramReportPostHighLightDto = FindOverViewInstagramReportPostHighLightDto;
16265
+ type index$3_FindOverViewInstagramReportPostNewDto = FindOverViewInstagramReportPostNewDto;
16266
+ type index$3_FindOverViewInstagramReportPostReelDto = FindOverViewInstagramReportPostReelDto;
16267
+ type index$3_FindOverViewInstagramReportPostSquareDto = FindOverViewInstagramReportPostSquareDto;
16268
+ type index$3_FindOverViewInstagramReportPostStoryDto = FindOverViewInstagramReportPostStoryDto;
16269
+ type index$3_FindOverViewInstagramSettingInteractFollowDto = FindOverViewInstagramSettingInteractFollowDto;
16270
+ type index$3_FindOverViewInstagramSettingInteractReplyCommentDto = FindOverViewInstagramSettingInteractReplyCommentDto;
16271
+ type index$3_FindOverViewInstagramSettingInteractReplyMessageDto = FindOverViewInstagramSettingInteractReplyMessageDto;
16272
+ type index$3_FindOverViewInstagramSettingInteractUnFollowDto = FindOverViewInstagramSettingInteractUnFollowDto;
16273
+ type index$3_FindOverViewInstagramSettingPostDto = FindOverViewInstagramSettingPostDto;
16274
+ type index$3_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
16275
+ type index$3_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
16276
+ type index$3_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
16277
+ type index$3_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
16278
+ type index$3_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
16279
+ type index$3_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
16280
+ type index$3_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto;
16281
+ type index$3_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
16282
+ type index$3_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
16283
+ type index$3_FindOverViewTaskThreadsReplyMessageDto = FindOverViewTaskThreadsReplyMessageDto;
16284
+ type index$3_FindOverViewThreadsAccountDto = FindOverViewThreadsAccountDto;
16285
+ type index$3_FindOverViewThreadsAccountRowDto = FindOverViewThreadsAccountRowDto;
16286
+ type index$3_FindOverViewThreadsReportInteractFollowDto = FindOverViewThreadsReportInteractFollowDto;
16287
+ type index$3_FindOverViewThreadsReportInteractReplyCommentDto = FindOverViewThreadsReportInteractReplyCommentDto;
16288
+ type index$3_FindOverViewThreadsReportInteractReplyMessageDto = FindOverViewThreadsReportInteractReplyMessageDto;
16289
+ type index$3_FindOverViewThreadsReportInteractUnFollowDto = FindOverViewThreadsReportInteractUnFollowDto;
16290
+ type index$3_FindOverViewThreadsReportPostDto = FindOverViewThreadsReportPostDto;
16291
+ type index$3_FindOverViewThreadsSettingInteractFollowDto = FindOverViewThreadsSettingInteractFollowDto;
16292
+ type index$3_FindOverViewThreadsSettingInteractReplyCommentDto = FindOverViewThreadsSettingInteractReplyCommentDto;
16293
+ type index$3_FindOverViewThreadsSettingInteractReplyMessageDto = FindOverViewThreadsSettingInteractReplyMessageDto;
16294
+ type index$3_FindOverViewThreadsSettingInteractUnFollowDto = FindOverViewThreadsSettingInteractUnFollowDto;
16295
+ type index$3_FindOverViewThreadsSettingPostDto = FindOverViewThreadsSettingPostDto;
16296
+ type index$3_FindOverviewInstagramDashboardFollowerDto = FindOverviewInstagramDashboardFollowerDto;
16297
+ type index$3_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
16298
+ type index$3_FindOverviewInstagramHistoryChangeInfoDto = FindOverviewInstagramHistoryChangeInfoDto;
16299
+ type index$3_FindOverviewInstagramHistoryCreateNewDto = FindOverviewInstagramHistoryCreateNewDto;
16300
+ type index$3_FindOverviewInstagramHistoryGroupDto = FindOverviewInstagramHistoryGroupDto;
16301
+ type index$3_FindOverviewThreadsDashboardFollowerDto = FindOverviewThreadsDashboardFollowerDto;
16302
+ type index$3_FindPerformanceBreakdownInstagramDashboardFollowerDto = FindPerformanceBreakdownInstagramDashboardFollowerDto;
16303
+ type index$3_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto = FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto;
16304
+ type index$3_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto = FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto;
16305
+ type index$3_FindPerformanceBreakdownThreadsDashboardFollowerDto = FindPerformanceBreakdownThreadsDashboardFollowerDto;
16306
+ type index$3_FindTaskInstagramBlockUserDto = FindTaskInstagramBlockUserDto;
16307
+ type index$3_FindTaskInstagramChangeInfoDto = FindTaskInstagramChangeInfoDto;
16308
+ type index$3_FindTaskInstagramFollowDto = FindTaskInstagramFollowDto;
16309
+ type index$3_FindTaskInstagramPostDto = FindTaskInstagramPostDto;
16310
+ type index$3_FindTaskInstagramReplyCommentDto = FindTaskInstagramReplyCommentDto;
16311
+ type index$3_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
16312
+ type index$3_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
16313
+ type index$3_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
16314
+ type index$3_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
16315
+ type index$3_FindTaskThreadsReplyMessageDto = FindTaskThreadsReplyMessageDto;
16316
+ type index$3_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
16317
+ type index$3_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
16318
+ type index$3_FindThreadsSettingInteractFollowDto = FindThreadsSettingInteractFollowDto;
16319
+ type index$3_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInteractReplyCommentDto;
16320
+ type index$3_FindThreadsSettingInteractReplyMessageDto = FindThreadsSettingInteractReplyMessageDto;
16321
+ type index$3_FindThreadsSettingInteractUnFollowDto = FindThreadsSettingInteractUnFollowDto;
16322
+ type index$3_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
16323
+ type index$3_IAccountSocialBase = IAccountSocialBase;
16324
+ type index$3_IAccountSocialGroup = IAccountSocialGroup;
16325
+ type index$3_IFilterSettingAccountSocialFindForSettingDto = IFilterSettingAccountSocialFindForSettingDto;
16326
+ type index$3_IIncreaseValueTask = IIncreaseValueTask;
16327
+ type index$3_IInstagramAccountRaw = IInstagramAccountRaw;
16328
+ type index$3_IInstagramDashboardFollower = IInstagramDashboardFollower;
16329
+ type index$3_IInstagramDashboardFollowerELS = IInstagramDashboardFollowerELS;
16330
+ type index$3_IInstagramHistoryAutoSync = IInstagramHistoryAutoSync;
16331
+ type index$3_IInstagramHistoryAutoSyncELS = IInstagramHistoryAutoSyncELS;
16332
+ type index$3_IInstagramHistoryAutoSyncStoreIdxELS = IInstagramHistoryAutoSyncStoreIdxELS;
16333
+ type index$3_IInstagramHistoryChangeInfo = IInstagramHistoryChangeInfo;
16334
+ type index$3_IInstagramHistoryChangeInfoELS = IInstagramHistoryChangeInfoELS;
16335
+ type index$3_IInstagramHistoryChangeInfoStoreIdxELS = IInstagramHistoryChangeInfoStoreIdxELS;
16336
+ type index$3_IInstagramHistoryCreateNew = IInstagramHistoryCreateNew;
16337
+ type index$3_IInstagramHistoryCreateNewELS = IInstagramHistoryCreateNewELS;
16338
+ type index$3_IInstagramHistoryCreateNewStoreIdxELS = IInstagramHistoryCreateNewStoreIdxELS;
16339
+ type index$3_IInstagramHistoryGroup = IInstagramHistoryGroup;
16340
+ type index$3_IInstagramHistoryGroupELS = IInstagramHistoryGroupELS;
16341
+ type index$3_IInstagramHistoryGroupStoreIdxELS = IInstagramHistoryGroupStoreIdxELS;
16342
+ type index$3_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
16343
+ type index$3_IInstagramReportInteractBlockUserELS = IInstagramReportInteractBlockUserELS;
16344
+ type index$3_IInstagramReportInteractBlockUserStoreIdxELS = IInstagramReportInteractBlockUserStoreIdxELS;
16345
+ type index$3_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
16346
+ type index$3_IInstagramReportInteractFollowELS = IInstagramReportInteractFollowELS;
16347
+ type index$3_IInstagramReportInteractFollowStoreIdxELS = IInstagramReportInteractFollowStoreIdxELS;
16348
+ type index$3_IInstagramReportInteractReplyComment = IInstagramReportInteractReplyComment;
16349
+ type index$3_IInstagramReportInteractReplyCommentELS = IInstagramReportInteractReplyCommentELS;
16350
+ type index$3_IInstagramReportInteractReplyCommentStoreIdxELS = IInstagramReportInteractReplyCommentStoreIdxELS;
16351
+ type index$3_IInstagramReportInteractReplyMessage = IInstagramReportInteractReplyMessage;
16352
+ type index$3_IInstagramReportInteractReplyMessageELS = IInstagramReportInteractReplyMessageELS;
16353
+ type index$3_IInstagramReportInteractReplyMessageStoreIdxELS = IInstagramReportInteractReplyMessageStoreIdxELS;
16354
+ type index$3_IInstagramReportInteractUnFollow = IInstagramReportInteractUnFollow;
16355
+ type index$3_IInstagramReportInteractUnFollowELS = IInstagramReportInteractUnFollowELS;
16356
+ type index$3_IInstagramReportInteractUnFollowStoreIdxELS = IInstagramReportInteractUnFollowStoreIdxELS;
16357
+ type index$3_IInstagramReportPostHighLight = IInstagramReportPostHighLight;
16358
+ type index$3_IInstagramReportPostHighLightELS = IInstagramReportPostHighLightELS;
16359
+ type index$3_IInstagramReportPostHighLightStoreIdxELS = IInstagramReportPostHighLightStoreIdxELS;
16360
+ type index$3_IInstagramReportPostNew = IInstagramReportPostNew;
16361
+ type index$3_IInstagramReportPostNewELS = IInstagramReportPostNewELS;
16362
+ type index$3_IInstagramReportPostNewStoreIdxELS = IInstagramReportPostNewStoreIdxELS;
16363
+ type index$3_IInstagramReportPostReel = IInstagramReportPostReel;
16364
+ type index$3_IInstagramReportPostReelELS = IInstagramReportPostReelELS;
16365
+ type index$3_IInstagramReportPostReelStoreIdxELS = IInstagramReportPostReelStoreIdxELS;
16366
+ type index$3_IInstagramReportPostSquare = IInstagramReportPostSquare;
16367
+ type index$3_IInstagramReportPostSquareELS = IInstagramReportPostSquareELS;
16368
+ type index$3_IInstagramReportPostSquareStoreIdxELS = IInstagramReportPostSquareStoreIdxELS;
16369
+ type index$3_IInstagramReportPostStory = IInstagramReportPostStory;
16370
+ type index$3_IInstagramReportPostStoryELS = IInstagramReportPostStoryELS;
16371
+ type index$3_IInstagramReportPostStoryStoreIdxELS = IInstagramReportPostStoryStoreIdxELS;
16372
+ type index$3_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
16373
+ type index$3_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
16374
+ type index$3_IInstagramSettingInteractReplyComment = IInstagramSettingInteractReplyComment;
16375
+ type index$3_IInstagramSettingInteractReplyMessage = IInstagramSettingInteractReplyMessage;
16376
+ type index$3_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFollow;
16377
+ type index$3_IInstagramSettingPost = IInstagramSettingPost;
16378
+ type index$3_ISettingAccountSocialDto = ISettingAccountSocialDto;
16379
+ type index$3_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
16380
+ type index$3_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
16381
+ type index$3_ISheetImportExportSocial = ISheetImportExportSocial;
16382
+ type index$3_ISocialTaskManager = ISocialTaskManager;
16383
+ type index$3_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
16384
+ type index$3_ITaskInstagramBlockUserELS = ITaskInstagramBlockUserELS;
16385
+ type index$3_ITaskInstagramBlockUserStoreIdxELS = ITaskInstagramBlockUserStoreIdxELS;
16386
+ type index$3_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
16387
+ type index$3_ITaskInstagramChangeInfoELS = ITaskInstagramChangeInfoELS;
16388
+ type index$3_ITaskInstagramChangeInfoStoreIdxELS = ITaskInstagramChangeInfoStoreIdxELS;
16389
+ type index$3_ITaskInstagramFollow = ITaskInstagramFollow;
16390
+ type index$3_ITaskInstagramFollowELS = ITaskInstagramFollowELS;
16391
+ type index$3_ITaskInstagramFollowStoreIdxELS = ITaskInstagramFollowStoreIdxELS;
16392
+ type index$3_ITaskInstagramPost = ITaskInstagramPost;
16393
+ type index$3_ITaskInstagramPostELS = ITaskInstagramPostELS;
16394
+ type index$3_ITaskInstagramPostStoreIdxELS = ITaskInstagramPostStoreIdxELS;
16395
+ type index$3_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
16396
+ type index$3_ITaskInstagramReplyCommentELS = ITaskInstagramReplyCommentELS;
16397
+ type index$3_ITaskInstagramReplyCommentStoreIdxELS = ITaskInstagramReplyCommentStoreIdxELS;
16398
+ type index$3_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
16399
+ type index$3_ITaskInstagramReplyMessageELS = ITaskInstagramReplyMessageELS;
16400
+ type index$3_ITaskInstagramReplyMessageStoreIdxELS = ITaskInstagramReplyMessageStoreIdxELS;
16401
+ type index$3_ITaskThreadsFollow = ITaskThreadsFollow;
16402
+ type index$3_ITaskThreadsFollowELS = ITaskThreadsFollowELS;
16403
+ type index$3_ITaskThreadsFollowStoreIdxELS = ITaskThreadsFollowStoreIdxELS;
16404
+ type index$3_ITaskThreadsPost = ITaskThreadsPost;
16405
+ type index$3_ITaskThreadsPostELS = ITaskThreadsPostELS;
16406
+ type index$3_ITaskThreadsPostStoreIdxELS = ITaskThreadsPostStoreIdxELS;
16407
+ type index$3_ITaskThreadsReplyComment = ITaskThreadsReplyComment;
16408
+ type index$3_ITaskThreadsReplyCommentELS = ITaskThreadsReplyCommentELS;
16409
+ type index$3_ITaskThreadsReplyCommentStoreIdxELS = ITaskThreadsReplyCommentStoreIdxELS;
16410
+ type index$3_ITaskThreadsReplyMessage = ITaskThreadsReplyMessage;
16411
+ type index$3_ITaskThreadsReplyMessageELS = ITaskThreadsReplyMessageELS;
16412
+ type index$3_ITaskThreadsReplyMessageStoreIdxELS = ITaskThreadsReplyMessageStoreIdxELS;
16413
+ type index$3_IThreadsAccountRaw = IThreadsAccountRaw;
16414
+ type index$3_IThreadsDashboardFollower = IThreadsDashboardFollower;
16415
+ type index$3_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
16416
+ type index$3_IThreadsHistoryAutoSyncELS = IThreadsHistoryAutoSyncELS;
16417
+ type index$3_IThreadsHistoryChange = IThreadsHistoryChange;
16418
+ type index$3_IThreadsHistoryChangeInfoELS = IThreadsHistoryChangeInfoELS;
16419
+ type index$3_IThreadsHistoryCreateNew = IThreadsHistoryCreateNew;
16420
+ type index$3_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
16421
+ type index$3_IThreadsHistoryGroup = IThreadsHistoryGroup;
16422
+ type index$3_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
16423
+ type index$3_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
16424
+ type index$3_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
16425
+ type index$3_IThreadsReportInteractFollowStoreIdxELS = IThreadsReportInteractFollowStoreIdxELS;
16426
+ type index$3_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
16427
+ type index$3_IThreadsReportInteractReplyCommentELS = IThreadsReportInteractReplyCommentELS;
16428
+ type index$3_IThreadsReportInteractReplyCommentStoreIdxELS = IThreadsReportInteractReplyCommentStoreIdxELS;
16429
+ type index$3_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
16430
+ type index$3_IThreadsReportInteractReplyMessageELS = IThreadsReportInteractReplyMessageELS;
16431
+ type index$3_IThreadsReportInteractReplyMessageStoreIdxELS = IThreadsReportInteractReplyMessageStoreIdxELS;
16432
+ type index$3_IThreadsReportInteractUnFollow = IThreadsReportInteractUnFollow;
16433
+ type index$3_IThreadsReportInteractUnFollowELS = IThreadsReportInteractUnFollowELS;
16434
+ type index$3_IThreadsReportInteractUnFollowStoreIdxELS = IThreadsReportInteractUnFollowStoreIdxELS;
16435
+ type index$3_IThreadsReportPost = IThreadsReportPost;
16436
+ type index$3_IThreadsReportPostELS = IThreadsReportPostELS;
16437
+ type index$3_IThreadsReportPostStoreIdxELS = IThreadsReportPostStoreIdxELS;
16438
+ type index$3_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
16439
+ type index$3_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
16440
+ type index$3_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyMessage;
16441
+ type index$3_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
16442
+ type index$3_IThreadsSettingPost = IThreadsSettingPost;
16443
+ type index$3_ImportInstagramAccountRawDto = ImportInstagramAccountRawDto;
16444
+ type index$3_ResultChangeInfoInstagramAccountRawDto = ResultChangeInfoInstagramAccountRawDto;
16445
+ type index$3_ResultImportInstagramAccountRawDto = ResultImportInstagramAccountRawDto;
16446
+ type index$3_UpdateAccountSocialGroupDto = UpdateAccountSocialGroupDto;
16447
+ type index$3_UpdateInstagramSettingInteractFollowDto = UpdateInstagramSettingInteractFollowDto;
16448
+ type index$3_UpdateInstagramSettingInteractReplyCommentDto = UpdateInstagramSettingInteractReplyCommentDto;
16449
+ type index$3_UpdateInstagramSettingInteractReplyMessageDto = UpdateInstagramSettingInteractReplyMessageDto;
16450
+ type index$3_UpdateInstagramSettingInteractUnFollowDto = UpdateInstagramSettingInteractUnFollowDto;
16451
+ type index$3_UpdateInstagramSettingPostDto = UpdateInstagramSettingPostDto;
16452
+ type index$3_UpdateTaskInstagramBlockUserDto = UpdateTaskInstagramBlockUserDto;
16453
+ type index$3_UpdateTaskInstagramChangeInfoDto = UpdateTaskInstagramChangeInfoDto;
16454
+ type index$3_UpdateTaskInstagramFollowDto = UpdateTaskInstagramFollowDto;
16455
+ type index$3_UpdateTaskInstagramPostDto = UpdateTaskInstagramPostDto;
16456
+ type index$3_UpdateTaskInstagramReplyCommentDto = UpdateTaskInstagramReplyCommentDto;
16457
+ type index$3_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageDto;
16458
+ type index$3_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
16459
+ type index$3_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
16460
+ type index$3_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
16461
+ type index$3_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
16462
+ type index$3_ViewSettingInstagramOfAccountDto = ViewSettingInstagramOfAccountDto;
16463
+ declare namespace index$3 {
16464
+ export { type index$3_ApplyTimeDashboardDto as ApplyTimeDashboardDto, type index$3_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$3_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, type index$3_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$3_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$3_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$3_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, type index$3_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$3_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, type index$3_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$3_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, type index$3_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$3_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$3_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$3_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$3_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$3_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$3_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$3_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$3_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$3_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$3_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$3_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$3_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$3_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$3_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$3_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, index$3_ETypeSettingInstagram as ETypeSettingInstagram, type index$3_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, type index$3_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, type index$3_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, type index$3_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$3_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$3_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, type index$3_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$3_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$3_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$3_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$3_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$3_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$3_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$3_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$3_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$3_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$3_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$3_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$3_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$3_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$3_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$3_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$3_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$3_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$3_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$3_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$3_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$3_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$3_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$3_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, type index$3_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, type index$3_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$3_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$3_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$3_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$3_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$3_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$3_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$3_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$3_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$3_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$3_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, type index$3_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, type index$3_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, type index$3_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$3_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$3_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$3_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$3_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$3_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$3_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$3_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$3_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$3_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$3_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, type index$3_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, type index$3_FindAccountSocialGroupDto as FindAccountSocialGroupDto, type index$3_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, type index$3_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, type index$3_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, type index$3_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, type index$3_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, type index$3_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$3_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$3_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$3_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$3_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$3_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$3_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$3_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$3_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$3_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$3_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$3_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$3_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$3_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$3_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$3_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$3_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$3_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$3_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$3_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$3_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$3_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$3_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$3_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$3_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$3_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$3_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$3_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$3_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$3_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$3_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$3_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$3_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$3_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$3_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$3_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$3_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$3_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$3_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, type index$3_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, type index$3_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$3_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$3_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$3_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$3_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$3_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$3_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$3_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$3_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$3_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$3_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, type index$3_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$3_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$3_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$3_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$3_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, type index$3_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, type index$3_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type index$3_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type index$3_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, type index$3_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$3_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$3_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$3_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$3_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$3_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$3_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$3_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$3_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$3_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$3_FindThreadsAccountRawDto as FindThreadsAccountRawDto, type index$3_FindThreadsAccountRunDto as FindThreadsAccountRunDto, type index$3_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$3_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$3_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$3_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$3_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$3_IAccountSocialBase as IAccountSocialBase, type index$3_IAccountSocialGroup as IAccountSocialGroup, type index$3_IFilterSettingAccountSocialFindForSettingDto as IFilterSettingAccountSocialFindForSettingDto, type index$3_IIncreaseValueTask as IIncreaseValueTask, type index$3_IInstagramAccountRaw as IInstagramAccountRaw, type index$3_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$3_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$3_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$3_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$3_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$3_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$3_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$3_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$3_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$3_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$3_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$3_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$3_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$3_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$3_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$3_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$3_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$3_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$3_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$3_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$3_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$3_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$3_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$3_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$3_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$3_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$3_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$3_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$3_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$3_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$3_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$3_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$3_IInstagramReportPostNew as IInstagramReportPostNew, type index$3_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$3_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$3_IInstagramReportPostReel as IInstagramReportPostReel, type index$3_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$3_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$3_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$3_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$3_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$3_IInstagramReportPostStory as IInstagramReportPostStory, type index$3_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$3_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$3_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$3_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$3_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$3_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$3_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$3_IInstagramSettingPost as IInstagramSettingPost, type index$3_ISettingAccountSocialDto as ISettingAccountSocialDto, type index$3_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$3_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$3_ISheetImportExportSocial as ISheetImportExportSocial, type index$3_ISocialTaskManager as ISocialTaskManager, type index$3_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$3_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$3_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$3_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$3_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$3_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$3_ITaskInstagramFollow as ITaskInstagramFollow, type index$3_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$3_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$3_ITaskInstagramPost as ITaskInstagramPost, type index$3_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$3_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$3_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$3_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$3_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$3_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$3_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$3_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$3_ITaskThreadsFollow as ITaskThreadsFollow, type index$3_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$3_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$3_ITaskThreadsPost as ITaskThreadsPost, type index$3_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$3_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$3_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$3_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$3_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$3_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$3_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$3_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$3_IThreadsAccountRaw as IThreadsAccountRaw, type index$3_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$3_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$3_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$3_IThreadsHistoryChange as IThreadsHistoryChange, type index$3_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$3_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$3_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$3_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$3_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$3_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$3_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$3_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$3_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$3_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$3_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$3_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$3_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$3_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$3_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$3_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$3_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$3_IThreadsReportPost as IThreadsReportPost, type index$3_IThreadsReportPostELS as IThreadsReportPostELS, type index$3_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$3_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$3_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$3_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$3_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$3_IThreadsSettingPost as IThreadsSettingPost, type index$3_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$3_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$3_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, type index$3_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, type index$3_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$3_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$3_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$3_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$3_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$3_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$3_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$3_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$3_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$3_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$3_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$3_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$3_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$3_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$3_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$3_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto };
16465
+ }
16466
+
16467
+ interface CreateBlogDto extends Partial<IBlog> {
16468
+ blog_name: string;
16469
+ blog_desc?: string;
16470
+ blog_thumb: string;
16471
+ blog_content: string;
16472
+ blog_category: string;
16473
+ blog_departmentsPermission?: string[];
16474
+ blog_teamsPermission?: string[];
16475
+ blog_usersPermission?: string[];
16476
+ }
16477
+ interface UpdateBlogDto extends Partial<IBlog> {
16478
+ blog_name: string;
16479
+ blog_desc?: string;
16480
+ blog_thumb: string;
16481
+ blog_content: string;
16482
+ blog_category: string;
16483
+ blog_status: string;
16484
+ blog_departmentsPermission?: string[];
16485
+ blog_teamsPermission?: string[];
16486
+ blog_usersPermission?: string[];
16487
+ }
16488
+ interface FindBlogDto extends IFindBaseDto, IBlog {
16489
+ blog_departmentsPermission?: IDepartment[];
16490
+ blog_teamsPermission?: ITeam[];
16491
+ blog_usersPermission?: IUser[];
16492
+ }
16493
+ interface FilterBlogDto extends IFilterBaseDto {
16494
+ departmentsPermission: string[];
16495
+ teamsPermission: string[];
16496
+ usersPermission: string[];
16497
+ status: EStatusBlog[];
16498
+ category: string[];
16499
+ }
16500
+
16501
+ interface CreateBlogsCategoryDto extends Partial<IBlogCategory> {
16502
+ bc_name: string;
16503
+ bc_desc?: string;
16504
+ }
16505
+ interface UpdateBlogsCategoryDto extends Partial<IBlogCategory> {
16506
+ bc_name: string;
16507
+ bc_desc?: string;
16508
+ }
16509
+ interface FindBlogCategoryDto extends IFindBaseDto, IBlogCategory {
16510
+ }
16511
+ interface FilterBlogCategoryDto extends IFilterBaseDto {
16512
+ }
16513
+
16514
+ type index$2_CreateBlogDto = CreateBlogDto;
16515
+ type index$2_CreateBlogsCategoryDto = CreateBlogsCategoryDto;
16516
+ type index$2_FilterBlogCategoryDto = FilterBlogCategoryDto;
16517
+ type index$2_FilterBlogDto = FilterBlogDto;
16518
+ type index$2_FindBlogCategoryDto = FindBlogCategoryDto;
16519
+ type index$2_FindBlogDto = FindBlogDto;
16520
+ type index$2_IBlog = IBlog;
16521
+ type index$2_IBlogCategory = IBlogCategory;
16522
+ type index$2_IBlogDepartmentPermission = IBlogDepartmentPermission;
16523
+ type index$2_IBlogTeamPermission = IBlogTeamPermission;
16524
+ type index$2_IBlogUserPermission = IBlogUserPermission;
16525
+ type index$2_UpdateBlogDto = UpdateBlogDto;
16526
+ type index$2_UpdateBlogsCategoryDto = UpdateBlogsCategoryDto;
15162
16527
  declare namespace index$2 {
15163
- export { type index$2_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$2_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$2_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$2_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$2_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$2_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$2_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$2_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$2_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$2_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$2_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$2_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$2_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$2_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$2_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$2_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$2_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$2_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$2_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$2_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$2_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$2_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, index$2_ETypeSettingInstagram as ETypeSettingInstagram, type index$2_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$2_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$2_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$2_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$2_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$2_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$2_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$2_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$2_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$2_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$2_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$2_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$2_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$2_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$2_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$2_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$2_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$2_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$2_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$2_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$2_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$2_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$2_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$2_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$2_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$2_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$2_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$2_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$2_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$2_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$2_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$2_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$2_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$2_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$2_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$2_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$2_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$2_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$2_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$2_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$2_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$2_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$2_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$2_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$2_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$2_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$2_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$2_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$2_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$2_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$2_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$2_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$2_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$2_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$2_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$2_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$2_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$2_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$2_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$2_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$2_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$2_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$2_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$2_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$2_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$2_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$2_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$2_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$2_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$2_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$2_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$2_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$2_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$2_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$2_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$2_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$2_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$2_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$2_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$2_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$2_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$2_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$2_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$2_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$2_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$2_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$2_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$2_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$2_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$2_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$2_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$2_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$2_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$2_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$2_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$2_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$2_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$2_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$2_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$2_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$2_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$2_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$2_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$2_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$2_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$2_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$2_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$2_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$2_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$2_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$2_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$2_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$2_IAccountSocialBase as IAccountSocialBase, type index$2_IAccountSocialGroup as IAccountSocialGroup, type index$2_IIncreaseValueTask as IIncreaseValueTask, type index$2_IInstagramAccountRaw as IInstagramAccountRaw, type index$2_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$2_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$2_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$2_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$2_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$2_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$2_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$2_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$2_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$2_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$2_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$2_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$2_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$2_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$2_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$2_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$2_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$2_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$2_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$2_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$2_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$2_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$2_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$2_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$2_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$2_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$2_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$2_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$2_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$2_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$2_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$2_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$2_IInstagramReportPostNew as IInstagramReportPostNew, type index$2_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$2_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$2_IInstagramReportPostReel as IInstagramReportPostReel, type index$2_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$2_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$2_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$2_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$2_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$2_IInstagramReportPostStory as IInstagramReportPostStory, type index$2_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$2_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$2_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$2_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$2_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$2_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$2_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$2_IInstagramSettingPost as IInstagramSettingPost, type index$2_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$2_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$2_ISheetImportExportSocial as ISheetImportExportSocial, type index$2_ISocialTaskManager as ISocialTaskManager, type index$2_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$2_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$2_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$2_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$2_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$2_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$2_ITaskInstagramFollow as ITaskInstagramFollow, type index$2_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$2_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$2_ITaskInstagramPost as ITaskInstagramPost, type index$2_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$2_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$2_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$2_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$2_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$2_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$2_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$2_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$2_ITaskThreadsFollow as ITaskThreadsFollow, type index$2_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$2_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$2_ITaskThreadsPost as ITaskThreadsPost, type index$2_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$2_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$2_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$2_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$2_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$2_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$2_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$2_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$2_IThreadsAccountRaw as IThreadsAccountRaw, type index$2_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$2_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$2_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$2_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$2_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$2_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$2_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$2_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$2_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$2_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$2_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$2_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$2_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$2_IThreadsReportPost as IThreadsReportPost, type index$2_IThreadsReportPostELS as IThreadsReportPostELS, type index$2_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$2_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$2_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$2_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$2_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$2_IThreadsSettingPost as IThreadsSettingPost, type index$2_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$2_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$2_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, type index$2_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$2_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$2_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$2_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$2_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$2_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$2_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$2_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$2_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$2_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$2_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$2_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$2_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$2_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$2_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$2_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto };
16528
+ export type { index$2_CreateBlogDto as CreateBlogDto, index$2_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$2_FilterBlogCategoryDto as FilterBlogCategoryDto, index$2_FilterBlogDto as FilterBlogDto, index$2_FindBlogCategoryDto as FindBlogCategoryDto, index$2_FindBlogDto as FindBlogDto, index$2_IBlog as IBlog, index$2_IBlogCategory as IBlogCategory, index$2_IBlogDepartmentPermission as IBlogDepartmentPermission, index$2_IBlogTeamPermission as IBlogTeamPermission, index$2_IBlogUserPermission as IBlogUserPermission, index$2_UpdateBlogDto as UpdateBlogDto, index$2_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto };
15164
16529
  }
15165
16530
 
15166
16531
  type index$1_ActionLoadInfoUrlSheetToolDto = ActionLoadInfoUrlSheetToolDto;
@@ -15173,14 +16538,21 @@ type index$1_AddToDeviceAccountVPNDto = AddToDeviceAccountVPNDto;
15173
16538
  type index$1_AddToDeviceProxyDto = AddToDeviceProxyDto;
15174
16539
  type index$1_ApplyAutoFillDeviceDto = ApplyAutoFillDeviceDto;
15175
16540
  type index$1_ApplyReplaceDeviceDto = ApplyReplaceDeviceDto;
16541
+ type index$1_ApplyTimeDashboardDto = ApplyTimeDashboardDto;
15176
16542
  type index$1_AutoFillAssignedMemberInstagramAccountRawDto = AutoFillAssignedMemberInstagramAccountRawDto;
16543
+ type index$1_AutoFillAssignedMemberThreadsAccountRawDto = AutoFillAssignedMemberThreadsAccountRawDto;
15177
16544
  type index$1_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
15178
16545
  type index$1_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
15179
16546
  type index$1_AutoFillOverviewTaskInstagramBlockUserDto = AutoFillOverviewTaskInstagramBlockUserDto;
16547
+ type index$1_AutoFillOverviewThreadsAccountRawDto = AutoFillOverviewThreadsAccountRawDto;
15180
16548
  type index$1_AutoFillTaskInstagramBlockUserDto = AutoFillTaskInstagramBlockUserDto;
16549
+ type index$1_AutoFillThreadsAccountRawDto = AutoFillThreadsAccountRawDto;
15181
16550
  type index$1_ChangeInfoInstagramAccountRawDto = ChangeInfoInstagramAccountRawDto;
15182
16551
  type index$1_CheckSendMessageLark = CheckSendMessageLark;
16552
+ type index$1_CreateAccountSocialGroupDto = CreateAccountSocialGroupDto;
15183
16553
  type index$1_CreateAccountVPSDto = CreateAccountVPSDto;
16554
+ type index$1_CreateBlogDto = CreateBlogDto;
16555
+ type index$1_CreateBlogsCategoryDto = CreateBlogsCategoryDto;
15184
16556
  type index$1_CreateDepartmentDto = CreateDepartmentDto;
15185
16557
  type index$1_CreateInstagramSettingInteractFollowDto = CreateInstagramSettingInteractFollowDto;
15186
16558
  type index$1_CreateInstagramSettingInteractReplyCommentDto = CreateInstagramSettingInteractReplyCommentDto;
@@ -15189,6 +16561,7 @@ type index$1_CreateInstagramSettingInteractUnFollowDto = CreateInstagramSettingI
15189
16561
  type index$1_CreateInstagramSettingPostDto = CreateInstagramSettingPostDto;
15190
16562
  type index$1_CreateLarkDto = CreateLarkDto;
15191
16563
  type index$1_CreateManagerImageAIDto = CreateManagerImageAIDto;
16564
+ type index$1_CreateManagerWorkDto = CreateManagerWorkDto;
15192
16565
  type index$1_CreateProxyDto = CreateProxyDto;
15193
16566
  type index$1_CreateRoleDto = CreateRoleDto;
15194
16567
  type index$1_CreateSheetToolDto = CreateSheetToolDto;
@@ -15204,6 +16577,7 @@ type index$1_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
15204
16577
  type index$1_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
15205
16578
  type index$1_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
15206
16579
  type index$1_CreateTaskThreadsReplyMessageDto = CreateTaskThreadsReplyMessageDto;
16580
+ type index$1_CreateTasksJobDto = CreateTasksJobDto;
15207
16581
  type index$1_CreateTeamDto = CreateTeamDto;
15208
16582
  type index$1_CreateUserDto = CreateUserDto;
15209
16583
  type index$1_DataImportInstagramAccountRawDto = DataImportInstagramAccountRawDto;
@@ -15255,14 +16629,20 @@ type index$1_FilterAccountCanvaDto = FilterAccountCanvaDto;
15255
16629
  type index$1_FilterAccountDriveDto = FilterAccountDriveDto;
15256
16630
  type index$1_FilterAccountEmailDto = FilterAccountEmailDto;
15257
16631
  type index$1_FilterAccountEmailManagerDto = FilterAccountEmailManagerDto;
16632
+ type index$1_FilterAccountSocialGroupDto = FilterAccountSocialGroupDto;
15258
16633
  type index$1_FilterAccountVPNDto = FilterAccountVPNDto;
15259
16634
  type index$1_FilterAccountVPSDto = FilterAccountVPSDto;
15260
16635
  type index$1_FilterAccountVPSGroupDto = FilterAccountVPSGroupDto;
16636
+ type index$1_FilterBlogCategoryDto = FilterBlogCategoryDto;
16637
+ type index$1_FilterBlogDto = FilterBlogDto;
16638
+ type index$1_FilterCheckerAccountInstagramDashboardFollowerDto = FilterCheckerAccountInstagramDashboardFollowerDto;
16639
+ type index$1_FilterCheckerAccountThreadsDashboardFollowerDto = FilterCheckerAccountThreadsDashboardFollowerDto;
15261
16640
  type index$1_FilterDepartmentDto = FilterDepartmentDto;
15262
16641
  type index$1_FilterDeviceDto = FilterDeviceDto;
15263
16642
  type index$1_FilterDeviceLogDto = FilterDeviceLogDto;
15264
16643
  type index$1_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
15265
16644
  type index$1_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
16645
+ type index$1_FilterInstagramDashboardFollowerDto = FilterInstagramDashboardFollowerDto;
15266
16646
  type index$1_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
15267
16647
  type index$1_FilterInstagramHistoryChangeInfoDto = FilterInstagramHistoryChangeInfoDto;
15268
16648
  type index$1_FilterInstagramHistoryCreateNewDto = FilterInstagramHistoryCreateNewDto;
@@ -15289,8 +16669,11 @@ type index$1_FilterInstagramSettingUnFollowDto = FilterInstagramSettingUnFollowD
15289
16669
  type index$1_FilterLarkDto = FilterLarkDto;
15290
16670
  type index$1_FilterManagerImageAIDto = FilterManagerImageAIDto;
15291
16671
  type index$1_FilterManagerSheetDto = FilterManagerSheetDto;
16672
+ type index$1_FilterManagerWorkDto = FilterManagerWorkDto;
15292
16673
  type index$1_FilterManualContentSocialDto = FilterManualContentSocialDto;
15293
16674
  type index$1_FilterPCDto = FilterPCDto;
16675
+ type index$1_FilterPerformanceBreakdownInstagramDashboardFollowerDto = FilterPerformanceBreakdownInstagramDashboardFollowerDto;
16676
+ type index$1_FilterPerformanceBreakdownThreadsDashboardFollowerDto = FilterPerformanceBreakdownThreadsDashboardFollowerDto;
15294
16677
  type index$1_FilterProxyDto = FilterProxyDto;
15295
16678
  type index$1_FilterRoleDto = FilterRoleDto;
15296
16679
  type index$1_FilterSheetWorkCategoryDto = FilterSheetWorkCategoryDto;
@@ -15309,6 +16692,9 @@ type index$1_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
15309
16692
  type index$1_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
15310
16693
  type index$1_FilterTaskThreadsReplyMessageDto = FilterTaskThreadsReplyMessageDto;
15311
16694
  type index$1_FilterTeamDto = FilterTeamDto;
16695
+ type index$1_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
16696
+ type index$1_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
16697
+ type index$1_FilterThreadsDashboardFollowerDto = FilterThreadsDashboardFollowerDto;
15312
16698
  type index$1_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
15313
16699
  type index$1_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
15314
16700
  type index$1_FilterThreadsReportInteractReplyMessageDto = FilterThreadsReportInteractReplyMessageDto;
@@ -15324,17 +16710,27 @@ type index$1_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
15324
16710
  type index$1_FindAccountCanvaDto = FindAccountCanvaDto;
15325
16711
  type index$1_FindAccountDriveDto = FindAccountDriveDto;
15326
16712
  type index$1_FindAccountEmailDto = FindAccountEmailDto;
16713
+ type index$1_FindAccountForCheckerInstagramDashboard = FindAccountForCheckerInstagramDashboard;
16714
+ type index$1_FindAccountForCheckerThreadsDashboard = FindAccountForCheckerThreadsDashboard;
16715
+ type index$1_FindAccountSocialGroupDto = FindAccountSocialGroupDto;
16716
+ type index$1_FindAccountSocialGroupPopupSocialDto = FindAccountSocialGroupPopupSocialDto;
15327
16717
  type index$1_FindAccountVPNDto = FindAccountVPNDto;
15328
16718
  type index$1_FindAccountVPSDto = FindAccountVPSDto;
15329
16719
  type index$1_FindAccountVPSGroupDto = FindAccountVPSGroupDto;
15330
16720
  type index$1_FindAccountVPSGroupPopupDto = FindAccountVPSGroupPopupDto;
15331
16721
  type index$1_FindAutoFillDeviceDto = FindAutoFillDeviceDto;
16722
+ type index$1_FindBlogCategoryDto = FindBlogCategoryDto;
16723
+ type index$1_FindBlogDto = FindBlogDto;
16724
+ type index$1_FindCheckerAccountInstagramDashboardFollowerDto = FindCheckerAccountInstagramDashboardFollowerDto;
16725
+ type index$1_FindCheckerAccountThreadsDashboardFollowerDto = FindCheckerAccountThreadsDashboardFollowerDto;
15332
16726
  type index$1_FindDepartmentDto = FindDepartmentDto;
15333
16727
  type index$1_FindDeviceAvailableForAddAccountVPNDto = FindDeviceAvailableForAddAccountVPNDto;
15334
16728
  type index$1_FindDeviceAvailableForAddCHPlayICloudDto = FindDeviceAvailableForAddCHPlayICloudDto;
15335
16729
  type index$1_FindDeviceAvailableForAddProxyDto = FindDeviceAvailableForAddProxyDto;
15336
16730
  type index$1_FindDeviceDto = FindDeviceDto;
15337
16731
  type index$1_FindDeviceLogDto = FindDeviceLogDto;
16732
+ type index$1_FindGrowthInstagramDashboardFollowerDto = FindGrowthInstagramDashboardFollowerDto;
16733
+ type index$1_FindGrowthThreadsDashboardFollowerDto = FindGrowthThreadsDashboardFollowerDto;
15338
16734
  type index$1_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto = FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto;
15339
16735
  type index$1_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
15340
16736
  type index$1_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
@@ -15351,6 +16747,7 @@ type index$1_FindLarkDto = FindLarkDto;
15351
16747
  type index$1_FindListAccountSocialForManualContentAdd = FindListAccountSocialForManualContentAdd;
15352
16748
  type index$1_FindManagerImageAIDto = FindManagerImageAIDto;
15353
16749
  type index$1_FindManagerSheetDto = FindManagerSheetDto;
16750
+ type index$1_FindManagerWorkDto = FindManagerWorkDto;
15354
16751
  type index$1_FindManualContentSocialDto = FindManualContentSocialDto;
15355
16752
  type index$1_FindMemberForAddTeamDto = FindMemberForAddTeamDto;
15356
16753
  type index$1_FindOverViewDepartmentDto = FindOverViewDepartmentDto;
@@ -15384,6 +16781,8 @@ type index$1_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto
15384
16781
  type index$1_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
15385
16782
  type index$1_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
15386
16783
  type index$1_FindOverViewTaskThreadsReplyMessageDto = FindOverViewTaskThreadsReplyMessageDto;
16784
+ type index$1_FindOverViewThreadsAccountDto = FindOverViewThreadsAccountDto;
16785
+ type index$1_FindOverViewThreadsAccountRowDto = FindOverViewThreadsAccountRowDto;
15387
16786
  type index$1_FindOverViewThreadsReportInteractFollowDto = FindOverViewThreadsReportInteractFollowDto;
15388
16787
  type index$1_FindOverViewThreadsReportInteractReplyCommentDto = FindOverViewThreadsReportInteractReplyCommentDto;
15389
16788
  type index$1_FindOverViewThreadsReportInteractReplyMessageDto = FindOverViewThreadsReportInteractReplyMessageDto;
@@ -15406,6 +16805,7 @@ type index$1_FindOverviewDeviceDetailDto = FindOverviewDeviceDetailDto;
15406
16805
  type index$1_FindOverviewDeviceLog = FindOverviewDeviceLog;
15407
16806
  type index$1_FindOverviewDeviceSocialMediaAccountDto = FindOverviewDeviceSocialMediaAccountDto;
15408
16807
  type index$1_FindOverviewDeviceSocialMediaActiveLockedDto = FindOverviewDeviceSocialMediaActiveLockedDto;
16808
+ type index$1_FindOverviewInstagramDashboardFollowerDto = FindOverviewInstagramDashboardFollowerDto;
15409
16809
  type index$1_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
15410
16810
  type index$1_FindOverviewInstagramHistoryChangeInfoDto = FindOverviewInstagramHistoryChangeInfoDto;
15411
16811
  type index$1_FindOverviewInstagramHistoryCreateNewDto = FindOverviewInstagramHistoryCreateNewDto;
@@ -15416,9 +16816,14 @@ type index$1_FindOverviewPCDto = FindOverviewPCDto;
15416
16816
  type index$1_FindOverviewProxyDto = FindOverviewProxyDto;
15417
16817
  type index$1_FindOverviewRoleDto = FindOverviewRoleDto;
15418
16818
  type index$1_FindOverviewTeamDto = FindOverviewTeamDto;
16819
+ type index$1_FindOverviewThreadsDashboardFollowerDto = FindOverviewThreadsDashboardFollowerDto;
15419
16820
  type index$1_FindOverviewUserDto = FindOverviewUserDto;
15420
16821
  type index$1_FindPCDetail = FindPCDetail;
15421
16822
  type index$1_FindPCDto = FindPCDto;
16823
+ type index$1_FindPerformanceBreakdownInstagramDashboardFollowerDto = FindPerformanceBreakdownInstagramDashboardFollowerDto;
16824
+ type index$1_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto = FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto;
16825
+ type index$1_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto = FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto;
16826
+ type index$1_FindPerformanceBreakdownThreadsDashboardFollowerDto = FindPerformanceBreakdownThreadsDashboardFollowerDto;
15422
16827
  type index$1_FindProxyDto = FindProxyDto;
15423
16828
  type index$1_FindReplaceDeviceDto = FindReplaceDeviceDto;
15424
16829
  type index$1_FindRoleDetailDto = FindRoleDetailDto;
@@ -15440,7 +16845,10 @@ type index$1_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
15440
16845
  type index$1_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
15441
16846
  type index$1_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
15442
16847
  type index$1_FindTaskThreadsReplyMessageDto = FindTaskThreadsReplyMessageDto;
16848
+ type index$1_FindTasksJobDto = FindTasksJobDto;
15443
16849
  type index$1_FindTeamDto = FindTeamDto;
16850
+ type index$1_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
16851
+ type index$1_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
15444
16852
  type index$1_FindThreadsSettingInteractFollowDto = FindThreadsSettingInteractFollowDto;
15445
16853
  type index$1_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInteractReplyCommentDto;
15446
16854
  type index$1_FindThreadsSettingInteractReplyMessageDto = FindThreadsSettingInteractReplyMessageDto;
@@ -15492,6 +16900,7 @@ type index$1_IEmailProxy = IEmailProxy;
15492
16900
  type index$1_IEmailRawManager = IEmailRawManager;
15493
16901
  type index$1_IEmailVPS = IEmailVPS;
15494
16902
  type index$1_IFile = IFile;
16903
+ type index$1_IFilterSettingAccountSocialFindForSettingDto = IFilterSettingAccountSocialFindForSettingDto;
15495
16904
  type index$1_IGPMProfile = IGPMProfile;
15496
16905
  type index$1_IHistoryTaskAIContent = IHistoryTaskAIContent;
15497
16906
  type index$1_IHistoryTaskAIImageVideoVoiceCanvaInstagram = IHistoryTaskAIImageVideoVoiceCanvaInstagram;
@@ -15550,6 +16959,7 @@ type index$1_IInstagramSettingInteractUnFollow = IInstagramSettingInteractUnFoll
15550
16959
  type index$1_IInstagramSettingPost = IInstagramSettingPost;
15551
16960
  type index$1_ILark = ILark;
15552
16961
  type index$1_ILarkTeam = ILarkTeam;
16962
+ type index$1_IMailWork = IMailWork;
15553
16963
  type index$1_IManagerImageAI = IManagerImageAI;
15554
16964
  type index$1_IManagerImageAIItemStore = IManagerImageAIItemStore;
15555
16965
  type index$1_IManagerImageAIUserAttached = IManagerImageAIUserAttached;
@@ -15573,6 +16983,7 @@ type index$1_IPCLogStoreIdxELS = IPCLogStoreIdxELS;
15573
16983
  type index$1_IProxy = IProxy;
15574
16984
  type index$1_IRole = IRole;
15575
16985
  type index$1_IRoleFeature = IRoleFeature;
16986
+ type index$1_ISettingAccountSocialDto = ISettingAccountSocialDto;
15576
16987
  type index$1_ISettingRunTimeInstagramPost = ISettingRunTimeInstagramPost;
15577
16988
  type index$1_ISettingRunTimeSocial<T = any> = ISettingRunTimeSocial<T>;
15578
16989
  type index$1_ISettingTool = ISettingTool;
@@ -15638,6 +17049,14 @@ type index$1_ITeamMember = ITeamMember;
15638
17049
  type index$1_ITeamRole = ITeamRole;
15639
17050
  type index$1_IThreadsAccountRaw = IThreadsAccountRaw;
15640
17051
  type index$1_IThreadsDashboardFollower = IThreadsDashboardFollower;
17052
+ type index$1_IThreadsHistoryAutoSync = IThreadsHistoryAutoSync;
17053
+ type index$1_IThreadsHistoryAutoSyncELS = IThreadsHistoryAutoSyncELS;
17054
+ type index$1_IThreadsHistoryChange = IThreadsHistoryChange;
17055
+ type index$1_IThreadsHistoryChangeInfoELS = IThreadsHistoryChangeInfoELS;
17056
+ type index$1_IThreadsHistoryCreateNew = IThreadsHistoryCreateNew;
17057
+ type index$1_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
17058
+ type index$1_IThreadsHistoryGroup = IThreadsHistoryGroup;
17059
+ type index$1_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
15641
17060
  type index$1_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
15642
17061
  type index$1_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
15643
17062
  type index$1_IThreadsReportInteractFollowStoreIdxELS = IThreadsReportInteractFollowStoreIdxELS;
@@ -15670,6 +17089,7 @@ type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
15670
17089
  type index$1_IVoiceStores = IVoiceStores;
15671
17090
  type index$1_ImportAccountVPSDto = ImportAccountVPSDto;
15672
17091
  type index$1_ImportInstagramAccountRawDto = ImportInstagramAccountRawDto;
17092
+ type index$1_ImportManagerWorkDto = ImportManagerWorkDto;
15673
17093
  type index$1_ImportSheetWorkDto = ImportSheetWorkDto;
15674
17094
  type index$1_ListManualContentSocialChildrenDto = ListManualContentSocialChildrenDto;
15675
17095
  type index$1_LoadInfoUrlSheetToolDto = LoadInfoUrlSheetToolDto;
@@ -15678,9 +17098,13 @@ type index$1_PayloadUrlSheetToolDto = PayloadUrlSheetToolDto;
15678
17098
  type index$1_ReplaceAccountVSPDto = ReplaceAccountVSPDto;
15679
17099
  type index$1_ResultChangeInfoInstagramAccountRawDto = ResultChangeInfoInstagramAccountRawDto;
15680
17100
  type index$1_ResultImportInstagramAccountRawDto = ResultImportInstagramAccountRawDto;
17101
+ type index$1_StatisticsManagerWorkDto = StatisticsManagerWorkDto;
15681
17102
  type index$1_StatisticsSheetWorkDto = StatisticsSheetWorkDto;
15682
17103
  type index$1_StoreTaskManualContentSocialForRunDto = StoreTaskManualContentSocialForRunDto;
17104
+ type index$1_UpdateAccountSocialGroupDto = UpdateAccountSocialGroupDto;
15683
17105
  type index$1_UpdateAccountVPSDto = UpdateAccountVPSDto;
17106
+ type index$1_UpdateBlogDto = UpdateBlogDto;
17107
+ type index$1_UpdateBlogsCategoryDto = UpdateBlogsCategoryDto;
15684
17108
  type index$1_UpdateDepartmentDto = UpdateDepartmentDto;
15685
17109
  type index$1_UpdateDeviceDto = UpdateDeviceDto;
15686
17110
  type index$1_UpdateInstagramSettingInteractFollowDto = UpdateInstagramSettingInteractFollowDto;
@@ -15689,6 +17113,7 @@ type index$1_UpdateInstagramSettingInteractReplyMessageDto = UpdateInstagramSett
15689
17113
  type index$1_UpdateInstagramSettingInteractUnFollowDto = UpdateInstagramSettingInteractUnFollowDto;
15690
17114
  type index$1_UpdateInstagramSettingPostDto = UpdateInstagramSettingPostDto;
15691
17115
  type index$1_UpdateLarkDto = UpdateLarkDto;
17116
+ type index$1_UpdateManagerWorkDto = UpdateManagerWorkDto;
15692
17117
  type index$1_UpdatePCDto = UpdatePCDto;
15693
17118
  type index$1_UpdateProxyDto = UpdateProxyDto;
15694
17119
  type index$1_UpdateRoleDto = UpdateRoleDto;
@@ -15705,6 +17130,7 @@ type index$1_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
15705
17130
  type index$1_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
15706
17131
  type index$1_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
15707
17132
  type index$1_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
17133
+ type index$1_UpdateTasksJobDto = UpdateTasksJobDto;
15708
17134
  type index$1_UpdateTeamDto = UpdateTeamDto;
15709
17135
  type index$1_UpdateUserDto = UpdateUserDto;
15710
17136
  type index$1_UpsertManualContentSocialChildrenDto = UpsertManualContentSocialChildrenDto;
@@ -15715,7 +17141,7 @@ type index$1_ViewDetailDeviceDto = ViewDetailDeviceDto;
15715
17141
  type index$1_ViewDetailSheetsToolDto = ViewDetailSheetsToolDto;
15716
17142
  type index$1_ViewSettingInstagramOfAccountDto = ViewSettingInstagramOfAccountDto;
15717
17143
  declare namespace index$1 {
15718
- export { type index$1_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$1_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$1_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$1_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$1_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$1_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$1_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$1_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$1_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$1_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$8 as Auth, type index$1_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$1_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$1_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$1_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$1_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$1_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$1_CheckSendMessageLark as CheckSendMessageLark, index$9 as Common, type index$1_CreateAccountVPSDto as CreateAccountVPSDto, type index$1_CreateDepartmentDto as CreateDepartmentDto, type index$1_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$1_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$1_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$1_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$1_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$1_CreateLarkDto as CreateLarkDto, type index$1_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$1_CreateProxyDto as CreateProxyDto, type index$1_CreateRoleDto as CreateRoleDto, type index$1_CreateSheetToolDto as CreateSheetToolDto, type index$1_CreateSheetWorkDto as CreateSheetWorkDto, type index$1_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$1_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$1_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$1_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$1_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$1_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$1_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$1_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$1_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$1_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$1_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$1_CreateTeamDto as CreateTeamDto, type index$1_CreateUserDto as CreateUserDto, type index$1_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, type index$1_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$1_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$1_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$1_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$1_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$1_EManagerImageAIFolder as EManagerImageAIFolder, index$1_EManagerImageAIModel as EManagerImageAIModel, index$1_EManualContentStatusPost as EManualContentStatusPost, index$1_EManualContentStatusTask as EManualContentStatusTask, index$1_EManualContentTypePost as EManualContentTypePost, index$1_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$1_EStatusAccountCanva as EStatusAccountCanva, index$1_EStatusAccountDrive as EStatusAccountDrive, index$1_EStatusAccountVPN as EStatusAccountVPN, index$1_EStatusEmail as EStatusEmail, index$1_EStatusProxyChecked as EStatusProxyChecked, index$1_EStatusProxyNewIP as EStatusProxyNewIP, index$1_EStatusTaskAIContent as EStatusTaskAIContent, index$1_EStatusVPS as EStatusVPS, index$1_EStatusVPSReplace as EStatusVPSReplace, index$1_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$1_ETaskGenerateAIType as ETaskGenerateAIType, index$1_ETypeRatioImage as ETypeRatioImage, index$1_ETypeSettingInstagram as ETypeSettingInstagram, type index$1_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$1_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$1_FilterAccountDriveDto as FilterAccountDriveDto, type index$1_FilterAccountEmailDto as FilterAccountEmailDto, type index$1_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$1_FilterAccountVPNDto as FilterAccountVPNDto, type index$1_FilterAccountVPSDto as FilterAccountVPSDto, type index$1_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$1_FilterDepartmentDto as FilterDepartmentDto, type index$1_FilterDeviceDto as FilterDeviceDto, type index$1_FilterDeviceLogDto as FilterDeviceLogDto, type index$1_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$1_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$1_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$1_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$1_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$1_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$1_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$1_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$1_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$1_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$1_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$1_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$1_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$1_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$1_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$1_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$1_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$1_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$1_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$1_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$1_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$1_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$1_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$1_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$1_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$1_FilterLarkDto as FilterLarkDto, type index$1_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$1_FilterManagerSheetDto as FilterManagerSheetDto, type index$1_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$1_FilterPCDto as FilterPCDto, type index$1_FilterProxyDto as FilterProxyDto, type index$1_FilterRoleDto as FilterRoleDto, type index$1_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, type index$1_FilterSheetWorkDto as FilterSheetWorkDto, type index$1_FilterSheetsToolDto as FilterSheetsToolDto, type index$1_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$1_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$1_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$1_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$1_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$1_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$1_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$1_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$1_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$1_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$1_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$1_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$1_FilterTeamDto as FilterTeamDto, type index$1_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$1_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$1_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$1_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$1_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$1_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$1_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$1_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$1_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$1_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$1_FilterUserDto as FilterUserDto, type index$1_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$1_FindAccountCanvaDto as FindAccountCanvaDto, type index$1_FindAccountDriveDto as FindAccountDriveDto, type index$1_FindAccountEmailDto as FindAccountEmailDto, type index$1_FindAccountVPNDto as FindAccountVPNDto, type index$1_FindAccountVPSDto as FindAccountVPSDto, type index$1_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$1_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$1_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$1_FindDepartmentDto as FindDepartmentDto, type index$1_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$1_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$1_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$1_FindDeviceDto as FindDeviceDto, type index$1_FindDeviceLogDto as FindDeviceLogDto, type index$1_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$1_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$1_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$1_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$1_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$1_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$1_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$1_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$1_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$1_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$1_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$1_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$1_FindLarkDto as FindLarkDto, type index$1_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$1_FindManagerImageAIDto as FindManagerImageAIDto, type index$1_FindManagerSheetDto as FindManagerSheetDto, type index$1_FindManualContentSocialDto as FindManualContentSocialDto, type index$1_FindMemberForAddTeamDto as FindMemberForAddTeamDto, type index$1_FindOverViewDepartmentDto as FindOverViewDepartmentDto, type index$1_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$1_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$1_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$1_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$1_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$1_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$1_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$1_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$1_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$1_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$1_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$1_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$1_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$1_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$1_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$1_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$1_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$1_FindOverViewLarkDto as FindOverViewLarkDto, type index$1_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$1_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$1_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$1_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$1_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$1_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$1_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$1_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$1_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$1_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$1_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$1_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$1_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$1_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$1_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$1_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$1_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$1_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$1_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$1_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$1_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$1_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$1_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$1_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$1_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$1_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$1_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$1_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$1_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$1_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$1_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$1_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$1_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$1_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$1_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$1_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$1_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$1_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$1_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$1_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$1_FindOverviewPCDto as FindOverviewPCDto, type index$1_FindOverviewProxyDto as FindOverviewProxyDto, type index$1_FindOverviewRoleDto as FindOverviewRoleDto, type index$1_FindOverviewTeamDto as FindOverviewTeamDto, type index$1_FindOverviewUserDto as FindOverviewUserDto, type index$1_FindPCDetail as FindPCDetail, type index$1_FindPCDto as FindPCDto, type index$1_FindProxyDto as FindProxyDto, type index$1_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$1_FindRoleDetailDto as FindRoleDetailDto, type index$1_FindRoleDto as FindRoleDto, type index$1_FindRoleOfMe as FindRoleOfMe, type index$1_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, type index$1_FindSheetWorkDto as FindSheetWorkDto, type index$1_FindSheetsToolDto as FindSheetsToolDto, type index$1_FindTaskAIContentDto as FindTaskAIContentDto, type index$1_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$1_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$1_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$1_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$1_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$1_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$1_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$1_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$1_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$1_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$1_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$1_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$1_FindTeamDto as FindTeamDto, type index$1_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$1_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$1_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$1_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$1_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$1_FindUserDto as FindUserDto, index$5 as Forum, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAssignUser as IAssignUser, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$1_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IEmailAccountSocial as IEmailAccountSocial, type index$1_IEmailProxy as IEmailProxy, type index$1_IEmailRawManager as IEmailRawManager, type index$1_IEmailVPS as IEmailVPS, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$1_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$1_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManualContentRunTime as IManualContentRunTime, type index$1_IManualContentSocial as IManualContentSocial, type index$1_IManualContentSocialChildren as IManualContentSocialChildren, type index$1_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IPCLog as IPCLog, type index$1_IPCLogELS as IPCLogELS, type index$1_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISettingTool as ISettingTool, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanva as ITaskAIImageCanva, type index$1_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$1_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskManualContentSocial as ITaskManualContentSocial, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTime as ITrackingTime, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IViewDeviceByPC as IViewDeviceByPC, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, type index$1_ImportAccountVPSDto as ImportAccountVPSDto, type index$1_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$1_ImportSheetWorkDto as ImportSheetWorkDto, type index$1_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$1_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$1_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$1_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$a as Permission, type index$1_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$1_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$1_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$2 as Socials, type index$1_StatisticsSheetWorkDto as StatisticsSheetWorkDto, type index$1_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, index$3 as Tool, type index$1_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$1_UpdateDepartmentDto as UpdateDepartmentDto, type index$1_UpdateDeviceDto as UpdateDeviceDto, type index$1_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$1_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$1_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$1_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$1_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$1_UpdateLarkDto as UpdateLarkDto, type index$1_UpdatePCDto as UpdatePCDto, type index$1_UpdateProxyDto as UpdateProxyDto, type index$1_UpdateRoleDto as UpdateRoleDto, type index$1_UpdateSheetWorkDto as UpdateSheetWorkDto, type index$1_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$1_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$1_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$1_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$1_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$1_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$1_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$1_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$1_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$1_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$1_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$1_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$1_UpdateTeamDto as UpdateTeamDto, type index$1_UpdateUserDto as UpdateUserDto, type index$1_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$1_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$1_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$1_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$1_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$1_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto, type index$1_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto, index$4 as Workspace };
17144
+ export { type index$1_ActionLoadInfoUrlSheetToolDto as ActionLoadInfoUrlSheetToolDto, type index$1_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, type index$1_AddAccountForDeviceDto as AddAccountForDeviceDto, type index$1_AddBulkManualContentSocialChildrenDto as AddBulkManualContentSocialChildrenDto, type index$1_AddManualContentSocialChildrenDto as AddManualContentSocialChildrenDto, type index$1_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, type index$1_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, type index$1_AddToDeviceProxyDto as AddToDeviceProxyDto, type index$1_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, type index$1_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, type index$1_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$8 as Auth, type index$1_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, type index$1_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, type index$1_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, type index$1_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, type index$1_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, type index$1_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, type index$1_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, type index$1_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, type index$1_ChangeInfoInstagramAccountRawDto as ChangeInfoInstagramAccountRawDto, type index$1_CheckSendMessageLark as CheckSendMessageLark, index$9 as Common, type index$1_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, type index$1_CreateAccountVPSDto as CreateAccountVPSDto, type index$1_CreateBlogDto as CreateBlogDto, type index$1_CreateBlogsCategoryDto as CreateBlogsCategoryDto, type index$1_CreateDepartmentDto as CreateDepartmentDto, type index$1_CreateInstagramSettingInteractFollowDto as CreateInstagramSettingInteractFollowDto, type index$1_CreateInstagramSettingInteractReplyCommentDto as CreateInstagramSettingInteractReplyCommentDto, type index$1_CreateInstagramSettingInteractReplyMessageDto as CreateInstagramSettingInteractReplyMessageDto, type index$1_CreateInstagramSettingInteractUnFollowDto as CreateInstagramSettingInteractUnFollowDto, type index$1_CreateInstagramSettingPostDto as CreateInstagramSettingPostDto, type index$1_CreateLarkDto as CreateLarkDto, type index$1_CreateManagerImageAIDto as CreateManagerImageAIDto, type index$1_CreateManagerWorkDto as CreateManagerWorkDto, type index$1_CreateProxyDto as CreateProxyDto, type index$1_CreateRoleDto as CreateRoleDto, type index$1_CreateSheetToolDto as CreateSheetToolDto, type index$1_CreateSheetWorkDto as CreateSheetWorkDto, type index$1_CreateTaskAIContentDto as CreateTaskAIContentDto, type index$1_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, type index$1_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, type index$1_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, type index$1_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, type index$1_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, type index$1_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, type index$1_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, type index$1_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, type index$1_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, type index$1_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, type index$1_CreateTasksJobDto as CreateTasksJobDto, type index$1_CreateTeamDto as CreateTeamDto, type index$1_CreateUserDto as CreateUserDto, type index$1_DataImportInstagramAccountRawDto as DataImportInstagramAccountRawDto, type index$1_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, type index$1_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, type index$1_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, type index$1_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, type index$1_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$1_EManagerImageAIFolder as EManagerImageAIFolder, index$1_EManagerImageAIModel as EManagerImageAIModel, index$1_EManualContentStatusPost as EManualContentStatusPost, index$1_EManualContentStatusTask as EManualContentStatusTask, index$1_EManualContentTypePost as EManualContentTypePost, index$1_EStatusAccountCHPlayICloud as EStatusAccountCHPlayICloud, index$1_EStatusAccountCanva as EStatusAccountCanva, index$1_EStatusAccountDrive as EStatusAccountDrive, index$1_EStatusAccountVPN as EStatusAccountVPN, index$1_EStatusEmail as EStatusEmail, index$1_EStatusProxyChecked as EStatusProxyChecked, index$1_EStatusProxyNewIP as EStatusProxyNewIP, index$1_EStatusTaskAIContent as EStatusTaskAIContent, index$1_EStatusVPS as EStatusVPS, index$1_EStatusVPSReplace as EStatusVPSReplace, index$1_ETaskGenerateAIStatus as ETaskGenerateAIStatus, index$1_ETaskGenerateAIType as ETaskGenerateAIType, index$1_ETypeRatioImage as ETypeRatioImage, index$1_ETypeSettingInstagram as ETypeSettingInstagram, type index$1_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index$1_FilterAccountCanvaDto as FilterAccountCanvaDto, type index$1_FilterAccountDriveDto as FilterAccountDriveDto, type index$1_FilterAccountEmailDto as FilterAccountEmailDto, type index$1_FilterAccountEmailManagerDto as FilterAccountEmailManagerDto, type index$1_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, type index$1_FilterAccountVPNDto as FilterAccountVPNDto, type index$1_FilterAccountVPSDto as FilterAccountVPSDto, type index$1_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index$1_FilterBlogCategoryDto as FilterBlogCategoryDto, type index$1_FilterBlogDto as FilterBlogDto, type index$1_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, type index$1_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, type index$1_FilterDepartmentDto as FilterDepartmentDto, type index$1_FilterDeviceDto as FilterDeviceDto, type index$1_FilterDeviceLogDto as FilterDeviceLogDto, type index$1_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, type index$1_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, type index$1_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, type index$1_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, type index$1_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, type index$1_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, type index$1_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, type index$1_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, type index$1_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, type index$1_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, type index$1_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, type index$1_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, type index$1_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, type index$1_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, type index$1_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, type index$1_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, type index$1_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, type index$1_FilterInstagramSettingFollowDto as FilterInstagramSettingFollowDto, type index$1_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index$1_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, type index$1_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, type index$1_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, type index$1_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index$1_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index$1_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index$1_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index$1_FilterLarkDto as FilterLarkDto, type index$1_FilterManagerImageAIDto as FilterManagerImageAIDto, type index$1_FilterManagerSheetDto as FilterManagerSheetDto, type index$1_FilterManagerWorkDto as FilterManagerWorkDto, type index$1_FilterManualContentSocialDto as FilterManualContentSocialDto, type index$1_FilterPCDto as FilterPCDto, type index$1_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, type index$1_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, type index$1_FilterProxyDto as FilterProxyDto, type index$1_FilterRoleDto as FilterRoleDto, type index$1_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, type index$1_FilterSheetWorkDto as FilterSheetWorkDto, type index$1_FilterSheetsToolDto as FilterSheetsToolDto, type index$1_FilterTaskAIContentDto as FilterTaskAIContentDto, type index$1_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, type index$1_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, type index$1_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, type index$1_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, type index$1_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, type index$1_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, type index$1_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, type index$1_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, type index$1_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, type index$1_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, type index$1_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, type index$1_FilterTeamDto as FilterTeamDto, type index$1_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, type index$1_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, type index$1_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, type index$1_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, type index$1_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, type index$1_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, type index$1_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, type index$1_FilterThreadsReportPostDto as FilterThreadsReportPostDto, type index$1_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index$1_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index$1_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, type index$1_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, type index$1_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index$1_FilterUserDto as FilterUserDto, type index$1_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index$1_FindAccountCanvaDto as FindAccountCanvaDto, type index$1_FindAccountDriveDto as FindAccountDriveDto, type index$1_FindAccountEmailDto as FindAccountEmailDto, type index$1_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, type index$1_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, type index$1_FindAccountSocialGroupDto as FindAccountSocialGroupDto, type index$1_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, type index$1_FindAccountVPNDto as FindAccountVPNDto, type index$1_FindAccountVPSDto as FindAccountVPSDto, type index$1_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index$1_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, type index$1_FindAutoFillDeviceDto as FindAutoFillDeviceDto, type index$1_FindBlogCategoryDto as FindBlogCategoryDto, type index$1_FindBlogDto as FindBlogDto, type index$1_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, type index$1_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, type index$1_FindDepartmentDto as FindDepartmentDto, type index$1_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, type index$1_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, type index$1_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, type index$1_FindDeviceDto as FindDeviceDto, type index$1_FindDeviceLogDto as FindDeviceLogDto, type index$1_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, type index$1_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, type index$1_FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto as FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type index$1_FindInstagramAccountRawDto as FindInstagramAccountRawDto, type index$1_FindInstagramAccountRunDto as FindInstagramAccountRunDto, type index$1_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, type index$1_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, type index$1_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, type index$1_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, type index$1_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index$1_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, type index$1_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, type index$1_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, type index$1_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index$1_FindLarkDto as FindLarkDto, type index$1_FindListAccountSocialForManualContentAdd as FindListAccountSocialForManualContentAdd, type index$1_FindManagerImageAIDto as FindManagerImageAIDto, type index$1_FindManagerSheetDto as FindManagerSheetDto, type index$1_FindManagerWorkDto as FindManagerWorkDto, type index$1_FindManualContentSocialDto as FindManualContentSocialDto, type index$1_FindMemberForAddTeamDto as FindMemberForAddTeamDto, type index$1_FindOverViewDepartmentDto as FindOverViewDepartmentDto, type index$1_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, type index$1_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, type index$1_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, type index$1_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, type index$1_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, type index$1_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, type index$1_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, type index$1_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, type index$1_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, type index$1_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, type index$1_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, type index$1_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, type index$1_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, type index$1_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, type index$1_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, type index$1_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, type index$1_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, type index$1_FindOverViewLarkDto as FindOverViewLarkDto, type index$1_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, type index$1_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, type index$1_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, type index$1_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, type index$1_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, type index$1_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, type index$1_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, type index$1_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, type index$1_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, type index$1_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, type index$1_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, type index$1_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, type index$1_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, type index$1_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, type index$1_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, type index$1_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, type index$1_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, type index$1_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, type index$1_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, type index$1_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, type index$1_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, type index$1_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, type index$1_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, type index$1_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, type index$1_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index$1_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index$1_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index$1_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, type index$1_FindOverviewAccountEmailManagerDto as FindOverviewAccountEmailManagerDto, type index$1_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index$1_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, type index$1_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, type index$1_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, type index$1_FindOverviewDeviceLog as FindOverviewDeviceLog, type index$1_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, type index$1_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, type index$1_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, type index$1_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, type index$1_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, type index$1_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, type index$1_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, type index$1_FindOverviewManagerImageAIDto as FindOverviewManagerImageAIDto, type index$1_FindOverviewManualContentSocialDto as FindOverviewManualContentSocialDto, type index$1_FindOverviewPCDto as FindOverviewPCDto, type index$1_FindOverviewProxyDto as FindOverviewProxyDto, type index$1_FindOverviewRoleDto as FindOverviewRoleDto, type index$1_FindOverviewTeamDto as FindOverviewTeamDto, type index$1_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, type index$1_FindOverviewUserDto as FindOverviewUserDto, type index$1_FindPCDetail as FindPCDetail, type index$1_FindPCDto as FindPCDto, type index$1_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, type index$1_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type index$1_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type index$1_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, type index$1_FindProxyDto as FindProxyDto, type index$1_FindReplaceDeviceDto as FindReplaceDeviceDto, type index$1_FindRoleDetailDto as FindRoleDetailDto, type index$1_FindRoleDto as FindRoleDto, type index$1_FindRoleOfMe as FindRoleOfMe, type index$1_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, type index$1_FindSheetWorkDto as FindSheetWorkDto, type index$1_FindSheetsToolDto as FindSheetsToolDto, type index$1_FindTaskAIContentDto as FindTaskAIContentDto, type index$1_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, type index$1_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, type index$1_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, type index$1_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, type index$1_FindTaskInstagramPostDto as FindTaskInstagramPostDto, type index$1_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, type index$1_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, type index$1_FindTaskManualContentSocialDto as FindTaskManualContentSocialDto, type index$1_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, type index$1_FindTaskThreadsPostDto as FindTaskThreadsPostDto, type index$1_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, type index$1_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, type index$1_FindTasksJobDto as FindTasksJobDto, type index$1_FindTeamDto as FindTeamDto, type index$1_FindThreadsAccountRawDto as FindThreadsAccountRawDto, type index$1_FindThreadsAccountRunDto as FindThreadsAccountRunDto, type index$1_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index$1_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index$1_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, type index$1_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, type index$1_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index$1_FindUserDto as FindUserDto, index$2 as Forum, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAssignUser as IAssignUser, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceLogStoreIdxELS as IDeviceLogStoreIdxELS, type index$1_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IEmailAccountSocial as IEmailAccountSocial, type index$1_IEmailProxy as IEmailProxy, type index$1_IEmailRawManager as IEmailRawManager, type index$1_IEmailVPS as IEmailVPS, type index$1_IFile as IFile, type index$1_IFilterSettingAccountSocialFindForSettingDto as IFilterSettingAccountSocialFindForSettingDto, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImageVideoVoiceCanvaInstagram as IHistoryTaskAIImageVideoVoiceCanvaInstagram, type index$1_IHistoryTaskAIImageVideoVoiceCanvaThreads as IHistoryTaskAIImageVideoVoiceCanvaThreads, type index$1_IIncreaseValueTask as IIncreaseValueTask, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryAutoSyncStoreIdxELS as IInstagramHistoryAutoSyncStoreIdxELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryChangeInfoStoreIdxELS as IInstagramHistoryChangeInfoStoreIdxELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryCreateNewStoreIdxELS as IInstagramHistoryCreateNewStoreIdxELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramHistoryGroupStoreIdxELS as IInstagramHistoryGroupStoreIdxELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractBlockUserStoreIdxELS as IInstagramReportInteractBlockUserStoreIdxELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractFollowStoreIdxELS as IInstagramReportInteractFollowStoreIdxELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyCommentStoreIdxELS as IInstagramReportInteractReplyCommentStoreIdxELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractReplyMessageStoreIdxELS as IInstagramReportInteractReplyMessageStoreIdxELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportInteractUnFollowStoreIdxELS as IInstagramReportInteractUnFollowStoreIdxELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostHighLightStoreIdxELS as IInstagramReportPostHighLightStoreIdxELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostNewStoreIdxELS as IInstagramReportPostNewStoreIdxELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostReelStoreIdxELS as IInstagramReportPostReelStoreIdxELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostSquareStoreIdxELS as IInstagramReportPostSquareStoreIdxELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramReportPostStoryStoreIdxELS as IInstagramReportPostStoryStoreIdxELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IMailWork as IMailWork, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManualContentRunTime as IManualContentRunTime, type index$1_IManualContentSocial as IManualContentSocial, type index$1_IManualContentSocialChildren as IManualContentSocialChildren, type index$1_IManualContentSocialChildrenItemPost as IManualContentSocialChildrenItemPost, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IPCLog as IPCLog, type index$1_IPCLogELS as IPCLogELS, type index$1_IPCLogStoreIdxELS as IPCLogStoreIdxELS, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISettingAccountSocialDto as ISettingAccountSocialDto, type index$1_ISettingRunTimeInstagramPost as ISettingRunTimeInstagramPost, type index$1_ISettingRunTimeSocial as ISettingRunTimeSocial, type index$1_ISettingTool as ISettingTool, type index$1_ISheetImportExportSocial as ISheetImportExportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanva as ITaskAIImageCanva, type index$1_ITaskAIImageVideoVoiceCanvaInstagram as ITaskAIImageVideoVoiceCanvaInstagram, type index$1_ITaskAIImageVideoVoiceCanvaThreads as ITaskAIImageVideoVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramBlockUserELS as ITaskInstagramBlockUserELS, type index$1_ITaskInstagramBlockUserStoreIdxELS as ITaskInstagramBlockUserStoreIdxELS, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramChangeInfoELS as ITaskInstagramChangeInfoELS, type index$1_ITaskInstagramChangeInfoStoreIdxELS as ITaskInstagramChangeInfoStoreIdxELS, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramFollowELS as ITaskInstagramFollowELS, type index$1_ITaskInstagramFollowStoreIdxELS as ITaskInstagramFollowStoreIdxELS, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramPostELS as ITaskInstagramPostELS, type index$1_ITaskInstagramPostStoreIdxELS as ITaskInstagramPostStoreIdxELS, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyCommentELS as ITaskInstagramReplyCommentELS, type index$1_ITaskInstagramReplyCommentStoreIdxELS as ITaskInstagramReplyCommentStoreIdxELS, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskInstagramReplyMessageELS as ITaskInstagramReplyMessageELS, type index$1_ITaskInstagramReplyMessageStoreIdxELS as ITaskInstagramReplyMessageStoreIdxELS, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskManualContentSocial as ITaskManualContentSocial, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsFollowELS as ITaskThreadsFollowELS, type index$1_ITaskThreadsFollowStoreIdxELS as ITaskThreadsFollowStoreIdxELS, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsPostELS as ITaskThreadsPostELS, type index$1_ITaskThreadsPostStoreIdxELS as ITaskThreadsPostStoreIdxELS, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyCommentELS as ITaskThreadsReplyCommentELS, type index$1_ITaskThreadsReplyCommentStoreIdxELS as ITaskThreadsReplyCommentStoreIdxELS, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITaskThreadsReplyMessageELS as ITaskThreadsReplyMessageELS, type index$1_ITaskThreadsReplyMessageStoreIdxELS as ITaskThreadsReplyMessageStoreIdxELS, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractFollowStoreIdxELS as IThreadsReportInteractFollowStoreIdxELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyCommentStoreIdxELS as IThreadsReportInteractReplyCommentStoreIdxELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportInteractReplyMessageStoreIdxELS as IThreadsReportInteractReplyMessageStoreIdxELS, type index$1_IThreadsReportInteractUnFollow as IThreadsReportInteractUnFollow, type index$1_IThreadsReportInteractUnFollowELS as IThreadsReportInteractUnFollowELS, type index$1_IThreadsReportInteractUnFollowStoreIdxELS as IThreadsReportInteractUnFollowStoreIdxELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsReportPostStoreIdxELS as IThreadsReportPostStoreIdxELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTime as ITrackingTime, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IViewDeviceByPC as IViewDeviceByPC, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, type index$1_ImportAccountVPSDto as ImportAccountVPSDto, type index$1_ImportInstagramAccountRawDto as ImportInstagramAccountRawDto, type index$1_ImportManagerWorkDto as ImportManagerWorkDto, type index$1_ImportSheetWorkDto as ImportSheetWorkDto, type index$1_ListManualContentSocialChildrenDto as ListManualContentSocialChildrenDto, type index$1_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, type index$1_OverviewSheetsToolDto as OverviewSheetsToolDto, type index$1_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$a as Permission, type index$1_ReplaceAccountVSPDto as ReplaceAccountVSPDto, type index$1_ResultChangeInfoInstagramAccountRawDto as ResultChangeInfoInstagramAccountRawDto, type index$1_ResultImportInstagramAccountRawDto as ResultImportInstagramAccountRawDto, index$3 as Socials, type index$1_StatisticsManagerWorkDto as StatisticsManagerWorkDto, type index$1_StatisticsSheetWorkDto as StatisticsSheetWorkDto, type index$1_StoreTaskManualContentSocialForRunDto as StoreTaskManualContentSocialForRunDto, index$4 as Tool, type index$1_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, type index$1_UpdateAccountVPSDto as UpdateAccountVPSDto, type index$1_UpdateBlogDto as UpdateBlogDto, type index$1_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, type index$1_UpdateDepartmentDto as UpdateDepartmentDto, type index$1_UpdateDeviceDto as UpdateDeviceDto, type index$1_UpdateInstagramSettingInteractFollowDto as UpdateInstagramSettingInteractFollowDto, type index$1_UpdateInstagramSettingInteractReplyCommentDto as UpdateInstagramSettingInteractReplyCommentDto, type index$1_UpdateInstagramSettingInteractReplyMessageDto as UpdateInstagramSettingInteractReplyMessageDto, type index$1_UpdateInstagramSettingInteractUnFollowDto as UpdateInstagramSettingInteractUnFollowDto, type index$1_UpdateInstagramSettingPostDto as UpdateInstagramSettingPostDto, type index$1_UpdateLarkDto as UpdateLarkDto, type index$1_UpdateManagerWorkDto as UpdateManagerWorkDto, type index$1_UpdatePCDto as UpdatePCDto, type index$1_UpdateProxyDto as UpdateProxyDto, type index$1_UpdateRoleDto as UpdateRoleDto, type index$1_UpdateSheetWorkDto as UpdateSheetWorkDto, type index$1_UpdateSheetsToolDto as UpdateSheetsToolDto, type index$1_UpdateTaskAIContentDto as UpdateTaskAIContentDto, type index$1_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, type index$1_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, type index$1_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, type index$1_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, type index$1_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, type index$1_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, type index$1_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, type index$1_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, type index$1_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, type index$1_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, type index$1_UpdateTasksJobDto as UpdateTasksJobDto, type index$1_UpdateTeamDto as UpdateTeamDto, type index$1_UpdateUserDto as UpdateUserDto, type index$1_UpsertManualContentSocialChildrenDto as UpsertManualContentSocialChildrenDto, type index$1_UpsertManualContentSocialChildrenItemPostDto as UpsertManualContentSocialChildrenItemPostDto, type index$1_UpsertManualContentSocialDto as UpsertManualContentSocialDto, type index$1_ViewAutoSyncInformationManualContentDto as ViewAutoSyncInformationManualContentDto, type index$1_ViewDetailDeviceDto as ViewDetailDeviceDto, type index$1_ViewDetailSheetsToolDto as ViewDetailSheetsToolDto, type index$1_ViewSettingInstagramOfAccountDto as ViewSettingInstagramOfAccountDto, index$5 as Workspace };
15719
17145
  }
15720
17146
 
15721
17147
  interface IUserInfoAssignment {
@@ -15856,4 +17282,4 @@ declare namespace index {
15856
17282
  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 };
15857
17283
  }
15858
17284
 
15859
- export { index$i as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialChildrenDto, type AddManualContentSocialChildrenDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, index$8 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillTaskInstagramBlockUserDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type ChangeInfoInstagramAccountRawDto, type CheckSendMessageLark, index$9 as Common, type CreateAccountVPSDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIFolder, EManagerImageAIModel, EManualContentStatusPost, EManualContentStatusTask, EManualContentTypePost, EObjectName, EPCLogLevel, EPCLogSource, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusMailWork, EStatusPC, EStatusPCControl, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusUse, EStatusUser, EStatusVPS, EStatusVPSReplace, ETaskGenerateAIStatus, ETaskGenerateAIType, ETimeFilter, ETimeZone, EToolName, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, type ExportDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountEmailManagerDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManualContentSocialDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindListAccountSocialForManualContentAdd, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManualContentSocialDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountEmailManagerDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewManagerImageAIDto, type FindOverviewManualContentSocialDto, type FindOverviewPCDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewUserDto, type FindPCDetail, type FindPCDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskManualContentSocialDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTeamDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$5 as Forum, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDeviceLogStoreIdxELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailVPS, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImageVideoVoiceCanvaInstagram, type IHistoryTaskAIImageVideoVoiceCanvaThreads, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryAutoSyncStoreIdxELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryChangeInfoStoreIdxELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryCreateNewStoreIdxELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramHistoryGroupStoreIdxELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractBlockUserStoreIdxELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractFollowStoreIdxELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyCommentStoreIdxELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractReplyMessageStoreIdxELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportInteractUnFollowStoreIdxELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostHighLightStoreIdxELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostNewStoreIdxELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostReelStoreIdxELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostSquareStoreIdxELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramReportPostStoryStoreIdxELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentRunTime, type IManualContentSocial, type IManualContentSocialChildren, type IManualContentSocialChildrenItemPost, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IPCLog, type IPCLogELS, type IPCLogStoreIdxELS, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISettingTool, type ISheetImportExportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanva, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramBlockUserStoreIdxELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramChangeInfoStoreIdxELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramFollowStoreIdxELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramPostStoreIdxELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyCommentStoreIdxELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskInstagramReplyMessageStoreIdxELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocial, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsFollowStoreIdxELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsPostStoreIdxELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyCommentStoreIdxELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITaskThreadsReplyMessageStoreIdxELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractFollowStoreIdxELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyCommentStoreIdxELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractReplyMessageStoreIdxELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportInteractUnFollowStoreIdxELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewDeviceByPC, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportSheetWorkDto, index$g as Lark, type ListManualContentSocialChildrenDto, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$f as SheetTool, index$2 as Socials, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialForRunDto, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$3 as Tool, index$d as Types, type UpdateAccountVPSDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, type UpsertManualContentSocialChildrenDto, type UpsertManualContentSocialChildrenItemPostDto, type UpsertManualContentSocialDto, type ViewAutoSyncInformationManualContentDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, type ViewSettingInstagramOfAccountDto, index$4 as Workspace };
17285
+ export { index$i as AI, type ActionLoadInfoUrlSheetToolDto, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddBulkManualContentSocialChildrenDto, type AddManualContentSocialChildrenDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$8 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$6 as AutoInterfaces, index$7 as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type ChangeInfoInstagramAccountRawDto, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateInstagramSettingInteractFollowDto, type CreateInstagramSettingInteractReplyCommentDto, type CreateInstagramSettingInteractReplyMessageDto, type CreateInstagramSettingInteractUnFollowDto, type CreateInstagramSettingPostDto, type CreateLarkDto, type CreateManagerImageAIDto, type CreateManagerWorkDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DataImportInstagramAccountRawDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EManagerImageAIFolder, EManagerImageAIModel, EManualContentStatusPost, EManualContentStatusTask, EManualContentTypePost, EObjectName, EPCLogLevel, EPCLogSource, EPositionUser, EPostStyle, EPostType, EPriority, ESheetToolInstagram, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStartStop, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocialCheckAuth, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRaw, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountSocialSyncInstagramThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEditPost, EStatusEmail, EStatusExecuteCommon, EStatusGenerate, EStatusImportAccountSocial, EStatusLark, EStatusMailWork, EStatusPC, EStatusPCControl, EStatusPost, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTeam, EStatusUse, EStatusUser, EStatusVPS, EStatusVPSReplace, ETaskGenerateAIStatus, ETaskGenerateAIType, ETimeFilter, ETimeZone, EToolName, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeGenerate, ETypeImportExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSettingInstagram, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoInstagram, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, EYesNo, type ExportDto, 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 FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingFollowDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterManualContentSocialDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIImageVideoVoiceCanvaInstagramDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindListAccountSocialForManualContentAdd, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindManualContentSocialDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type 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 FindOverviewManagerImageAIDto, type FindOverviewManualContentSocialDto, type FindOverviewPCDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewUserDto, type FindPCDetail, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskManualContentSocialDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$2 as Forum, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAssignUser, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseOverview, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBaseStoreIdxELS, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IColsUnSelected, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDeviceLogStoreIdxELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IEmailAccountSocial, type IEmailProxy, type IEmailRawManager, type IEmailVPS, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterSettingAccountSocialFindForSettingDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImageVideoVoiceCanvaInstagram, type IHistoryTaskAIImageVideoVoiceCanvaThreads, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryAutoSyncStoreIdxELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryChangeInfoStoreIdxELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryCreateNewStoreIdxELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramHistoryGroupStoreIdxELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractBlockUserStoreIdxELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractFollowStoreIdxELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyCommentStoreIdxELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractReplyMessageStoreIdxELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportInteractUnFollowStoreIdxELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostHighLightStoreIdxELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostNewStoreIdxELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostReelStoreIdxELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostSquareStoreIdxELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramReportPostStoryStoreIdxELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IMailWork, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManualContentRunTime, type IManualContentSocial, type IManualContentSocialChildren, type IManualContentSocialChildrenItemPost, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IPCLog, type IPCLogELS, type IPCLogStoreIdxELS, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISettingAccountSocialDto, type ISettingRunTimeInstagramPost, type ISettingRunTimeSocial, type ISettingTool, type ISheetImportExportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanva, type ITaskAIImageVideoVoiceCanvaInstagram, type ITaskAIImageVideoVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramBlockUserStoreIdxELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramChangeInfoStoreIdxELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramFollowStoreIdxELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramPostStoreIdxELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyCommentStoreIdxELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskInstagramReplyMessageStoreIdxELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskManualContentSocial, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsFollowStoreIdxELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsPostStoreIdxELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyCommentStoreIdxELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITaskThreadsReplyMessageStoreIdxELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsDashboardFollower, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractFollowStoreIdxELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyCommentStoreIdxELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractReplyMessageStoreIdxELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportInteractUnFollowStoreIdxELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsReportPostStoreIdxELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTime, type IUser, type IUserInfoAssignment, type IUserRole, type IViewDeviceByPC, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportInstagramAccountRawDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type ListManualContentSocialChildrenDto, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, type ResultChangeInfoInstagramAccountRawDto, type ResultImportInstagramAccountRawDto, index$f as SheetTool, index$3 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type StoreTaskManualContentSocialForRunDto, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$4 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateInstagramSettingInteractFollowDto, type UpdateInstagramSettingInteractReplyCommentDto, type UpdateInstagramSettingInteractReplyMessageDto, type UpdateInstagramSettingInteractUnFollowDto, type UpdateInstagramSettingPostDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type UpsertManualContentSocialChildrenDto, type UpsertManualContentSocialChildrenItemPostDto, type UpsertManualContentSocialDto, type ViewAutoSyncInformationManualContentDto, type ViewDetailDeviceDto, type ViewDetailSheetsToolDto, type ViewSettingInstagramOfAccountDto, index$5 as Workspace };