automation-lib 5.1.89 → 5.1.91
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 +230 -84
- package/dist/index.d.ts +230 -84
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -169,6 +169,9 @@ declare const CONST_API_CONTROLLERS: {
|
|
169
169
|
FOLLOW: string;
|
170
170
|
REPLY_COMMENT: string;
|
171
171
|
REPLY_MESSAGE: string;
|
172
|
+
INTERACT_EXPLORE: string;
|
173
|
+
INTERACT_REEL: string;
|
174
|
+
INTERACT_STORY: string;
|
172
175
|
};
|
173
176
|
THREADS: {
|
174
177
|
POST: string;
|
@@ -2465,22 +2468,16 @@ declare namespace index$9 {
|
|
2465
2468
|
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
2466
2469
|
sheetUrl: string;
|
2467
2470
|
sheetName: string;
|
2468
|
-
sheetRowId: string;
|
2469
2471
|
typeSocial: ETypeSocial;
|
2472
|
+
account: string | IInstagramAccountRaw;
|
2473
|
+
minuteWaiting: number;
|
2474
|
+
isTimeUS: boolean;
|
2470
2475
|
dayOfWeek: string;
|
2471
2476
|
timeFrom: string;
|
2472
2477
|
timeTo: string;
|
2473
2478
|
service: string;
|
2474
2479
|
action: string;
|
2475
2480
|
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
2481
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2485
2482
|
blockUserNameIg: string;
|
2486
2483
|
restrictUserNameIg: string;
|
@@ -2490,22 +2487,16 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2490
2487
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
2491
2488
|
sheetUrl: string;
|
2492
2489
|
sheetName: string;
|
2493
|
-
sheetRowId: string;
|
2494
2490
|
typeSocial: ETypeSocial;
|
2491
|
+
account: string | IInstagramAccountRaw;
|
2492
|
+
minuteWaiting: number;
|
2493
|
+
isTimeUS: boolean;
|
2495
2494
|
dayOfWeek: string;
|
2496
2495
|
timeFrom: string;
|
2497
2496
|
timeTo: string;
|
2498
2497
|
service: string;
|
2499
2498
|
action: string;
|
2500
2499
|
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
2500
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2510
2501
|
oldUserName: string;
|
2511
2502
|
changeUserNameNew: string;
|
@@ -2530,44 +2521,74 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2530
2521
|
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
2531
2522
|
sheetUrl: string;
|
2532
2523
|
sheetName: string;
|
2533
|
-
sheetRowId: string;
|
2534
2524
|
typeSocial: ETypeSocial;
|
2525
|
+
account: string | IInstagramAccountRaw;
|
2526
|
+
minuteWaiting: number;
|
2527
|
+
isTimeUS: boolean;
|
2535
2528
|
dayOfWeek: string;
|
2536
2529
|
timeFrom: string;
|
2537
2530
|
timeTo: string;
|
2538
2531
|
service: string;
|
2539
2532
|
action: string;
|
2540
2533
|
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
2534
|
listUsernameFollow: string[];
|
2550
2535
|
}
|
2551
2536
|
|
2537
|
+
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
2538
|
+
sheetUrl: string;
|
2539
|
+
sheetName: string;
|
2540
|
+
typeSocial: ETypeSocial;
|
2541
|
+
account: string | IInstagramAccountRaw;
|
2542
|
+
minuteWaiting: number;
|
2543
|
+
isTimeUS: boolean;
|
2544
|
+
dayOfWeek: string;
|
2545
|
+
timeFrom: string;
|
2546
|
+
timeTo: string;
|
2547
|
+
service: string;
|
2548
|
+
action: string;
|
2549
|
+
timeExecute: Date;
|
2550
|
+
postUrlReply: string;
|
2551
|
+
messageForReply: string;
|
2552
|
+
replyCommentContentStep1: string;
|
2553
|
+
replyCommentContentStep2: string;
|
2554
|
+
statusStep1: EStatusTaskToolSocials;
|
2555
|
+
statusStep2: EStatusTaskToolSocials;
|
2556
|
+
}
|
2557
|
+
|
2558
|
+
interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
2559
|
+
sheetUrl: string;
|
2560
|
+
sheetName: string;
|
2561
|
+
typeSocial: ETypeSocial;
|
2562
|
+
account: string | IInstagramAccountRaw;
|
2563
|
+
minuteWaiting: number;
|
2564
|
+
isTimeUS: boolean;
|
2565
|
+
dayOfWeek: string;
|
2566
|
+
timeFrom: string;
|
2567
|
+
timeTo: string;
|
2568
|
+
service: string;
|
2569
|
+
action: string;
|
2570
|
+
timeExecute: Date;
|
2571
|
+
postUrlReply: string;
|
2572
|
+
messageForReply: string;
|
2573
|
+
replyMessageContentStep1: string;
|
2574
|
+
replyMessageContentStep2: string;
|
2575
|
+
statusStep1: EStatusTaskToolSocials;
|
2576
|
+
statusStep2: EStatusTaskToolSocials;
|
2577
|
+
}
|
2578
|
+
|
2552
2579
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
2553
2580
|
sheetUrl: string;
|
2554
2581
|
sheetName: string;
|
2555
|
-
sheetRowId: string;
|
2556
2582
|
typeSocial: ETypeSocial;
|
2583
|
+
account: string | IInstagramAccountRaw;
|
2584
|
+
minuteWaiting: number;
|
2585
|
+
isTimeUS: boolean;
|
2557
2586
|
dayOfWeek: string;
|
2558
2587
|
timeFrom: string;
|
2559
2588
|
timeTo: string;
|
2560
2589
|
service: string;
|
2561
2590
|
action: string;
|
2562
2591
|
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
2592
|
canvaUrlVideo: string;
|
2572
2593
|
canvaImageThumb: string;
|
2573
2594
|
canvaImagePage1: string;
|
@@ -2600,68 +2621,70 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2600
2621
|
statusPost: string;
|
2601
2622
|
}
|
2602
2623
|
|
2603
|
-
interface
|
2604
|
-
sheetUrl: string;
|
2605
|
-
sheetName: string;
|
2606
|
-
sheetRowId: string;
|
2624
|
+
interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
2607
2625
|
typeSocial: ETypeSocial;
|
2626
|
+
account: string | IInstagramAccountRaw;
|
2627
|
+
minuteWaiting: number;
|
2628
|
+
isTimeUS: boolean;
|
2608
2629
|
dayOfWeek: string;
|
2609
2630
|
timeFrom: string;
|
2610
2631
|
timeTo: string;
|
2611
2632
|
service: string;
|
2612
2633
|
action: string;
|
2613
2634
|
timeExecute: Date;
|
2614
|
-
|
2615
|
-
|
2616
|
-
|
2617
|
-
|
2618
|
-
|
2619
|
-
sheetTool: ISheetsToolBase | string;
|
2635
|
+
numberView: number;
|
2636
|
+
isBasicView: boolean;
|
2637
|
+
isLike: boolean;
|
2638
|
+
numberLike: number;
|
2639
|
+
minuteRun: number;
|
2620
2640
|
status: EStatusTaskToolSocials;
|
2621
2641
|
note: string;
|
2622
|
-
postUrlReply: string;
|
2623
|
-
messageForReply: string;
|
2624
|
-
replyCommentContentStep1: string;
|
2625
|
-
replyCommentContentStep2: string;
|
2626
|
-
statusStep1: EStatusTaskToolSocials;
|
2627
|
-
statusStep2: EStatusTaskToolSocials;
|
2628
2642
|
}
|
2629
2643
|
|
2630
|
-
interface
|
2631
|
-
sheetUrl: string;
|
2632
|
-
sheetName: string;
|
2633
|
-
sheetRowId: string;
|
2644
|
+
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
2634
2645
|
typeSocial: ETypeSocial;
|
2646
|
+
account: string | IInstagramAccountRaw;
|
2647
|
+
minuteWaiting: number;
|
2648
|
+
isTimeUS: boolean;
|
2635
2649
|
dayOfWeek: string;
|
2636
2650
|
timeFrom: string;
|
2637
2651
|
timeTo: string;
|
2638
2652
|
service: string;
|
2639
2653
|
action: string;
|
2640
2654
|
timeExecute: Date;
|
2641
|
-
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2645
|
-
|
2646
|
-
|
2647
|
-
|
2648
|
-
|
2649
|
-
|
2650
|
-
|
2651
|
-
|
2652
|
-
|
2653
|
-
|
2654
|
-
|
2655
|
+
numberView: number;
|
2656
|
+
isLike: boolean;
|
2657
|
+
numberLike: number;
|
2658
|
+
minuteRun: number;
|
2659
|
+
}
|
2660
|
+
|
2661
|
+
interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
2662
|
+
typeSocial: ETypeSocial;
|
2663
|
+
account: string | IInstagramAccountRaw;
|
2664
|
+
minuteWaiting: number;
|
2665
|
+
isTimeUS: boolean;
|
2666
|
+
dayOfWeek: string;
|
2667
|
+
timeFrom: string;
|
2668
|
+
timeTo: string;
|
2669
|
+
service: string;
|
2670
|
+
action: string;
|
2671
|
+
timeExecute: Date;
|
2672
|
+
numberView: number;
|
2673
|
+
isLike: boolean;
|
2674
|
+
numberLike: number;
|
2655
2675
|
}
|
2656
2676
|
|
2657
2677
|
type index$8_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
|
2658
2678
|
type index$8_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
2659
2679
|
type index$8_ITaskInstagramFollow = ITaskInstagramFollow;
|
2680
|
+
type index$8_ITaskInstagramInteractExplore = ITaskInstagramInteractExplore;
|
2681
|
+
type index$8_ITaskInstagramInteractReel = ITaskInstagramInteractReel;
|
2682
|
+
type index$8_ITaskInstagramInteractStory = ITaskInstagramInteractStory;
|
2660
2683
|
type index$8_ITaskInstagramPost = ITaskInstagramPost;
|
2661
2684
|
type index$8_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
2662
2685
|
type index$8_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
|
2663
2686
|
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 };
|
2687
|
+
export type { index$8_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$8_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$8_ITaskInstagramFollow as ITaskInstagramFollow, index$8_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, index$8_ITaskInstagramInteractReel as ITaskInstagramInteractReel, index$8_ITaskInstagramInteractStory as ITaskInstagramInteractStory, index$8_ITaskInstagramPost as ITaskInstagramPost, index$8_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$8_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage };
|
2665
2688
|
}
|
2666
2689
|
|
2667
2690
|
type TaskTypeInstagram = 'Post' | 'Follow' | 'ReplyComment' | 'ReplyMessage' | 'ChangeInfo' | 'BlockUser';
|
@@ -2681,6 +2704,9 @@ interface ITaskToolMonitor extends IBaseModel, ITrackingModel<IUser> {
|
|
2681
2704
|
type index$7_ITaskInstagramBlockUser = ITaskInstagramBlockUser;
|
2682
2705
|
type index$7_ITaskInstagramChangeInfo = ITaskInstagramChangeInfo;
|
2683
2706
|
type index$7_ITaskInstagramFollow = ITaskInstagramFollow;
|
2707
|
+
type index$7_ITaskInstagramInteractExplore = ITaskInstagramInteractExplore;
|
2708
|
+
type index$7_ITaskInstagramInteractReel = ITaskInstagramInteractReel;
|
2709
|
+
type index$7_ITaskInstagramInteractStory = ITaskInstagramInteractStory;
|
2684
2710
|
type index$7_ITaskInstagramPost = ITaskInstagramPost;
|
2685
2711
|
type index$7_ITaskInstagramReplyComment = ITaskInstagramReplyComment;
|
2686
2712
|
type index$7_ITaskInstagramReplyMessage = ITaskInstagramReplyMessage;
|
@@ -2692,7 +2718,7 @@ type index$7_ITaskToolMonitor = ITaskToolMonitor;
|
|
2692
2718
|
type index$7_TaskTypeInstagram = TaskTypeInstagram;
|
2693
2719
|
type index$7_TaskTypeThreads = TaskTypeThreads;
|
2694
2720
|
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 };
|
2721
|
+
export { type index$7_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$7_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$7_ITaskInstagramFollow as ITaskInstagramFollow, type index$7_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$7_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$7_ITaskInstagramInteractStory as ITaskInstagramInteractStory, 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 };
|
2696
2722
|
}
|
2697
2723
|
|
2698
2724
|
interface ITaskAIItemAction {
|
@@ -6611,6 +6637,76 @@ interface FindTaskInstagramFollowDto extends IFindBaseDto, ITaskInstagramFollow
|
|
6611
6637
|
interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
|
6612
6638
|
}
|
6613
6639
|
|
6640
|
+
interface FindOverViewTaskInstagramReplyCommentDto {
|
6641
|
+
totalAccounts: number;
|
6642
|
+
totalPC: number;
|
6643
|
+
totalLeader: number;
|
6644
|
+
totalMembers: number;
|
6645
|
+
totalAccountGroups: number;
|
6646
|
+
totalIdea: number;
|
6647
|
+
totalNiche: number;
|
6648
|
+
totalType: {
|
6649
|
+
total: number;
|
6650
|
+
TM: number;
|
6651
|
+
NTM: number;
|
6652
|
+
};
|
6653
|
+
totalDevice: {
|
6654
|
+
total: number;
|
6655
|
+
android: number;
|
6656
|
+
ios: number;
|
6657
|
+
};
|
6658
|
+
totalTasks: {
|
6659
|
+
pending: number;
|
6660
|
+
executing: number;
|
6661
|
+
error: number;
|
6662
|
+
repaired: number;
|
6663
|
+
done: number;
|
6664
|
+
};
|
6665
|
+
}
|
6666
|
+
interface CreateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
6667
|
+
}
|
6668
|
+
interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
6669
|
+
}
|
6670
|
+
interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
|
6671
|
+
}
|
6672
|
+
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
|
6673
|
+
}
|
6674
|
+
|
6675
|
+
interface FindOverViewTaskInstagramReplyMessageDto {
|
6676
|
+
totalAccounts: number;
|
6677
|
+
totalPC: number;
|
6678
|
+
totalLeader: number;
|
6679
|
+
totalMembers: number;
|
6680
|
+
totalAccountGroups: number;
|
6681
|
+
totalIdea: number;
|
6682
|
+
totalNiche: number;
|
6683
|
+
totalType: {
|
6684
|
+
total: number;
|
6685
|
+
TM: number;
|
6686
|
+
NTM: number;
|
6687
|
+
};
|
6688
|
+
totalDevice: {
|
6689
|
+
total: number;
|
6690
|
+
android: number;
|
6691
|
+
ios: number;
|
6692
|
+
};
|
6693
|
+
totalTasks: {
|
6694
|
+
pending: number;
|
6695
|
+
executing: number;
|
6696
|
+
error: number;
|
6697
|
+
repaired: number;
|
6698
|
+
done: number;
|
6699
|
+
};
|
6700
|
+
}
|
6701
|
+
interface CreateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
6702
|
+
}
|
6703
|
+
interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
6704
|
+
}
|
6705
|
+
interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
|
6706
|
+
}
|
6707
|
+
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, Omit<ITaskInstagramReplyMessage, TOmitFilterDto> {
|
6708
|
+
}
|
6709
|
+
|
6614
6710
|
interface FindOverViewTaskInstagramPostDto {
|
6615
6711
|
totalAccounts: number;
|
6616
6712
|
totalPC: number;
|
@@ -6646,7 +6742,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto, ITaskInstagramPost {
|
|
6646
6742
|
interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
|
6647
6743
|
}
|
6648
6744
|
|
6649
|
-
interface
|
6745
|
+
interface FindOverViewTaskInstagramInteractExploreDto {
|
6650
6746
|
totalAccounts: number;
|
6651
6747
|
totalPC: number;
|
6652
6748
|
totalLeader: number;
|
@@ -6672,16 +6768,16 @@ interface FindOverViewTaskInstagramReplyCommentDto {
|
|
6672
6768
|
done: number;
|
6673
6769
|
};
|
6674
6770
|
}
|
6675
|
-
interface
|
6771
|
+
interface CreateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
6676
6772
|
}
|
6677
|
-
interface
|
6773
|
+
interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
6678
6774
|
}
|
6679
|
-
interface
|
6775
|
+
interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
|
6680
6776
|
}
|
6681
|
-
interface
|
6777
|
+
interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, Omit<ITaskInstagramInteractExplore, TOmitFilterDto> {
|
6682
6778
|
}
|
6683
6779
|
|
6684
|
-
interface
|
6780
|
+
interface FindOverViewTaskInstagramInteractReelDto {
|
6685
6781
|
totalAccounts: number;
|
6686
6782
|
totalPC: number;
|
6687
6783
|
totalLeader: number;
|
@@ -6707,13 +6803,48 @@ interface FindOverViewTaskInstagramReplyMessageDto {
|
|
6707
6803
|
done: number;
|
6708
6804
|
};
|
6709
6805
|
}
|
6710
|
-
interface
|
6806
|
+
interface CreateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
6711
6807
|
}
|
6712
|
-
interface
|
6808
|
+
interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
6713
6809
|
}
|
6714
|
-
interface
|
6810
|
+
interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
|
6715
6811
|
}
|
6716
|
-
interface
|
6812
|
+
interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, Omit<ITaskInstagramInteractReel, TOmitFilterDto> {
|
6813
|
+
}
|
6814
|
+
|
6815
|
+
interface FindOverViewTaskInstagramInteractStoryDto {
|
6816
|
+
totalAccounts: number;
|
6817
|
+
totalPC: number;
|
6818
|
+
totalLeader: number;
|
6819
|
+
totalMembers: number;
|
6820
|
+
totalAccountGroups: number;
|
6821
|
+
totalIdea: number;
|
6822
|
+
totalNiche: number;
|
6823
|
+
totalType: {
|
6824
|
+
total: number;
|
6825
|
+
TM: number;
|
6826
|
+
NTM: number;
|
6827
|
+
};
|
6828
|
+
totalDevice: {
|
6829
|
+
total: number;
|
6830
|
+
android: number;
|
6831
|
+
ios: number;
|
6832
|
+
};
|
6833
|
+
totalTasks: {
|
6834
|
+
pending: number;
|
6835
|
+
executing: number;
|
6836
|
+
error: number;
|
6837
|
+
repaired: number;
|
6838
|
+
done: number;
|
6839
|
+
};
|
6840
|
+
}
|
6841
|
+
interface CreateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
6842
|
+
}
|
6843
|
+
interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
6844
|
+
}
|
6845
|
+
interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
|
6846
|
+
}
|
6847
|
+
interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, Omit<ITaskInstagramInteractStory, TOmitFilterDto> {
|
6717
6848
|
}
|
6718
6849
|
|
6719
6850
|
interface FindTaskToolMonitorDto extends IFindBaseDto, ITaskToolMonitor {
|
@@ -7181,6 +7312,9 @@ type index_CreateTaskAIImageVoiceCanvaThreadsDto = CreateTaskAIImageVoiceCanvaTh
|
|
7181
7312
|
type index_CreateTaskInstagramBlockUserDto = CreateTaskInstagramBlockUserDto;
|
7182
7313
|
type index_CreateTaskInstagramChangeInfoDto = CreateTaskInstagramChangeInfoDto;
|
7183
7314
|
type index_CreateTaskInstagramFollowDto = CreateTaskInstagramFollowDto;
|
7315
|
+
type index_CreateTaskInstagramInteractExploreDto = CreateTaskInstagramInteractExploreDto;
|
7316
|
+
type index_CreateTaskInstagramInteractReelDto = CreateTaskInstagramInteractReelDto;
|
7317
|
+
type index_CreateTaskInstagramInteractStoryDto = CreateTaskInstagramInteractStoryDto;
|
7184
7318
|
type index_CreateTaskInstagramPostDto = CreateTaskInstagramPostDto;
|
7185
7319
|
type index_CreateTaskInstagramReplyCommentDto = CreateTaskInstagramReplyCommentDto;
|
7186
7320
|
type index_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageDto;
|
@@ -7261,6 +7395,9 @@ type index_FilterTaskAIImageVoiceCanvaThreadsDto = FilterTaskAIImageVoiceCanvaTh
|
|
7261
7395
|
type index_FilterTaskInstagramBlockUserDto = FilterTaskInstagramBlockUserDto;
|
7262
7396
|
type index_FilterTaskInstagramChangeInfoDto = FilterTaskInstagramChangeInfoDto;
|
7263
7397
|
type index_FilterTaskInstagramFollowDto = FilterTaskInstagramFollowDto;
|
7398
|
+
type index_FilterTaskInstagramInteractExploreDto = FilterTaskInstagramInteractExploreDto;
|
7399
|
+
type index_FilterTaskInstagramInteractReelDto = FilterTaskInstagramInteractReelDto;
|
7400
|
+
type index_FilterTaskInstagramInteractStoryDto = FilterTaskInstagramInteractStoryDto;
|
7264
7401
|
type index_FilterTaskInstagramPostDto = FilterTaskInstagramPostDto;
|
7265
7402
|
type index_FilterTaskInstagramReplyCommentDto = FilterTaskInstagramReplyCommentDto;
|
7266
7403
|
type index_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageDto;
|
@@ -7369,6 +7506,9 @@ type index_FindOverViewTaskAIImageVoiceCanvaThreadsDto = FindOverViewTaskAIImage
|
|
7369
7506
|
type index_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
|
7370
7507
|
type index_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
|
7371
7508
|
type index_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
|
7509
|
+
type index_FindOverViewTaskInstagramInteractExploreDto = FindOverViewTaskInstagramInteractExploreDto;
|
7510
|
+
type index_FindOverViewTaskInstagramInteractReelDto = FindOverViewTaskInstagramInteractReelDto;
|
7511
|
+
type index_FindOverViewTaskInstagramInteractStoryDto = FindOverViewTaskInstagramInteractStoryDto;
|
7372
7512
|
type index_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
|
7373
7513
|
type index_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
|
7374
7514
|
type index_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
|
@@ -7408,6 +7548,9 @@ type index_FindTaskAIImageVoiceCanvaThreadsDto = FindTaskAIImageVoiceCanvaThread
|
|
7408
7548
|
type index_FindTaskInstagramBlockUserDto = FindTaskInstagramBlockUserDto;
|
7409
7549
|
type index_FindTaskInstagramChangeInfoDto = FindTaskInstagramChangeInfoDto;
|
7410
7550
|
type index_FindTaskInstagramFollowDto = FindTaskInstagramFollowDto;
|
7551
|
+
type index_FindTaskInstagramInteractExploreDto = FindTaskInstagramInteractExploreDto;
|
7552
|
+
type index_FindTaskInstagramInteractReelDto = FindTaskInstagramInteractReelDto;
|
7553
|
+
type index_FindTaskInstagramInteractStoryDto = FindTaskInstagramInteractStoryDto;
|
7411
7554
|
type index_FindTaskInstagramPostDto = FindTaskInstagramPostDto;
|
7412
7555
|
type index_FindTaskInstagramReplyCommentDto = FindTaskInstagramReplyCommentDto;
|
7413
7556
|
type index_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
|
@@ -7457,6 +7600,9 @@ type index_UpdateTaskAIImageVoiceCanvaThreadsDto = UpdateTaskAIImageVoiceCanvaTh
|
|
7457
7600
|
type index_UpdateTaskInstagramBlockUserDto = UpdateTaskInstagramBlockUserDto;
|
7458
7601
|
type index_UpdateTaskInstagramChangeInfoDto = UpdateTaskInstagramChangeInfoDto;
|
7459
7602
|
type index_UpdateTaskInstagramFollowDto = UpdateTaskInstagramFollowDto;
|
7603
|
+
type index_UpdateTaskInstagramInteractExploreDto = UpdateTaskInstagramInteractExploreDto;
|
7604
|
+
type index_UpdateTaskInstagramInteractReelDto = UpdateTaskInstagramInteractReelDto;
|
7605
|
+
type index_UpdateTaskInstagramInteractStoryDto = UpdateTaskInstagramInteractStoryDto;
|
7460
7606
|
type index_UpdateTaskInstagramPostDto = UpdateTaskInstagramPostDto;
|
7461
7607
|
type index_UpdateTaskInstagramReplyCommentDto = UpdateTaskInstagramReplyCommentDto;
|
7462
7608
|
type index_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageDto;
|
@@ -7467,7 +7613,7 @@ type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
|
|
7467
7613
|
type index_UpdateTeamDto = UpdateTeamDto;
|
7468
7614
|
type index_UpdateUserDto = UpdateUserDto;
|
7469
7615
|
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 };
|
7616
|
+
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_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, 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_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, 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_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, 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_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, 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_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, 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 };
|
7471
7617
|
}
|
7472
7618
|
|
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 };
|
7619
|
+
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 CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, 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 FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, 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 FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type 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 FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, 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 UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|