automation-lib 5.4.161 → 5.4.163

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 CHANGED
@@ -1015,10 +1015,11 @@ declare enum EStatusAccountSocialFolderName {
1015
1015
  }
1016
1016
 
1017
1017
  declare enum EStatusAccountSocialLogin {
1018
- Active = "Active",
1019
- InActive = "InActive",
1018
+ Available = "Available",
1019
+ UnAvailable = "UnAvailable",
1020
1020
  Locked = "Locked",
1021
- Pending = "Pending"
1021
+ Pending = "Pending",
1022
+ NA = "NA"
1022
1023
  }
1023
1024
 
1024
1025
  declare enum EStatusAccountSocialLoginEmail {
@@ -1074,6 +1075,7 @@ declare enum EStatusCreateNew {
1074
1075
 
1075
1076
  declare enum EStatusSocialAccountRaw {
1076
1077
  Available = "Available",
1078
+ Pending = "Pending",
1077
1079
  InUse = "InUse",
1078
1080
  Locked = "Locked",
1079
1081
  Suspended = "Suspended"
@@ -2984,11 +2986,13 @@ interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAcc
2984
2986
  }
2985
2987
 
2986
2988
  interface FindOverviewThreadsHistoryCreateNewDto {
2987
- totalAccounts: number;
2988
- totalPC: number;
2989
- totalLeader: number;
2989
+ totalDepartments: number;
2990
+ totalLeaders: number;
2990
2991
  totalMembers: number;
2992
+ totalTeams: number;
2993
+ totalPC: number;
2991
2994
  totalAccountGroups: number;
2995
+ totalAccounts: number;
2992
2996
  totalIdea: number;
2993
2997
  totalNiche: number;
2994
2998
  totalType: {
@@ -2996,10 +3000,16 @@ interface FindOverviewThreadsHistoryCreateNewDto {
2996
3000
  TM: number;
2997
3001
  NTM: number;
2998
3002
  };
2999
- totalDevice: {
3000
- total: number;
3001
- android: number;
3002
- ios: number;
3003
+ totalSocial: {
3004
+ active: number;
3005
+ pending: number;
3006
+ inactive: number;
3007
+ suspended: number;
3008
+ };
3009
+ totalLogin: {
3010
+ available: number;
3011
+ unAvailable: number;
3012
+ na: number;
3003
3013
  };
3004
3014
  }
3005
3015
  interface FindThreadsHistoryCreateNewDto extends IFindBaseDto, IThreadsHistoryCreateNew {
@@ -3538,63 +3548,14 @@ interface FindOverViewThreadsAccountDto {
3538
3548
  totalDepartments: number;
3539
3549
  }
3540
3550
 
3541
- interface FindThreadsHistoryAutoPostDto extends IFindBaseDto, IThreadsHistoryAutoPost {
3542
- deviceInfo: {
3543
- deviceKey: string;
3544
- deviceName: string;
3545
- deviceType: string;
3546
- deviceTypeAppClone: string;
3547
- deviceNameAppClone: string;
3548
- nameAppClone: string;
3549
- };
3550
- accountUsername: string;
3551
- accountFullName: string;
3552
- idea: {
3553
- id: string;
3554
- name: string;
3555
- };
3556
- niche: {
3557
- id: string;
3558
- name: string;
3559
- };
3560
- type: ETypeManagerWorkClassify;
3561
- pc: {
3562
- id: string;
3563
- name: string;
3564
- };
3565
- device: {
3566
- id: string;
3567
- name: string;
3568
- };
3569
- accountGroup: {
3570
- id: string;
3571
- name: string;
3572
- };
3573
- accountInfo: {
3574
- id: string;
3575
- name: string;
3576
- nameAppCloneSocial: string;
3577
- accountDeviceTypeAppClone: string;
3578
- accountDeviceNameAppClone: string;
3579
- };
3580
- }
3581
- interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
3582
- idea: string[];
3583
- niche: string[];
3584
- type: ETypeManagerWorkClassify[];
3585
- pc: string[];
3586
- device: string[];
3587
- accountGroup: string[];
3588
- account: string[];
3589
- sheetName: string[];
3590
- }
3591
-
3592
3551
  interface FindOverViewThreadsReportPostDto {
3593
- totalAccounts: number;
3594
- totalPC: number;
3595
- totalLeader: number;
3552
+ totalDepartments: number;
3553
+ totalLeaders: number;
3596
3554
  totalMembers: number;
3555
+ totalTeams: number;
3556
+ totalPC: number;
3597
3557
  totalAccountGroups: number;
3558
+ totalAccounts: number;
3598
3559
  totalIdea: number;
3599
3560
  totalNiche: number;
3600
3561
  totalType: {
@@ -3602,14 +3563,21 @@ interface FindOverViewThreadsReportPostDto {
3602
3563
  TM: number;
3603
3564
  NTM: number;
3604
3565
  };
3605
- totalDevice: {
3606
- total: number;
3607
- android: number;
3608
- ios: number;
3566
+ totalSocial: {
3567
+ active: number;
3568
+ pending: number;
3569
+ inactive: number;
3570
+ suspended: number;
3609
3571
  };
3610
- totalPost: {
3572
+ totalLogin: {
3573
+ available: number;
3574
+ unAvailable: number;
3575
+ na: number;
3576
+ };
3577
+ totalStatusPost: {
3611
3578
  done: number;
3612
3579
  error: number;
3580
+ pending: number;
3613
3581
  unknown: number;
3614
3582
  };
3615
3583
  }
@@ -3628,11 +3596,13 @@ interface FilterThreadsReportPostDto extends IFilterBaseDto, IFilterBaseAccountS
3628
3596
  }
3629
3597
 
3630
3598
  interface FindOverViewThreadsReportInteractFollowDto {
3631
- totalAccounts: number;
3632
- totalPC: number;
3633
- totalLeader: number;
3599
+ totalDepartments: number;
3600
+ totalLeaders: number;
3634
3601
  totalMembers: number;
3602
+ totalTeams: number;
3603
+ totalPC: number;
3635
3604
  totalAccountGroups: number;
3605
+ totalAccounts: number;
3636
3606
  totalIdea: number;
3637
3607
  totalNiche: number;
3638
3608
  totalType: {
@@ -3640,10 +3610,16 @@ interface FindOverViewThreadsReportInteractFollowDto {
3640
3610
  TM: number;
3641
3611
  NTM: number;
3642
3612
  };
3643
- totalDevice: {
3644
- total: number;
3645
- android: number;
3646
- ios: number;
3613
+ totalSocial: {
3614
+ active: number;
3615
+ pending: number;
3616
+ inactive: number;
3617
+ suspended: number;
3618
+ };
3619
+ totalLogin: {
3620
+ available: number;
3621
+ unAvailable: number;
3622
+ na: number;
3647
3623
  };
3648
3624
  totalInteract: {
3649
3625
  done: number;
@@ -3666,11 +3642,13 @@ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, IFilterBa
3666
3642
  }
3667
3643
 
3668
3644
  interface FindOverViewThreadsReportInteractUnFollowDto {
3669
- totalAccounts: number;
3670
- totalPC: number;
3671
- totalLeader: number;
3645
+ totalDepartments: number;
3646
+ totalLeaders: number;
3672
3647
  totalMembers: number;
3648
+ totalTeams: number;
3649
+ totalPC: number;
3673
3650
  totalAccountGroups: number;
3651
+ totalAccounts: number;
3674
3652
  totalIdea: number;
3675
3653
  totalNiche: number;
3676
3654
  totalType: {
@@ -3678,10 +3656,16 @@ interface FindOverViewThreadsReportInteractUnFollowDto {
3678
3656
  TM: number;
3679
3657
  NTM: number;
3680
3658
  };
3681
- totalDevice: {
3682
- total: number;
3683
- android: number;
3684
- ios: number;
3659
+ totalSocial: {
3660
+ active: number;
3661
+ pending: number;
3662
+ inactive: number;
3663
+ suspended: number;
3664
+ };
3665
+ totalLogin: {
3666
+ available: number;
3667
+ unAvailable: number;
3668
+ na: number;
3685
3669
  };
3686
3670
  totalInteract: {
3687
3671
  done: number;
@@ -3704,11 +3688,13 @@ interface FilterThreadsReportInteractUnFollowDto extends IFilterBaseDto, IFilter
3704
3688
  }
3705
3689
 
3706
3690
  interface FindOverViewThreadsReportInteractReplyCommentDto {
3707
- totalAccounts: number;
3708
- totalPC: number;
3709
- totalLeader: number;
3691
+ totalDepartments: number;
3692
+ totalLeaders: number;
3710
3693
  totalMembers: number;
3694
+ totalTeams: number;
3695
+ totalPC: number;
3711
3696
  totalAccountGroups: number;
3697
+ totalAccounts: number;
3712
3698
  totalIdea: number;
3713
3699
  totalNiche: number;
3714
3700
  totalType: {
@@ -3716,10 +3702,16 @@ interface FindOverViewThreadsReportInteractReplyCommentDto {
3716
3702
  TM: number;
3717
3703
  NTM: number;
3718
3704
  };
3719
- totalDevice: {
3720
- total: number;
3721
- android: number;
3722
- ios: number;
3705
+ totalSocial: {
3706
+ active: number;
3707
+ pending: number;
3708
+ inactive: number;
3709
+ suspended: number;
3710
+ };
3711
+ totalLogin: {
3712
+ available: number;
3713
+ unAvailable: number;
3714
+ na: number;
3723
3715
  };
3724
3716
  totalInteract: {
3725
3717
  done: number;
@@ -3742,11 +3734,13 @@ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, IFi
3742
3734
  }
3743
3735
 
3744
3736
  interface FindOverViewThreadsReportInteractReplyMessageDto {
3745
- totalAccounts: number;
3746
- totalPC: number;
3747
- totalLeader: number;
3737
+ totalDepartments: number;
3738
+ totalLeaders: number;
3748
3739
  totalMembers: number;
3740
+ totalTeams: number;
3741
+ totalPC: number;
3749
3742
  totalAccountGroups: number;
3743
+ totalAccounts: number;
3750
3744
  totalIdea: number;
3751
3745
  totalNiche: number;
3752
3746
  totalType: {
@@ -3754,10 +3748,16 @@ interface FindOverViewThreadsReportInteractReplyMessageDto {
3754
3748
  TM: number;
3755
3749
  NTM: number;
3756
3750
  };
3757
- totalDevice: {
3758
- total: number;
3759
- android: number;
3760
- ios: number;
3751
+ totalSocial: {
3752
+ active: number;
3753
+ pending: number;
3754
+ inactive: number;
3755
+ suspended: number;
3756
+ };
3757
+ totalLogin: {
3758
+ available: number;
3759
+ unAvailable: number;
3760
+ na: number;
3761
3761
  };
3762
3762
  totalInteract: {
3763
3763
  done: number;
@@ -3780,11 +3780,13 @@ interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, IFi
3780
3780
  }
3781
3781
 
3782
3782
  interface FindOverViewThreadsSettingPostDto {
3783
- totalAccounts: number;
3784
- totalPC: number;
3785
- totalLeader: number;
3783
+ totalDepartments: number;
3784
+ totalLeaders: number;
3786
3785
  totalMembers: number;
3786
+ totalTeams: number;
3787
+ totalPC: number;
3787
3788
  totalAccountGroups: number;
3789
+ totalAccounts: number;
3788
3790
  totalIdea: number;
3789
3791
  totalNiche: number;
3790
3792
  totalType: {
@@ -3792,13 +3794,21 @@ interface FindOverViewThreadsSettingPostDto {
3792
3794
  TM: number;
3793
3795
  NTM: number;
3794
3796
  };
3795
- totalDevice: {
3796
- total: number;
3797
- android: number;
3798
- ios: number;
3797
+ totalSocial: {
3798
+ active: number;
3799
+ pending: number;
3800
+ inactive: number;
3801
+ suspended: number;
3802
+ };
3803
+ totalLogin: {
3804
+ available: number;
3805
+ unAvailable: number;
3806
+ na: number;
3807
+ };
3808
+ totalStatus: {
3809
+ active: number;
3810
+ inactive: number;
3799
3811
  };
3800
- statusActive: number;
3801
- statusInactive: number;
3802
3812
  }
3803
3813
  interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
3804
3814
  idea: {
@@ -3843,11 +3853,13 @@ interface FilterThreadsSettingPostDto extends IFilterBaseDto, IFilterBaseAccount
3843
3853
  }
3844
3854
 
3845
3855
  interface FindOverViewThreadsSettingInteractFollowDto {
3846
- totalAccounts: number;
3847
- totalPC: number;
3848
- totalLeader: number;
3856
+ totalDepartments: number;
3857
+ totalLeaders: number;
3849
3858
  totalMembers: number;
3859
+ totalTeams: number;
3860
+ totalPC: number;
3850
3861
  totalAccountGroups: number;
3862
+ totalAccounts: number;
3851
3863
  totalIdea: number;
3852
3864
  totalNiche: number;
3853
3865
  totalType: {
@@ -3855,13 +3867,21 @@ interface FindOverViewThreadsSettingInteractFollowDto {
3855
3867
  TM: number;
3856
3868
  NTM: number;
3857
3869
  };
3858
- totalDevice: {
3859
- total: number;
3860
- android: number;
3861
- ios: number;
3870
+ totalSocial: {
3871
+ active: number;
3872
+ pending: number;
3873
+ inactive: number;
3874
+ suspended: number;
3875
+ };
3876
+ totalLogin: {
3877
+ available: number;
3878
+ unAvailable: number;
3879
+ na: number;
3880
+ };
3881
+ totalStatus: {
3882
+ active: number;
3883
+ inactive: number;
3862
3884
  };
3863
- statusActive: number;
3864
- statusInactive: number;
3865
3885
  }
3866
3886
  interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSettingInteractFollow {
3867
3887
  idea: {
@@ -3906,11 +3926,13 @@ interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, IFilterB
3906
3926
  }
3907
3927
 
3908
3928
  interface FindOverViewThreadsSettingInteractUnFollowDto {
3909
- totalAccounts: number;
3910
- totalPC: number;
3911
- totalLeader: number;
3929
+ totalDepartments: number;
3930
+ totalLeaders: number;
3912
3931
  totalMembers: number;
3932
+ totalTeams: number;
3933
+ totalPC: number;
3913
3934
  totalAccountGroups: number;
3935
+ totalAccounts: number;
3914
3936
  totalIdea: number;
3915
3937
  totalNiche: number;
3916
3938
  totalType: {
@@ -3918,13 +3940,21 @@ interface FindOverViewThreadsSettingInteractUnFollowDto {
3918
3940
  TM: number;
3919
3941
  NTM: number;
3920
3942
  };
3921
- totalDevice: {
3922
- total: number;
3923
- android: number;
3924
- ios: number;
3943
+ totalSocial: {
3944
+ active: number;
3945
+ pending: number;
3946
+ inactive: number;
3947
+ suspended: number;
3948
+ };
3949
+ totalLogin: {
3950
+ available: number;
3951
+ unAvailable: number;
3952
+ na: number;
3953
+ };
3954
+ totalStatus: {
3955
+ active: number;
3956
+ inactive: number;
3925
3957
  };
3926
- statusActive: number;
3927
- statusInactive: number;
3928
3958
  }
3929
3959
  interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSettingInteractUnFollow {
3930
3960
  idea: {
@@ -3969,11 +3999,13 @@ interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, IFilte
3969
3999
  }
3970
4000
 
3971
4001
  interface FindOverViewThreadsSettingInteractReplyCommentDto {
3972
- totalAccounts: number;
3973
- totalPC: number;
3974
- totalLeader: number;
4002
+ totalDepartments: number;
4003
+ totalLeaders: number;
3975
4004
  totalMembers: number;
4005
+ totalTeams: number;
4006
+ totalPC: number;
3976
4007
  totalAccountGroups: number;
4008
+ totalAccounts: number;
3977
4009
  totalIdea: number;
3978
4010
  totalNiche: number;
3979
4011
  totalType: {
@@ -3981,13 +4013,21 @@ interface FindOverViewThreadsSettingInteractReplyCommentDto {
3981
4013
  TM: number;
3982
4014
  NTM: number;
3983
4015
  };
3984
- totalDevice: {
3985
- total: number;
3986
- android: number;
3987
- ios: number;
4016
+ totalSocial: {
4017
+ active: number;
4018
+ pending: number;
4019
+ inactive: number;
4020
+ suspended: number;
4021
+ };
4022
+ totalLogin: {
4023
+ available: number;
4024
+ unAvailable: number;
4025
+ na: number;
4026
+ };
4027
+ totalStatus: {
4028
+ active: number;
4029
+ inactive: number;
3988
4030
  };
3989
- statusActive: number;
3990
- statusInactive: number;
3991
4031
  }
3992
4032
  interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThreadsSettingInteractReplyComment {
3993
4033
  idea: {
@@ -4032,11 +4072,13 @@ interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, IF
4032
4072
  }
4033
4073
 
4034
4074
  interface FindOverViewThreadsSettingInteractReplyMessageDto {
4035
- totalAccounts: number;
4036
- totalPC: number;
4037
- totalLeader: number;
4075
+ totalDepartments: number;
4076
+ totalLeaders: number;
4038
4077
  totalMembers: number;
4078
+ totalTeams: number;
4079
+ totalPC: number;
4039
4080
  totalAccountGroups: number;
4081
+ totalAccounts: number;
4040
4082
  totalIdea: number;
4041
4083
  totalNiche: number;
4042
4084
  totalType: {
@@ -4044,13 +4086,21 @@ interface FindOverViewThreadsSettingInteractReplyMessageDto {
4044
4086
  TM: number;
4045
4087
  NTM: number;
4046
4088
  };
4047
- totalDevice: {
4048
- total: number;
4049
- android: number;
4050
- ios: number;
4089
+ totalSocial: {
4090
+ active: number;
4091
+ pending: number;
4092
+ inactive: number;
4093
+ suspended: number;
4094
+ };
4095
+ totalLogin: {
4096
+ available: number;
4097
+ unAvailable: number;
4098
+ na: number;
4099
+ };
4100
+ totalStatus: {
4101
+ active: number;
4102
+ inactive: number;
4051
4103
  };
4052
- statusActive: number;
4053
- statusInactive: number;
4054
4104
  }
4055
4105
  interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThreadsSettingInteractReplyMessage {
4056
4106
  idea: {
@@ -4095,11 +4145,13 @@ interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, IF
4095
4145
  }
4096
4146
 
4097
4147
  interface FindOverViewTaskThreadsPostDto {
4098
- totalAccounts: number;
4099
- totalPC: number;
4100
- totalLeader: number;
4148
+ totalDepartments: number;
4149
+ totalLeaders: number;
4101
4150
  totalMembers: number;
4151
+ totalTeams: number;
4152
+ totalPC: number;
4102
4153
  totalAccountGroups: number;
4154
+ totalAccounts: number;
4103
4155
  totalIdea: number;
4104
4156
  totalNiche: number;
4105
4157
  totalType: {
@@ -4107,10 +4159,16 @@ interface FindOverViewTaskThreadsPostDto {
4107
4159
  TM: number;
4108
4160
  NTM: number;
4109
4161
  };
4110
- totalDevice: {
4111
- total: number;
4112
- android: number;
4113
- ios: number;
4162
+ totalSocial: {
4163
+ active: number;
4164
+ pending: number;
4165
+ inactive: number;
4166
+ suspended: number;
4167
+ };
4168
+ totalLogin: {
4169
+ available: number;
4170
+ unAvailable: number;
4171
+ na: number;
4114
4172
  };
4115
4173
  totalTasks: {
4116
4174
  pending: number;
@@ -4151,11 +4209,13 @@ interface FilterTaskThreadsPostDto extends IFilterBaseDto, IFilterBaseAccountSoc
4151
4209
  }
4152
4210
 
4153
4211
  interface FindOverViewTaskThreadsFollowDto {
4154
- totalAccounts: number;
4155
- totalPC: number;
4156
- totalLeader: number;
4212
+ totalDepartments: number;
4213
+ totalLeaders: number;
4157
4214
  totalMembers: number;
4215
+ totalTeams: number;
4216
+ totalPC: number;
4158
4217
  totalAccountGroups: number;
4218
+ totalAccounts: number;
4159
4219
  totalIdea: number;
4160
4220
  totalNiche: number;
4161
4221
  totalType: {
@@ -4163,10 +4223,16 @@ interface FindOverViewTaskThreadsFollowDto {
4163
4223
  TM: number;
4164
4224
  NTM: number;
4165
4225
  };
4166
- totalDevice: {
4167
- total: number;
4168
- android: number;
4169
- ios: number;
4226
+ totalSocial: {
4227
+ active: number;
4228
+ pending: number;
4229
+ inactive: number;
4230
+ suspended: number;
4231
+ };
4232
+ totalLogin: {
4233
+ available: number;
4234
+ unAvailable: number;
4235
+ na: number;
4170
4236
  };
4171
4237
  totalTasks: {
4172
4238
  pending: number;
@@ -4195,11 +4261,13 @@ interface FilterTaskThreadsFollowDto extends IFilterBaseDto, IFilterBaseAccountS
4195
4261
  }
4196
4262
 
4197
4263
  interface FindOverViewTaskThreadsReplyCommentDto {
4198
- totalAccounts: number;
4199
- totalPC: number;
4200
- totalLeader: number;
4264
+ totalDepartments: number;
4265
+ totalLeaders: number;
4201
4266
  totalMembers: number;
4267
+ totalTeams: number;
4268
+ totalPC: number;
4202
4269
  totalAccountGroups: number;
4270
+ totalAccounts: number;
4203
4271
  totalIdea: number;
4204
4272
  totalNiche: number;
4205
4273
  totalType: {
@@ -4207,10 +4275,16 @@ interface FindOverViewTaskThreadsReplyCommentDto {
4207
4275
  TM: number;
4208
4276
  NTM: number;
4209
4277
  };
4210
- totalDevice: {
4211
- total: number;
4212
- android: number;
4213
- ios: number;
4278
+ totalSocial: {
4279
+ active: number;
4280
+ pending: number;
4281
+ inactive: number;
4282
+ suspended: number;
4283
+ };
4284
+ totalLogin: {
4285
+ available: number;
4286
+ unAvailable: number;
4287
+ na: number;
4214
4288
  };
4215
4289
  totalTasks: {
4216
4290
  pending: number;
@@ -4239,11 +4313,13 @@ interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, IFilterBaseAc
4239
4313
  }
4240
4314
 
4241
4315
  interface FindOverViewTaskThreadsReplyMessageDto {
4242
- totalAccounts: number;
4243
- totalPC: number;
4244
- totalLeader: number;
4316
+ totalDepartments: number;
4317
+ totalLeaders: number;
4245
4318
  totalMembers: number;
4319
+ totalTeams: number;
4320
+ totalPC: number;
4246
4321
  totalAccountGroups: number;
4322
+ totalAccounts: number;
4247
4323
  totalIdea: number;
4248
4324
  totalNiche: number;
4249
4325
  totalType: {
@@ -4251,10 +4327,16 @@ interface FindOverViewTaskThreadsReplyMessageDto {
4251
4327
  TM: number;
4252
4328
  NTM: number;
4253
4329
  };
4254
- totalDevice: {
4255
- total: number;
4256
- android: number;
4257
- ios: number;
4330
+ totalSocial: {
4331
+ active: number;
4332
+ pending: number;
4333
+ inactive: number;
4334
+ suspended: number;
4335
+ };
4336
+ totalLogin: {
4337
+ available: number;
4338
+ unAvailable: number;
4339
+ na: number;
4258
4340
  };
4259
4341
  totalTasks: {
4260
4342
  pending: number;
@@ -4832,11 +4914,13 @@ interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
4832
4914
  }
4833
4915
 
4834
4916
  interface FindOverviewInstagramHistoryAutoSyncDto {
4835
- totalAccounts: number;
4836
- totalPC: number;
4837
- totalLeader: number;
4917
+ totalDepartments: number;
4918
+ totalLeaders: number;
4838
4919
  totalMembers: number;
4920
+ totalTeams: number;
4921
+ totalPC: number;
4839
4922
  totalAccountGroups: number;
4923
+ totalAccounts: number;
4840
4924
  totalIdea: number;
4841
4925
  totalNiche: number;
4842
4926
  totalType: {
@@ -4844,10 +4928,16 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
4844
4928
  TM: number;
4845
4929
  NTM: number;
4846
4930
  };
4847
- totalDevice: {
4848
- total: number;
4849
- android: number;
4850
- ios: number;
4931
+ totalSocial: {
4932
+ active: number;
4933
+ pending: number;
4934
+ inactive: number;
4935
+ suspended: number;
4936
+ };
4937
+ totalLogin: {
4938
+ available: number;
4939
+ unAvailable: number;
4940
+ na: number;
4851
4941
  };
4852
4942
  }
4853
4943
  interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
@@ -4914,11 +5004,13 @@ interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseA
4914
5004
  }
4915
5005
 
4916
5006
  interface FindOverviewInstagramHistoryChangeInfoDto {
4917
- totalAccounts: number;
4918
- totalPC: number;
4919
- totalLeader: number;
5007
+ totalDepartments: number;
5008
+ totalLeaders: number;
4920
5009
  totalMembers: number;
5010
+ totalTeams: number;
5011
+ totalPC: number;
4921
5012
  totalAccountGroups: number;
5013
+ totalAccounts: number;
4922
5014
  totalIdea: number;
4923
5015
  totalNiche: number;
4924
5016
  totalType: {
@@ -4926,10 +5018,16 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
4926
5018
  TM: number;
4927
5019
  NTM: number;
4928
5020
  };
4929
- totalDevice: {
4930
- total: number;
4931
- android: number;
4932
- ios: number;
5021
+ totalSocial: {
5022
+ active: number;
5023
+ pending: number;
5024
+ inactive: number;
5025
+ suspended: number;
5026
+ };
5027
+ totalLogin: {
5028
+ available: number;
5029
+ unAvailable: number;
5030
+ na: number;
4933
5031
  };
4934
5032
  }
4935
5033
  interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
@@ -5056,11 +5154,13 @@ interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBas
5056
5154
  }
5057
5155
 
5058
5156
  interface FindOverviewInstagramHistoryCreateNewDto {
5059
- totalAccounts: number;
5060
- totalPC: number;
5061
- totalLeader: number;
5157
+ totalDepartments: number;
5158
+ totalLeaders: number;
5062
5159
  totalMembers: number;
5160
+ totalTeams: number;
5161
+ totalPC: number;
5063
5162
  totalAccountGroups: number;
5163
+ totalAccounts: number;
5064
5164
  totalIdea: number;
5065
5165
  totalNiche: number;
5066
5166
  totalType: {
@@ -5068,10 +5168,16 @@ interface FindOverviewInstagramHistoryCreateNewDto {
5068
5168
  TM: number;
5069
5169
  NTM: number;
5070
5170
  };
5071
- totalDevice: {
5072
- total: number;
5073
- android: number;
5074
- ios: number;
5171
+ totalSocial: {
5172
+ active: number;
5173
+ pending: number;
5174
+ inactive: number;
5175
+ suspended: number;
5176
+ };
5177
+ totalLogin: {
5178
+ available: number;
5179
+ unAvailable: number;
5180
+ na: number;
5075
5181
  };
5076
5182
  }
5077
5183
  interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
@@ -5145,11 +5251,13 @@ interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBase
5145
5251
  }
5146
5252
 
5147
5253
  interface FindOverviewInstagramHistoryGroupDto {
5148
- totalAccounts: number;
5149
- totalPC: number;
5150
- totalLeader: number;
5254
+ totalDepartments: number;
5255
+ totalLeaders: number;
5151
5256
  totalMembers: number;
5257
+ totalTeams: number;
5258
+ totalPC: number;
5152
5259
  totalAccountGroups: number;
5260
+ totalAccounts: number;
5153
5261
  totalIdea: number;
5154
5262
  totalNiche: number;
5155
5263
  totalType: {
@@ -5157,10 +5265,16 @@ interface FindOverviewInstagramHistoryGroupDto {
5157
5265
  TM: number;
5158
5266
  NTM: number;
5159
5267
  };
5160
- totalDevice: {
5161
- total: number;
5162
- android: number;
5163
- ios: number;
5268
+ totalSocial: {
5269
+ active: number;
5270
+ pending: number;
5271
+ inactive: number;
5272
+ suspended: number;
5273
+ };
5274
+ totalLogin: {
5275
+ available: number;
5276
+ unAvailable: number;
5277
+ na: number;
5164
5278
  };
5165
5279
  }
5166
5280
  interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
@@ -5733,12 +5847,14 @@ interface FindOverViewInstagramAccountRunDto {
5733
5847
  totalDepartments: number;
5734
5848
  }
5735
5849
 
5736
- interface FindOverviewInstagramHistoryFollowDto {
5737
- totalAccounts: number;
5738
- totalPC: number;
5739
- totalLeader: number;
5850
+ interface FindOverViewInstagramReportPostHighLightDto {
5851
+ totalDepartments: number;
5852
+ totalLeaders: number;
5740
5853
  totalMembers: number;
5854
+ totalTeams: number;
5855
+ totalPC: number;
5741
5856
  totalAccountGroups: number;
5857
+ totalAccounts: number;
5742
5858
  totalIdea: number;
5743
5859
  totalNiche: number;
5744
5860
  totalType: {
@@ -5746,54 +5862,25 @@ interface FindOverviewInstagramHistoryFollowDto {
5746
5862
  TM: number;
5747
5863
  NTM: number;
5748
5864
  };
5749
- totalDevice: {
5750
- total: number;
5751
- android: number;
5752
- ios: number;
5753
- };
5754
- }
5755
- interface FindInstagramHistoryFollowDto extends IFindBaseDto, IInstagramHistoryFollow {
5756
- deviceInfo: {
5757
- deviceKey: string;
5758
- deviceName: string;
5759
- deviceType: string;
5760
- deviceTypeAppClone: string;
5761
- deviceNameAppClone: string;
5762
- nameAppClone: string;
5763
- };
5764
- accountUsername: string;
5765
- accountFullName: string;
5766
- idea: {
5767
- id: string;
5768
- name: string;
5769
- };
5770
- niche: {
5771
- id: string;
5772
- name: string;
5773
- };
5774
- type: ETypeManagerWorkClassify;
5775
- pc: {
5776
- id: string;
5777
- name: string;
5778
- };
5779
- device: {
5780
- id: string;
5781
- name: string;
5865
+ totalSocial: {
5866
+ active: number;
5867
+ pending: number;
5868
+ inactive: number;
5869
+ suspended: number;
5782
5870
  };
5783
- accountGroup: {
5784
- id: string;
5785
- name: string;
5871
+ totalLogin: {
5872
+ available: number;
5873
+ unAvailable: number;
5874
+ na: number;
5786
5875
  };
5787
- accountInfo: {
5788
- id: string;
5789
- name: string;
5790
- nameAppCloneSocial: string;
5791
- accountDeviceTypeAppClone: string;
5792
- accountDeviceNameAppClone: string;
5876
+ totalStatusPost: {
5877
+ done: number;
5878
+ error: number;
5879
+ pending: number;
5880
+ unknown: number;
5793
5881
  };
5794
- status: EStatusTaskScript;
5795
5882
  }
5796
- interface FilterInstagramHistoryFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5883
+ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5797
5884
  idea: string[];
5798
5885
  niche: string[];
5799
5886
  type: ETypeManagerWorkClassify[];
@@ -5802,17 +5889,24 @@ interface FilterInstagramHistoryFollowDto extends IFilterBaseDto, IFilterBaseAcc
5802
5889
  accountGroup: string[];
5803
5890
  account: string[];
5804
5891
  sheetName: string[];
5892
+ status: EStatusTaskScript[];
5893
+ timezone: ETimeZone[];
5894
+ listDateOfWeeks: EDayOfWeek[];
5895
+ typePost: string[];
5896
+ stylePost: string[];
5897
+ statusAccount: EStatusSocialAccountRaw[];
5898
+ statusLogin: EStatusAccountSocialLogin[];
5899
+ statusSheet: ESheetToolStatus[];
5805
5900
  }
5806
5901
 
5807
- interface FindOverviewInstagramHistoryAutoPostDto {
5808
- totalDone: number;
5809
- totalPending: number;
5810
- totalError: number;
5811
- totalAccounts: number;
5812
- totalPC: number;
5813
- totalLeader: number;
5902
+ interface FindOverViewInstagramReportPostNewDto {
5903
+ totalDepartments: number;
5904
+ totalLeaders: number;
5814
5905
  totalMembers: number;
5906
+ totalTeams: number;
5907
+ totalPC: number;
5815
5908
  totalAccountGroups: number;
5909
+ totalAccounts: number;
5816
5910
  totalIdea: number;
5817
5911
  totalNiche: number;
5818
5912
  totalType: {
@@ -5820,66 +5914,25 @@ interface FindOverviewInstagramHistoryAutoPostDto {
5820
5914
  TM: number;
5821
5915
  NTM: number;
5822
5916
  };
5823
- totalDevice: {
5824
- total: number;
5825
- android: number;
5826
- ios: number;
5827
- };
5828
- totalTypePost: {
5829
- square: number;
5830
- news: number;
5831
- reel: number;
5832
- story_highlight: number;
5833
- };
5834
- totalStylePost: {
5835
- video: number;
5836
- video_image: number;
5837
- link_video_image: number;
5838
- product_video_image: number;
5839
- };
5840
- }
5841
- interface FindInstagramHistoryAutoPostDto extends IFindBaseDto, IInstagramHistoryAutoPost {
5842
- deviceInfo: {
5843
- deviceKey: string;
5844
- deviceName: string;
5845
- deviceType: string;
5846
- deviceTypeAppClone: string;
5847
- deviceNameAppClone: string;
5848
- nameAppClone: string;
5849
- };
5850
- accountUsername: string;
5851
- accountFullName: string;
5852
- idea: {
5853
- id: string;
5854
- name: string;
5855
- };
5856
- niche: {
5857
- id: string;
5858
- name: string;
5859
- };
5860
- type: ETypeManagerWorkClassify;
5861
- pc: {
5862
- id: string;
5863
- name: string;
5864
- };
5865
- device: {
5866
- id: string;
5867
- name: string;
5917
+ totalSocial: {
5918
+ active: number;
5919
+ pending: number;
5920
+ inactive: number;
5921
+ suspended: number;
5868
5922
  };
5869
- accountGroup: {
5870
- id: string;
5871
- name: string;
5923
+ totalLogin: {
5924
+ available: number;
5925
+ unAvailable: number;
5926
+ na: number;
5872
5927
  };
5873
- accountInfo: {
5874
- id: string;
5875
- name: string;
5876
- nameAppCloneSocial: string;
5877
- accountDeviceTypeAppClone: string;
5878
- accountDeviceNameAppClone: string;
5928
+ totalStatusPost: {
5929
+ done: number;
5930
+ error: number;
5931
+ pending: number;
5932
+ unknown: number;
5879
5933
  };
5880
- status: EStatusTaskScript;
5881
5934
  }
5882
- interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5935
+ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5883
5936
  idea: string[];
5884
5937
  niche: string[];
5885
5938
  type: ETypeManagerWorkClassify[];
@@ -5888,14 +5941,24 @@ interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseA
5888
5941
  accountGroup: string[];
5889
5942
  account: string[];
5890
5943
  sheetName: string[];
5944
+ status: EStatusTaskScript[];
5945
+ timezone: ETimeZone[];
5946
+ listDateOfWeeks: EDayOfWeek[];
5947
+ typePost: string[];
5948
+ stylePost: string[];
5949
+ statusAccount: EStatusSocialAccountRaw[];
5950
+ statusLogin: EStatusAccountSocialLogin[];
5951
+ statusSheet: ESheetToolStatus[];
5891
5952
  }
5892
5953
 
5893
- interface FindOverviewInstagramHistoryBlockUserDto {
5894
- totalAccounts: number;
5895
- totalPC: number;
5896
- totalLeader: number;
5954
+ interface FindOverViewInstagramReportPostReelDto {
5955
+ totalDepartments: number;
5956
+ totalLeaders: number;
5897
5957
  totalMembers: number;
5958
+ totalTeams: number;
5959
+ totalPC: number;
5898
5960
  totalAccountGroups: number;
5961
+ totalAccounts: number;
5899
5962
  totalIdea: number;
5900
5963
  totalNiche: number;
5901
5964
  totalType: {
@@ -5903,162 +5966,22 @@ interface FindOverviewInstagramHistoryBlockUserDto {
5903
5966
  TM: number;
5904
5967
  NTM: number;
5905
5968
  };
5906
- totalDevice: {
5907
- total: number;
5908
- android: number;
5909
- ios: number;
5969
+ totalSocial: {
5970
+ active: number;
5971
+ pending: number;
5972
+ inactive: number;
5973
+ suspended: number;
5910
5974
  };
5911
- }
5912
- interface FindInstagramHistoryBlockUserDto extends IFindBaseDto, IInstagramHistoryBlockUser {
5913
- deviceInfo: {
5914
- deviceKey: string;
5915
- deviceName: string;
5916
- deviceType: string;
5917
- deviceTypeAppClone: string;
5918
- deviceNameAppClone: string;
5919
- nameAppClone: string;
5975
+ totalLogin: {
5976
+ available: number;
5977
+ unAvailable: number;
5978
+ na: number;
5920
5979
  };
5921
- accountUsername: string;
5922
- accountFullName: string;
5923
- idea: {
5924
- id: string;
5925
- name: string;
5926
- };
5927
- niche: {
5928
- id: string;
5929
- name: string;
5930
- };
5931
- type: ETypeManagerWorkClassify;
5932
- pc: {
5933
- id: string;
5934
- name: string;
5935
- };
5936
- device: {
5937
- id: string;
5938
- name: string;
5939
- };
5940
- accountGroup: {
5941
- id: string;
5942
- name: string;
5943
- };
5944
- accountInfo: {
5945
- id: string;
5946
- name: string;
5947
- nameAppCloneSocial: string;
5948
- accountDeviceTypeAppClone: string;
5949
- accountDeviceNameAppClone: string;
5950
- };
5951
- status: EStatusTaskScript;
5952
- }
5953
- interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5954
- idea: string[];
5955
- niche: string[];
5956
- type: ETypeManagerWorkClassify[];
5957
- pc: string[];
5958
- device: string[];
5959
- accountGroup: string[];
5960
- account: string[];
5961
- sheetName: string[];
5962
- }
5963
-
5964
- interface FindOverViewInstagramReportPostHighLightDto {
5965
- totalAccounts: number;
5966
- totalPC: number;
5967
- totalLeader: number;
5968
- totalMembers: number;
5969
- totalAccountGroups: number;
5970
- totalIdea: number;
5971
- totalNiche: number;
5972
- totalType: {
5973
- total: number;
5974
- TM: number;
5975
- NTM: number;
5976
- };
5977
- totalDevice: {
5978
- total: number;
5979
- android: number;
5980
- ios: number;
5981
- };
5982
- totalPost: {
5983
- done: number;
5984
- error: number;
5985
- unknown: number;
5986
- };
5987
- }
5988
- interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5989
- idea: string[];
5990
- niche: string[];
5991
- type: ETypeManagerWorkClassify[];
5992
- pc: string[];
5993
- device: string[];
5994
- accountGroup: string[];
5995
- account: string[];
5996
- sheetName: string[];
5997
- status: EStatusTaskScript[];
5998
- timezone: ETimeZone[];
5999
- listDateOfWeeks: EDayOfWeek[];
6000
- }
6001
-
6002
- interface FindOverViewInstagramReportPostNewDto {
6003
- totalAccounts: number;
6004
- totalPC: number;
6005
- totalLeader: number;
6006
- totalMembers: number;
6007
- totalAccountGroups: number;
6008
- totalIdea: number;
6009
- totalNiche: number;
6010
- totalType: {
6011
- total: number;
6012
- TM: number;
6013
- NTM: number;
6014
- };
6015
- totalDevice: {
6016
- total: number;
6017
- android: number;
6018
- ios: number;
6019
- };
6020
- totalPost: {
6021
- done: number;
6022
- error: number;
6023
- unknown: number;
6024
- };
6025
- }
6026
- interface FilterInstagramReportPostNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6027
- idea: string[];
6028
- niche: string[];
6029
- type: ETypeManagerWorkClassify[];
6030
- pc: string[];
6031
- device: string[];
6032
- accountGroup: string[];
6033
- account: string[];
6034
- sheetName: string[];
6035
- status: EStatusTaskScript[];
6036
- timezone: ETimeZone[];
6037
- listDateOfWeeks: EDayOfWeek[];
6038
- }
6039
-
6040
- interface FindOverViewInstagramReportPostReelDto {
6041
- totalAccounts: number;
6042
- totalPC: number;
6043
- totalLeader: number;
6044
- totalMembers: number;
6045
- totalAccountGroups: number;
6046
- totalIdea: number;
6047
- totalNiche: number;
6048
- totalType: {
6049
- total: number;
6050
- TM: number;
6051
- NTM: number;
6052
- };
6053
- totalDevice: {
6054
- total: number;
6055
- android: number;
6056
- ios: number;
6057
- };
6058
- totalPost: {
6059
- done: number;
6060
- error: number;
6061
- unknown: number;
5980
+ totalStatusPost: {
5981
+ done: number;
5982
+ error: number;
5983
+ pending: number;
5984
+ unknown: number;
6062
5985
  };
6063
5986
  }
6064
5987
  interface FilterInstagramReportPostReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
@@ -6073,14 +5996,21 @@ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, IFilterBaseAc
6073
5996
  status: EStatusTaskScript[];
6074
5997
  timezone: ETimeZone[];
6075
5998
  listDateOfWeeks: EDayOfWeek[];
5999
+ typePost: string[];
6000
+ stylePost: string[];
6001
+ statusAccount: EStatusSocialAccountRaw[];
6002
+ statusLogin: EStatusAccountSocialLogin[];
6003
+ statusSheet: ESheetToolStatus[];
6076
6004
  }
6077
6005
 
6078
6006
  interface FindOverViewInstagramReportPostStoryDto {
6079
- totalAccounts: number;
6080
- totalPC: number;
6081
- totalLeader: number;
6007
+ totalDepartments: number;
6008
+ totalLeaders: number;
6082
6009
  totalMembers: number;
6010
+ totalTeams: number;
6011
+ totalPC: number;
6083
6012
  totalAccountGroups: number;
6013
+ totalAccounts: number;
6084
6014
  totalIdea: number;
6085
6015
  totalNiche: number;
6086
6016
  totalType: {
@@ -6088,14 +6018,21 @@ interface FindOverViewInstagramReportPostStoryDto {
6088
6018
  TM: number;
6089
6019
  NTM: number;
6090
6020
  };
6091
- totalDevice: {
6092
- total: number;
6093
- android: number;
6094
- ios: number;
6021
+ totalSocial: {
6022
+ active: number;
6023
+ pending: number;
6024
+ inactive: number;
6025
+ suspended: number;
6095
6026
  };
6096
- totalPost: {
6027
+ totalLogin: {
6028
+ available: number;
6029
+ unAvailable: number;
6030
+ na: number;
6031
+ };
6032
+ totalStatusPost: {
6097
6033
  done: number;
6098
6034
  error: number;
6035
+ pending: number;
6099
6036
  unknown: number;
6100
6037
  };
6101
6038
  }
@@ -6111,14 +6048,21 @@ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, IFilterBaseA
6111
6048
  status: EStatusTaskScript[];
6112
6049
  timezone: ETimeZone[];
6113
6050
  listDateOfWeeks: EDayOfWeek[];
6051
+ typePost: string[];
6052
+ stylePost: string[];
6053
+ statusAccount: EStatusSocialAccountRaw[];
6054
+ statusLogin: EStatusAccountSocialLogin[];
6055
+ statusSheet: ESheetToolStatus[];
6114
6056
  }
6115
6057
 
6116
6058
  interface FindOverViewInstagramReportPostSquareDto {
6117
- totalAccounts: number;
6118
- totalPC: number;
6119
- totalLeader: number;
6059
+ totalDepartments: number;
6060
+ totalLeaders: number;
6120
6061
  totalMembers: number;
6062
+ totalTeams: number;
6063
+ totalPC: number;
6121
6064
  totalAccountGroups: number;
6065
+ totalAccounts: number;
6122
6066
  totalIdea: number;
6123
6067
  totalNiche: number;
6124
6068
  totalType: {
@@ -6126,14 +6070,21 @@ interface FindOverViewInstagramReportPostSquareDto {
6126
6070
  TM: number;
6127
6071
  NTM: number;
6128
6072
  };
6129
- totalDevice: {
6130
- total: number;
6131
- android: number;
6132
- ios: number;
6073
+ totalSocial: {
6074
+ active: number;
6075
+ pending: number;
6076
+ inactive: number;
6077
+ suspended: number;
6078
+ };
6079
+ totalLogin: {
6080
+ available: number;
6081
+ unAvailable: number;
6082
+ na: number;
6133
6083
  };
6134
- totalPost: {
6084
+ totalStatusPost: {
6135
6085
  done: number;
6136
6086
  error: number;
6087
+ pending: number;
6137
6088
  unknown: number;
6138
6089
  };
6139
6090
  }
@@ -6149,14 +6100,21 @@ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, IFilterBase
6149
6100
  status: EStatusTaskScript[];
6150
6101
  timezone: ETimeZone[];
6151
6102
  listDateOfWeeks: EDayOfWeek[];
6103
+ typePost: string[];
6104
+ stylePost: string[];
6105
+ statusAccount: EStatusSocialAccountRaw[];
6106
+ statusLogin: EStatusAccountSocialLogin[];
6107
+ statusSheet: ESheetToolStatus[];
6152
6108
  }
6153
6109
 
6154
6110
  interface FindOverViewInstagramReportInteractBlockUserDto {
6155
- totalAccounts: number;
6156
- totalPC: number;
6157
- totalLeader: number;
6111
+ totalDepartments: number;
6112
+ totalLeaders: number;
6158
6113
  totalMembers: number;
6114
+ totalTeams: number;
6115
+ totalPC: number;
6159
6116
  totalAccountGroups: number;
6117
+ totalAccounts: number;
6160
6118
  totalIdea: number;
6161
6119
  totalNiche: number;
6162
6120
  totalType: {
@@ -6164,10 +6122,16 @@ interface FindOverViewInstagramReportInteractBlockUserDto {
6164
6122
  TM: number;
6165
6123
  NTM: number;
6166
6124
  };
6167
- totalDevice: {
6168
- total: number;
6169
- android: number;
6170
- ios: number;
6125
+ totalSocial: {
6126
+ active: number;
6127
+ pending: number;
6128
+ inactive: number;
6129
+ suspended: number;
6130
+ };
6131
+ totalLogin: {
6132
+ available: number;
6133
+ unAvailable: number;
6134
+ na: number;
6171
6135
  };
6172
6136
  totalInteract: {
6173
6137
  done: number;
@@ -6189,11 +6153,13 @@ interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, IFil
6189
6153
  }
6190
6154
 
6191
6155
  interface FindOverViewInstagramReportInteractExploreDto {
6192
- totalAccounts: number;
6193
- totalPC: number;
6194
- totalLeader: number;
6156
+ totalDepartments: number;
6157
+ totalLeaders: number;
6195
6158
  totalMembers: number;
6159
+ totalTeams: number;
6160
+ totalPC: number;
6196
6161
  totalAccountGroups: number;
6162
+ totalAccounts: number;
6197
6163
  totalIdea: number;
6198
6164
  totalNiche: number;
6199
6165
  totalType: {
@@ -6201,10 +6167,16 @@ interface FindOverViewInstagramReportInteractExploreDto {
6201
6167
  TM: number;
6202
6168
  NTM: number;
6203
6169
  };
6204
- totalDevice: {
6205
- total: number;
6206
- android: number;
6207
- ios: number;
6170
+ totalSocial: {
6171
+ active: number;
6172
+ pending: number;
6173
+ inactive: number;
6174
+ suspended: number;
6175
+ };
6176
+ totalLogin: {
6177
+ available: number;
6178
+ unAvailable: number;
6179
+ na: number;
6208
6180
  };
6209
6181
  totalInteract: {
6210
6182
  done: number;
@@ -6226,11 +6198,13 @@ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, IFilte
6226
6198
  }
6227
6199
 
6228
6200
  interface FindOverViewInstagramReportInteractFollowDto {
6229
- totalAccounts: number;
6230
- totalPC: number;
6231
- totalLeader: number;
6201
+ totalDepartments: number;
6202
+ totalLeaders: number;
6232
6203
  totalMembers: number;
6204
+ totalTeams: number;
6205
+ totalPC: number;
6233
6206
  totalAccountGroups: number;
6207
+ totalAccounts: number;
6234
6208
  totalIdea: number;
6235
6209
  totalNiche: number;
6236
6210
  totalType: {
@@ -6238,10 +6212,16 @@ interface FindOverViewInstagramReportInteractFollowDto {
6238
6212
  TM: number;
6239
6213
  NTM: number;
6240
6214
  };
6241
- totalDevice: {
6242
- total: number;
6243
- android: number;
6244
- ios: number;
6215
+ totalSocial: {
6216
+ active: number;
6217
+ pending: number;
6218
+ inactive: number;
6219
+ suspended: number;
6220
+ };
6221
+ totalLogin: {
6222
+ available: number;
6223
+ unAvailable: number;
6224
+ na: number;
6245
6225
  };
6246
6226
  totalInteract: {
6247
6227
  done: number;
@@ -6263,11 +6243,13 @@ interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, IFilter
6263
6243
  }
6264
6244
 
6265
6245
  interface FindOverViewInstagramReportInteractReelDto {
6266
- totalAccounts: number;
6267
- totalPC: number;
6268
- totalLeader: number;
6246
+ totalDepartments: number;
6247
+ totalLeaders: number;
6269
6248
  totalMembers: number;
6249
+ totalTeams: number;
6250
+ totalPC: number;
6270
6251
  totalAccountGroups: number;
6252
+ totalAccounts: number;
6271
6253
  totalIdea: number;
6272
6254
  totalNiche: number;
6273
6255
  totalType: {
@@ -6275,10 +6257,16 @@ interface FindOverViewInstagramReportInteractReelDto {
6275
6257
  TM: number;
6276
6258
  NTM: number;
6277
6259
  };
6278
- totalDevice: {
6279
- total: number;
6280
- android: number;
6281
- ios: number;
6260
+ totalSocial: {
6261
+ active: number;
6262
+ pending: number;
6263
+ inactive: number;
6264
+ suspended: number;
6265
+ };
6266
+ totalLogin: {
6267
+ available: number;
6268
+ unAvailable: number;
6269
+ na: number;
6282
6270
  };
6283
6271
  totalInteract: {
6284
6272
  done: number;
@@ -6300,11 +6288,13 @@ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, IFilterBa
6300
6288
  }
6301
6289
 
6302
6290
  interface FindOverViewInstagramReportInteractReplyCommentDto {
6303
- totalAccounts: number;
6304
- totalPC: number;
6305
- totalLeader: number;
6291
+ totalDepartments: number;
6292
+ totalLeaders: number;
6306
6293
  totalMembers: number;
6294
+ totalTeams: number;
6295
+ totalPC: number;
6307
6296
  totalAccountGroups: number;
6297
+ totalAccounts: number;
6308
6298
  totalIdea: number;
6309
6299
  totalNiche: number;
6310
6300
  totalType: {
@@ -6312,10 +6302,16 @@ interface FindOverViewInstagramReportInteractReplyCommentDto {
6312
6302
  TM: number;
6313
6303
  NTM: number;
6314
6304
  };
6315
- totalDevice: {
6316
- total: number;
6317
- android: number;
6318
- ios: number;
6305
+ totalSocial: {
6306
+ active: number;
6307
+ pending: number;
6308
+ inactive: number;
6309
+ suspended: number;
6310
+ };
6311
+ totalLogin: {
6312
+ available: number;
6313
+ unAvailable: number;
6314
+ na: number;
6319
6315
  };
6320
6316
  totalInteract: {
6321
6317
  done: number;
@@ -6337,11 +6333,13 @@ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, I
6337
6333
  }
6338
6334
 
6339
6335
  interface FindOverViewInstagramReportInteractReplyMessageDto {
6340
- totalAccounts: number;
6341
- totalPC: number;
6342
- totalLeader: number;
6336
+ totalDepartments: number;
6337
+ totalLeaders: number;
6343
6338
  totalMembers: number;
6339
+ totalTeams: number;
6340
+ totalPC: number;
6344
6341
  totalAccountGroups: number;
6342
+ totalAccounts: number;
6345
6343
  totalIdea: number;
6346
6344
  totalNiche: number;
6347
6345
  totalType: {
@@ -6349,10 +6347,16 @@ interface FindOverViewInstagramReportInteractReplyMessageDto {
6349
6347
  TM: number;
6350
6348
  NTM: number;
6351
6349
  };
6352
- totalDevice: {
6353
- total: number;
6354
- android: number;
6355
- ios: number;
6350
+ totalSocial: {
6351
+ active: number;
6352
+ pending: number;
6353
+ inactive: number;
6354
+ suspended: number;
6355
+ };
6356
+ totalLogin: {
6357
+ available: number;
6358
+ unAvailable: number;
6359
+ na: number;
6356
6360
  };
6357
6361
  totalInteract: {
6358
6362
  done: number;
@@ -6374,11 +6378,13 @@ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, I
6374
6378
  }
6375
6379
 
6376
6380
  interface FindOverViewInstagramReportInteractStoryDto {
6377
- totalAccounts: number;
6378
- totalPC: number;
6379
- totalLeader: number;
6381
+ totalDepartments: number;
6382
+ totalLeaders: number;
6380
6383
  totalMembers: number;
6384
+ totalTeams: number;
6385
+ totalPC: number;
6381
6386
  totalAccountGroups: number;
6387
+ totalAccounts: number;
6382
6388
  totalIdea: number;
6383
6389
  totalNiche: number;
6384
6390
  totalType: {
@@ -6386,10 +6392,16 @@ interface FindOverViewInstagramReportInteractStoryDto {
6386
6392
  TM: number;
6387
6393
  NTM: number;
6388
6394
  };
6389
- totalDevice: {
6390
- total: number;
6391
- android: number;
6392
- ios: number;
6395
+ totalSocial: {
6396
+ active: number;
6397
+ pending: number;
6398
+ inactive: number;
6399
+ suspended: number;
6400
+ };
6401
+ totalLogin: {
6402
+ available: number;
6403
+ unAvailable: number;
6404
+ na: number;
6393
6405
  };
6394
6406
  totalInteract: {
6395
6407
  done: number;
@@ -6411,11 +6423,13 @@ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, IFilterB
6411
6423
  }
6412
6424
 
6413
6425
  interface FindOverViewInstagramReportInteractUnFollowDto {
6414
- totalAccounts: number;
6415
- totalPC: number;
6416
- totalLeader: number;
6426
+ totalDepartments: number;
6427
+ totalLeaders: number;
6417
6428
  totalMembers: number;
6429
+ totalTeams: number;
6430
+ totalPC: number;
6418
6431
  totalAccountGroups: number;
6432
+ totalAccounts: number;
6419
6433
  totalIdea: number;
6420
6434
  totalNiche: number;
6421
6435
  totalType: {
@@ -6423,10 +6437,16 @@ interface FindOverViewInstagramReportInteractUnFollowDto {
6423
6437
  TM: number;
6424
6438
  NTM: number;
6425
6439
  };
6426
- totalDevice: {
6427
- total: number;
6428
- android: number;
6429
- ios: number;
6440
+ totalSocial: {
6441
+ active: number;
6442
+ pending: number;
6443
+ inactive: number;
6444
+ suspended: number;
6445
+ };
6446
+ totalLogin: {
6447
+ available: number;
6448
+ unAvailable: number;
6449
+ na: number;
6430
6450
  };
6431
6451
  totalInteract: {
6432
6452
  done: number;
@@ -6448,11 +6468,13 @@ interface FilterInstagramReportInteractUnFollowDto extends IFilterBaseDto, IFilt
6448
6468
  }
6449
6469
 
6450
6470
  interface FindOverViewInstagramSettingInteractExploreDto {
6451
- totalAccounts: number;
6452
- totalPC: number;
6453
- totalLeader: number;
6471
+ totalDepartments: number;
6472
+ totalLeaders: number;
6454
6473
  totalMembers: number;
6474
+ totalTeams: number;
6475
+ totalPC: number;
6455
6476
  totalAccountGroups: number;
6477
+ totalAccounts: number;
6456
6478
  totalIdea: number;
6457
6479
  totalNiche: number;
6458
6480
  totalType: {
@@ -6460,13 +6482,21 @@ interface FindOverViewInstagramSettingInteractExploreDto {
6460
6482
  TM: number;
6461
6483
  NTM: number;
6462
6484
  };
6463
- totalDevice: {
6464
- total: number;
6465
- android: number;
6466
- ios: number;
6485
+ totalSocial: {
6486
+ active: number;
6487
+ pending: number;
6488
+ inactive: number;
6489
+ suspended: number;
6490
+ };
6491
+ totalLogin: {
6492
+ available: number;
6493
+ unAvailable: number;
6494
+ na: number;
6495
+ };
6496
+ totalStatus: {
6497
+ active: number;
6498
+ inactive: number;
6467
6499
  };
6468
- statusActive: number;
6469
- statusInactive: number;
6470
6500
  }
6471
6501
  interface FindInstagramSettingInteractExploreDto extends IFindBaseDto {
6472
6502
  idea: {
@@ -6527,11 +6557,13 @@ interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, IFilt
6527
6557
  }
6528
6558
 
6529
6559
  interface FindOverViewInstagramSettingInteractFollowDto {
6530
- totalAccounts: number;
6531
- totalPC: number;
6532
- totalLeader: number;
6560
+ totalDepartments: number;
6561
+ totalLeaders: number;
6533
6562
  totalMembers: number;
6563
+ totalTeams: number;
6564
+ totalPC: number;
6534
6565
  totalAccountGroups: number;
6566
+ totalAccounts: number;
6535
6567
  totalIdea: number;
6536
6568
  totalNiche: number;
6537
6569
  totalType: {
@@ -6539,13 +6571,21 @@ interface FindOverViewInstagramSettingInteractFollowDto {
6539
6571
  TM: number;
6540
6572
  NTM: number;
6541
6573
  };
6542
- totalDevice: {
6543
- total: number;
6544
- android: number;
6545
- ios: number;
6574
+ totalSocial: {
6575
+ active: number;
6576
+ pending: number;
6577
+ inactive: number;
6578
+ suspended: number;
6579
+ };
6580
+ totalLogin: {
6581
+ available: number;
6582
+ unAvailable: number;
6583
+ na: number;
6584
+ };
6585
+ totalStatus: {
6586
+ active: number;
6587
+ inactive: number;
6546
6588
  };
6547
- statusActive: number;
6548
- statusInactive: number;
6549
6589
  }
6550
6590
  interface FindInstagramSettingInteractFollowDto extends IFindBaseDto {
6551
6591
  idea: {
@@ -6625,11 +6665,13 @@ interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, IFilte
6625
6665
  }
6626
6666
 
6627
6667
  interface FindOverViewInstagramSettingInteractReelDto {
6628
- totalAccounts: number;
6629
- totalPC: number;
6630
- totalLeader: number;
6668
+ totalDepartments: number;
6669
+ totalLeaders: number;
6631
6670
  totalMembers: number;
6671
+ totalTeams: number;
6672
+ totalPC: number;
6632
6673
  totalAccountGroups: number;
6674
+ totalAccounts: number;
6633
6675
  totalIdea: number;
6634
6676
  totalNiche: number;
6635
6677
  totalType: {
@@ -6637,13 +6679,21 @@ interface FindOverViewInstagramSettingInteractReelDto {
6637
6679
  TM: number;
6638
6680
  NTM: number;
6639
6681
  };
6640
- totalDevice: {
6641
- total: number;
6642
- android: number;
6643
- ios: number;
6682
+ totalSocial: {
6683
+ active: number;
6684
+ pending: number;
6685
+ inactive: number;
6686
+ suspended: number;
6687
+ };
6688
+ totalLogin: {
6689
+ available: number;
6690
+ unAvailable: number;
6691
+ na: number;
6692
+ };
6693
+ totalStatus: {
6694
+ active: number;
6695
+ inactive: number;
6644
6696
  };
6645
- statusActive: number;
6646
- statusInactive: number;
6647
6697
  }
6648
6698
  interface FindInstagramSettingInteractReelDto extends IFindBaseDto {
6649
6699
  idea: {
@@ -6703,11 +6753,13 @@ interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, IFilterB
6703
6753
  }
6704
6754
 
6705
6755
  interface FindOverViewInstagramSettingInteractReplyCommentDto {
6706
- totalAccounts: number;
6707
- totalPC: number;
6708
- totalLeader: number;
6756
+ totalDepartments: number;
6757
+ totalLeaders: number;
6709
6758
  totalMembers: number;
6759
+ totalTeams: number;
6760
+ totalPC: number;
6710
6761
  totalAccountGroups: number;
6762
+ totalAccounts: number;
6711
6763
  totalIdea: number;
6712
6764
  totalNiche: number;
6713
6765
  totalType: {
@@ -6715,13 +6767,21 @@ interface FindOverViewInstagramSettingInteractReplyCommentDto {
6715
6767
  TM: number;
6716
6768
  NTM: number;
6717
6769
  };
6718
- totalDevice: {
6719
- total: number;
6720
- android: number;
6721
- ios: number;
6770
+ totalSocial: {
6771
+ active: number;
6772
+ pending: number;
6773
+ inactive: number;
6774
+ suspended: number;
6775
+ };
6776
+ totalLogin: {
6777
+ available: number;
6778
+ unAvailable: number;
6779
+ na: number;
6780
+ };
6781
+ totalStatus: {
6782
+ active: number;
6783
+ inactive: number;
6722
6784
  };
6723
- statusActive: number;
6724
- statusInactive: number;
6725
6785
  }
6726
6786
  interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto {
6727
6787
  idea: {
@@ -6785,11 +6845,13 @@ interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto,
6785
6845
  }
6786
6846
 
6787
6847
  interface FindOverViewInstagramSettingInteractReplyMessageDto {
6788
- totalAccounts: number;
6789
- totalPC: number;
6790
- totalLeader: number;
6848
+ totalDepartments: number;
6849
+ totalLeaders: number;
6791
6850
  totalMembers: number;
6851
+ totalTeams: number;
6852
+ totalPC: number;
6792
6853
  totalAccountGroups: number;
6854
+ totalAccounts: number;
6793
6855
  totalIdea: number;
6794
6856
  totalNiche: number;
6795
6857
  totalType: {
@@ -6797,13 +6859,21 @@ interface FindOverViewInstagramSettingInteractReplyMessageDto {
6797
6859
  TM: number;
6798
6860
  NTM: number;
6799
6861
  };
6800
- totalDevice: {
6801
- total: number;
6802
- android: number;
6803
- ios: number;
6862
+ totalSocial: {
6863
+ active: number;
6864
+ pending: number;
6865
+ inactive: number;
6866
+ suspended: number;
6867
+ };
6868
+ totalLogin: {
6869
+ available: number;
6870
+ unAvailable: number;
6871
+ na: number;
6872
+ };
6873
+ totalStatus: {
6874
+ active: number;
6875
+ inactive: number;
6804
6876
  };
6805
- statusActive: number;
6806
- statusInactive: number;
6807
6877
  }
6808
6878
  interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto {
6809
6879
  idea: {
@@ -6862,11 +6932,13 @@ interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto,
6862
6932
  }
6863
6933
 
6864
6934
  interface FindOverViewInstagramSettingInteractStoryDto {
6865
- totalAccounts: number;
6866
- totalPC: number;
6867
- totalLeader: number;
6935
+ totalDepartments: number;
6936
+ totalLeaders: number;
6868
6937
  totalMembers: number;
6938
+ totalTeams: number;
6939
+ totalPC: number;
6869
6940
  totalAccountGroups: number;
6941
+ totalAccounts: number;
6870
6942
  totalIdea: number;
6871
6943
  totalNiche: number;
6872
6944
  totalType: {
@@ -6874,13 +6946,21 @@ interface FindOverViewInstagramSettingInteractStoryDto {
6874
6946
  TM: number;
6875
6947
  NTM: number;
6876
6948
  };
6877
- totalDevice: {
6878
- total: number;
6879
- android: number;
6880
- ios: number;
6949
+ totalSocial: {
6950
+ active: number;
6951
+ pending: number;
6952
+ inactive: number;
6953
+ suspended: number;
6954
+ };
6955
+ totalLogin: {
6956
+ available: number;
6957
+ unAvailable: number;
6958
+ na: number;
6959
+ };
6960
+ totalStatus: {
6961
+ active: number;
6962
+ inactive: number;
6881
6963
  };
6882
- statusActive: number;
6883
- statusInactive: number;
6884
6964
  }
6885
6965
  interface FindInstagramSettingInteractStoryDto extends IFindBaseDto {
6886
6966
  idea: {
@@ -6950,11 +7030,13 @@ interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, IFilter
6950
7030
  }
6951
7031
 
6952
7032
  interface FindOverViewInstagramSettingInteractUnFollowDto {
6953
- totalAccounts: number;
6954
- totalPC: number;
6955
- totalLeader: number;
7033
+ totalDepartments: number;
7034
+ totalLeaders: number;
6956
7035
  totalMembers: number;
7036
+ totalTeams: number;
7037
+ totalPC: number;
6957
7038
  totalAccountGroups: number;
7039
+ totalAccounts: number;
6958
7040
  totalIdea: number;
6959
7041
  totalNiche: number;
6960
7042
  totalType: {
@@ -6962,13 +7044,21 @@ interface FindOverViewInstagramSettingInteractUnFollowDto {
6962
7044
  TM: number;
6963
7045
  NTM: number;
6964
7046
  };
6965
- totalDevice: {
6966
- total: number;
6967
- android: number;
6968
- ios: number;
7047
+ totalSocial: {
7048
+ active: number;
7049
+ pending: number;
7050
+ inactive: number;
7051
+ suspended: number;
7052
+ };
7053
+ totalLogin: {
7054
+ available: number;
7055
+ unAvailable: number;
7056
+ na: number;
7057
+ };
7058
+ totalStatus: {
7059
+ active: number;
7060
+ inactive: number;
6969
7061
  };
6970
- statusActive: number;
6971
- statusInactive: number;
6972
7062
  }
6973
7063
  interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto {
6974
7064
  idea: {
@@ -7033,11 +7123,13 @@ interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, IFil
7033
7123
  }
7034
7124
 
7035
7125
  interface FindOverViewInstagramSettingPostDto {
7036
- totalAccounts: number;
7037
- totalPC: number;
7038
- totalLeader: number;
7126
+ totalDepartments: number;
7127
+ totalLeaders: number;
7039
7128
  totalMembers: number;
7129
+ totalTeams: number;
7130
+ totalPC: number;
7040
7131
  totalAccountGroups: number;
7132
+ totalAccounts: number;
7041
7133
  totalIdea: number;
7042
7134
  totalNiche: number;
7043
7135
  totalType: {
@@ -7045,13 +7137,21 @@ interface FindOverViewInstagramSettingPostDto {
7045
7137
  TM: number;
7046
7138
  NTM: number;
7047
7139
  };
7048
- totalDevice: {
7049
- total: number;
7050
- android: number;
7051
- ios: number;
7140
+ totalSocial: {
7141
+ active: number;
7142
+ pending: number;
7143
+ inactive: number;
7144
+ suspended: number;
7145
+ };
7146
+ totalLogin: {
7147
+ available: number;
7148
+ unAvailable: number;
7149
+ na: number;
7150
+ };
7151
+ totalStatus: {
7152
+ active: number;
7153
+ inactive: number;
7052
7154
  };
7053
- statusActive: number;
7054
- statusInactive: number;
7055
7155
  }
7056
7156
  interface FindInstagramSettingPostDto extends IFindBaseDto {
7057
7157
  idea: {
@@ -7107,11 +7207,13 @@ interface FilterInstagramSettingPostDto extends IFilterBaseDto, IFilterBaseAccou
7107
7207
  }
7108
7208
 
7109
7209
  interface FindOverViewTaskInstagramBlockUserDto {
7110
- totalAccounts: number;
7111
- totalPC: number;
7112
- totalLeader: number;
7210
+ totalDepartments: number;
7211
+ totalLeaders: number;
7113
7212
  totalMembers: number;
7213
+ totalTeams: number;
7214
+ totalPC: number;
7114
7215
  totalAccountGroups: number;
7216
+ totalAccounts: number;
7115
7217
  totalIdea: number;
7116
7218
  totalNiche: number;
7117
7219
  totalType: {
@@ -7119,10 +7221,16 @@ interface FindOverViewTaskInstagramBlockUserDto {
7119
7221
  TM: number;
7120
7222
  NTM: number;
7121
7223
  };
7122
- totalDevice: {
7123
- total: number;
7124
- android: number;
7125
- ios: number;
7224
+ totalSocial: {
7225
+ active: number;
7226
+ pending: number;
7227
+ inactive: number;
7228
+ suspended: number;
7229
+ };
7230
+ totalLogin: {
7231
+ available: number;
7232
+ unAvailable: number;
7233
+ na: number;
7126
7234
  };
7127
7235
  totalTasks: {
7128
7236
  pending: number;
@@ -7219,11 +7327,13 @@ interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, IFilterBaseAcc
7219
7327
  }
7220
7328
 
7221
7329
  interface FindOverViewTaskInstagramChangeInfoDto {
7222
- totalAccounts: number;
7223
- totalPC: number;
7224
- totalLeader: number;
7330
+ totalDepartments: number;
7331
+ totalLeaders: number;
7225
7332
  totalMembers: number;
7333
+ totalTeams: number;
7334
+ totalPC: number;
7226
7335
  totalAccountGroups: number;
7336
+ totalAccounts: number;
7227
7337
  totalIdea: number;
7228
7338
  totalNiche: number;
7229
7339
  totalType: {
@@ -7231,10 +7341,16 @@ interface FindOverViewTaskInstagramChangeInfoDto {
7231
7341
  TM: number;
7232
7342
  NTM: number;
7233
7343
  };
7234
- totalDevice: {
7235
- total: number;
7236
- android: number;
7237
- ios: number;
7344
+ totalSocial: {
7345
+ active: number;
7346
+ pending: number;
7347
+ inactive: number;
7348
+ suspended: number;
7349
+ };
7350
+ totalLogin: {
7351
+ available: number;
7352
+ unAvailable: number;
7353
+ na: number;
7238
7354
  };
7239
7355
  totalTasks: {
7240
7356
  pending: number;
@@ -7291,11 +7407,13 @@ interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, IFilterBaseAc
7291
7407
  }
7292
7408
 
7293
7409
  interface FindOverViewTaskInstagramFollowDto {
7294
- totalAccounts: number;
7295
- totalPC: number;
7296
- totalLeader: number;
7410
+ totalDepartments: number;
7411
+ totalLeaders: number;
7297
7412
  totalMembers: number;
7413
+ totalTeams: number;
7414
+ totalPC: number;
7298
7415
  totalAccountGroups: number;
7416
+ totalAccounts: number;
7299
7417
  totalIdea: number;
7300
7418
  totalNiche: number;
7301
7419
  totalType: {
@@ -7303,10 +7421,16 @@ interface FindOverViewTaskInstagramFollowDto {
7303
7421
  TM: number;
7304
7422
  NTM: number;
7305
7423
  };
7306
- totalDevice: {
7307
- total: number;
7308
- android: number;
7309
- ios: number;
7424
+ totalSocial: {
7425
+ active: number;
7426
+ pending: number;
7427
+ inactive: number;
7428
+ suspended: number;
7429
+ };
7430
+ totalLogin: {
7431
+ available: number;
7432
+ unAvailable: number;
7433
+ na: number;
7310
7434
  };
7311
7435
  totalTasks: {
7312
7436
  pending: number;
@@ -7363,11 +7487,13 @@ interface FilterTaskInstagramFollowDto extends IFilterBaseDto, IFilterBaseAccoun
7363
7487
  }
7364
7488
 
7365
7489
  interface FindOverViewTaskInstagramReplyCommentDto {
7366
- totalAccounts: number;
7367
- totalPC: number;
7368
- totalLeader: number;
7490
+ totalDepartments: number;
7491
+ totalLeaders: number;
7369
7492
  totalMembers: number;
7493
+ totalTeams: number;
7494
+ totalPC: number;
7370
7495
  totalAccountGroups: number;
7496
+ totalAccounts: number;
7371
7497
  totalIdea: number;
7372
7498
  totalNiche: number;
7373
7499
  totalType: {
@@ -7375,10 +7501,16 @@ interface FindOverViewTaskInstagramReplyCommentDto {
7375
7501
  TM: number;
7376
7502
  NTM: number;
7377
7503
  };
7378
- totalDevice: {
7379
- total: number;
7380
- android: number;
7381
- ios: number;
7504
+ totalSocial: {
7505
+ active: number;
7506
+ pending: number;
7507
+ inactive: number;
7508
+ suspended: number;
7509
+ };
7510
+ totalLogin: {
7511
+ available: number;
7512
+ unAvailable: number;
7513
+ na: number;
7382
7514
  };
7383
7515
  totalTasks: {
7384
7516
  pending: number;
@@ -7435,11 +7567,13 @@ interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, IFilterBase
7435
7567
  }
7436
7568
 
7437
7569
  interface FindOverViewTaskInstagramReplyMessageDto {
7438
- totalAccounts: number;
7439
- totalPC: number;
7440
- totalLeader: number;
7570
+ totalDepartments: number;
7571
+ totalLeaders: number;
7441
7572
  totalMembers: number;
7573
+ totalTeams: number;
7574
+ totalPC: number;
7442
7575
  totalAccountGroups: number;
7576
+ totalAccounts: number;
7443
7577
  totalIdea: number;
7444
7578
  totalNiche: number;
7445
7579
  totalType: {
@@ -7447,10 +7581,16 @@ interface FindOverViewTaskInstagramReplyMessageDto {
7447
7581
  TM: number;
7448
7582
  NTM: number;
7449
7583
  };
7450
- totalDevice: {
7451
- total: number;
7452
- android: number;
7453
- ios: number;
7584
+ totalSocial: {
7585
+ active: number;
7586
+ pending: number;
7587
+ inactive: number;
7588
+ suspended: number;
7589
+ };
7590
+ totalLogin: {
7591
+ available: number;
7592
+ unAvailable: number;
7593
+ na: number;
7454
7594
  };
7455
7595
  totalTasks: {
7456
7596
  pending: number;
@@ -7507,11 +7647,13 @@ interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, IFilterBase
7507
7647
  }
7508
7648
 
7509
7649
  interface FindOverViewTaskInstagramPostDto {
7510
- totalAccounts: number;
7511
- totalPC: number;
7512
- totalLeader: number;
7650
+ totalDepartments: number;
7651
+ totalLeaders: number;
7513
7652
  totalMembers: number;
7653
+ totalTeams: number;
7654
+ totalPC: number;
7514
7655
  totalAccountGroups: number;
7656
+ totalAccounts: number;
7515
7657
  totalIdea: number;
7516
7658
  totalNiche: number;
7517
7659
  totalType: {
@@ -7519,10 +7661,16 @@ interface FindOverViewTaskInstagramPostDto {
7519
7661
  TM: number;
7520
7662
  NTM: number;
7521
7663
  };
7522
- totalDevice: {
7523
- total: number;
7524
- android: number;
7525
- ios: number;
7664
+ totalSocial: {
7665
+ active: number;
7666
+ pending: number;
7667
+ inactive: number;
7668
+ suspended: number;
7669
+ };
7670
+ totalLogin: {
7671
+ available: number;
7672
+ unAvailable: number;
7673
+ na: number;
7526
7674
  };
7527
7675
  totalTasks: {
7528
7676
  pending: number;
@@ -7577,7 +7725,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
7577
7725
  accountDeviceTypeAppClone: string;
7578
7726
  accountDeviceNameAppClone: string;
7579
7727
  };
7580
- sstAccount: string;
7728
+ sttAccount: string;
7581
7729
  accountID: string;
7582
7730
  sheetUrl: string;
7583
7731
  sheetName: string;
@@ -7681,11 +7829,13 @@ interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountS
7681
7829
  }
7682
7830
 
7683
7831
  interface FindOverViewTaskInstagramInteractExploreDto {
7684
- totalAccounts: number;
7685
- totalPC: number;
7686
- totalLeader: number;
7832
+ totalDepartments: number;
7833
+ totalLeaders: number;
7687
7834
  totalMembers: number;
7835
+ totalTeams: number;
7836
+ totalPC: number;
7688
7837
  totalAccountGroups: number;
7838
+ totalAccounts: number;
7689
7839
  totalIdea: number;
7690
7840
  totalNiche: number;
7691
7841
  totalType: {
@@ -7693,10 +7843,16 @@ interface FindOverViewTaskInstagramInteractExploreDto {
7693
7843
  TM: number;
7694
7844
  NTM: number;
7695
7845
  };
7696
- totalDevice: {
7697
- total: number;
7698
- android: number;
7699
- ios: number;
7846
+ totalSocial: {
7847
+ active: number;
7848
+ pending: number;
7849
+ inactive: number;
7850
+ suspended: number;
7851
+ };
7852
+ totalLogin: {
7853
+ available: number;
7854
+ unAvailable: number;
7855
+ na: number;
7700
7856
  };
7701
7857
  totalTasks: {
7702
7858
  pending: number;
@@ -7752,11 +7908,13 @@ interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterB
7752
7908
  }
7753
7909
 
7754
7910
  interface FindOverViewTaskInstagramInteractReelDto {
7755
- totalAccounts: number;
7756
- totalPC: number;
7757
- totalLeader: number;
7911
+ totalDepartments: number;
7912
+ totalLeaders: number;
7758
7913
  totalMembers: number;
7914
+ totalTeams: number;
7915
+ totalPC: number;
7759
7916
  totalAccountGroups: number;
7917
+ totalAccounts: number;
7760
7918
  totalIdea: number;
7761
7919
  totalNiche: number;
7762
7920
  totalType: {
@@ -7764,10 +7922,16 @@ interface FindOverViewTaskInstagramInteractReelDto {
7764
7922
  TM: number;
7765
7923
  NTM: number;
7766
7924
  };
7767
- totalDevice: {
7768
- total: number;
7769
- android: number;
7770
- ios: number;
7925
+ totalSocial: {
7926
+ active: number;
7927
+ pending: number;
7928
+ inactive: number;
7929
+ suspended: number;
7930
+ };
7931
+ totalLogin: {
7932
+ available: number;
7933
+ unAvailable: number;
7934
+ na: number;
7771
7935
  };
7772
7936
  totalTasks: {
7773
7937
  pending: number;
@@ -7823,11 +7987,13 @@ interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBase
7823
7987
  }
7824
7988
 
7825
7989
  interface FindOverViewTaskInstagramInteractStoryDto {
7826
- totalAccounts: number;
7827
- totalPC: number;
7828
- totalLeader: number;
7990
+ totalDepartments: number;
7991
+ totalLeaders: number;
7829
7992
  totalMembers: number;
7993
+ totalTeams: number;
7994
+ totalPC: number;
7830
7995
  totalAccountGroups: number;
7996
+ totalAccounts: number;
7831
7997
  totalIdea: number;
7832
7998
  totalNiche: number;
7833
7999
  totalType: {
@@ -7835,10 +8001,16 @@ interface FindOverViewTaskInstagramInteractStoryDto {
7835
8001
  TM: number;
7836
8002
  NTM: number;
7837
8003
  };
7838
- totalDevice: {
7839
- total: number;
7840
- android: number;
7841
- ios: number;
8004
+ totalSocial: {
8005
+ active: number;
8006
+ pending: number;
8007
+ inactive: number;
8008
+ suspended: number;
8009
+ };
8010
+ totalLogin: {
8011
+ available: number;
8012
+ unAvailable: number;
8013
+ na: number;
7842
8014
  };
7843
8015
  totalTasks: {
7844
8016
  pending: number;
@@ -10451,12 +10623,9 @@ type index$6_FilterHistoryTaskCanvaDto = FilterHistoryTaskCanvaDto;
10451
10623
  type index$6_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
10452
10624
  type index$6_FilterInstagramAccountRunDto = FilterInstagramAccountRunDto;
10453
10625
  type index$6_FilterInstagramDashboardFollowerDto = FilterInstagramDashboardFollowerDto;
10454
- type index$6_FilterInstagramHistoryAutoPostDto = FilterInstagramHistoryAutoPostDto;
10455
10626
  type index$6_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
10456
- type index$6_FilterInstagramHistoryBlockUserDto = FilterInstagramHistoryBlockUserDto;
10457
10627
  type index$6_FilterInstagramHistoryChangeInfoDto = FilterInstagramHistoryChangeInfoDto;
10458
10628
  type index$6_FilterInstagramHistoryCreateNewDto = FilterInstagramHistoryCreateNewDto;
10459
- type index$6_FilterInstagramHistoryFollowDto = FilterInstagramHistoryFollowDto;
10460
10629
  type index$6_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
10461
10630
  type index$6_FilterInstagramReportInteractBlockUserDto = FilterInstagramReportInteractBlockUserDto;
10462
10631
  type index$6_FilterInstagramReportInteractExploreDto = FilterInstagramReportInteractExploreDto;
@@ -10513,7 +10682,6 @@ type index$6_FilterTeamDto = FilterTeamDto;
10513
10682
  type index$6_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
10514
10683
  type index$6_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
10515
10684
  type index$6_FilterThreadsDashboardFollowerDto = FilterThreadsDashboardFollowerDto;
10516
- type index$6_FilterThreadsHistoryAutoPostDto = FilterThreadsHistoryAutoPostDto;
10517
10685
  type index$6_FilterThreadsHistoryAutoSyncDto = FilterThreadsHistoryAutoSyncDto;
10518
10686
  type index$6_FilterThreadsHistoryChangeDto = FilterThreadsHistoryChangeDto;
10519
10687
  type index$6_FilterThreadsHistoryCreateNewDto = FilterThreadsHistoryCreateNewDto;
@@ -10570,12 +10738,9 @@ type index$6_FindHistoryTaskAIVoiceDto = FindHistoryTaskAIVoiceDto;
10570
10738
  type index$6_FindHistoryTaskCanvaDto = FindHistoryTaskCanvaDto;
10571
10739
  type index$6_FindInstagramAccountRawDto = FindInstagramAccountRawDto;
10572
10740
  type index$6_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
10573
- type index$6_FindInstagramHistoryAutoPostDto = FindInstagramHistoryAutoPostDto;
10574
10741
  type index$6_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
10575
- type index$6_FindInstagramHistoryBlockUserDto = FindInstagramHistoryBlockUserDto;
10576
10742
  type index$6_FindInstagramHistoryChangeInfoDto = FindInstagramHistoryChangeInfoDto;
10577
10743
  type index$6_FindInstagramHistoryCreateNewDto = FindInstagramHistoryCreateNewDto;
10578
- type index$6_FindInstagramHistoryFollowDto = FindInstagramHistoryFollowDto;
10579
10744
  type index$6_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
10580
10745
  type index$6_FindInstagramSettingInteractExploreDto = FindInstagramSettingInteractExploreDto;
10581
10746
  type index$6_FindInstagramSettingInteractFollowDto = FindInstagramSettingInteractFollowDto;
@@ -10657,12 +10822,9 @@ type index$6_FindOverviewDeviceLog = FindOverviewDeviceLog;
10657
10822
  type index$6_FindOverviewDeviceSocialMediaAccountDto = FindOverviewDeviceSocialMediaAccountDto;
10658
10823
  type index$6_FindOverviewDeviceSocialMediaActiveLockedDto = FindOverviewDeviceSocialMediaActiveLockedDto;
10659
10824
  type index$6_FindOverviewInstagramDashboardFollowerDto = FindOverviewInstagramDashboardFollowerDto;
10660
- type index$6_FindOverviewInstagramHistoryAutoPostDto = FindOverviewInstagramHistoryAutoPostDto;
10661
10825
  type index$6_FindOverviewInstagramHistoryAutoSyncDto = FindOverviewInstagramHistoryAutoSyncDto;
10662
- type index$6_FindOverviewInstagramHistoryBlockUserDto = FindOverviewInstagramHistoryBlockUserDto;
10663
10826
  type index$6_FindOverviewInstagramHistoryChangeInfoDto = FindOverviewInstagramHistoryChangeInfoDto;
10664
10827
  type index$6_FindOverviewInstagramHistoryCreateNewDto = FindOverviewInstagramHistoryCreateNewDto;
10665
- type index$6_FindOverviewInstagramHistoryFollowDto = FindOverviewInstagramHistoryFollowDto;
10666
10828
  type index$6_FindOverviewInstagramHistoryGroupDto = FindOverviewInstagramHistoryGroupDto;
10667
10829
  type index$6_FindOverviewProxyDto = FindOverviewProxyDto;
10668
10830
  type index$6_FindOverviewRoleDto = FindOverviewRoleDto;
@@ -10706,7 +10868,6 @@ type index$6_FindTasksJobDto = FindTasksJobDto;
10706
10868
  type index$6_FindTeamDto = FindTeamDto;
10707
10869
  type index$6_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
10708
10870
  type index$6_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
10709
- type index$6_FindThreadsHistoryAutoPostDto = FindThreadsHistoryAutoPostDto;
10710
10871
  type index$6_FindThreadsHistoryAutoSyncDto = FindThreadsHistoryAutoSyncDto;
10711
10872
  type index$6_FindThreadsHistoryChangeDto = FindThreadsHistoryChangeDto;
10712
10873
  type index$6_FindThreadsHistoryCreateNewDto = FindThreadsHistoryCreateNewDto;
@@ -10772,7 +10933,7 @@ type index$6_UpdateTeamDto = UpdateTeamDto;
10772
10933
  type index$6_UpdateUserDto = UpdateUserDto;
10773
10934
  type index$6_ViewDetailDeviceDto = ViewDetailDeviceDto;
10774
10935
  declare namespace index$6 {
10775
- export type { index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index$6_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index$6_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index$6_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index$6_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractExploreDto as FindOverViewInstagramSettingInteractExploreDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReelDto as FindOverViewInstagramSettingInteractReelDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractStoryDto as FindOverViewInstagramSettingInteractStoryDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index$6_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index$6_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index$6_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index$6_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_IUserInfoAssignment as IUserInfoAssignment, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index$6_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index$6_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto };
10936
+ export type { index$6_ActionPopupDeviceAccountDto as ActionPopupDeviceAccountDto, index$6_AddAccountForDeviceDto as AddAccountForDeviceDto, index$6_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index$6_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index$6_AddToDeviceProxyDto as AddToDeviceProxyDto, index$6_ApplyAutoFillDeviceDto as ApplyAutoFillDeviceDto, index$6_ApplyReplaceDeviceDto as ApplyReplaceDeviceDto, index$6_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index$6_AutoFillAssignedMemberInstagramAccountRawDto as AutoFillAssignedMemberInstagramAccountRawDto, index$6_AutoFillAssignedMemberThreadsAccountRawDto as AutoFillAssignedMemberThreadsAccountRawDto, index$6_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index$6_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index$6_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index$6_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index$6_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index$6_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index$6_CheckSendMessageLark as CheckSendMessageLark, index$6_CreateAccountSocialGroupDto as CreateAccountSocialGroupDto, index$6_CreateAccountVPSDto as CreateAccountVPSDto, index$6_CreateBlogDto as CreateBlogDto, index$6_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index$6_CreateDepartmentDto as CreateDepartmentDto, index$6_CreateLarkDto as CreateLarkDto, index$6_CreateManagerWorkDto as CreateManagerWorkDto, index$6_CreatePCDto as CreatePCDto, index$6_CreateProxyDto as CreateProxyDto, index$6_CreateRoleDto as CreateRoleDto, index$6_CreateSheetToolDto as CreateSheetToolDto, index$6_CreateSheetWorkDto as CreateSheetWorkDto, index$6_CreateTaskAIContentDto as CreateTaskAIContentDto, index$6_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index$6_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index$6_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index$6_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index$6_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index$6_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index$6_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index$6_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index$6_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index$6_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index$6_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index$6_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index$6_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index$6_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index$6_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index$6_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index$6_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index$6_CreateTasksJobDto as CreateTasksJobDto, index$6_CreateTeamDto as CreateTeamDto, index$6_CreateUserDto as CreateUserDto, index$6_DevicePopupListAddAccountDto as DevicePopupListAddAccountDto, index$6_DevicePopupOverviewAccountsDto as DevicePopupOverviewAccountsDto, index$6_DevicePopupOverviewAddAccountDto as DevicePopupOverviewAddAccountDto, index$6_DevicePopupViewAccountInstagramDto as DevicePopupViewAccountInstagramDto, index$6_DevicePopupViewAccountThreadsDto as DevicePopupViewAccountThreadsDto, index$6_ExportDto as ExportDto, index$6_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index$6_FilterAccountAIContentDto as FilterAccountAIContentDto, index$6_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index$6_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index$6_FilterAccountAIImageDto as FilterAccountAIImageDto, index$6_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index$6_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index$6_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index$6_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index$6_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index$6_FilterAccountCanvaDto as FilterAccountCanvaDto, index$6_FilterAccountDriveDto as FilterAccountDriveDto, index$6_FilterAccountEmailDto as FilterAccountEmailDto, index$6_FilterAccountSocialGroupDto as FilterAccountSocialGroupDto, index$6_FilterAccountVPNDto as FilterAccountVPNDto, index$6_FilterAccountVPSDto as FilterAccountVPSDto, index$6_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index$6_FilterBaseDto as FilterBaseDto, index$6_FilterBaseSocialDto as FilterBaseSocialDto, index$6_FilterBlogCategoryDto as FilterBlogCategoryDto, index$6_FilterBlogDto as FilterBlogDto, index$6_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index$6_FilterCheckerAccountThreadsDashboardFollowerDto as FilterCheckerAccountThreadsDashboardFollowerDto, index$6_FilterDepartmentDto as FilterDepartmentDto, index$6_FilterDeviceDto as FilterDeviceDto, index$6_FilterDeviceLogDto as FilterDeviceLogDto, index$6_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index$6_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index$6_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index$6_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index$6_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index$6_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index$6_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index$6_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index$6_FilterInstagramHistoryChangeInfoDto as FilterInstagramHistoryChangeInfoDto, index$6_FilterInstagramHistoryCreateNewDto as FilterInstagramHistoryCreateNewDto, index$6_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index$6_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index$6_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index$6_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index$6_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index$6_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index$6_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index$6_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index$6_FilterInstagramReportInteractUnFollowDto as FilterInstagramReportInteractUnFollowDto, index$6_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index$6_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index$6_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index$6_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index$6_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index$6_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index$6_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index$6_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index$6_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index$6_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index$6_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index$6_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index$6_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index$6_FilterLarkDto as FilterLarkDto, index$6_FilterManagerImageAIDto as FilterManagerImageAIDto, index$6_FilterManagerSheetDto as FilterManagerSheetDto, index$6_FilterManagerWorkDto as FilterManagerWorkDto, index$6_FilterPCDto as FilterPCDto, index$6_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FilterPerformanceBreakdownThreadsDashboardFollowerDto as FilterPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FilterProxyDto as FilterProxyDto, index$6_FilterRoleDto as FilterRoleDto, index$6_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index$6_FilterSheetWorkDto as FilterSheetWorkDto, index$6_FilterSheetsToolDto as FilterSheetsToolDto, index$6_FilterTaskAIContentDto as FilterTaskAIContentDto, index$6_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index$6_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index$6_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index$6_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index$6_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index$6_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index$6_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index$6_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index$6_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index$6_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index$6_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index$6_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index$6_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index$6_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index$6_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index$6_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index$6_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index$6_FilterTeamDto as FilterTeamDto, index$6_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index$6_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index$6_FilterThreadsDashboardFollowerDto as FilterThreadsDashboardFollowerDto, index$6_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index$6_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index$6_FilterThreadsHistoryCreateNewDto as FilterThreadsHistoryCreateNewDto, index$6_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index$6_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index$6_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index$6_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index$6_FilterThreadsReportInteractUnFollowDto as FilterThreadsReportInteractUnFollowDto, index$6_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index$6_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index$6_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index$6_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index$6_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index$6_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index$6_FilterUserDto as FilterUserDto, index$6_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index$6_FindAccountAIContentDto as FindAccountAIContentDto, index$6_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index$6_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index$6_FindAccountAIImageDto as FindAccountAIImageDto, index$6_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index$6_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index$6_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index$6_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index$6_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index$6_FindAccountCanvaDto as FindAccountCanvaDto, index$6_FindAccountDriveDto as FindAccountDriveDto, index$6_FindAccountEmailDto as FindAccountEmailDto, index$6_FindAccountForCheckerInstagramDashboard as FindAccountForCheckerInstagramDashboard, index$6_FindAccountForCheckerThreadsDashboard as FindAccountForCheckerThreadsDashboard, index$6_FindAccountSocialGroupDto as FindAccountSocialGroupDto, index$6_FindAccountSocialGroupPopupSocialDto as FindAccountSocialGroupPopupSocialDto, index$6_FindAccountVPNDto as FindAccountVPNDto, index$6_FindAccountVPSDto as FindAccountVPSDto, index$6_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index$6_FindAccountVPSGroupPopupDto as FindAccountVPSGroupPopupDto, index$6_FindAutoFillDeviceDto as FindAutoFillDeviceDto, index$6_FindBlogCategoryDto as FindBlogCategoryDto, index$6_FindBlogDto as FindBlogDto, index$6_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index$6_FindCheckerAccountThreadsDashboardFollowerDto as FindCheckerAccountThreadsDashboardFollowerDto, index$6_FindDepartmentDto as FindDepartmentDto, index$6_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index$6_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index$6_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index$6_FindDeviceDto as FindDeviceDto, index$6_FindDeviceLogDto as FindDeviceLogDto, index$6_FindForReviewDto as FindForReviewDto, index$6_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index$6_FindGrowthThreadsDashboardFollowerDto as FindGrowthThreadsDashboardFollowerDto, index$6_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index$6_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index$6_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index$6_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index$6_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index$6_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index$6_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index$6_FindInstagramHistoryChangeInfoDto as FindInstagramHistoryChangeInfoDto, index$6_FindInstagramHistoryCreateNewDto as FindInstagramHistoryCreateNewDto, index$6_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index$6_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index$6_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index$6_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index$6_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index$6_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index$6_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index$6_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index$6_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index$6_FindLarkDto as FindLarkDto, index$6_FindManagerImageAIDto as FindManagerImageAIDto, index$6_FindManagerSheetDto as FindManagerSheetDto, index$6_FindManagerWorkDto as FindManagerWorkDto, index$6_FindMemberForAddTeamDto as FindMemberForAddTeamDto, index$6_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index$6_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index$6_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index$6_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index$6_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index$6_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index$6_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index$6_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index$6_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index$6_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index$6_FindOverViewInstagramReportInteractUnFollowDto as FindOverViewInstagramReportInteractUnFollowDto, index$6_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index$6_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index$6_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index$6_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index$6_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index$6_FindOverViewInstagramSettingInteractExploreDto as FindOverViewInstagramSettingInteractExploreDto, index$6_FindOverViewInstagramSettingInteractFollowDto as FindOverViewInstagramSettingInteractFollowDto, index$6_FindOverViewInstagramSettingInteractReelDto as FindOverViewInstagramSettingInteractReelDto, index$6_FindOverViewInstagramSettingInteractReplyCommentDto as FindOverViewInstagramSettingInteractReplyCommentDto, index$6_FindOverViewInstagramSettingInteractReplyMessageDto as FindOverViewInstagramSettingInteractReplyMessageDto, index$6_FindOverViewInstagramSettingInteractStoryDto as FindOverViewInstagramSettingInteractStoryDto, index$6_FindOverViewInstagramSettingInteractUnFollowDto as FindOverViewInstagramSettingInteractUnFollowDto, index$6_FindOverViewInstagramSettingPostDto as FindOverViewInstagramSettingPostDto, index$6_FindOverViewLarkDto as FindOverViewLarkDto, index$6_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index$6_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index$6_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index$6_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index$6_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index$6_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index$6_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index$6_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index$6_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index$6_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index$6_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index$6_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index$6_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index$6_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index$6_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index$6_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index$6_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index$6_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index$6_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index$6_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index$6_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index$6_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index$6_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index$6_FindOverViewThreadsReportInteractUnFollowDto as FindOverViewThreadsReportInteractUnFollowDto, index$6_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index$6_FindOverViewThreadsSettingInteractFollowDto as FindOverViewThreadsSettingInteractFollowDto, index$6_FindOverViewThreadsSettingInteractReplyCommentDto as FindOverViewThreadsSettingInteractReplyCommentDto, index$6_FindOverViewThreadsSettingInteractReplyMessageDto as FindOverViewThreadsSettingInteractReplyMessageDto, index$6_FindOverViewThreadsSettingInteractUnFollowDto as FindOverViewThreadsSettingInteractUnFollowDto, index$6_FindOverViewThreadsSettingPostDto as FindOverViewThreadsSettingPostDto, index$6_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index$6_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index$6_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index$6_FindOverviewAccountEmailDto as FindOverviewAccountEmailDto, index$6_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index$6_FindOverviewAccountVPSDto as FindOverviewAccountVPSDto, index$6_FindOverviewDeviceBasicDto as FindOverviewDeviceBasicDto, index$6_FindOverviewDeviceDetailDto as FindOverviewDeviceDetailDto, index$6_FindOverviewDeviceLog as FindOverviewDeviceLog, index$6_FindOverviewDeviceSocialMediaAccountDto as FindOverviewDeviceSocialMediaAccountDto, index$6_FindOverviewDeviceSocialMediaActiveLockedDto as FindOverviewDeviceSocialMediaActiveLockedDto, index$6_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index$6_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index$6_FindOverviewInstagramHistoryChangeInfoDto as FindOverviewInstagramHistoryChangeInfoDto, index$6_FindOverviewInstagramHistoryCreateNewDto as FindOverviewInstagramHistoryCreateNewDto, index$6_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index$6_FindOverviewProxyDto as FindOverviewProxyDto, index$6_FindOverviewRoleDto as FindOverviewRoleDto, index$6_FindOverviewTeamDto as FindOverviewTeamDto, index$6_FindOverviewThreadsDashboardFollowerDto as FindOverviewThreadsDashboardFollowerDto, index$6_FindOverviewThreadsHistoryCreateNewDto as FindOverviewThreadsHistoryCreateNewDto, index$6_FindOverviewUserDto as FindOverviewUserDto, index$6_FindPCDto as FindPCDto, index$6_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index$6_FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto as FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, index$6_FindPerformanceBreakdownThreadsDashboardFollowerDto as FindPerformanceBreakdownThreadsDashboardFollowerDto, index$6_FindProxyDto as FindProxyDto, index$6_FindReplaceDeviceDto as FindReplaceDeviceDto, index$6_FindRoleDetailDto as FindRoleDetailDto, index$6_FindRoleDto as FindRoleDto, index$6_FindRoleOfMe as FindRoleOfMe, index$6_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index$6_FindSheetWorkDto as FindSheetWorkDto, index$6_FindSheetsToolDto as FindSheetsToolDto, index$6_FindTaskAIContentDto as FindTaskAIContentDto, index$6_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index$6_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index$6_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index$6_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index$6_FindTaskAvailableAIContentDto as FindTaskAvailableAIContentDto, index$6_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index$6_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index$6_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index$6_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index$6_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index$6_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index$6_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index$6_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index$6_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index$6_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index$6_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index$6_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index$6_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index$6_FindTasksJobDto as FindTasksJobDto, index$6_FindTeamDto as FindTeamDto, index$6_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index$6_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index$6_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index$6_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index$6_FindThreadsHistoryCreateNewDto as FindThreadsHistoryCreateNewDto, index$6_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index$6_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index$6_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index$6_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index$6_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index$6_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index$6_FindUserDto as FindUserDto, index$6_IBaseELS as IBaseELS, index$6_IBaseRefFieldELS as IBaseRefFieldELS, index$6_IBaseSheetImportDto as IBaseSheetImportDto, index$6_IDevicePopupViewAccountSocial as IDevicePopupViewAccountSocial, index$6_IFilterAssignDto as IFilterAssignDto, index$6_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index$6_IFilterBaseDto as IFilterBaseDto, index$6_IFindBaseDto as IFindBaseDto, index$6_IUserInfoAssignment as IUserInfoAssignment, index$6_ImportAccountVPSDto as ImportAccountVPSDto, index$6_ImportDto as ImportDto, index$6_ImportManagerWorkDto as ImportManagerWorkDto, index$6_ImportSheetWorkDto as ImportSheetWorkDto, index$6_LoadInfoUrlSheetToolDto as LoadInfoUrlSheetToolDto, index$6_OverviewSheetsToolDto as OverviewSheetsToolDto, index$6_PayloadUrlSheetToolDto as PayloadUrlSheetToolDto, index$6_ReplaceAccountVSPDto as ReplaceAccountVSPDto, index$6_StatisticsManagerWorkDto as StatisticsManagerWorkDto, index$6_StatisticsSheetWorkDto as StatisticsSheetWorkDto, index$6_UpdateAccountSocialGroupDto as UpdateAccountSocialGroupDto, index$6_UpdateAccountVPSDto as UpdateAccountVPSDto, index$6_UpdateBlogDto as UpdateBlogDto, index$6_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index$6_UpdateDepartmentDto as UpdateDepartmentDto, index$6_UpdateDeviceDto as UpdateDeviceDto, index$6_UpdateLarkDto as UpdateLarkDto, index$6_UpdateManagerWorkDto as UpdateManagerWorkDto, index$6_UpdatePCDto as UpdatePCDto, index$6_UpdateProxyDto as UpdateProxyDto, index$6_UpdateRoleDto as UpdateRoleDto, index$6_UpdateSheetWorkDto as UpdateSheetWorkDto, index$6_UpdateSheetsToolDto as UpdateSheetsToolDto, index$6_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index$6_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index$6_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index$6_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index$6_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index$6_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index$6_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index$6_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index$6_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index$6_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index$6_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index$6_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index$6_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index$6_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index$6_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index$6_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index$6_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index$6_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index$6_UpdateTasksJobDto as UpdateTasksJobDto, index$6_UpdateTeamDto as UpdateTeamDto, index$6_UpdateUserDto as UpdateUserDto, index$6_ViewDetailDeviceDto as ViewDetailDeviceDto };
10776
10937
  }
10777
10938
 
10778
10939
  interface IInstagramHistoryFollow extends IBaseModel, ITrackingModel<IUser> {
@@ -11063,6 +11224,8 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
11063
11224
  sheetInfo: IBaseRefFieldELS & {
11064
11225
  name: string;
11065
11226
  url: string;
11227
+ type: string;
11228
+ status: ESheetToolStatus;
11066
11229
  };
11067
11230
  listUserBlock: string[];
11068
11231
  listUserRestrict: string[];
@@ -11446,13 +11609,12 @@ interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript,
11446
11609
  account: string | IInstagramAccountRaw;
11447
11610
  sheet: string | ISheetsTool;
11448
11611
  rowId: string;
11449
- sstAccount: string;
11612
+ sttAccount: string;
11450
11613
  timeStart: Date;
11451
11614
  timeEnd: Date;
11452
11615
  timezone: ETimeZone;
11453
11616
  listDateOfWeeks: EDayOfWeek[];
11454
11617
  schedulePostTime: Array<Array<string>>;
11455
- sttAccount: string;
11456
11618
  status: EStatusTaskScript;
11457
11619
  noteFix: string;
11458
11620
  typePost: string;
@@ -11484,13 +11646,12 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
11484
11646
  status: ESheetToolStatus;
11485
11647
  };
11486
11648
  rowId: string;
11487
- sstAccount: string;
11649
+ sttAccount: string;
11488
11650
  timeStart: Date;
11489
11651
  timeEnd: Date;
11490
11652
  timezone: ETimeZone;
11491
11653
  listDateOfWeeks: EDayOfWeek[];
11492
11654
  schedulePostTime: Array<Array<string>>;
11493
- sttAccount: string;
11494
11655
  status: EStatusTaskScript;
11495
11656
  noteFix: string;
11496
11657
  typePost: string;
@@ -11503,13 +11664,12 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
11503
11664
  account: string | IInstagramAccountRaw;
11504
11665
  sheet: string | ISheetsTool;
11505
11666
  rowId: string;
11506
- sstAccount: string;
11667
+ sttAccount: string;
11507
11668
  timeStart: Date;
11508
11669
  timeEnd: Date;
11509
11670
  timezone: ETimeZone;
11510
11671
  listDateOfWeeks: EDayOfWeek[];
11511
11672
  schedulePostTime: Array<Array<string>>;
11512
- sttAccount: string;
11513
11673
  status: EStatusTaskScript;
11514
11674
  noteFix: string;
11515
11675
  typePost: string;
@@ -11555,13 +11715,12 @@ interface IInstagramReportPostNewELS extends IBaseELS {
11555
11715
  status: ESheetToolStatus;
11556
11716
  };
11557
11717
  rowId: string;
11558
- sstAccount: string;
11718
+ sttAccount: string;
11559
11719
  timeStart: Date;
11560
11720
  timeEnd: Date;
11561
11721
  timezone: ETimeZone;
11562
11722
  listDateOfWeeks: EDayOfWeek[];
11563
11723
  schedulePostTime: Array<Array<string>>;
11564
- sttAccount: string;
11565
11724
  status: EStatusTaskScript;
11566
11725
  noteFix: string;
11567
11726
  typePost: string;
@@ -11588,13 +11747,12 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
11588
11747
  account: string | IInstagramAccountRaw;
11589
11748
  sheet: string | ISheetsTool;
11590
11749
  rowId: string;
11591
- sstAccount: string;
11750
+ sttAccount: string;
11592
11751
  timeStart: Date;
11593
11752
  timeEnd: Date;
11594
11753
  timezone: ETimeZone;
11595
11754
  listDateOfWeeks: EDayOfWeek[];
11596
11755
  schedulePostTime: Array<Array<string>>;
11597
- sttAccount: string;
11598
11756
  status: EStatusTaskScript;
11599
11757
  noteFix: string;
11600
11758
  typePost: string;
@@ -11639,13 +11797,12 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
11639
11797
  status: ESheetToolStatus;
11640
11798
  };
11641
11799
  rowId: string;
11642
- sstAccount: string;
11800
+ sttAccount: string;
11643
11801
  timeStart: Date;
11644
11802
  timeEnd: Date;
11645
11803
  timezone: ETimeZone;
11646
11804
  listDateOfWeeks: EDayOfWeek[];
11647
11805
  schedulePostTime: Array<Array<string>>;
11648
- sttAccount: string;
11649
11806
  status: EStatusTaskScript;
11650
11807
  noteFix: string;
11651
11808
  typePost: string;
@@ -11672,13 +11829,12 @@ interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITra
11672
11829
  account: string | IInstagramAccountRaw;
11673
11830
  sheet: string | ISheetsTool;
11674
11831
  rowId: string;
11675
- sstAccount: string;
11832
+ sttAccount: string;
11676
11833
  timeStart: Date;
11677
11834
  timeEnd: Date;
11678
11835
  timezone: ETimeZone;
11679
11836
  listDateOfWeeks: EDayOfWeek[];
11680
11837
  schedulePostTime: Array<Array<string>>;
11681
- sttAccount: string;
11682
11838
  status: EStatusTaskScript;
11683
11839
  noteFix: string;
11684
11840
  typePost: string;
@@ -11717,13 +11873,12 @@ interface IInstagramReportPostReelELS extends IBaseELS {
11717
11873
  status: ESheetToolStatus;
11718
11874
  };
11719
11875
  rowId: string;
11720
- sstAccount: string;
11876
+ sttAccount: string;
11721
11877
  timeStart: Date;
11722
11878
  timeEnd: Date;
11723
11879
  timezone: ETimeZone;
11724
11880
  listDateOfWeeks: EDayOfWeek[];
11725
11881
  schedulePostTime: Array<Array<string>>;
11726
- sttAccount: string;
11727
11882
  status: EStatusTaskScript;
11728
11883
  noteFix: string;
11729
11884
  typePost: string;
@@ -11742,13 +11897,12 @@ interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITr
11742
11897
  account: string | IInstagramAccountRaw;
11743
11898
  sheet: string | ISheetsTool;
11744
11899
  rowId: string;
11745
- sstAccount: string;
11900
+ sttAccount: string;
11746
11901
  timeStart: Date;
11747
11902
  timeEnd: Date;
11748
11903
  timezone: ETimeZone;
11749
11904
  listDateOfWeeks: EDayOfWeek[];
11750
11905
  schedulePostTime: Array<Array<string>>;
11751
- sttAccount: string;
11752
11906
  status: EStatusTaskScript;
11753
11907
  noteFix: string;
11754
11908
  typePost: string;
@@ -11784,13 +11938,12 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
11784
11938
  status: ESheetToolStatus;
11785
11939
  };
11786
11940
  rowId: string;
11787
- sstAccount: string;
11941
+ sttAccount: string;
11788
11942
  timeStart: Date;
11789
11943
  timeEnd: Date;
11790
11944
  timezone: ETimeZone;
11791
11945
  listDateOfWeeks: EDayOfWeek[];
11792
11946
  schedulePostTime: Array<Array<string>>;
11793
- sttAccount: string;
11794
11947
  status: EStatusTaskScript;
11795
11948
  noteFix: string;
11796
11949
  typePost: string;
@@ -14435,4 +14588,4 @@ declare namespace index {
14435
14588
  export type { index_IDataDiscussTaskJob as IDataDiscussTaskJob, index_IDataNotification as IDataNotification, index_IDataUser as IDataUser, index_IFilterStore as IFilterStore, index_IResponseLogin as IResponseLogin };
14436
14589
  }
14437
14590
 
14438
- export { index$i as AI, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolStatus, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusImport, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusSocialAccountRaw, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeImport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractExploreDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReelDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractStoryDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramSettingInteractBlockUser, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramInteractExplore, type ITaskInstagramInteractExploreELS, type ITaskInstagramInteractReel, type ITaskInstagramInteractReelELS, type ITaskInstagramInteractStory, type ITaskInstagramInteractStoryELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserInfoAssignment, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };
14591
+ export { index$i as AI, type ActionPopupDeviceAccountDto, type AddAccountForDeviceDto, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillAssignedMemberThreadsAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, type DevicePopupListAddAccountDto, type DevicePopupOverviewAccountsDto, type DevicePopupOverviewAddAccountDto, type DevicePopupViewAccountInstagramDto, type DevicePopupViewAccountThreadsDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDayOfWeek, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolStatus, ESheetToolStatusImport, ESheetToolStatusRun, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDevice, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetup, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusImport, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusSocialAccountRaw, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETimeZone, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeImport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateNewDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportInteractUnFollowDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountSocialGroupPopupSocialDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAccountVPSGroupPopupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryGroupDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewInstagramSettingInteractExploreDto, type FindOverViewInstagramSettingInteractFollowDto, type FindOverViewInstagramSettingInteractReelDto, type FindOverViewInstagramSettingInteractReplyCommentDto, type FindOverViewInstagramSettingInteractReplyMessageDto, type FindOverViewInstagramSettingInteractStoryDto, type FindOverViewInstagramSettingInteractUnFollowDto, type FindOverViewInstagramSettingPostDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportInteractUnFollowDto, type FindOverViewThreadsReportPostDto, type FindOverViewThreadsSettingInteractFollowDto, type FindOverViewThreadsSettingInteractReplyCommentDto, type FindOverViewThreadsSettingInteractReplyMessageDto, type FindOverViewThreadsSettingInteractUnFollowDto, type FindOverViewThreadsSettingPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewThreadsHistoryCreateNewDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateNewDto, type FindThreadsHistoryGroupDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseRefFieldELS, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceLog, type IDeviceLogELS, type IDevicePopupViewAccountSocial, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterAssignDto, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIncreaseValueTask, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramSettingInteractBlockUser, 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 IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramBlockUserELS, type ITaskInstagramChangeInfo, type ITaskInstagramChangeInfoELS, type ITaskInstagramFollow, type ITaskInstagramFollowELS, type ITaskInstagramInteractExplore, type ITaskInstagramInteractExploreELS, type ITaskInstagramInteractReel, type ITaskInstagramInteractReelELS, type ITaskInstagramInteractStory, type ITaskInstagramInteractStoryELS, type ITaskInstagramPost, type ITaskInstagramPostELS, type ITaskInstagramReplyComment, type ITaskInstagramReplyCommentELS, type ITaskInstagramReplyMessage, type ITaskInstagramReplyMessageELS, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsFollowELS, type ITaskThreadsPost, type ITaskThreadsPostELS, type ITaskThreadsReplyComment, type ITaskThreadsReplyCommentELS, type ITaskThreadsReplyMessage, type ITaskThreadsReplyMessageELS, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportInteractUnFollow, type IThreadsReportInteractUnFollowELS, type IThreadsReportPost, type IThreadsReportPostELS, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserInfoAssignment, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$4 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$5 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };