automation-lib 5.0.221 → 5.0.222
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 +97 -76
- package/dist/index.d.ts +97 -76
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3423,12 +3423,23 @@ declare namespace index$1 {
|
|
|
3423
3423
|
export type { index$1_IDataDiscussTaskJob as IDataDiscussTaskJob, index$1_IDataNotification as IDataNotification, index$1_IDataUser as IDataUser, index$1_IFilterStore as IFilterStore, index$1_IResponseLogin as IResponseLogin };
|
|
3424
3424
|
}
|
|
3425
3425
|
|
|
3426
|
+
type TOmitFilterDto = 'team' | 'leader' | 'department' | 'user' | 'createdBy' | 'updatedBy' | 'createdAt' | 'updatedAt';
|
|
3426
3427
|
interface IBaseDto {
|
|
3427
3428
|
team: ITeam;
|
|
3428
3429
|
teamName: string;
|
|
3429
3430
|
department: IDepartment;
|
|
3430
3431
|
departmentName: string;
|
|
3431
3432
|
}
|
|
3433
|
+
interface IFilterBaseDto {
|
|
3434
|
+
team: string;
|
|
3435
|
+
leader: string;
|
|
3436
|
+
department: string;
|
|
3437
|
+
user: string;
|
|
3438
|
+
createdBy: string;
|
|
3439
|
+
updatedBy: string;
|
|
3440
|
+
createdAt: [Date, Date];
|
|
3441
|
+
updatedAt: [Date, Date];
|
|
3442
|
+
}
|
|
3432
3443
|
interface IBaseSheetImportDto {
|
|
3433
3444
|
sheetUrl: string;
|
|
3434
3445
|
sheetName: string;
|
|
@@ -3436,7 +3447,7 @@ interface IBaseSheetImportDto {
|
|
|
3436
3447
|
|
|
3437
3448
|
interface FindUserDto extends IBaseDto, IUser {
|
|
3438
3449
|
}
|
|
3439
|
-
interface FilterUserDto extends
|
|
3450
|
+
interface FilterUserDto extends IFilterBaseDto, Omit<IUser, TOmitFilterDto> {
|
|
3440
3451
|
}
|
|
3441
3452
|
interface OverviewUserDto {
|
|
3442
3453
|
totalDepartments: number;
|
|
@@ -3449,7 +3460,7 @@ interface OverviewUserDto {
|
|
|
3449
3460
|
|
|
3450
3461
|
interface FindRoleDto extends IBaseDto, IRole {
|
|
3451
3462
|
}
|
|
3452
|
-
interface FilterRoleDto extends
|
|
3463
|
+
interface FilterRoleDto extends IFilterBaseDto, Omit<IRole, TOmitFilterDto> {
|
|
3453
3464
|
}
|
|
3454
3465
|
|
|
3455
3466
|
interface ExportDto {
|
|
@@ -3476,122 +3487,122 @@ interface ImportDto {
|
|
|
3476
3487
|
|
|
3477
3488
|
interface FindThreadsReportPostDto extends IBaseDto, IThreadsReportPost {
|
|
3478
3489
|
}
|
|
3479
|
-
interface FilterThreadsReportPostDto extends
|
|
3490
|
+
interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReportPost, TOmitFilterDto> {
|
|
3480
3491
|
}
|
|
3481
3492
|
|
|
3482
3493
|
interface FindThreadsReportInteractFollowDto extends IBaseDto, IThreadsReportInteractFollow {
|
|
3483
3494
|
}
|
|
3484
|
-
interface FilterThreadsReportInteractFollowDto extends
|
|
3495
|
+
interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThreadsReportInteractFollow, TOmitFilterDto> {
|
|
3485
3496
|
}
|
|
3486
3497
|
|
|
3487
3498
|
interface FindThreadsReportInteractReplyCommentDto extends IBaseDto, IThreadsReportInteractReplyComment {
|
|
3488
3499
|
}
|
|
3489
|
-
interface FilterThreadsReportInteractReplyCommentDto extends
|
|
3500
|
+
interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyComment, TOmitFilterDto> {
|
|
3490
3501
|
}
|
|
3491
3502
|
|
|
3492
3503
|
interface FindThreadsSettingPostDto extends IBaseDto, IThreadsSettingPost {
|
|
3493
3504
|
}
|
|
3494
|
-
interface FilterThreadsSettingPostDto extends
|
|
3505
|
+
interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSettingPost, TOmitFilterDto> {
|
|
3495
3506
|
}
|
|
3496
3507
|
|
|
3497
3508
|
interface FindThreadsSettingInteractFollowDto extends IBaseDto, IThreadsSettingInteractFollow {
|
|
3498
3509
|
}
|
|
3499
|
-
interface FilterThreadsSettingInteractFollowDto extends
|
|
3510
|
+
interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractFollow, TOmitFilterDto> {
|
|
3500
3511
|
}
|
|
3501
3512
|
|
|
3502
3513
|
interface FindThreadsSettingInteractReplyCommentDto extends IBaseDto, IThreadsSettingInteractReplyComment {
|
|
3503
3514
|
}
|
|
3504
|
-
interface FilterThreadsSettingInteractReplyCommentDto extends
|
|
3515
|
+
interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyComment, TOmitFilterDto> {
|
|
3505
3516
|
}
|
|
3506
3517
|
|
|
3507
3518
|
interface FindInstagramReportPostHighLightDto extends IBaseDto, IInstagramReportPostHighLight {
|
|
3508
3519
|
}
|
|
3509
|
-
interface FilterInstagramReportPostHighLightDto extends
|
|
3520
|
+
interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IInstagramReportPostHighLight, TOmitFilterDto> {
|
|
3510
3521
|
}
|
|
3511
3522
|
|
|
3512
3523
|
interface FindInstagramReportPostNewDto extends IBaseDto, IInstagramReportPostNew {
|
|
3513
3524
|
}
|
|
3514
|
-
interface FilterInstagramReportPostNewDto extends
|
|
3525
|
+
interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagramReportPostNew, TOmitFilterDto> {
|
|
3515
3526
|
}
|
|
3516
3527
|
|
|
3517
3528
|
interface FindInstagramReportPostReelDto extends IBaseDto, IInstagramReportPostReel {
|
|
3518
3529
|
}
|
|
3519
|
-
interface FilterInstagramReportPostReelDto extends
|
|
3530
|
+
interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagramReportPostReel, TOmitFilterDto> {
|
|
3520
3531
|
}
|
|
3521
3532
|
|
|
3522
3533
|
interface FindInstagramReportPostStoryDto extends IBaseDto, IInstagramReportPostStory {
|
|
3523
3534
|
}
|
|
3524
|
-
interface FilterInstagramReportPostStoryDto extends
|
|
3535
|
+
interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstagramReportPostStory, TOmitFilterDto> {
|
|
3525
3536
|
}
|
|
3526
3537
|
|
|
3527
3538
|
interface FindInstagramReportInteractReplyCommentDto extends IBaseDto, IInstagramReportInteractReplyComment {
|
|
3528
3539
|
}
|
|
3529
|
-
interface FilterInstagramReportInteractReplyCommentDto extends
|
|
3540
|
+
interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyComment, TOmitFilterDto> {
|
|
3530
3541
|
}
|
|
3531
3542
|
|
|
3532
3543
|
interface FindInstagramReportInteractReelDto extends IBaseDto, IInstagramReportInteractReel {
|
|
3533
3544
|
}
|
|
3534
|
-
interface FilterInstagramReportInteractReelDto extends
|
|
3545
|
+
interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IInstagramReportInteractReel, TOmitFilterDto> {
|
|
3535
3546
|
}
|
|
3536
3547
|
|
|
3537
3548
|
interface FindInstagramReportInteractStoryDto extends IBaseDto, IInstagramReportInteractStory {
|
|
3538
3549
|
}
|
|
3539
|
-
interface FilterInstagramReportInteractStoryDto extends
|
|
3550
|
+
interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
|
|
3540
3551
|
}
|
|
3541
3552
|
|
|
3542
3553
|
interface FindInstagramReportInteractExploreDto extends IBaseDto, IInstagramReportInteractExplore {
|
|
3543
3554
|
}
|
|
3544
|
-
interface FilterInstagramReportInteractExploreDto extends
|
|
3555
|
+
interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<IInstagramReportInteractExplore, TOmitFilterDto> {
|
|
3545
3556
|
}
|
|
3546
3557
|
|
|
3547
3558
|
interface FindInstagramReportInteractReplyMessageDto extends IBaseDto, IInstagramReportInteractReplyMessage {
|
|
3548
3559
|
}
|
|
3549
|
-
interface FilterInstagramReportInteractReplyMessageDto extends
|
|
3560
|
+
interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyMessage, TOmitFilterDto> {
|
|
3550
3561
|
}
|
|
3551
3562
|
|
|
3552
3563
|
interface FindInstagramReportInteractFollowDto extends IBaseDto, IInstagramReportInteractFollow {
|
|
3553
3564
|
}
|
|
3554
|
-
interface FilterInstagramReportInteractFollowDto extends
|
|
3565
|
+
interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<IInstagramReportInteractFollow, TOmitFilterDto> {
|
|
3555
3566
|
}
|
|
3556
3567
|
|
|
3557
3568
|
interface FindInstagramSettingInteractExploreDto extends IBaseDto, IInstagramSettingInteractExplore {
|
|
3558
3569
|
}
|
|
3559
|
-
interface FilterInstagramSettingInteractExploreDto extends
|
|
3570
|
+
interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<IInstagramSettingInteractExplore, TOmitFilterDto> {
|
|
3560
3571
|
}
|
|
3561
3572
|
|
|
3562
3573
|
interface FindInstagramSettingInteractFollowDto extends IBaseDto, IInstagramSettingInteractFollow {
|
|
3563
3574
|
}
|
|
3564
|
-
interface FilterInstagramSettingInteractFollowDto extends
|
|
3575
|
+
interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractFollow, TOmitFilterDto> {
|
|
3565
3576
|
}
|
|
3566
3577
|
|
|
3567
3578
|
interface FindInstagramSettingInteractReelDto extends IBaseDto, IInstagramSettingInteractReel {
|
|
3568
3579
|
}
|
|
3569
|
-
interface FilterInstagramSettingInteractReelDto extends
|
|
3580
|
+
interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReel, TOmitFilterDto> {
|
|
3570
3581
|
}
|
|
3571
3582
|
|
|
3572
3583
|
interface FindInstagramSettingReplyCommentDto extends IBaseDto, IInstagramSettingInteractReplyComment {
|
|
3573
3584
|
}
|
|
3574
|
-
interface FilterInstagramSettingReplyCommentDto extends
|
|
3585
|
+
interface FilterInstagramSettingReplyCommentDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyComment, TOmitFilterDto> {
|
|
3575
3586
|
}
|
|
3576
3587
|
|
|
3577
3588
|
interface FindInstagramSettingReplyMessageDto extends IBaseDto, IInstagramSettingInteractReplyMessage {
|
|
3578
3589
|
}
|
|
3579
|
-
interface FilterInstagramSettingReplyMessageDto extends
|
|
3590
|
+
interface FilterInstagramSettingReplyMessageDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyMessage, TOmitFilterDto> {
|
|
3580
3591
|
}
|
|
3581
3592
|
|
|
3582
3593
|
interface FindInstagramSettingStoryDto extends IBaseDto, IInstagramSettingInteractStory {
|
|
3583
3594
|
}
|
|
3584
|
-
interface FilterInstagramSettingStoryDto extends
|
|
3595
|
+
interface FilterInstagramSettingStoryDto extends IFilterBaseDto, Omit<IInstagramSettingInteractStory, TOmitFilterDto> {
|
|
3585
3596
|
}
|
|
3586
3597
|
|
|
3587
3598
|
interface FindInstagramSettingUnFollowDto extends IBaseDto, IInstagramSettingInteractUnFollow {
|
|
3588
3599
|
}
|
|
3589
|
-
interface FilterInstagramSettingUnFollowDto extends
|
|
3600
|
+
interface FilterInstagramSettingUnFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractUnFollow, TOmitFilterDto> {
|
|
3590
3601
|
}
|
|
3591
3602
|
|
|
3592
3603
|
interface FindInstagramSettingPostDto extends IBaseDto, IInstagramSettingPost {
|
|
3593
3604
|
}
|
|
3594
|
-
interface FilterInstagramSettingPostDto extends
|
|
3605
|
+
interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramSettingPost, TOmitFilterDto> {
|
|
3595
3606
|
}
|
|
3596
3607
|
|
|
3597
3608
|
interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
@@ -3606,7 +3617,7 @@ interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
|
3606
3617
|
}>;
|
|
3607
3618
|
}>;
|
|
3608
3619
|
}
|
|
3609
|
-
interface FilterManagerSheetDto extends
|
|
3620
|
+
interface FilterManagerSheetDto extends IFilterBaseDto, Omit<IManagerSheet, TOmitFilterDto> {
|
|
3610
3621
|
}
|
|
3611
3622
|
|
|
3612
3623
|
interface FindIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
@@ -3626,7 +3637,7 @@ interface FindForReviewDto {
|
|
|
3626
3637
|
departmentWork: IDepartment;
|
|
3627
3638
|
sheetWorks: ISheetWork[];
|
|
3628
3639
|
}
|
|
3629
|
-
interface FilterIManagerImageAIDto extends
|
|
3640
|
+
interface FilterIManagerImageAIDto extends IFilterBaseDto, Omit<IManagerImageAI, TOmitFilterDto> {
|
|
3630
3641
|
}
|
|
3631
3642
|
|
|
3632
3643
|
interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
@@ -3646,12 +3657,12 @@ interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
|
3646
3657
|
code2FA: string;
|
|
3647
3658
|
};
|
|
3648
3659
|
}
|
|
3649
|
-
interface FilterIAccountEmailDto extends
|
|
3660
|
+
interface FilterIAccountEmailDto extends IFilterBaseDto, Omit<IAccountEmail, TOmitFilterDto> {
|
|
3650
3661
|
}
|
|
3651
3662
|
|
|
3652
3663
|
interface FindHistoryTaskAIImageDto extends IBaseDto, IHistoryTaskAIImage {
|
|
3653
3664
|
}
|
|
3654
|
-
interface FilterHistoryTaskAIImageDto extends
|
|
3665
|
+
interface FilterHistoryTaskAIImageDto extends IFilterBaseDto, Omit<IHistoryTaskAIImage, TOmitFilterDto> {
|
|
3655
3666
|
}
|
|
3656
3667
|
|
|
3657
3668
|
interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
@@ -3662,17 +3673,17 @@ interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
|
3662
3673
|
listChannels: IAccountAIVoiceChannel[];
|
|
3663
3674
|
}>;
|
|
3664
3675
|
}
|
|
3665
|
-
interface FilterAccountAIVoiceDto extends
|
|
3676
|
+
interface FilterAccountAIVoiceDto extends IFilterBaseDto, Omit<IAccountAIVoice, TOmitFilterDto> {
|
|
3666
3677
|
}
|
|
3667
3678
|
|
|
3668
3679
|
interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
3669
3680
|
}
|
|
3670
|
-
interface FilterIAccountAIVoiceInfoDto extends
|
|
3681
|
+
interface FilterIAccountAIVoiceInfoDto extends IFilterBaseDto, Omit<IAccountAIVoiceInfo, TOmitFilterDto> {
|
|
3671
3682
|
}
|
|
3672
3683
|
|
|
3673
3684
|
interface FindHistoryTaskAIVoiceDto extends IBaseDto, IHistoryTaskAIVoice {
|
|
3674
3685
|
}
|
|
3675
|
-
interface FilterHistoryTaskAIVoiceDto extends
|
|
3686
|
+
interface FilterHistoryTaskAIVoiceDto extends IFilterBaseDto, Omit<IHistoryTaskAIVoice, TOmitFilterDto> {
|
|
3676
3687
|
}
|
|
3677
3688
|
|
|
3678
3689
|
interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
@@ -3683,12 +3694,12 @@ interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
|
3683
3694
|
listChannels: IAccountAIImageChannel[];
|
|
3684
3695
|
}>;
|
|
3685
3696
|
}
|
|
3686
|
-
interface FilterAccountAIImageDto extends
|
|
3697
|
+
interface FilterAccountAIImageDto extends IFilterBaseDto, Omit<IAccountAIImage, TOmitFilterDto> {
|
|
3687
3698
|
}
|
|
3688
3699
|
|
|
3689
3700
|
interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
3690
3701
|
}
|
|
3691
|
-
interface FilterIAccountAIImageInfoDto extends
|
|
3702
|
+
interface FilterIAccountAIImageInfoDto extends IFilterBaseDto, Omit<IAccountAIImageInfo, TOmitFilterDto> {
|
|
3692
3703
|
}
|
|
3693
3704
|
|
|
3694
3705
|
interface FindAccountAIContentDto extends IBaseDto, IAccountAIContent {
|
|
@@ -3699,27 +3710,27 @@ interface FindAccountAIContentDto extends IBaseDto, IAccountAIContent {
|
|
|
3699
3710
|
listChannels: IAccountAIContentChannel[];
|
|
3700
3711
|
}>;
|
|
3701
3712
|
}
|
|
3702
|
-
interface FilterAccountAIContentDto extends
|
|
3713
|
+
interface FilterAccountAIContentDto extends IFilterBaseDto, Omit<IAccountAIContent, TOmitFilterDto> {
|
|
3703
3714
|
}
|
|
3704
3715
|
|
|
3705
3716
|
interface FindIAccountAIContentInfoDto extends IBaseDto, IAccountAIContentInfo {
|
|
3706
3717
|
}
|
|
3707
|
-
interface FilterIAccountAIContentInfoDto extends
|
|
3718
|
+
interface FilterIAccountAIContentInfoDto extends IFilterBaseDto, Omit<IAccountAIContentInfo, TOmitFilterDto> {
|
|
3708
3719
|
}
|
|
3709
3720
|
|
|
3710
3721
|
interface FindHistoryTaskAIContentDto extends IBaseDto, IHistoryTaskAIContent {
|
|
3711
3722
|
}
|
|
3712
|
-
interface FilterHistoryTaskAIContentDto extends
|
|
3723
|
+
interface FilterHistoryTaskAIContentDto extends IFilterBaseDto, Omit<IHistoryTaskAIContent, TOmitFilterDto> {
|
|
3713
3724
|
}
|
|
3714
3725
|
|
|
3715
3726
|
interface FindHistoryTaskCanvaDto extends IBaseDto, IHistoryTaskCanva {
|
|
3716
3727
|
}
|
|
3717
|
-
interface FilterHistoryTaskCanvaDto extends
|
|
3728
|
+
interface FilterHistoryTaskCanvaDto extends IFilterBaseDto, Omit<IHistoryTaskCanva, TOmitFilterDto> {
|
|
3718
3729
|
}
|
|
3719
3730
|
|
|
3720
3731
|
interface FindAccountCanvaDto extends IBaseDto, IAccountCanva {
|
|
3721
3732
|
}
|
|
3722
|
-
interface FilterAccountCanvaDto extends
|
|
3733
|
+
interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmitFilterDto> {
|
|
3723
3734
|
}
|
|
3724
3735
|
interface FindOverviewAccountCanvaDto {
|
|
3725
3736
|
totalAccounts: {
|
|
@@ -3746,7 +3757,7 @@ interface FindOverviewAccountCanvaDto {
|
|
|
3746
3757
|
};
|
|
3747
3758
|
}
|
|
3748
3759
|
|
|
3749
|
-
interface FilterAccountDriveDto extends
|
|
3760
|
+
interface FilterAccountDriveDto extends IFilterBaseDto, Omit<IAccountDrive, TOmitFilterDto> {
|
|
3750
3761
|
}
|
|
3751
3762
|
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3752
3763
|
}
|
|
@@ -3775,7 +3786,7 @@ interface FindOverviewAccountDriveDto {
|
|
|
3775
3786
|
};
|
|
3776
3787
|
}
|
|
3777
3788
|
|
|
3778
|
-
interface FilterProxyDto extends
|
|
3789
|
+
interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
|
|
3779
3790
|
}
|
|
3780
3791
|
interface FindOverviewProxyDto {
|
|
3781
3792
|
totalProxies: {
|
|
@@ -3803,25 +3814,26 @@ interface FindProxyDto extends IBaseDto, IProxy {
|
|
|
3803
3814
|
listDeviceName: string[];
|
|
3804
3815
|
listDeviceOS: string[];
|
|
3805
3816
|
ipRunCountDevice: number;
|
|
3817
|
+
pcName: string;
|
|
3806
3818
|
}
|
|
3807
3819
|
|
|
3808
3820
|
interface FindAccountVPSDto extends IBaseDto, IAccountVPS {
|
|
3809
3821
|
}
|
|
3810
|
-
interface FilterAccountVPSDto extends
|
|
3822
|
+
interface FilterAccountVPSDto extends IFilterBaseDto, Omit<IAccountVPS, TOmitFilterDto> {
|
|
3811
3823
|
}
|
|
3812
3824
|
|
|
3813
3825
|
interface FindAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
3814
3826
|
}
|
|
3815
|
-
interface FilterAccountVPSGroupDto extends
|
|
3827
|
+
interface FilterAccountVPSGroupDto extends IFilterBaseDto, Omit<IAccountVPSGroup, TOmitFilterDto> {
|
|
3816
3828
|
}
|
|
3817
3829
|
|
|
3818
|
-
interface FilterAccountVPNDto extends
|
|
3830
|
+
interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
|
|
3819
3831
|
}
|
|
3820
3832
|
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3821
|
-
pcName: string;
|
|
3822
3833
|
listDeviceKey: string[];
|
|
3823
3834
|
listDeviceName: string[];
|
|
3824
3835
|
listDeviceOS: ETypeDeviceOS[];
|
|
3836
|
+
pcName: string;
|
|
3825
3837
|
numberRunOnDevice: number;
|
|
3826
3838
|
}
|
|
3827
3839
|
interface FindOverviewAccountVPNDto {
|
|
@@ -3863,9 +3875,16 @@ interface FindOverviewAccountVPNDto {
|
|
|
3863
3875
|
};
|
|
3864
3876
|
}
|
|
3865
3877
|
|
|
3866
|
-
interface FilterAccountCHPlayICloudDto extends
|
|
3878
|
+
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, Omit<IAccountCHPlayICloud, TOmitFilterDto> {
|
|
3879
|
+
os: ETypeDeviceOS;
|
|
3880
|
+
pc: string;
|
|
3867
3881
|
}
|
|
3868
3882
|
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3883
|
+
listDeviceKeys: string[];
|
|
3884
|
+
listDeviceName: string[];
|
|
3885
|
+
listDeviceOS: string[];
|
|
3886
|
+
ipRunCountDevice: number;
|
|
3887
|
+
pcName: string;
|
|
3869
3888
|
}
|
|
3870
3889
|
interface FindOverviewAccountCHPlayICloudDto {
|
|
3871
3890
|
totalAccounts: {
|
|
@@ -3902,77 +3921,77 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3902
3921
|
|
|
3903
3922
|
interface FindInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3904
3923
|
}
|
|
3905
|
-
interface FilterInstagramHistoryGroupDto extends
|
|
3924
|
+
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IInstagramHistoryGroup, TOmitFilterDto> {
|
|
3906
3925
|
}
|
|
3907
3926
|
|
|
3908
3927
|
interface FindInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3909
3928
|
}
|
|
3910
|
-
interface FilterInstagramHistoryAutoSyncDto extends
|
|
3929
|
+
interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, Omit<IInstagramHistoryAutoSync, TOmitFilterDto> {
|
|
3911
3930
|
}
|
|
3912
3931
|
|
|
3913
3932
|
interface FindInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3914
3933
|
}
|
|
3915
|
-
interface FilterInstagramHistoryChangeCreateDto extends
|
|
3934
|
+
interface FilterInstagramHistoryChangeCreateDto extends IFilterBaseDto, Omit<IInstagramHistoryChangeCreate, TOmitFilterDto> {
|
|
3916
3935
|
}
|
|
3917
3936
|
|
|
3918
3937
|
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
3919
3938
|
}
|
|
3920
|
-
interface FilterThreadsAccountGroupDto extends
|
|
3939
|
+
interface FilterThreadsAccountGroupDto extends IFilterBaseDto, Omit<IThreadsAccountGroup, TOmitFilterDto> {
|
|
3921
3940
|
}
|
|
3922
3941
|
|
|
3923
3942
|
interface FindDeviceDto extends IBaseDto, IDevice {
|
|
3924
3943
|
}
|
|
3925
|
-
interface FilterDeviceDto extends
|
|
3944
|
+
interface FilterDeviceDto extends IFilterBaseDto, Omit<IDevice, TOmitFilterDto> {
|
|
3926
3945
|
}
|
|
3927
3946
|
|
|
3928
3947
|
interface FindTaskThreadsPostDto extends IBaseDto, ITaskThreadsPost {
|
|
3929
3948
|
}
|
|
3930
|
-
interface FilterTaskThreadsPostDto extends
|
|
3949
|
+
interface FilterTaskThreadsPostDto extends IFilterBaseDto, Omit<ITaskThreadsPost, TOmitFilterDto> {
|
|
3931
3950
|
}
|
|
3932
3951
|
|
|
3933
3952
|
interface FindTaskThreadsFollowDto extends IBaseDto, ITaskThreadsFollow {
|
|
3934
3953
|
}
|
|
3935
|
-
interface FilterTaskThreadsFollowDto extends
|
|
3954
|
+
interface FilterTaskThreadsFollowDto extends IFilterBaseDto, Omit<ITaskThreadsFollow, TOmitFilterDto> {
|
|
3936
3955
|
}
|
|
3937
3956
|
|
|
3938
3957
|
interface FindTaskThreadsReplyCommentDto extends IBaseDto, ITaskThreadsReplyComment {
|
|
3939
3958
|
}
|
|
3940
|
-
interface FilterTaskThreadsReplyCommentDto extends
|
|
3959
|
+
interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, Omit<ITaskThreadsReplyComment, TOmitFilterDto> {
|
|
3941
3960
|
}
|
|
3942
3961
|
|
|
3943
3962
|
interface FindTaskInstagramBlockUserDto extends IBaseDto, ITaskInstagramBlockUser {
|
|
3944
3963
|
}
|
|
3945
|
-
interface FilterTaskInstagramBlockUserDto extends
|
|
3964
|
+
interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, Omit<ITaskInstagramBlockUser, TOmitFilterDto> {
|
|
3946
3965
|
}
|
|
3947
3966
|
|
|
3948
3967
|
interface FindTaskInstagramChangeInfoDto extends IBaseDto, ITaskInstagramChangeInfo {
|
|
3949
3968
|
}
|
|
3950
|
-
interface FilterTaskInstagramChangeInfoDto extends
|
|
3969
|
+
interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, Omit<ITaskInstagramChangeInfo, TOmitFilterDto> {
|
|
3951
3970
|
}
|
|
3952
3971
|
|
|
3953
3972
|
interface FindTaskInstagramFollowDto extends IBaseDto, ITaskInstagramFollow {
|
|
3954
3973
|
}
|
|
3955
|
-
interface FilterTaskInstagramFollowDto extends
|
|
3974
|
+
interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
|
|
3956
3975
|
}
|
|
3957
3976
|
|
|
3958
3977
|
interface FindTaskInstagramPostDto extends IBaseDto, ITaskInstagramPost {
|
|
3959
3978
|
}
|
|
3960
|
-
interface FilterTaskInstagramPostDto extends
|
|
3979
|
+
interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
|
|
3961
3980
|
}
|
|
3962
3981
|
|
|
3963
3982
|
interface FindTaskInstagramReplyCommentDto extends IBaseDto, ITaskInstagramReplyComment {
|
|
3964
3983
|
}
|
|
3965
|
-
interface FilterTaskInstagramReplyCommentDto extends
|
|
3984
|
+
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
|
|
3966
3985
|
}
|
|
3967
3986
|
|
|
3968
3987
|
interface FindTaskInstagramReplyMessageDto extends IBaseDto, ITaskInstagramReplyMessage {
|
|
3969
3988
|
}
|
|
3970
|
-
interface FilterTaskInstagramReplyMessageDto extends
|
|
3989
|
+
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, Omit<ITaskInstagramReplyMessage, TOmitFilterDto> {
|
|
3971
3990
|
}
|
|
3972
3991
|
|
|
3973
3992
|
interface FindTaskToolMonitorDto extends IBaseDto, ITaskToolMonitor {
|
|
3974
3993
|
}
|
|
3975
|
-
interface FilterTaskToolMonitorDto extends
|
|
3994
|
+
interface FilterTaskToolMonitorDto extends IFilterBaseDto, Omit<ITaskToolMonitor, TOmitFilterDto> {
|
|
3976
3995
|
}
|
|
3977
3996
|
|
|
3978
3997
|
interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
@@ -3986,64 +4005,64 @@ interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
|
3986
4005
|
accountInfo: IAccountAIContentInfo;
|
|
3987
4006
|
accountChannel: IAccountAIContentChannel;
|
|
3988
4007
|
}
|
|
3989
|
-
interface FilterTaskAIContentDto extends
|
|
4008
|
+
interface FilterTaskAIContentDto extends IFilterBaseDto, Omit<ITaskAIContent, TOmitFilterDto> {
|
|
3990
4009
|
}
|
|
3991
4010
|
|
|
3992
4011
|
interface FindTaskAIImageVoiceCanvaDto extends IBaseDto, ITaskAIImageVoiceCanva {
|
|
3993
4012
|
}
|
|
3994
|
-
interface FilterTaskAIImageVoiceCanvaDto extends
|
|
4013
|
+
interface FilterTaskAIImageVoiceCanvaDto extends IFilterBaseDto, Omit<ITaskAIImageVoiceCanva, TOmitFilterDto> {
|
|
3995
4014
|
}
|
|
3996
4015
|
|
|
3997
4016
|
interface FindPCDto extends IBaseDto, IPC {
|
|
3998
4017
|
}
|
|
3999
|
-
interface FilterPCDto extends
|
|
4018
|
+
interface FilterPCDto extends IFilterBaseDto, Omit<IPC, TOmitFilterDto> {
|
|
4000
4019
|
}
|
|
4001
4020
|
|
|
4002
4021
|
interface FindSheetsToolDto extends IBaseDto, ISheetsTool {
|
|
4003
4022
|
}
|
|
4004
|
-
interface FilterSheetsToolDto extends
|
|
4023
|
+
interface FilterSheetsToolDto extends IFilterBaseDto, Omit<ISheetsTool, TOmitFilterDto> {
|
|
4005
4024
|
}
|
|
4006
4025
|
|
|
4007
4026
|
interface FindManagerWorkDto extends IBaseDto, IManagerWork {
|
|
4008
4027
|
}
|
|
4009
|
-
interface FilterManagerWorkDto extends
|
|
4028
|
+
interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
|
|
4010
4029
|
}
|
|
4011
4030
|
|
|
4012
4031
|
interface FindSheetWorkDto extends IBaseDto, ISheetWork {
|
|
4013
4032
|
}
|
|
4014
|
-
interface FilterSheetWorkDto extends
|
|
4033
|
+
interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
|
|
4015
4034
|
}
|
|
4016
4035
|
|
|
4017
4036
|
interface FindSheetWorkManagerDto extends IBaseDto, ISheetWorkManager {
|
|
4018
4037
|
}
|
|
4019
|
-
interface FilterSheetWorkManagerDto extends
|
|
4038
|
+
interface FilterSheetWorkManagerDto extends IFilterBaseDto, Omit<ISheetWorkManager, TOmitFilterDto> {
|
|
4020
4039
|
}
|
|
4021
4040
|
|
|
4022
4041
|
interface FindBlogDto extends IBaseDto, IBlog {
|
|
4023
4042
|
}
|
|
4024
|
-
interface FilterBlogDto extends
|
|
4043
|
+
interface FilterBlogDto extends IFilterBaseDto, Omit<IBlog, TOmitFilterDto> {
|
|
4025
4044
|
}
|
|
4026
4045
|
|
|
4027
4046
|
interface FindBlogCategoryDto extends IBaseDto, IBlogCategory {
|
|
4028
4047
|
}
|
|
4029
|
-
interface FilterBlogCategoryDto extends
|
|
4048
|
+
interface FilterBlogCategoryDto extends IFilterBaseDto, Omit<IBlogCategory, TOmitFilterDto> {
|
|
4030
4049
|
}
|
|
4031
4050
|
|
|
4032
4051
|
interface FindLarkDto extends IBaseDto, ILark {
|
|
4033
4052
|
teamNamesAssignments: string[];
|
|
4034
4053
|
userNamesAssignments: string[];
|
|
4035
4054
|
}
|
|
4036
|
-
interface FilterLarkDto extends
|
|
4055
|
+
interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
|
|
4037
4056
|
}
|
|
4038
4057
|
|
|
4039
4058
|
interface FindTeamDto extends Omit<IBaseDto, 'department'>, ITeam {
|
|
4040
4059
|
}
|
|
4041
|
-
interface FilterTeamDto extends Omit<
|
|
4060
|
+
interface FilterTeamDto extends IFilterBaseDto, Omit<ITeam, TOmitFilterDto> {
|
|
4042
4061
|
}
|
|
4043
4062
|
|
|
4044
4063
|
interface FindDepartmentDto extends IBaseDto, IDepartment {
|
|
4045
4064
|
}
|
|
4046
|
-
interface FilterDepartmentDto extends
|
|
4065
|
+
interface FilterDepartmentDto extends IFilterBaseDto, Omit<IDepartment, TOmitFilterDto> {
|
|
4047
4066
|
}
|
|
4048
4067
|
|
|
4049
4068
|
type index_ExportDto = ExportDto;
|
|
@@ -4202,10 +4221,12 @@ type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
|
|
|
4202
4221
|
type index_FindUserDto = FindUserDto;
|
|
4203
4222
|
type index_IBaseDto = IBaseDto;
|
|
4204
4223
|
type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
4224
|
+
type index_IFilterBaseDto = IFilterBaseDto;
|
|
4205
4225
|
type index_ImportDto = ImportDto;
|
|
4206
4226
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4227
|
+
type index_TOmitFilterDto = TOmitFilterDto;
|
|
4207
4228
|
declare namespace index {
|
|
4208
|
-
export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, 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_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, 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_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, 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_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, 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_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, 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_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, 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_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, 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_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4229
|
+
export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, 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_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, 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_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, 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_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, 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_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, 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_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, 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_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, 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_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
4209
4230
|
}
|
|
4210
4231
|
|
|
4211
|
-
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, 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 FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, 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 IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, 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 IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, 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 ISheetsTool, 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 IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, 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, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
|
4232
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, 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 FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, 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 IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, 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 IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, 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 ISheetsTool, 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 IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, 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, index$a as Web };
|
package/dist/index.d.ts
CHANGED
|
@@ -3423,12 +3423,23 @@ declare namespace index$1 {
|
|
|
3423
3423
|
export type { index$1_IDataDiscussTaskJob as IDataDiscussTaskJob, index$1_IDataNotification as IDataNotification, index$1_IDataUser as IDataUser, index$1_IFilterStore as IFilterStore, index$1_IResponseLogin as IResponseLogin };
|
|
3424
3424
|
}
|
|
3425
3425
|
|
|
3426
|
+
type TOmitFilterDto = 'team' | 'leader' | 'department' | 'user' | 'createdBy' | 'updatedBy' | 'createdAt' | 'updatedAt';
|
|
3426
3427
|
interface IBaseDto {
|
|
3427
3428
|
team: ITeam;
|
|
3428
3429
|
teamName: string;
|
|
3429
3430
|
department: IDepartment;
|
|
3430
3431
|
departmentName: string;
|
|
3431
3432
|
}
|
|
3433
|
+
interface IFilterBaseDto {
|
|
3434
|
+
team: string;
|
|
3435
|
+
leader: string;
|
|
3436
|
+
department: string;
|
|
3437
|
+
user: string;
|
|
3438
|
+
createdBy: string;
|
|
3439
|
+
updatedBy: string;
|
|
3440
|
+
createdAt: [Date, Date];
|
|
3441
|
+
updatedAt: [Date, Date];
|
|
3442
|
+
}
|
|
3432
3443
|
interface IBaseSheetImportDto {
|
|
3433
3444
|
sheetUrl: string;
|
|
3434
3445
|
sheetName: string;
|
|
@@ -3436,7 +3447,7 @@ interface IBaseSheetImportDto {
|
|
|
3436
3447
|
|
|
3437
3448
|
interface FindUserDto extends IBaseDto, IUser {
|
|
3438
3449
|
}
|
|
3439
|
-
interface FilterUserDto extends
|
|
3450
|
+
interface FilterUserDto extends IFilterBaseDto, Omit<IUser, TOmitFilterDto> {
|
|
3440
3451
|
}
|
|
3441
3452
|
interface OverviewUserDto {
|
|
3442
3453
|
totalDepartments: number;
|
|
@@ -3449,7 +3460,7 @@ interface OverviewUserDto {
|
|
|
3449
3460
|
|
|
3450
3461
|
interface FindRoleDto extends IBaseDto, IRole {
|
|
3451
3462
|
}
|
|
3452
|
-
interface FilterRoleDto extends
|
|
3463
|
+
interface FilterRoleDto extends IFilterBaseDto, Omit<IRole, TOmitFilterDto> {
|
|
3453
3464
|
}
|
|
3454
3465
|
|
|
3455
3466
|
interface ExportDto {
|
|
@@ -3476,122 +3487,122 @@ interface ImportDto {
|
|
|
3476
3487
|
|
|
3477
3488
|
interface FindThreadsReportPostDto extends IBaseDto, IThreadsReportPost {
|
|
3478
3489
|
}
|
|
3479
|
-
interface FilterThreadsReportPostDto extends
|
|
3490
|
+
interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReportPost, TOmitFilterDto> {
|
|
3480
3491
|
}
|
|
3481
3492
|
|
|
3482
3493
|
interface FindThreadsReportInteractFollowDto extends IBaseDto, IThreadsReportInteractFollow {
|
|
3483
3494
|
}
|
|
3484
|
-
interface FilterThreadsReportInteractFollowDto extends
|
|
3495
|
+
interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThreadsReportInteractFollow, TOmitFilterDto> {
|
|
3485
3496
|
}
|
|
3486
3497
|
|
|
3487
3498
|
interface FindThreadsReportInteractReplyCommentDto extends IBaseDto, IThreadsReportInteractReplyComment {
|
|
3488
3499
|
}
|
|
3489
|
-
interface FilterThreadsReportInteractReplyCommentDto extends
|
|
3500
|
+
interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyComment, TOmitFilterDto> {
|
|
3490
3501
|
}
|
|
3491
3502
|
|
|
3492
3503
|
interface FindThreadsSettingPostDto extends IBaseDto, IThreadsSettingPost {
|
|
3493
3504
|
}
|
|
3494
|
-
interface FilterThreadsSettingPostDto extends
|
|
3505
|
+
interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSettingPost, TOmitFilterDto> {
|
|
3495
3506
|
}
|
|
3496
3507
|
|
|
3497
3508
|
interface FindThreadsSettingInteractFollowDto extends IBaseDto, IThreadsSettingInteractFollow {
|
|
3498
3509
|
}
|
|
3499
|
-
interface FilterThreadsSettingInteractFollowDto extends
|
|
3510
|
+
interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractFollow, TOmitFilterDto> {
|
|
3500
3511
|
}
|
|
3501
3512
|
|
|
3502
3513
|
interface FindThreadsSettingInteractReplyCommentDto extends IBaseDto, IThreadsSettingInteractReplyComment {
|
|
3503
3514
|
}
|
|
3504
|
-
interface FilterThreadsSettingInteractReplyCommentDto extends
|
|
3515
|
+
interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyComment, TOmitFilterDto> {
|
|
3505
3516
|
}
|
|
3506
3517
|
|
|
3507
3518
|
interface FindInstagramReportPostHighLightDto extends IBaseDto, IInstagramReportPostHighLight {
|
|
3508
3519
|
}
|
|
3509
|
-
interface FilterInstagramReportPostHighLightDto extends
|
|
3520
|
+
interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IInstagramReportPostHighLight, TOmitFilterDto> {
|
|
3510
3521
|
}
|
|
3511
3522
|
|
|
3512
3523
|
interface FindInstagramReportPostNewDto extends IBaseDto, IInstagramReportPostNew {
|
|
3513
3524
|
}
|
|
3514
|
-
interface FilterInstagramReportPostNewDto extends
|
|
3525
|
+
interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagramReportPostNew, TOmitFilterDto> {
|
|
3515
3526
|
}
|
|
3516
3527
|
|
|
3517
3528
|
interface FindInstagramReportPostReelDto extends IBaseDto, IInstagramReportPostReel {
|
|
3518
3529
|
}
|
|
3519
|
-
interface FilterInstagramReportPostReelDto extends
|
|
3530
|
+
interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagramReportPostReel, TOmitFilterDto> {
|
|
3520
3531
|
}
|
|
3521
3532
|
|
|
3522
3533
|
interface FindInstagramReportPostStoryDto extends IBaseDto, IInstagramReportPostStory {
|
|
3523
3534
|
}
|
|
3524
|
-
interface FilterInstagramReportPostStoryDto extends
|
|
3535
|
+
interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstagramReportPostStory, TOmitFilterDto> {
|
|
3525
3536
|
}
|
|
3526
3537
|
|
|
3527
3538
|
interface FindInstagramReportInteractReplyCommentDto extends IBaseDto, IInstagramReportInteractReplyComment {
|
|
3528
3539
|
}
|
|
3529
|
-
interface FilterInstagramReportInteractReplyCommentDto extends
|
|
3540
|
+
interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyComment, TOmitFilterDto> {
|
|
3530
3541
|
}
|
|
3531
3542
|
|
|
3532
3543
|
interface FindInstagramReportInteractReelDto extends IBaseDto, IInstagramReportInteractReel {
|
|
3533
3544
|
}
|
|
3534
|
-
interface FilterInstagramReportInteractReelDto extends
|
|
3545
|
+
interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IInstagramReportInteractReel, TOmitFilterDto> {
|
|
3535
3546
|
}
|
|
3536
3547
|
|
|
3537
3548
|
interface FindInstagramReportInteractStoryDto extends IBaseDto, IInstagramReportInteractStory {
|
|
3538
3549
|
}
|
|
3539
|
-
interface FilterInstagramReportInteractStoryDto extends
|
|
3550
|
+
interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
|
|
3540
3551
|
}
|
|
3541
3552
|
|
|
3542
3553
|
interface FindInstagramReportInteractExploreDto extends IBaseDto, IInstagramReportInteractExplore {
|
|
3543
3554
|
}
|
|
3544
|
-
interface FilterInstagramReportInteractExploreDto extends
|
|
3555
|
+
interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<IInstagramReportInteractExplore, TOmitFilterDto> {
|
|
3545
3556
|
}
|
|
3546
3557
|
|
|
3547
3558
|
interface FindInstagramReportInteractReplyMessageDto extends IBaseDto, IInstagramReportInteractReplyMessage {
|
|
3548
3559
|
}
|
|
3549
|
-
interface FilterInstagramReportInteractReplyMessageDto extends
|
|
3560
|
+
interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyMessage, TOmitFilterDto> {
|
|
3550
3561
|
}
|
|
3551
3562
|
|
|
3552
3563
|
interface FindInstagramReportInteractFollowDto extends IBaseDto, IInstagramReportInteractFollow {
|
|
3553
3564
|
}
|
|
3554
|
-
interface FilterInstagramReportInteractFollowDto extends
|
|
3565
|
+
interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<IInstagramReportInteractFollow, TOmitFilterDto> {
|
|
3555
3566
|
}
|
|
3556
3567
|
|
|
3557
3568
|
interface FindInstagramSettingInteractExploreDto extends IBaseDto, IInstagramSettingInteractExplore {
|
|
3558
3569
|
}
|
|
3559
|
-
interface FilterInstagramSettingInteractExploreDto extends
|
|
3570
|
+
interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<IInstagramSettingInteractExplore, TOmitFilterDto> {
|
|
3560
3571
|
}
|
|
3561
3572
|
|
|
3562
3573
|
interface FindInstagramSettingInteractFollowDto extends IBaseDto, IInstagramSettingInteractFollow {
|
|
3563
3574
|
}
|
|
3564
|
-
interface FilterInstagramSettingInteractFollowDto extends
|
|
3575
|
+
interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractFollow, TOmitFilterDto> {
|
|
3565
3576
|
}
|
|
3566
3577
|
|
|
3567
3578
|
interface FindInstagramSettingInteractReelDto extends IBaseDto, IInstagramSettingInteractReel {
|
|
3568
3579
|
}
|
|
3569
|
-
interface FilterInstagramSettingInteractReelDto extends
|
|
3580
|
+
interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReel, TOmitFilterDto> {
|
|
3570
3581
|
}
|
|
3571
3582
|
|
|
3572
3583
|
interface FindInstagramSettingReplyCommentDto extends IBaseDto, IInstagramSettingInteractReplyComment {
|
|
3573
3584
|
}
|
|
3574
|
-
interface FilterInstagramSettingReplyCommentDto extends
|
|
3585
|
+
interface FilterInstagramSettingReplyCommentDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyComment, TOmitFilterDto> {
|
|
3575
3586
|
}
|
|
3576
3587
|
|
|
3577
3588
|
interface FindInstagramSettingReplyMessageDto extends IBaseDto, IInstagramSettingInteractReplyMessage {
|
|
3578
3589
|
}
|
|
3579
|
-
interface FilterInstagramSettingReplyMessageDto extends
|
|
3590
|
+
interface FilterInstagramSettingReplyMessageDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyMessage, TOmitFilterDto> {
|
|
3580
3591
|
}
|
|
3581
3592
|
|
|
3582
3593
|
interface FindInstagramSettingStoryDto extends IBaseDto, IInstagramSettingInteractStory {
|
|
3583
3594
|
}
|
|
3584
|
-
interface FilterInstagramSettingStoryDto extends
|
|
3595
|
+
interface FilterInstagramSettingStoryDto extends IFilterBaseDto, Omit<IInstagramSettingInteractStory, TOmitFilterDto> {
|
|
3585
3596
|
}
|
|
3586
3597
|
|
|
3587
3598
|
interface FindInstagramSettingUnFollowDto extends IBaseDto, IInstagramSettingInteractUnFollow {
|
|
3588
3599
|
}
|
|
3589
|
-
interface FilterInstagramSettingUnFollowDto extends
|
|
3600
|
+
interface FilterInstagramSettingUnFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractUnFollow, TOmitFilterDto> {
|
|
3590
3601
|
}
|
|
3591
3602
|
|
|
3592
3603
|
interface FindInstagramSettingPostDto extends IBaseDto, IInstagramSettingPost {
|
|
3593
3604
|
}
|
|
3594
|
-
interface FilterInstagramSettingPostDto extends
|
|
3605
|
+
interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramSettingPost, TOmitFilterDto> {
|
|
3595
3606
|
}
|
|
3596
3607
|
|
|
3597
3608
|
interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
@@ -3606,7 +3617,7 @@ interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
|
3606
3617
|
}>;
|
|
3607
3618
|
}>;
|
|
3608
3619
|
}
|
|
3609
|
-
interface FilterManagerSheetDto extends
|
|
3620
|
+
interface FilterManagerSheetDto extends IFilterBaseDto, Omit<IManagerSheet, TOmitFilterDto> {
|
|
3610
3621
|
}
|
|
3611
3622
|
|
|
3612
3623
|
interface FindIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
@@ -3626,7 +3637,7 @@ interface FindForReviewDto {
|
|
|
3626
3637
|
departmentWork: IDepartment;
|
|
3627
3638
|
sheetWorks: ISheetWork[];
|
|
3628
3639
|
}
|
|
3629
|
-
interface FilterIManagerImageAIDto extends
|
|
3640
|
+
interface FilterIManagerImageAIDto extends IFilterBaseDto, Omit<IManagerImageAI, TOmitFilterDto> {
|
|
3630
3641
|
}
|
|
3631
3642
|
|
|
3632
3643
|
interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
@@ -3646,12 +3657,12 @@ interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
|
3646
3657
|
code2FA: string;
|
|
3647
3658
|
};
|
|
3648
3659
|
}
|
|
3649
|
-
interface FilterIAccountEmailDto extends
|
|
3660
|
+
interface FilterIAccountEmailDto extends IFilterBaseDto, Omit<IAccountEmail, TOmitFilterDto> {
|
|
3650
3661
|
}
|
|
3651
3662
|
|
|
3652
3663
|
interface FindHistoryTaskAIImageDto extends IBaseDto, IHistoryTaskAIImage {
|
|
3653
3664
|
}
|
|
3654
|
-
interface FilterHistoryTaskAIImageDto extends
|
|
3665
|
+
interface FilterHistoryTaskAIImageDto extends IFilterBaseDto, Omit<IHistoryTaskAIImage, TOmitFilterDto> {
|
|
3655
3666
|
}
|
|
3656
3667
|
|
|
3657
3668
|
interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
@@ -3662,17 +3673,17 @@ interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
|
3662
3673
|
listChannels: IAccountAIVoiceChannel[];
|
|
3663
3674
|
}>;
|
|
3664
3675
|
}
|
|
3665
|
-
interface FilterAccountAIVoiceDto extends
|
|
3676
|
+
interface FilterAccountAIVoiceDto extends IFilterBaseDto, Omit<IAccountAIVoice, TOmitFilterDto> {
|
|
3666
3677
|
}
|
|
3667
3678
|
|
|
3668
3679
|
interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
3669
3680
|
}
|
|
3670
|
-
interface FilterIAccountAIVoiceInfoDto extends
|
|
3681
|
+
interface FilterIAccountAIVoiceInfoDto extends IFilterBaseDto, Omit<IAccountAIVoiceInfo, TOmitFilterDto> {
|
|
3671
3682
|
}
|
|
3672
3683
|
|
|
3673
3684
|
interface FindHistoryTaskAIVoiceDto extends IBaseDto, IHistoryTaskAIVoice {
|
|
3674
3685
|
}
|
|
3675
|
-
interface FilterHistoryTaskAIVoiceDto extends
|
|
3686
|
+
interface FilterHistoryTaskAIVoiceDto extends IFilterBaseDto, Omit<IHistoryTaskAIVoice, TOmitFilterDto> {
|
|
3676
3687
|
}
|
|
3677
3688
|
|
|
3678
3689
|
interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
@@ -3683,12 +3694,12 @@ interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
|
3683
3694
|
listChannels: IAccountAIImageChannel[];
|
|
3684
3695
|
}>;
|
|
3685
3696
|
}
|
|
3686
|
-
interface FilterAccountAIImageDto extends
|
|
3697
|
+
interface FilterAccountAIImageDto extends IFilterBaseDto, Omit<IAccountAIImage, TOmitFilterDto> {
|
|
3687
3698
|
}
|
|
3688
3699
|
|
|
3689
3700
|
interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
3690
3701
|
}
|
|
3691
|
-
interface FilterIAccountAIImageInfoDto extends
|
|
3702
|
+
interface FilterIAccountAIImageInfoDto extends IFilterBaseDto, Omit<IAccountAIImageInfo, TOmitFilterDto> {
|
|
3692
3703
|
}
|
|
3693
3704
|
|
|
3694
3705
|
interface FindAccountAIContentDto extends IBaseDto, IAccountAIContent {
|
|
@@ -3699,27 +3710,27 @@ interface FindAccountAIContentDto extends IBaseDto, IAccountAIContent {
|
|
|
3699
3710
|
listChannels: IAccountAIContentChannel[];
|
|
3700
3711
|
}>;
|
|
3701
3712
|
}
|
|
3702
|
-
interface FilterAccountAIContentDto extends
|
|
3713
|
+
interface FilterAccountAIContentDto extends IFilterBaseDto, Omit<IAccountAIContent, TOmitFilterDto> {
|
|
3703
3714
|
}
|
|
3704
3715
|
|
|
3705
3716
|
interface FindIAccountAIContentInfoDto extends IBaseDto, IAccountAIContentInfo {
|
|
3706
3717
|
}
|
|
3707
|
-
interface FilterIAccountAIContentInfoDto extends
|
|
3718
|
+
interface FilterIAccountAIContentInfoDto extends IFilterBaseDto, Omit<IAccountAIContentInfo, TOmitFilterDto> {
|
|
3708
3719
|
}
|
|
3709
3720
|
|
|
3710
3721
|
interface FindHistoryTaskAIContentDto extends IBaseDto, IHistoryTaskAIContent {
|
|
3711
3722
|
}
|
|
3712
|
-
interface FilterHistoryTaskAIContentDto extends
|
|
3723
|
+
interface FilterHistoryTaskAIContentDto extends IFilterBaseDto, Omit<IHistoryTaskAIContent, TOmitFilterDto> {
|
|
3713
3724
|
}
|
|
3714
3725
|
|
|
3715
3726
|
interface FindHistoryTaskCanvaDto extends IBaseDto, IHistoryTaskCanva {
|
|
3716
3727
|
}
|
|
3717
|
-
interface FilterHistoryTaskCanvaDto extends
|
|
3728
|
+
interface FilterHistoryTaskCanvaDto extends IFilterBaseDto, Omit<IHistoryTaskCanva, TOmitFilterDto> {
|
|
3718
3729
|
}
|
|
3719
3730
|
|
|
3720
3731
|
interface FindAccountCanvaDto extends IBaseDto, IAccountCanva {
|
|
3721
3732
|
}
|
|
3722
|
-
interface FilterAccountCanvaDto extends
|
|
3733
|
+
interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmitFilterDto> {
|
|
3723
3734
|
}
|
|
3724
3735
|
interface FindOverviewAccountCanvaDto {
|
|
3725
3736
|
totalAccounts: {
|
|
@@ -3746,7 +3757,7 @@ interface FindOverviewAccountCanvaDto {
|
|
|
3746
3757
|
};
|
|
3747
3758
|
}
|
|
3748
3759
|
|
|
3749
|
-
interface FilterAccountDriveDto extends
|
|
3760
|
+
interface FilterAccountDriveDto extends IFilterBaseDto, Omit<IAccountDrive, TOmitFilterDto> {
|
|
3750
3761
|
}
|
|
3751
3762
|
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3752
3763
|
}
|
|
@@ -3775,7 +3786,7 @@ interface FindOverviewAccountDriveDto {
|
|
|
3775
3786
|
};
|
|
3776
3787
|
}
|
|
3777
3788
|
|
|
3778
|
-
interface FilterProxyDto extends
|
|
3789
|
+
interface FilterProxyDto extends IFilterBaseDto, Omit<IProxy, TOmitFilterDto> {
|
|
3779
3790
|
}
|
|
3780
3791
|
interface FindOverviewProxyDto {
|
|
3781
3792
|
totalProxies: {
|
|
@@ -3803,25 +3814,26 @@ interface FindProxyDto extends IBaseDto, IProxy {
|
|
|
3803
3814
|
listDeviceName: string[];
|
|
3804
3815
|
listDeviceOS: string[];
|
|
3805
3816
|
ipRunCountDevice: number;
|
|
3817
|
+
pcName: string;
|
|
3806
3818
|
}
|
|
3807
3819
|
|
|
3808
3820
|
interface FindAccountVPSDto extends IBaseDto, IAccountVPS {
|
|
3809
3821
|
}
|
|
3810
|
-
interface FilterAccountVPSDto extends
|
|
3822
|
+
interface FilterAccountVPSDto extends IFilterBaseDto, Omit<IAccountVPS, TOmitFilterDto> {
|
|
3811
3823
|
}
|
|
3812
3824
|
|
|
3813
3825
|
interface FindAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
3814
3826
|
}
|
|
3815
|
-
interface FilterAccountVPSGroupDto extends
|
|
3827
|
+
interface FilterAccountVPSGroupDto extends IFilterBaseDto, Omit<IAccountVPSGroup, TOmitFilterDto> {
|
|
3816
3828
|
}
|
|
3817
3829
|
|
|
3818
|
-
interface FilterAccountVPNDto extends
|
|
3830
|
+
interface FilterAccountVPNDto extends IFilterBaseDto, Omit<IAccountVPN, TOmitFilterDto> {
|
|
3819
3831
|
}
|
|
3820
3832
|
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3821
|
-
pcName: string;
|
|
3822
3833
|
listDeviceKey: string[];
|
|
3823
3834
|
listDeviceName: string[];
|
|
3824
3835
|
listDeviceOS: ETypeDeviceOS[];
|
|
3836
|
+
pcName: string;
|
|
3825
3837
|
numberRunOnDevice: number;
|
|
3826
3838
|
}
|
|
3827
3839
|
interface FindOverviewAccountVPNDto {
|
|
@@ -3863,9 +3875,16 @@ interface FindOverviewAccountVPNDto {
|
|
|
3863
3875
|
};
|
|
3864
3876
|
}
|
|
3865
3877
|
|
|
3866
|
-
interface FilterAccountCHPlayICloudDto extends
|
|
3878
|
+
interface FilterAccountCHPlayICloudDto extends IFilterBaseDto, Omit<IAccountCHPlayICloud, TOmitFilterDto> {
|
|
3879
|
+
os: ETypeDeviceOS;
|
|
3880
|
+
pc: string;
|
|
3867
3881
|
}
|
|
3868
3882
|
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3883
|
+
listDeviceKeys: string[];
|
|
3884
|
+
listDeviceName: string[];
|
|
3885
|
+
listDeviceOS: string[];
|
|
3886
|
+
ipRunCountDevice: number;
|
|
3887
|
+
pcName: string;
|
|
3869
3888
|
}
|
|
3870
3889
|
interface FindOverviewAccountCHPlayICloudDto {
|
|
3871
3890
|
totalAccounts: {
|
|
@@ -3902,77 +3921,77 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
|
3902
3921
|
|
|
3903
3922
|
interface FindInstagramHistoryGroupDto extends IBaseDto, IInstagramHistoryGroup {
|
|
3904
3923
|
}
|
|
3905
|
-
interface FilterInstagramHistoryGroupDto extends
|
|
3924
|
+
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IInstagramHistoryGroup, TOmitFilterDto> {
|
|
3906
3925
|
}
|
|
3907
3926
|
|
|
3908
3927
|
interface FindInstagramHistoryAutoSyncDto extends IBaseDto, IInstagramHistoryAutoSync {
|
|
3909
3928
|
}
|
|
3910
|
-
interface FilterInstagramHistoryAutoSyncDto extends
|
|
3929
|
+
interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, Omit<IInstagramHistoryAutoSync, TOmitFilterDto> {
|
|
3911
3930
|
}
|
|
3912
3931
|
|
|
3913
3932
|
interface FindInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistoryChangeCreate {
|
|
3914
3933
|
}
|
|
3915
|
-
interface FilterInstagramHistoryChangeCreateDto extends
|
|
3934
|
+
interface FilterInstagramHistoryChangeCreateDto extends IFilterBaseDto, Omit<IInstagramHistoryChangeCreate, TOmitFilterDto> {
|
|
3916
3935
|
}
|
|
3917
3936
|
|
|
3918
3937
|
interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
|
|
3919
3938
|
}
|
|
3920
|
-
interface FilterThreadsAccountGroupDto extends
|
|
3939
|
+
interface FilterThreadsAccountGroupDto extends IFilterBaseDto, Omit<IThreadsAccountGroup, TOmitFilterDto> {
|
|
3921
3940
|
}
|
|
3922
3941
|
|
|
3923
3942
|
interface FindDeviceDto extends IBaseDto, IDevice {
|
|
3924
3943
|
}
|
|
3925
|
-
interface FilterDeviceDto extends
|
|
3944
|
+
interface FilterDeviceDto extends IFilterBaseDto, Omit<IDevice, TOmitFilterDto> {
|
|
3926
3945
|
}
|
|
3927
3946
|
|
|
3928
3947
|
interface FindTaskThreadsPostDto extends IBaseDto, ITaskThreadsPost {
|
|
3929
3948
|
}
|
|
3930
|
-
interface FilterTaskThreadsPostDto extends
|
|
3949
|
+
interface FilterTaskThreadsPostDto extends IFilterBaseDto, Omit<ITaskThreadsPost, TOmitFilterDto> {
|
|
3931
3950
|
}
|
|
3932
3951
|
|
|
3933
3952
|
interface FindTaskThreadsFollowDto extends IBaseDto, ITaskThreadsFollow {
|
|
3934
3953
|
}
|
|
3935
|
-
interface FilterTaskThreadsFollowDto extends
|
|
3954
|
+
interface FilterTaskThreadsFollowDto extends IFilterBaseDto, Omit<ITaskThreadsFollow, TOmitFilterDto> {
|
|
3936
3955
|
}
|
|
3937
3956
|
|
|
3938
3957
|
interface FindTaskThreadsReplyCommentDto extends IBaseDto, ITaskThreadsReplyComment {
|
|
3939
3958
|
}
|
|
3940
|
-
interface FilterTaskThreadsReplyCommentDto extends
|
|
3959
|
+
interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, Omit<ITaskThreadsReplyComment, TOmitFilterDto> {
|
|
3941
3960
|
}
|
|
3942
3961
|
|
|
3943
3962
|
interface FindTaskInstagramBlockUserDto extends IBaseDto, ITaskInstagramBlockUser {
|
|
3944
3963
|
}
|
|
3945
|
-
interface FilterTaskInstagramBlockUserDto extends
|
|
3964
|
+
interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, Omit<ITaskInstagramBlockUser, TOmitFilterDto> {
|
|
3946
3965
|
}
|
|
3947
3966
|
|
|
3948
3967
|
interface FindTaskInstagramChangeInfoDto extends IBaseDto, ITaskInstagramChangeInfo {
|
|
3949
3968
|
}
|
|
3950
|
-
interface FilterTaskInstagramChangeInfoDto extends
|
|
3969
|
+
interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, Omit<ITaskInstagramChangeInfo, TOmitFilterDto> {
|
|
3951
3970
|
}
|
|
3952
3971
|
|
|
3953
3972
|
interface FindTaskInstagramFollowDto extends IBaseDto, ITaskInstagramFollow {
|
|
3954
3973
|
}
|
|
3955
|
-
interface FilterTaskInstagramFollowDto extends
|
|
3974
|
+
interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
|
|
3956
3975
|
}
|
|
3957
3976
|
|
|
3958
3977
|
interface FindTaskInstagramPostDto extends IBaseDto, ITaskInstagramPost {
|
|
3959
3978
|
}
|
|
3960
|
-
interface FilterTaskInstagramPostDto extends
|
|
3979
|
+
interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
|
|
3961
3980
|
}
|
|
3962
3981
|
|
|
3963
3982
|
interface FindTaskInstagramReplyCommentDto extends IBaseDto, ITaskInstagramReplyComment {
|
|
3964
3983
|
}
|
|
3965
|
-
interface FilterTaskInstagramReplyCommentDto extends
|
|
3984
|
+
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
|
|
3966
3985
|
}
|
|
3967
3986
|
|
|
3968
3987
|
interface FindTaskInstagramReplyMessageDto extends IBaseDto, ITaskInstagramReplyMessage {
|
|
3969
3988
|
}
|
|
3970
|
-
interface FilterTaskInstagramReplyMessageDto extends
|
|
3989
|
+
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, Omit<ITaskInstagramReplyMessage, TOmitFilterDto> {
|
|
3971
3990
|
}
|
|
3972
3991
|
|
|
3973
3992
|
interface FindTaskToolMonitorDto extends IBaseDto, ITaskToolMonitor {
|
|
3974
3993
|
}
|
|
3975
|
-
interface FilterTaskToolMonitorDto extends
|
|
3994
|
+
interface FilterTaskToolMonitorDto extends IFilterBaseDto, Omit<ITaskToolMonitor, TOmitFilterDto> {
|
|
3976
3995
|
}
|
|
3977
3996
|
|
|
3978
3997
|
interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
@@ -3986,64 +4005,64 @@ interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
|
3986
4005
|
accountInfo: IAccountAIContentInfo;
|
|
3987
4006
|
accountChannel: IAccountAIContentChannel;
|
|
3988
4007
|
}
|
|
3989
|
-
interface FilterTaskAIContentDto extends
|
|
4008
|
+
interface FilterTaskAIContentDto extends IFilterBaseDto, Omit<ITaskAIContent, TOmitFilterDto> {
|
|
3990
4009
|
}
|
|
3991
4010
|
|
|
3992
4011
|
interface FindTaskAIImageVoiceCanvaDto extends IBaseDto, ITaskAIImageVoiceCanva {
|
|
3993
4012
|
}
|
|
3994
|
-
interface FilterTaskAIImageVoiceCanvaDto extends
|
|
4013
|
+
interface FilterTaskAIImageVoiceCanvaDto extends IFilterBaseDto, Omit<ITaskAIImageVoiceCanva, TOmitFilterDto> {
|
|
3995
4014
|
}
|
|
3996
4015
|
|
|
3997
4016
|
interface FindPCDto extends IBaseDto, IPC {
|
|
3998
4017
|
}
|
|
3999
|
-
interface FilterPCDto extends
|
|
4018
|
+
interface FilterPCDto extends IFilterBaseDto, Omit<IPC, TOmitFilterDto> {
|
|
4000
4019
|
}
|
|
4001
4020
|
|
|
4002
4021
|
interface FindSheetsToolDto extends IBaseDto, ISheetsTool {
|
|
4003
4022
|
}
|
|
4004
|
-
interface FilterSheetsToolDto extends
|
|
4023
|
+
interface FilterSheetsToolDto extends IFilterBaseDto, Omit<ISheetsTool, TOmitFilterDto> {
|
|
4005
4024
|
}
|
|
4006
4025
|
|
|
4007
4026
|
interface FindManagerWorkDto extends IBaseDto, IManagerWork {
|
|
4008
4027
|
}
|
|
4009
|
-
interface FilterManagerWorkDto extends
|
|
4028
|
+
interface FilterManagerWorkDto extends IFilterBaseDto, Omit<IManagerWork, TOmitFilterDto> {
|
|
4010
4029
|
}
|
|
4011
4030
|
|
|
4012
4031
|
interface FindSheetWorkDto extends IBaseDto, ISheetWork {
|
|
4013
4032
|
}
|
|
4014
|
-
interface FilterSheetWorkDto extends
|
|
4033
|
+
interface FilterSheetWorkDto extends IFilterBaseDto, Omit<ISheetWork, TOmitFilterDto> {
|
|
4015
4034
|
}
|
|
4016
4035
|
|
|
4017
4036
|
interface FindSheetWorkManagerDto extends IBaseDto, ISheetWorkManager {
|
|
4018
4037
|
}
|
|
4019
|
-
interface FilterSheetWorkManagerDto extends
|
|
4038
|
+
interface FilterSheetWorkManagerDto extends IFilterBaseDto, Omit<ISheetWorkManager, TOmitFilterDto> {
|
|
4020
4039
|
}
|
|
4021
4040
|
|
|
4022
4041
|
interface FindBlogDto extends IBaseDto, IBlog {
|
|
4023
4042
|
}
|
|
4024
|
-
interface FilterBlogDto extends
|
|
4043
|
+
interface FilterBlogDto extends IFilterBaseDto, Omit<IBlog, TOmitFilterDto> {
|
|
4025
4044
|
}
|
|
4026
4045
|
|
|
4027
4046
|
interface FindBlogCategoryDto extends IBaseDto, IBlogCategory {
|
|
4028
4047
|
}
|
|
4029
|
-
interface FilterBlogCategoryDto extends
|
|
4048
|
+
interface FilterBlogCategoryDto extends IFilterBaseDto, Omit<IBlogCategory, TOmitFilterDto> {
|
|
4030
4049
|
}
|
|
4031
4050
|
|
|
4032
4051
|
interface FindLarkDto extends IBaseDto, ILark {
|
|
4033
4052
|
teamNamesAssignments: string[];
|
|
4034
4053
|
userNamesAssignments: string[];
|
|
4035
4054
|
}
|
|
4036
|
-
interface FilterLarkDto extends
|
|
4055
|
+
interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
|
|
4037
4056
|
}
|
|
4038
4057
|
|
|
4039
4058
|
interface FindTeamDto extends Omit<IBaseDto, 'department'>, ITeam {
|
|
4040
4059
|
}
|
|
4041
|
-
interface FilterTeamDto extends Omit<
|
|
4060
|
+
interface FilterTeamDto extends IFilterBaseDto, Omit<ITeam, TOmitFilterDto> {
|
|
4042
4061
|
}
|
|
4043
4062
|
|
|
4044
4063
|
interface FindDepartmentDto extends IBaseDto, IDepartment {
|
|
4045
4064
|
}
|
|
4046
|
-
interface FilterDepartmentDto extends
|
|
4065
|
+
interface FilterDepartmentDto extends IFilterBaseDto, Omit<IDepartment, TOmitFilterDto> {
|
|
4047
4066
|
}
|
|
4048
4067
|
|
|
4049
4068
|
type index_ExportDto = ExportDto;
|
|
@@ -4202,10 +4221,12 @@ type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
|
|
|
4202
4221
|
type index_FindUserDto = FindUserDto;
|
|
4203
4222
|
type index_IBaseDto = IBaseDto;
|
|
4204
4223
|
type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
4224
|
+
type index_IFilterBaseDto = IFilterBaseDto;
|
|
4205
4225
|
type index_ImportDto = ImportDto;
|
|
4206
4226
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4227
|
+
type index_TOmitFilterDto = TOmitFilterDto;
|
|
4207
4228
|
declare namespace index {
|
|
4208
|
-
export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, 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_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, 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_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, 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_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, 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_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, 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_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, 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_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, 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_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto };
|
|
4229
|
+
export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, 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_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, 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_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, 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_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, 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_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, 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_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, 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_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, 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_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
|
|
4209
4230
|
}
|
|
4210
4231
|
|
|
4211
|
-
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, 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 FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, 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 IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, 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 IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, 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 ISheetsTool, 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 IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, 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, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
|
|
4232
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, 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 FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, 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 IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, 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 IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, 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 ISheetsTool, 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 IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, 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, index$a as Web };
|