automation-lib 5.1.88 → 5.1.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +228 -85
- package/dist/index.d.ts +228 -85
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2221,7 +2221,7 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
2221
2221
|
cover: string | IFile;
|
2222
2222
|
statusChangeCover: EStatusChangeInfo;
|
2223
2223
|
bioContent: string;
|
2224
|
-
|
2224
|
+
listBioLink: string[];
|
2225
2225
|
typeAccountSetting: ETypeAccountInstagramSetting;
|
2226
2226
|
statusAccountSetting: EStatusAccountSocialSetting;
|
2227
2227
|
oldUsername: string;
|
@@ -2465,22 +2465,16 @@ declare namespace index$9 {
|
|
2465
2465
|
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
2466
2466
|
sheetUrl: string;
|
2467
2467
|
sheetName: string;
|
2468
|
-
sheetRowId: string;
|
2469
2468
|
typeSocial: ETypeSocial;
|
2469
|
+
account: string | IInstagramAccountRaw;
|
2470
|
+
minuteWaiting: number;
|
2471
|
+
isTimeUS: boolean;
|
2470
2472
|
dayOfWeek: string;
|
2471
2473
|
timeFrom: string;
|
2472
2474
|
timeTo: string;
|
2473
2475
|
service: string;
|
2474
2476
|
action: string;
|
2475
2477
|
timeExecute: Date;
|
2476
|
-
deviceKey: string;
|
2477
|
-
device: string | IDevice;
|
2478
|
-
idea: string | IManagerWork;
|
2479
|
-
niche: string | IManagerWork;
|
2480
|
-
account: IAccountSocialBase | string;
|
2481
|
-
sheetTool: ISheetsToolBase | string;
|
2482
|
-
status: EStatusTaskToolSocials;
|
2483
|
-
note: string;
|
2484
2478
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2485
2479
|
blockUserNameIg: string;
|
2486
2480
|
restrictUserNameIg: string;
|
@@ -2490,22 +2484,16 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2490
2484
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
2491
2485
|
sheetUrl: string;
|
2492
2486
|
sheetName: string;
|
2493
|
-
sheetRowId: string;
|
2494
2487
|
typeSocial: ETypeSocial;
|
2488
|
+
account: string | IInstagramAccountRaw;
|
2489
|
+
minuteWaiting: number;
|
2490
|
+
isTimeUS: boolean;
|
2495
2491
|
dayOfWeek: string;
|
2496
2492
|
timeFrom: string;
|
2497
2493
|
timeTo: string;
|
2498
2494
|
service: string;
|
2499
2495
|
action: string;
|
2500
2496
|
timeExecute: Date;
|
2501
|
-
deviceKey: string;
|
2502
|
-
device: string | IDevice;
|
2503
|
-
idea: string | IManagerWork;
|
2504
|
-
niche: string | IManagerWork;
|
2505
|
-
account: IAccountSocialBase | string;
|
2506
|
-
sheetTool: ISheetsToolBase | string;
|
2507
|
-
status: EStatusTaskToolSocials;
|
2508
|
-
note: string;
|
2509
2497
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2510
2498
|
oldUserName: string;
|
2511
2499
|
changeUserNameNew: string;
|
@@ -2530,44 +2518,74 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2530
2518
|
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
2531
2519
|
sheetUrl: string;
|
2532
2520
|
sheetName: string;
|
2533
|
-
sheetRowId: string;
|
2534
2521
|
typeSocial: ETypeSocial;
|
2522
|
+
account: string | IInstagramAccountRaw;
|
2523
|
+
minuteWaiting: number;
|
2524
|
+
isTimeUS: boolean;
|
2535
2525
|
dayOfWeek: string;
|
2536
2526
|
timeFrom: string;
|
2537
2527
|
timeTo: string;
|
2538
2528
|
service: string;
|
2539
2529
|
action: string;
|
2540
2530
|
timeExecute: Date;
|
2541
|
-
deviceKey: string;
|
2542
|
-
device: string | IDevice;
|
2543
|
-
idea: string | IManagerWork;
|
2544
|
-
niche: string | IManagerWork;
|
2545
|
-
account: IAccountSocialBase | string;
|
2546
|
-
sheetTool: ISheetsToolBase | string;
|
2547
|
-
status: EStatusTaskToolSocials;
|
2548
|
-
note: string;
|
2549
2531
|
listUsernameFollow: string[];
|
2550
2532
|
}
|
2551
2533
|
|
2534
|
+
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
2535
|
+
sheetUrl: string;
|
2536
|
+
sheetName: string;
|
2537
|
+
typeSocial: ETypeSocial;
|
2538
|
+
account: string | IInstagramAccountRaw;
|
2539
|
+
minuteWaiting: number;
|
2540
|
+
isTimeUS: boolean;
|
2541
|
+
dayOfWeek: string;
|
2542
|
+
timeFrom: string;
|
2543
|
+
timeTo: string;
|
2544
|
+
service: string;
|
2545
|
+
action: string;
|
2546
|
+
timeExecute: Date;
|
2547
|
+
postUrlReply: string;
|
2548
|
+
messageForReply: string;
|
2549
|
+
replyCommentContentStep1: string;
|
2550
|
+
replyCommentContentStep2: string;
|
2551
|
+
statusStep1: EStatusTaskToolSocials;
|
2552
|
+
statusStep2: EStatusTaskToolSocials;
|
2553
|
+
}
|
2554
|
+
|
2555
|
+
interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
2556
|
+
sheetUrl: string;
|
2557
|
+
sheetName: string;
|
2558
|
+
typeSocial: ETypeSocial;
|
2559
|
+
account: string | IInstagramAccountRaw;
|
2560
|
+
minuteWaiting: number;
|
2561
|
+
isTimeUS: boolean;
|
2562
|
+
dayOfWeek: string;
|
2563
|
+
timeFrom: string;
|
2564
|
+
timeTo: string;
|
2565
|
+
service: string;
|
2566
|
+
action: string;
|
2567
|
+
timeExecute: Date;
|
2568
|
+
postUrlReply: string;
|
2569
|
+
messageForReply: string;
|
2570
|
+
replyMessageContentStep1: string;
|
2571
|
+
replyMessageContentStep2: string;
|
2572
|
+
statusStep1: EStatusTaskToolSocials;
|
2573
|
+
statusStep2: EStatusTaskToolSocials;
|
2574
|
+
}
|
2575
|
+
|
2552
2576
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
2553
2577
|
sheetUrl: string;
|
2554
2578
|
sheetName: string;
|
2555
|
-
sheetRowId: string;
|
2556
2579
|
typeSocial: ETypeSocial;
|
2580
|
+
account: string | IInstagramAccountRaw;
|
2581
|
+
minuteWaiting: number;
|
2582
|
+
isTimeUS: boolean;
|
2557
2583
|
dayOfWeek: string;
|
2558
2584
|
timeFrom: string;
|
2559
2585
|
timeTo: string;
|
2560
2586
|
service: string;
|
2561
2587
|
action: string;
|
2562
2588
|
timeExecute: Date;
|
2563
|
-
deviceKey: string;
|
2564
|
-
device: string | IDevice;
|
2565
|
-
idea: string | IManagerWork;
|
2566
|
-
niche: string | IManagerWork;
|
2567
|
-
account: IAccountSocialBase | string;
|
2568
|
-
sheetTool: ISheetsToolBase | string;
|
2569
|
-
status: EStatusTaskToolSocials;
|
2570
|
-
note: string;
|
2571
2589
|
canvaUrlVideo: string;
|
2572
2590
|
canvaImageThumb: string;
|
2573
2591
|
canvaImagePage1: string;
|
@@ -2600,68 +2618,70 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2600
2618
|
statusPost: string;
|
2601
2619
|
}
|
2602
2620
|
|
2603
|
-
interface
|
2604
|
-
sheetUrl: string;
|
2605
|
-
sheetName: string;
|
2606
|
-
sheetRowId: string;
|
2621
|
+
interface ITaskInstagramExplore extends IBaseModel, ITrackingModel<IUser> {
|
2607
2622
|
typeSocial: ETypeSocial;
|
2623
|
+
account: string | IInstagramAccountRaw;
|
2624
|
+
minuteWaiting: number;
|
2625
|
+
isTimeUS: boolean;
|
2608
2626
|
dayOfWeek: string;
|
2609
2627
|
timeFrom: string;
|
2610
2628
|
timeTo: string;
|
2611
2629
|
service: string;
|
2612
2630
|
action: string;
|
2613
2631
|
timeExecute: Date;
|
2614
|
-
|
2615
|
-
|
2616
|
-
|
2617
|
-
|
2618
|
-
|
2619
|
-
sheetTool: ISheetsToolBase | string;
|
2632
|
+
numberView: number;
|
2633
|
+
isBasicView: boolean;
|
2634
|
+
isLike: boolean;
|
2635
|
+
numberLike: number;
|
2636
|
+
minuteRun: number;
|
2620
2637
|
status: EStatusTaskToolSocials;
|
2621
2638
|
note: string;
|
2622
|
-
postUrlReply: string;
|
2623
|
-
messageForReply: string;
|
2624
|
-
replyCommentContentStep1: string;
|
2625
|
-
replyCommentContentStep2: string;
|
2626
|
-
statusStep1: EStatusTaskToolSocials;
|
2627
|
-
statusStep2: EStatusTaskToolSocials;
|
2628
2639
|
}
|
2629
2640
|
|
2630
|
-
interface
|
2631
|
-
sheetUrl: string;
|
2632
|
-
sheetName: string;
|
2633
|
-
sheetRowId: string;
|
2641
|
+
interface ITaskInstagramReel extends IBaseModel, ITrackingModel<IUser> {
|
2634
2642
|
typeSocial: ETypeSocial;
|
2643
|
+
account: string | IInstagramAccountRaw;
|
2644
|
+
minuteWaiting: number;
|
2645
|
+
isTimeUS: boolean;
|
2635
2646
|
dayOfWeek: string;
|
2636
2647
|
timeFrom: string;
|
2637
2648
|
timeTo: string;
|
2638
2649
|
service: string;
|
2639
2650
|
action: string;
|
2640
2651
|
timeExecute: Date;
|
2641
|
-
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2645
|
-
|
2646
|
-
|
2647
|
-
|
2648
|
-
|
2649
|
-
|
2650
|
-
|
2651
|
-
|
2652
|
-
|
2653
|
-
|
2654
|
-
|
2652
|
+
numberView: number;
|
2653
|
+
isLike: boolean;
|
2654
|
+
numberLike: number;
|
2655
|
+
minuteRun: number;
|
2656
|
+
}
|
2657
|
+
|
2658
|
+
interface ITaskInstagramStory extends IBaseModel, ITrackingModel<IUser> {
|
2659
|
+
typeSocial: ETypeSocial;
|
2660
|
+
account: string | IInstagramAccountRaw;
|
2661
|
+
minuteWaiting: number;
|
2662
|
+
isTimeUS: boolean;
|
2663
|
+
dayOfWeek: string;
|
2664
|
+
timeFrom: string;
|
2665
|
+
timeTo: string;
|
2666
|
+
service: string;
|
2667
|
+
action: string;
|
2668
|
+
timeExecute: Date;
|
2669
|
+
numberView: number;
|
2670
|
+
isLike: boolean;
|
2671
|
+
numberLike: number;
|
2655
2672
|
}
|
2656
2673
|
|
2657
2674
|
type index$8_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
|
2658
2675
|
type index$8_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
2676
|
+
type index$8_ITaskInstagramExplore = ITaskInstagramExplore;
|
2659
2677
|
type index$8_ITaskInstagramFollow = ITaskInstagramFollow;
|
2660
2678
|
type index$8_ITaskInstagramPost = ITaskInstagramPost;
|
2679
|
+
type index$8_ITaskInstagramReel = ITaskInstagramReel;
|
2661
2680
|
type index$8_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
2662
2681
|
type index$8_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
|
2682
|
+
type index$8_ITaskInstagramStory = ITaskInstagramStory;
|
2663
2683
|
declare namespace index$8 {
|
2664
|
-
export type { index$8_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$8_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$8_ITaskInstagramFollow as ITaskInstagramFollow, index$8_ITaskInstagramPost as ITaskInstagramPost, index$8_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$8_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage };
|
2684
|
+
export type { index$8_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$8_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$8_ITaskInstagramExplore as ITaskInstagramExplore, index$8_ITaskInstagramFollow as ITaskInstagramFollow, index$8_ITaskInstagramPost as ITaskInstagramPost, index$8_ITaskInstagramReel as ITaskInstagramReel, index$8_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$8_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, index$8_ITaskInstagramStory as ITaskInstagramStory };
|
2665
2685
|
}
|
2666
2686
|
|
2667
2687
|
type TaskTypeInstagram = 'Post' | 'Follow' | 'ReplyComment' | 'ReplyMessage' | 'ChangeInfo' | 'BlockUser';
|
@@ -2680,10 +2700,13 @@ interface ITaskToolMonitor extends IBaseModel, ITrackingModel<IUser> {
|
|
2680
2700
|
|
2681
2701
|
type index$7_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
|
2682
2702
|
type index$7_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
2703
|
+
type index$7_ITaskInstagramExplore = ITaskInstagramExplore;
|
2683
2704
|
type index$7_ITaskInstagramFollow = ITaskInstagramFollow;
|
2684
2705
|
type index$7_ITaskInstagramPost = ITaskInstagramPost;
|
2706
|
+
type index$7_ITaskInstagramReel = ITaskInstagramReel;
|
2685
2707
|
type index$7_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
2686
2708
|
type index$7_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
|
2709
|
+
type index$7_ITaskInstagramStory = ITaskInstagramStory;
|
2687
2710
|
type index$7_ITaskThreadsFollow = ITaskThreadsFollow;
|
2688
2711
|
type index$7_ITaskThreadsPost = ITaskThreadsPost;
|
2689
2712
|
type index$7_ITaskThreadsReplyComment = ITaskThreadsReplyComment;
|
@@ -2692,7 +2715,7 @@ type index$7_ITaskToolMonitor = ITaskToolMonitor;
|
|
2692
2715
|
type index$7_TaskTypeInstagram = TaskTypeInstagram;
|
2693
2716
|
type index$7_TaskTypeThreads = TaskTypeThreads;
|
2694
2717
|
declare namespace index$7 {
|
2695
|
-
export { type index$7_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$7_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$7_ITaskInstagramFollow as ITaskInstagramFollow, type index$7_ITaskInstagramPost as ITaskInstagramPost, type index$7_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$7_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$7_ITaskThreadsFollow as ITaskThreadsFollow, type index$7_ITaskThreadsPost as ITaskThreadsPost, type index$7_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$7_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$7_ITaskToolMonitor as ITaskToolMonitor, index$8 as Instagram, type index$7_TaskTypeInstagram as TaskTypeInstagram, type index$7_TaskTypeThreads as TaskTypeThreads, index$9 as Threads };
|
2718
|
+
export { type index$7_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$7_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$7_ITaskInstagramExplore as ITaskInstagramExplore, type index$7_ITaskInstagramFollow as ITaskInstagramFollow, type index$7_ITaskInstagramPost as ITaskInstagramPost, type index$7_ITaskInstagramReel as ITaskInstagramReel, type index$7_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$7_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$7_ITaskInstagramStory as ITaskInstagramStory, type index$7_ITaskThreadsFollow as ITaskThreadsFollow, type index$7_ITaskThreadsPost as ITaskThreadsPost, type index$7_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$7_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$7_ITaskToolMonitor as ITaskToolMonitor, index$8 as Instagram, type index$7_TaskTypeInstagram as TaskTypeInstagram, type index$7_TaskTypeThreads as TaskTypeThreads, index$9 as Threads };
|
2696
2719
|
}
|
2697
2720
|
|
2698
2721
|
interface ITaskAIItemAction {
|
@@ -6611,6 +6634,76 @@ interface FindTaskInstagramFollowDto extends IFindBaseDto, ITaskInstagramFollow
|
|
6611
6634
|
interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
|
6612
6635
|
}
|
6613
6636
|
|
6637
|
+
interface FindOverViewTaskInstagramReplyCommentDto {
|
6638
|
+
totalAccounts: number;
|
6639
|
+
totalPC: number;
|
6640
|
+
totalLeader: number;
|
6641
|
+
totalMembers: number;
|
6642
|
+
totalAccountGroups: number;
|
6643
|
+
totalIdea: number;
|
6644
|
+
totalNiche: number;
|
6645
|
+
totalType: {
|
6646
|
+
total: number;
|
6647
|
+
TM: number;
|
6648
|
+
NTM: number;
|
6649
|
+
};
|
6650
|
+
totalDevice: {
|
6651
|
+
total: number;
|
6652
|
+
android: number;
|
6653
|
+
ios: number;
|
6654
|
+
};
|
6655
|
+
totalTasks: {
|
6656
|
+
pending: number;
|
6657
|
+
executing: number;
|
6658
|
+
error: number;
|
6659
|
+
repaired: number;
|
6660
|
+
done: number;
|
6661
|
+
};
|
6662
|
+
}
|
6663
|
+
interface CreateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
6664
|
+
}
|
6665
|
+
interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
6666
|
+
}
|
6667
|
+
interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
|
6668
|
+
}
|
6669
|
+
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
|
6670
|
+
}
|
6671
|
+
|
6672
|
+
interface FindOverViewTaskInstagramReplyMessageDto {
|
6673
|
+
totalAccounts: number;
|
6674
|
+
totalPC: number;
|
6675
|
+
totalLeader: number;
|
6676
|
+
totalMembers: number;
|
6677
|
+
totalAccountGroups: number;
|
6678
|
+
totalIdea: number;
|
6679
|
+
totalNiche: number;
|
6680
|
+
totalType: {
|
6681
|
+
total: number;
|
6682
|
+
TM: number;
|
6683
|
+
NTM: number;
|
6684
|
+
};
|
6685
|
+
totalDevice: {
|
6686
|
+
total: number;
|
6687
|
+
android: number;
|
6688
|
+
ios: number;
|
6689
|
+
};
|
6690
|
+
totalTasks: {
|
6691
|
+
pending: number;
|
6692
|
+
executing: number;
|
6693
|
+
error: number;
|
6694
|
+
repaired: number;
|
6695
|
+
done: number;
|
6696
|
+
};
|
6697
|
+
}
|
6698
|
+
interface CreateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
6699
|
+
}
|
6700
|
+
interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
6701
|
+
}
|
6702
|
+
interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
|
6703
|
+
}
|
6704
|
+
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, Omit<ITaskInstagramReplyMessage, TOmitFilterDto> {
|
6705
|
+
}
|
6706
|
+
|
6614
6707
|
interface FindOverViewTaskInstagramPostDto {
|
6615
6708
|
totalAccounts: number;
|
6616
6709
|
totalPC: number;
|
@@ -6646,7 +6739,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto, ITaskInstagramPost {
|
|
6646
6739
|
interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
|
6647
6740
|
}
|
6648
6741
|
|
6649
|
-
interface
|
6742
|
+
interface FindOverViewTaskInstagramExploreDto {
|
6650
6743
|
totalAccounts: number;
|
6651
6744
|
totalPC: number;
|
6652
6745
|
totalLeader: number;
|
@@ -6672,16 +6765,16 @@ interface FindOverViewTaskInstagramReplyCommentDto {
|
|
6672
6765
|
done: number;
|
6673
6766
|
};
|
6674
6767
|
}
|
6675
|
-
interface
|
6768
|
+
interface CreateTaskInstagramExploreDto extends Partial<ITaskInstagramExplore> {
|
6676
6769
|
}
|
6677
|
-
interface
|
6770
|
+
interface UpdateTaskInstagramExploreDto extends Partial<ITaskInstagramExplore> {
|
6678
6771
|
}
|
6679
|
-
interface
|
6772
|
+
interface FindTaskInstagramExploreDto extends IFindBaseDto, ITaskInstagramExplore {
|
6680
6773
|
}
|
6681
|
-
interface
|
6774
|
+
interface FilterTaskInstagramExploreDto extends IFilterBaseDto, Omit<ITaskInstagramExplore, TOmitFilterDto> {
|
6682
6775
|
}
|
6683
6776
|
|
6684
|
-
interface
|
6777
|
+
interface FindOverViewTaskInstagramReelDto {
|
6685
6778
|
totalAccounts: number;
|
6686
6779
|
totalPC: number;
|
6687
6780
|
totalLeader: number;
|
@@ -6707,13 +6800,48 @@ interface FindOverViewTaskInstagramReplyMessageDto {
|
|
6707
6800
|
done: number;
|
6708
6801
|
};
|
6709
6802
|
}
|
6710
|
-
interface
|
6803
|
+
interface CreateTaskInstagramReelDto extends Partial<ITaskInstagramReel> {
|
6711
6804
|
}
|
6712
|
-
interface
|
6805
|
+
interface UpdateTaskInstagramReelDto extends Partial<ITaskInstagramReel> {
|
6713
6806
|
}
|
6714
|
-
interface
|
6807
|
+
interface FindTaskInstagramReelDto extends IFindBaseDto, ITaskInstagramReel {
|
6715
6808
|
}
|
6716
|
-
interface
|
6809
|
+
interface FilterTaskInstagramReelDto extends IFilterBaseDto, Omit<ITaskInstagramReel, TOmitFilterDto> {
|
6810
|
+
}
|
6811
|
+
|
6812
|
+
interface FindOverViewTaskInstagramStoryDto {
|
6813
|
+
totalAccounts: number;
|
6814
|
+
totalPC: number;
|
6815
|
+
totalLeader: number;
|
6816
|
+
totalMembers: number;
|
6817
|
+
totalAccountGroups: number;
|
6818
|
+
totalIdea: number;
|
6819
|
+
totalNiche: number;
|
6820
|
+
totalType: {
|
6821
|
+
total: number;
|
6822
|
+
TM: number;
|
6823
|
+
NTM: number;
|
6824
|
+
};
|
6825
|
+
totalDevice: {
|
6826
|
+
total: number;
|
6827
|
+
android: number;
|
6828
|
+
ios: number;
|
6829
|
+
};
|
6830
|
+
totalTasks: {
|
6831
|
+
pending: number;
|
6832
|
+
executing: number;
|
6833
|
+
error: number;
|
6834
|
+
repaired: number;
|
6835
|
+
done: number;
|
6836
|
+
};
|
6837
|
+
}
|
6838
|
+
interface CreateTaskInstagramStoryDto extends Partial<ITaskInstagramStory> {
|
6839
|
+
}
|
6840
|
+
interface UpdateTaskInstagramStoryDto extends Partial<ITaskInstagramStory> {
|
6841
|
+
}
|
6842
|
+
interface FindTaskInstagramStoryDto extends IFindBaseDto, ITaskInstagramStory {
|
6843
|
+
}
|
6844
|
+
interface FilterTaskInstagramStoryDto extends IFilterBaseDto, Omit<ITaskInstagramStory, TOmitFilterDto> {
|
6717
6845
|
}
|
6718
6846
|
|
6719
6847
|
interface FindTaskToolMonitorDto extends IFindBaseDto, ITaskToolMonitor {
|
@@ -7180,10 +7308,13 @@ type index_CreateTaskAIImageVoiceCanvaInstagramDto = CreateTaskAIImageVoiceCanva
|
|
7180
7308
|
type index_CreateTaskAIImageVoiceCanvaThreadsDto = CreateTaskAIImageVoiceCanvaThreadsDto;
|
7181
7309
|
type index_CreateTaskInstagramBlockUserDto = CreateTaskInstagramBlockUserDto;
|
7182
7310
|
type index_CreateTaskInstagramChangeInfoDto = CreateTaskInstagramChangeInfoDto;
|
7311
|
+
type index_CreateTaskInstagramExploreDto = CreateTaskInstagramExploreDto;
|
7183
7312
|
type index_CreateTaskInstagramFollowDto = CreateTaskInstagramFollowDto;
|
7184
7313
|
type index_CreateTaskInstagramPostDto = CreateTaskInstagramPostDto;
|
7314
|
+
type index_CreateTaskInstagramReelDto = CreateTaskInstagramReelDto;
|
7185
7315
|
type index_CreateTaskInstagramReplyCommentDto = CreateTaskInstagramReplyCommentDto;
|
7186
7316
|
type index_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageDto;
|
7317
|
+
type index_CreateTaskInstagramStoryDto = CreateTaskInstagramStoryDto;
|
7187
7318
|
type index_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
|
7188
7319
|
type index_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
|
7189
7320
|
type index_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
|
@@ -7260,10 +7391,13 @@ type index_FilterTaskAIImageVoiceCanvaInstagramDto = FilterTaskAIImageVoiceCanva
|
|
7260
7391
|
type index_FilterTaskAIImageVoiceCanvaThreadsDto = FilterTaskAIImageVoiceCanvaThreadsDto;
|
7261
7392
|
type index_FilterTaskInstagramBlockUserDto = FilterTaskInstagramBlockUserDto;
|
7262
7393
|
type index_FilterTaskInstagramChangeInfoDto = FilterTaskInstagramChangeInfoDto;
|
7394
|
+
type index_FilterTaskInstagramExploreDto = FilterTaskInstagramExploreDto;
|
7263
7395
|
type index_FilterTaskInstagramFollowDto = FilterTaskInstagramFollowDto;
|
7264
7396
|
type index_FilterTaskInstagramPostDto = FilterTaskInstagramPostDto;
|
7397
|
+
type index_FilterTaskInstagramReelDto = FilterTaskInstagramReelDto;
|
7265
7398
|
type index_FilterTaskInstagramReplyCommentDto = FilterTaskInstagramReplyCommentDto;
|
7266
7399
|
type index_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageDto;
|
7400
|
+
type index_FilterTaskInstagramStoryDto = FilterTaskInstagramStoryDto;
|
7267
7401
|
type index_FilterTaskThreadsFollowDto = FilterTaskThreadsFollowDto;
|
7268
7402
|
type index_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
|
7269
7403
|
type index_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
|
@@ -7368,10 +7502,13 @@ type index_FindOverViewTaskAIImageVoiceCanvaInstagramDto = FindOverViewTaskAIIma
|
|
7368
7502
|
type index_FindOverViewTaskAIImageVoiceCanvaThreadsDto = FindOverViewTaskAIImageVoiceCanvaThreadsDto;
|
7369
7503
|
type index_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
|
7370
7504
|
type index_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
|
7505
|
+
type index_FindOverViewTaskInstagramExploreDto = FindOverViewTaskInstagramExploreDto;
|
7371
7506
|
type index_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
|
7372
7507
|
type index_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
|
7508
|
+
type index_FindOverViewTaskInstagramReelDto = FindOverViewTaskInstagramReelDto;
|
7373
7509
|
type index_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
|
7374
7510
|
type index_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
|
7511
|
+
type index_FindOverViewTaskInstagramStoryDto = FindOverViewTaskInstagramStoryDto;
|
7375
7512
|
type index_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto;
|
7376
7513
|
type index_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
|
7377
7514
|
type index_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
|
@@ -7407,10 +7544,13 @@ type index_FindTaskAIImageVoiceCanvaInstagramDto = FindTaskAIImageVoiceCanvaInst
|
|
7407
7544
|
type index_FindTaskAIImageVoiceCanvaThreadsDto = FindTaskAIImageVoiceCanvaThreadsDto;
|
7408
7545
|
type index_FindTaskInstagramBlockUserDto = FindTaskInstagramBlockUserDto;
|
7409
7546
|
type index_FindTaskInstagramChangeInfoDto = FindTaskInstagramChangeInfoDto;
|
7547
|
+
type index_FindTaskInstagramExploreDto = FindTaskInstagramExploreDto;
|
7410
7548
|
type index_FindTaskInstagramFollowDto = FindTaskInstagramFollowDto;
|
7411
7549
|
type index_FindTaskInstagramPostDto = FindTaskInstagramPostDto;
|
7550
|
+
type index_FindTaskInstagramReelDto = FindTaskInstagramReelDto;
|
7412
7551
|
type index_FindTaskInstagramReplyCommentDto = FindTaskInstagramReplyCommentDto;
|
7413
7552
|
type index_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
|
7553
|
+
type index_FindTaskInstagramStoryDto = FindTaskInstagramStoryDto;
|
7414
7554
|
type index_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
|
7415
7555
|
type index_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
|
7416
7556
|
type index_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
|
@@ -7456,10 +7596,13 @@ type index_UpdateTaskAIImageVoiceCanvaInstagramDto = UpdateTaskAIImageVoiceCanva
|
|
7456
7596
|
type index_UpdateTaskAIImageVoiceCanvaThreadsDto = UpdateTaskAIImageVoiceCanvaThreadsDto;
|
7457
7597
|
type index_UpdateTaskInstagramBlockUserDto = UpdateTaskInstagramBlockUserDto;
|
7458
7598
|
type index_UpdateTaskInstagramChangeInfoDto = UpdateTaskInstagramChangeInfoDto;
|
7599
|
+
type index_UpdateTaskInstagramExploreDto = UpdateTaskInstagramExploreDto;
|
7459
7600
|
type index_UpdateTaskInstagramFollowDto = UpdateTaskInstagramFollowDto;
|
7460
7601
|
type index_UpdateTaskInstagramPostDto = UpdateTaskInstagramPostDto;
|
7602
|
+
type index_UpdateTaskInstagramReelDto = UpdateTaskInstagramReelDto;
|
7461
7603
|
type index_UpdateTaskInstagramReplyCommentDto = UpdateTaskInstagramReplyCommentDto;
|
7462
7604
|
type index_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageDto;
|
7605
|
+
type index_UpdateTaskInstagramStoryDto = UpdateTaskInstagramStoryDto;
|
7463
7606
|
type index_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
|
7464
7607
|
type index_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
|
7465
7608
|
type index_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
|
@@ -7467,7 +7610,7 @@ type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
|
|
7467
7610
|
type index_UpdateTeamDto = UpdateTeamDto;
|
7468
7611
|
type index_UpdateUserDto = UpdateUserDto;
|
7469
7612
|
declare namespace index {
|
7470
|
-
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolInstagramDto as CreateSheetsToolInstagramDto, index_CreateSheetsToolThreadsDto as CreateSheetsToolThreadsDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolInstagramDto as FilterSheetsToolInstagramDto, index_FilterSheetsToolThreadsDto as FilterSheetsToolThreadsDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolInstagramDto as FindSheetsToolInstagramDto, index_FindSheetsToolThreadsDto as FindSheetsToolThreadsDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolInstagramDto as UpdateSheetsToolInstagramDto, index_UpdateSheetsToolThreadsDto as UpdateSheetsToolThreadsDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
7613
|
+
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolInstagramDto as CreateSheetsToolInstagramDto, index_CreateSheetsToolThreadsDto as CreateSheetsToolThreadsDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramExploreDto as CreateTaskInstagramExploreDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReelDto as CreateTaskInstagramReelDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskInstagramStoryDto as CreateTaskInstagramStoryDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolInstagramDto as FilterSheetsToolInstagramDto, index_FilterSheetsToolThreadsDto as FilterSheetsToolThreadsDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramExploreDto as FilterTaskInstagramExploreDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReelDto as FilterTaskInstagramReelDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskInstagramStoryDto as FilterTaskInstagramStoryDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramExploreDto as FindOverViewTaskInstagramExploreDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReelDto as FindOverViewTaskInstagramReelDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskInstagramStoryDto as FindOverViewTaskInstagramStoryDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolInstagramDto as FindSheetsToolInstagramDto, index_FindSheetsToolThreadsDto as FindSheetsToolThreadsDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramExploreDto as FindTaskInstagramExploreDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReelDto as FindTaskInstagramReelDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskInstagramStoryDto as FindTaskInstagramStoryDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolInstagramDto as UpdateSheetsToolInstagramDto, index_UpdateSheetsToolThreadsDto as UpdateSheetsToolThreadsDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramExploreDto as UpdateTaskInstagramExploreDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReelDto as UpdateTaskInstagramReelDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskInstagramStoryDto as UpdateTaskInstagramStoryDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
7471
7614
|
}
|
7472
7615
|
|
7473
|
-
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolInstagramDto, type CreateSheetsToolThreadsDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolInstagramDto, type FilterSheetsToolThreadsDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolInstagramDto, type FindSheetsToolThreadsDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsToolBase, type ISheetsToolInstagram, type ISheetsToolThreads, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolInstagramDto, type UpdateSheetsToolThreadsDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|
7616
|
+
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolInstagramDto, type CreateSheetsToolThreadsDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramExploreDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReelDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskInstagramStoryDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolInstagramDto, type FilterSheetsToolThreadsDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramExploreDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReelDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskInstagramStoryDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramExploreDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReelDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskInstagramStoryDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolInstagramDto, type FindSheetsToolThreadsDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramExploreDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReelDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskInstagramStoryDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsToolBase, type ISheetsToolInstagram, type ISheetsToolThreads, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolInstagramDto, type UpdateSheetsToolThreadsDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramExploreDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReelDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskInstagramStoryDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|