automation-lib 5.1.246 → 5.1.247

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +828 -374
  2. package/dist/index.d.ts +828 -374
  3. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -4247,6 +4247,15 @@ interface IFilterBaseDto {
4247
4247
  createdAt: [Date, Date];
4248
4248
  updatedAt: [Date, Date];
4249
4249
  }
4250
+ interface IFilterBaseAccountSocialDto {
4251
+ idea: string[];
4252
+ niche: string[];
4253
+ type: ETypeManagerWorkClassify[];
4254
+ pc: string[];
4255
+ device: string[];
4256
+ accountGroup: string[];
4257
+ account: string[];
4258
+ }
4250
4259
  interface IBaseSheetImportDto {
4251
4260
  sheetUrl: string;
4252
4261
  sheetName: string;
@@ -4310,7 +4319,14 @@ interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup
4310
4319
  email2FA: string;
4311
4320
  emailRecover: string;
4312
4321
  }
4313
- interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
4322
+ interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4323
+ idea: string[];
4324
+ niche: string[];
4325
+ type: ETypeManagerWorkClassify[];
4326
+ pc: string[];
4327
+ device: string[];
4328
+ accountGroup: string[];
4329
+ account: string[];
4314
4330
  }
4315
4331
 
4316
4332
  interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAutoSync {
@@ -4333,7 +4349,22 @@ interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAut
4333
4349
  email2FA: string;
4334
4350
  emailRecover: string;
4335
4351
  }
4336
- interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
4352
+ interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4353
+ team: string | string[];
4354
+ leader: string | string[];
4355
+ department: string | string[];
4356
+ user: string | string[];
4357
+ createdBy: string | string[];
4358
+ updatedBy: string | string[];
4359
+ createdAt: [Date, Date];
4360
+ updatedAt: [Date, Date];
4361
+ idea: string[];
4362
+ niche: string[];
4363
+ type: ETypeManagerWorkClassify[];
4364
+ pc: string[];
4365
+ device: string[];
4366
+ accountGroup: string[];
4367
+ account: string[];
4337
4368
  }
4338
4369
 
4339
4370
  interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreate {
@@ -4356,7 +4387,14 @@ interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreat
4356
4387
  email2FA: string;
4357
4388
  emailRecover: string;
4358
4389
  }
4359
- interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
4390
+ interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4391
+ idea: string[];
4392
+ niche: string[];
4393
+ type: ETypeManagerWorkClassify[];
4394
+ pc: string[];
4395
+ device: string[];
4396
+ accountGroup: string[];
4397
+ account: string[];
4360
4398
  }
4361
4399
 
4362
4400
  interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChange {
@@ -4379,7 +4417,14 @@ interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChang
4379
4417
  email2FA: string;
4380
4418
  emailRecover: string;
4381
4419
  }
4382
- interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
4420
+ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4421
+ idea: string[];
4422
+ niche: string[];
4423
+ type: ETypeManagerWorkClassify[];
4424
+ pc: string[];
4425
+ device: string[];
4426
+ accountGroup: string[];
4427
+ account: string[];
4383
4428
  }
4384
4429
 
4385
4430
  interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
@@ -4701,17 +4746,23 @@ interface FindThreadsHistoryAutoPostDto extends IFindBaseDto, IThreadsHistoryAut
4701
4746
  device: string;
4702
4747
  accountGroup: string;
4703
4748
  account: string;
4704
- typeSocial: ETypeSocial;
4705
4749
  }
4706
- interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoPost, TOmitFilterDto> {
4707
- idea: string;
4708
- niche: string;
4709
- type: ETypeManagerWorkClassify;
4710
- pc: string;
4711
- device: string;
4712
- accountGroup: string;
4713
- account: string;
4714
- typeSocial: ETypeSocial;
4750
+ interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4751
+ team: string | string[];
4752
+ leader: string | string[];
4753
+ department: string | string[];
4754
+ user: string | string[];
4755
+ createdBy: string | string[];
4756
+ updatedBy: string | string[];
4757
+ createdAt: [Date, Date];
4758
+ updatedAt: [Date, Date];
4759
+ idea: string[];
4760
+ niche: string[];
4761
+ type: ETypeManagerWorkClassify[];
4762
+ pc: string[];
4763
+ device: string[];
4764
+ accountGroup: string[];
4765
+ account: string[];
4715
4766
  }
4716
4767
 
4717
4768
  interface FindOverViewThreadsReportPostDto {
@@ -4746,17 +4797,15 @@ interface FindThreadsReportPostDto extends IFindBaseDto, IThreadsReportPost {
4746
4797
  device: string;
4747
4798
  accountGroup: string;
4748
4799
  account: string;
4749
- typeSocial: ETypeSocial;
4750
4800
  }
4751
- interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReportPost, TOmitFilterDto> {
4752
- idea: string;
4753
- niche: string;
4754
- type: ETypeManagerWorkClassify;
4755
- pc: string;
4756
- device: string;
4757
- accountGroup: string;
4758
- account: string;
4759
- typeSocial: ETypeSocial;
4801
+ interface FilterThreadsReportPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4802
+ idea: string[];
4803
+ niche: string[];
4804
+ type: ETypeManagerWorkClassify[];
4805
+ pc: string[];
4806
+ device: string[];
4807
+ accountGroup: string[];
4808
+ account: string[];
4760
4809
  }
4761
4810
 
4762
4811
  interface FindOverViewThreadsReportInteractFollowDto {
@@ -4791,17 +4840,23 @@ interface FindThreadsReportInteractFollowDto extends IFindBaseDto, IThreadsRepor
4791
4840
  device: string;
4792
4841
  accountGroup: string;
4793
4842
  account: string;
4794
- typeSocial: ETypeSocial;
4795
4843
  }
4796
- interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThreadsReportInteractFollow, TOmitFilterDto> {
4797
- idea: string;
4798
- niche: string;
4799
- type: ETypeManagerWorkClassify;
4800
- pc: string;
4801
- device: string;
4802
- accountGroup: string;
4803
- account: string;
4804
- typeSocial: ETypeSocial;
4844
+ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4845
+ team: string | string[];
4846
+ leader: string | string[];
4847
+ department: string | string[];
4848
+ user: string | string[];
4849
+ createdBy: string | string[];
4850
+ updatedBy: string | string[];
4851
+ createdAt: [Date, Date];
4852
+ updatedAt: [Date, Date];
4853
+ idea: string[];
4854
+ niche: string[];
4855
+ type: ETypeManagerWorkClassify[];
4856
+ pc: string[];
4857
+ device: string[];
4858
+ accountGroup: string[];
4859
+ account: string[];
4805
4860
  }
4806
4861
 
4807
4862
  interface FindOverViewThreadsReportInteractReplyCommentDto {
@@ -4836,17 +4891,23 @@ interface FindThreadsReportInteractReplyCommentDto extends IFindBaseDto, IThread
4836
4891
  device: string;
4837
4892
  accountGroup: string;
4838
4893
  account: string;
4839
- typeSocial: ETypeSocial;
4840
4894
  }
4841
- interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyComment, TOmitFilterDto> {
4842
- idea: string;
4843
- niche: string;
4844
- type: ETypeManagerWorkClassify;
4845
- pc: string;
4846
- device: string;
4847
- accountGroup: string;
4848
- account: string;
4849
- typeSocial: ETypeSocial;
4895
+ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4896
+ team: string | string[];
4897
+ leader: string | string[];
4898
+ department: string | string[];
4899
+ user: string | string[];
4900
+ createdBy: string | string[];
4901
+ updatedBy: string | string[];
4902
+ createdAt: [Date, Date];
4903
+ updatedAt: [Date, Date];
4904
+ idea: string[];
4905
+ niche: string[];
4906
+ type: ETypeManagerWorkClassify[];
4907
+ pc: string[];
4908
+ device: string[];
4909
+ accountGroup: string[];
4910
+ account: string[];
4850
4911
  }
4851
4912
 
4852
4913
  interface FindOverViewThreadsReportInteractReplyMessageDto {
@@ -4881,17 +4942,23 @@ interface FindThreadsReportInteractReplyMessageDto extends IFindBaseDto, IThread
4881
4942
  device: string;
4882
4943
  accountGroup: string;
4883
4944
  account: string;
4884
- typeSocial: ETypeSocial;
4885
4945
  }
4886
- interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsReportInteractReplyMessage, TOmitFilterDto> {
4887
- idea: string;
4888
- niche: string;
4889
- type: ETypeManagerWorkClassify;
4890
- pc: string;
4891
- device: string;
4892
- accountGroup: string;
4893
- account: string;
4894
- typeSocial: ETypeSocial;
4946
+ interface FilterThreadsReportInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4947
+ team: string | string[];
4948
+ leader: string | string[];
4949
+ department: string | string[];
4950
+ user: string | string[];
4951
+ createdBy: string | string[];
4952
+ updatedBy: string | string[];
4953
+ createdAt: [Date, Date];
4954
+ updatedAt: [Date, Date];
4955
+ idea: string[];
4956
+ niche: string[];
4957
+ type: ETypeManagerWorkClassify[];
4958
+ pc: string[];
4959
+ device: string[];
4960
+ accountGroup: string[];
4961
+ account: string[];
4895
4962
  }
4896
4963
 
4897
4964
  interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
@@ -4902,17 +4969,15 @@ interface FindThreadsSettingPostDto extends IFindBaseDto, IThreadsSettingPost {
4902
4969
  device: string;
4903
4970
  accountGroup: string;
4904
4971
  account: string;
4905
- typeSocial: ETypeSocial;
4906
4972
  }
4907
- interface FilterThreadsSettingPostDto extends IFilterBaseDto, Omit<IThreadsSettingPost, TOmitFilterDto> {
4908
- idea: string;
4909
- niche: string;
4910
- type: ETypeManagerWorkClassify;
4911
- pc: string;
4912
- device: string;
4913
- accountGroup: string;
4914
- account: string;
4915
- typeSocial: ETypeSocial;
4973
+ interface FilterThreadsSettingPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4974
+ idea: string[];
4975
+ niche: string[];
4976
+ type: ETypeManagerWorkClassify[];
4977
+ pc: string[];
4978
+ device: string[];
4979
+ accountGroup: string[];
4980
+ account: string[];
4916
4981
  }
4917
4982
 
4918
4983
  interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSettingInteractFollow {
@@ -4923,17 +4988,23 @@ interface FindThreadsSettingInteractFollowDto extends IFindBaseDto, IThreadsSett
4923
4988
  device: string;
4924
4989
  accountGroup: string;
4925
4990
  account: string;
4926
- typeSocial: ETypeSocial;
4927
4991
  }
4928
- interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractFollow, TOmitFilterDto> {
4929
- idea: string;
4930
- niche: string;
4931
- type: ETypeManagerWorkClassify;
4932
- pc: string;
4933
- device: string;
4934
- accountGroup: string;
4935
- account: string;
4936
- typeSocial: ETypeSocial;
4992
+ interface FilterThreadsSettingInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
4993
+ team: string | string[];
4994
+ leader: string | string[];
4995
+ department: string | string[];
4996
+ user: string | string[];
4997
+ createdBy: string | string[];
4998
+ updatedBy: string | string[];
4999
+ createdAt: [Date, Date];
5000
+ updatedAt: [Date, Date];
5001
+ idea: string[];
5002
+ niche: string[];
5003
+ type: ETypeManagerWorkClassify[];
5004
+ pc: string[];
5005
+ device: string[];
5006
+ accountGroup: string[];
5007
+ account: string[];
4937
5008
  }
4938
5009
 
4939
5010
  interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSettingInteractUnFollow {
@@ -4944,17 +5015,23 @@ interface FindThreadsSettingInteractUnFollowDto extends IFindBaseDto, IThreadsSe
4944
5015
  device: string;
4945
5016
  accountGroup: string;
4946
5017
  account: string;
4947
- typeSocial: ETypeSocial;
4948
5018
  }
4949
- interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IThreadsSettingInteractUnFollow, TOmitFilterDto> {
4950
- idea: string;
4951
- niche: string;
4952
- type: ETypeManagerWorkClassify;
4953
- pc: string;
4954
- device: string;
4955
- accountGroup: string;
4956
- account: string;
4957
- typeSocial: ETypeSocial;
5019
+ interface FilterThreadsSettingInteractUnFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5020
+ team: string | string[];
5021
+ leader: string | string[];
5022
+ department: string | string[];
5023
+ user: string | string[];
5024
+ createdBy: string | string[];
5025
+ updatedBy: string | string[];
5026
+ createdAt: [Date, Date];
5027
+ updatedAt: [Date, Date];
5028
+ idea: string[];
5029
+ niche: string[];
5030
+ type: ETypeManagerWorkClassify[];
5031
+ pc: string[];
5032
+ device: string[];
5033
+ accountGroup: string[];
5034
+ account: string[];
4958
5035
  }
4959
5036
 
4960
5037
  interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThreadsSettingInteractReplyComment {
@@ -4965,17 +5042,23 @@ interface FindThreadsSettingInteractReplyCommentDto extends IFindBaseDto, IThrea
4965
5042
  device: string;
4966
5043
  accountGroup: string;
4967
5044
  account: string;
4968
- typeSocial: ETypeSocial;
4969
5045
  }
4970
- interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyComment, TOmitFilterDto> {
4971
- idea: string;
4972
- niche: string;
4973
- type: ETypeManagerWorkClassify;
4974
- pc: string;
4975
- device: string;
4976
- accountGroup: string;
4977
- account: string;
4978
- typeSocial: ETypeSocial;
5046
+ interface FilterThreadsSettingInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5047
+ team: string | string[];
5048
+ leader: string | string[];
5049
+ department: string | string[];
5050
+ user: string | string[];
5051
+ createdBy: string | string[];
5052
+ updatedBy: string | string[];
5053
+ createdAt: [Date, Date];
5054
+ updatedAt: [Date, Date];
5055
+ idea: string[];
5056
+ niche: string[];
5057
+ type: ETypeManagerWorkClassify[];
5058
+ pc: string[];
5059
+ device: string[];
5060
+ accountGroup: string[];
5061
+ account: string[];
4979
5062
  }
4980
5063
 
4981
5064
  interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThreadsSettingInteractReplyMessage {
@@ -4986,17 +5069,23 @@ interface FindThreadsSettingInteractReplyMessageDto extends IFindBaseDto, IThrea
4986
5069
  device: string;
4987
5070
  accountGroup: string;
4988
5071
  account: string;
4989
- typeSocial: ETypeSocial;
4990
5072
  }
4991
- interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IThreadsSettingInteractReplyMessage, TOmitFilterDto> {
4992
- idea: string;
4993
- niche: string;
4994
- type: ETypeManagerWorkClassify;
4995
- pc: string;
4996
- device: string;
4997
- accountGroup: string;
4998
- account: string;
4999
- typeSocial: ETypeSocial;
5073
+ interface FilterThreadsSettingInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5074
+ team: string | string[];
5075
+ leader: string | string[];
5076
+ department: string | string[];
5077
+ user: string | string[];
5078
+ createdBy: string | string[];
5079
+ updatedBy: string | string[];
5080
+ createdAt: [Date, Date];
5081
+ updatedAt: [Date, Date];
5082
+ idea: string[];
5083
+ niche: string[];
5084
+ type: ETypeManagerWorkClassify[];
5085
+ pc: string[];
5086
+ device: string[];
5087
+ accountGroup: string[];
5088
+ account: string[];
5000
5089
  }
5001
5090
 
5002
5091
  interface FindOverViewTaskThreadsPostDto {
@@ -5031,7 +5120,14 @@ interface UpdateTaskThreadsPostDto extends Partial<ITaskThreadsPost> {
5031
5120
  }
5032
5121
  interface FindTaskThreadsPostDto extends IFindBaseDto, ITaskThreadsPost {
5033
5122
  }
5034
- interface FilterTaskThreadsPostDto extends IFilterBaseDto, Omit<ITaskThreadsPost, TOmitFilterDto> {
5123
+ interface FilterTaskThreadsPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5124
+ idea: string[];
5125
+ niche: string[];
5126
+ type: ETypeManagerWorkClassify[];
5127
+ pc: string[];
5128
+ device: string[];
5129
+ accountGroup: string[];
5130
+ account: string[];
5035
5131
  }
5036
5132
 
5037
5133
  interface FindOverViewTaskThreadsFollowDto {
@@ -5066,7 +5162,14 @@ interface UpdateTaskThreadsFollowDto extends Partial<ITaskThreadsFollow> {
5066
5162
  }
5067
5163
  interface FindTaskThreadsFollowDto extends IFindBaseDto, ITaskThreadsFollow {
5068
5164
  }
5069
- interface FilterTaskThreadsFollowDto extends IFilterBaseDto, Omit<ITaskThreadsFollow, TOmitFilterDto> {
5165
+ interface FilterTaskThreadsFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5166
+ idea: string[];
5167
+ niche: string[];
5168
+ type: ETypeManagerWorkClassify[];
5169
+ pc: string[];
5170
+ device: string[];
5171
+ accountGroup: string[];
5172
+ account: string[];
5070
5173
  }
5071
5174
 
5072
5175
  interface FindOverViewTaskThreadsReplyCommentDto {
@@ -5101,7 +5204,22 @@ interface UpdateTaskThreadsReplyCommentDto extends Partial<ITaskThreadsReplyComm
5101
5204
  }
5102
5205
  interface FindTaskThreadsReplyCommentDto extends IFindBaseDto, ITaskThreadsReplyComment {
5103
5206
  }
5104
- interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, Omit<ITaskThreadsReplyComment, TOmitFilterDto> {
5207
+ interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5208
+ team: string | string[];
5209
+ leader: string | string[];
5210
+ department: string | string[];
5211
+ user: string | string[];
5212
+ createdBy: string | string[];
5213
+ updatedBy: string | string[];
5214
+ createdAt: [Date, Date];
5215
+ updatedAt: [Date, Date];
5216
+ idea: string[];
5217
+ niche: string[];
5218
+ type: ETypeManagerWorkClassify[];
5219
+ pc: string[];
5220
+ device: string[];
5221
+ accountGroup: string[];
5222
+ account: string[];
5105
5223
  }
5106
5224
 
5107
5225
  interface FindOverViewTaskThreadsReplyMessageDto {
@@ -5136,7 +5254,22 @@ interface UpdateTaskThreadsReplyMessageDto extends Partial<ITaskThreadsReplyMess
5136
5254
  }
5137
5255
  interface FindTaskThreadsReplyMessageDto extends IFindBaseDto, ITaskThreadsReplyMessage {
5138
5256
  }
5139
- interface FilterTaskThreadsReplyMessageDto extends IFilterBaseDto, Omit<ITaskThreadsReplyMessage, TOmitFilterDto> {
5257
+ interface FilterTaskThreadsReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5258
+ team: string | string[];
5259
+ leader: string | string[];
5260
+ department: string | string[];
5261
+ user: string | string[];
5262
+ createdBy: string | string[];
5263
+ updatedBy: string | string[];
5264
+ createdAt: [Date, Date];
5265
+ updatedAt: [Date, Date];
5266
+ idea: string[];
5267
+ niche: string[];
5268
+ type: ETypeManagerWorkClassify[];
5269
+ pc: string[];
5270
+ device: string[];
5271
+ accountGroup: string[];
5272
+ account: string[];
5140
5273
  }
5141
5274
 
5142
5275
  interface FindOverviewInstagramHistoryAutoSyncDto {
@@ -5178,7 +5311,22 @@ interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistor
5178
5311
  email2FA: string;
5179
5312
  emailRecover: string;
5180
5313
  }
5181
- interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, Omit<IInstagramHistoryAutoSync, TOmitFilterDto> {
5314
+ interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5315
+ team: string | string[];
5316
+ leader: string | string[];
5317
+ department: string | string[];
5318
+ user: string | string[];
5319
+ createdBy: string | string[];
5320
+ updatedBy: string | string[];
5321
+ createdAt: [Date, Date];
5322
+ updatedAt: [Date, Date];
5323
+ idea: string[];
5324
+ niche: string[];
5325
+ type: ETypeManagerWorkClassify[];
5326
+ pc: string[];
5327
+ device: string[];
5328
+ accountGroup: string[];
5329
+ account: string[];
5182
5330
  }
5183
5331
 
5184
5332
  interface FindOverviewInstagramHistoryChangeDto {
@@ -5220,16 +5368,31 @@ interface FindInstagramHistoryChangeDto extends IFindBaseDto, IInstagramHistoryC
5220
5368
  email2FA: string;
5221
5369
  emailRecover: string;
5222
5370
  }
5223
- interface FilterInstagramHistoryChangeDto extends IFilterBaseDto, Omit<IInstagramHistoryChange, TOmitFilterDto> {
5224
- }
5225
-
5226
- interface FindOverviewInstagramHistoryCreateDto {
5227
- totalAccounts: number;
5228
- totalPC: number;
5229
- totalLeader: number;
5230
- totalMembers: number;
5231
- totalAccountGroups: number;
5232
- totalIdea: number;
5371
+ interface FilterInstagramHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5372
+ team: string | string[];
5373
+ leader: string | string[];
5374
+ department: string | string[];
5375
+ user: string | string[];
5376
+ createdBy: string | string[];
5377
+ updatedBy: string | string[];
5378
+ createdAt: [Date, Date];
5379
+ updatedAt: [Date, Date];
5380
+ idea: string[];
5381
+ niche: string[];
5382
+ type: ETypeManagerWorkClassify[];
5383
+ pc: string[];
5384
+ device: string[];
5385
+ accountGroup: string[];
5386
+ account: string[];
5387
+ }
5388
+
5389
+ interface FindOverviewInstagramHistoryCreateDto {
5390
+ totalAccounts: number;
5391
+ totalPC: number;
5392
+ totalLeader: number;
5393
+ totalMembers: number;
5394
+ totalAccountGroups: number;
5395
+ totalIdea: number;
5233
5396
  totalNiche: number;
5234
5397
  totalType: {
5235
5398
  total: number;
@@ -5262,7 +5425,22 @@ interface FindInstagramHistoryCreateDto extends IFindBaseDto, IInstagramHistoryC
5262
5425
  email2FA: string;
5263
5426
  emailRecover: string;
5264
5427
  }
5265
- interface FilterInstagramHistoryCreateDto extends IFilterBaseDto, Omit<IInstagramHistoryCreate, TOmitFilterDto> {
5428
+ interface FilterInstagramHistoryCreateDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5429
+ team: string | string[];
5430
+ leader: string | string[];
5431
+ department: string | string[];
5432
+ user: string | string[];
5433
+ createdBy: string | string[];
5434
+ updatedBy: string | string[];
5435
+ createdAt: [Date, Date];
5436
+ updatedAt: [Date, Date];
5437
+ idea: string[];
5438
+ niche: string[];
5439
+ type: ETypeManagerWorkClassify[];
5440
+ pc: string[];
5441
+ device: string[];
5442
+ accountGroup: string[];
5443
+ account: string[];
5266
5444
  }
5267
5445
 
5268
5446
  interface FindOverviewInstagramHistoryGroupDto {
@@ -5304,7 +5482,22 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
5304
5482
  email2FA: string;
5305
5483
  emailRecover: string;
5306
5484
  }
5307
- interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IInstagramHistoryGroup, TOmitFilterDto> {
5485
+ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5486
+ team: string | string[];
5487
+ leader: string | string[];
5488
+ department: string | string[];
5489
+ user: string | string[];
5490
+ createdBy: string | string[];
5491
+ updatedBy: string | string[];
5492
+ createdAt: [Date, Date];
5493
+ updatedAt: [Date, Date];
5494
+ idea: string[];
5495
+ niche: string[];
5496
+ type: ETypeManagerWorkClassify[];
5497
+ pc: string[];
5498
+ device: string[];
5499
+ accountGroup: string[];
5500
+ account: string[];
5308
5501
  }
5309
5502
 
5310
5503
  interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw {
@@ -5726,18 +5919,24 @@ interface FindInstagramHistoryFollowDto extends IFindBaseDto, IInstagramHistoryF
5726
5919
  device: string;
5727
5920
  accountGroup: string;
5728
5921
  account: string;
5729
- typeSocial: ETypeSocial;
5730
5922
  status: EStatusTaskScript;
5731
5923
  }
5732
- interface FilterInstagramHistoryFollowDto extends IFilterBaseDto, Omit<IInstagramHistoryFollow, TOmitFilterDto> {
5733
- idea: string;
5734
- niche: string;
5735
- type: ETypeManagerWorkClassify;
5736
- pc: string;
5737
- device: string;
5738
- accountGroup: string;
5739
- account: string;
5740
- typeSocial: ETypeSocial;
5924
+ interface FilterInstagramHistoryFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5925
+ team: string | string[];
5926
+ leader: string | string[];
5927
+ department: string | string[];
5928
+ user: string | string[];
5929
+ createdBy: string | string[];
5930
+ updatedBy: string | string[];
5931
+ createdAt: [Date, Date];
5932
+ updatedAt: [Date, Date];
5933
+ idea: string[];
5934
+ niche: string[];
5935
+ type: ETypeManagerWorkClassify[];
5936
+ pc: string[];
5937
+ device: string[];
5938
+ accountGroup: string[];
5939
+ account: string[];
5741
5940
  }
5742
5941
 
5743
5942
  interface FindOverviewInstagramHistoryAutoPostDto {
@@ -5789,18 +5988,24 @@ interface FindInstagramHistoryAutoPostDto extends IFindBaseDto, IInstagramHistor
5789
5988
  device: string;
5790
5989
  accountGroup: string;
5791
5990
  account: string;
5792
- typeSocial: ETypeSocial;
5793
5991
  status: EStatusTaskScript;
5794
5992
  }
5795
- interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, Omit<IInstagramHistoryAutoPost, TOmitFilterDto> {
5796
- idea: string;
5797
- niche: string;
5798
- type: ETypeManagerWorkClassify;
5799
- pc: string;
5800
- device: string;
5801
- accountGroup: string;
5802
- account: string;
5803
- typeSocial: ETypeSocial;
5993
+ interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5994
+ team: string | string[];
5995
+ leader: string | string[];
5996
+ department: string | string[];
5997
+ user: string | string[];
5998
+ createdBy: string | string[];
5999
+ updatedBy: string | string[];
6000
+ createdAt: [Date, Date];
6001
+ updatedAt: [Date, Date];
6002
+ idea: string[];
6003
+ niche: string[];
6004
+ type: ETypeManagerWorkClassify[];
6005
+ pc: string[];
6006
+ device: string[];
6007
+ accountGroup: string[];
6008
+ account: string[];
5804
6009
  }
5805
6010
 
5806
6011
  interface FindOverviewInstagramHistoryBlockUserDto {
@@ -5840,18 +6045,24 @@ interface FindInstagramHistoryBlockUserDto extends IFindBaseDto, IInstagramHisto
5840
6045
  device: string;
5841
6046
  accountGroup: string;
5842
6047
  account: string;
5843
- typeSocial: ETypeSocial;
5844
6048
  status: EStatusTaskScript;
5845
6049
  }
5846
- interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, Omit<IInstagramHistoryBlockUser, TOmitFilterDto> {
5847
- idea: string;
5848
- niche: string;
5849
- type: ETypeManagerWorkClassify;
5850
- pc: string;
5851
- device: string;
5852
- accountGroup: string;
5853
- account: string;
5854
- typeSocial: ETypeSocial;
6050
+ interface FilterInstagramHistoryBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6051
+ team: string | string[];
6052
+ leader: string | string[];
6053
+ department: string | string[];
6054
+ user: string | string[];
6055
+ createdBy: string | string[];
6056
+ updatedBy: string | string[];
6057
+ createdAt: [Date, Date];
6058
+ updatedAt: [Date, Date];
6059
+ idea: string[];
6060
+ niche: string[];
6061
+ type: ETypeManagerWorkClassify[];
6062
+ pc: string[];
6063
+ device: string[];
6064
+ accountGroup: string[];
6065
+ account: string[];
5855
6066
  }
5856
6067
 
5857
6068
  interface FindOverViewInstagramReportPostHighLightDto {
@@ -5886,17 +6097,23 @@ interface FindInstagramReportPostHighLightDto extends IFindBaseDto, IInstagramRe
5886
6097
  device: string;
5887
6098
  accountGroup: string;
5888
6099
  account: string;
5889
- typeSocial: ETypeSocial;
5890
6100
  }
5891
- interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IInstagramReportPostHighLight, TOmitFilterDto> {
5892
- idea: string;
5893
- niche: string;
5894
- type: ETypeManagerWorkClassify;
5895
- pc: string;
5896
- device: string;
5897
- accountGroup: string;
5898
- account: string;
5899
- typeSocial: ETypeSocial;
6101
+ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6102
+ team: string | string[];
6103
+ leader: string | string[];
6104
+ department: string | string[];
6105
+ user: string | string[];
6106
+ createdBy: string | string[];
6107
+ updatedBy: string | string[];
6108
+ createdAt: [Date, Date];
6109
+ updatedAt: [Date, Date];
6110
+ idea: string[];
6111
+ niche: string[];
6112
+ type: ETypeManagerWorkClassify[];
6113
+ pc: string[];
6114
+ device: string[];
6115
+ accountGroup: string[];
6116
+ account: string[];
5900
6117
  }
5901
6118
 
5902
6119
  interface FindOverViewInstagramReportPostNewDto {
@@ -5931,17 +6148,23 @@ interface FindInstagramReportPostNewDto extends IFindBaseDto, IInstagramReportPo
5931
6148
  device: string;
5932
6149
  accountGroup: string;
5933
6150
  account: string;
5934
- typeSocial: ETypeSocial;
5935
6151
  }
5936
- interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagramReportPostNew, TOmitFilterDto> {
5937
- idea: string;
5938
- niche: string;
5939
- type: ETypeManagerWorkClassify;
5940
- pc: string;
5941
- device: string;
5942
- accountGroup: string;
5943
- account: string;
5944
- typeSocial: ETypeSocial;
6152
+ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6153
+ team: string | string[];
6154
+ leader: string | string[];
6155
+ department: string | string[];
6156
+ user: string | string[];
6157
+ createdBy: string | string[];
6158
+ updatedBy: string | string[];
6159
+ createdAt: [Date, Date];
6160
+ updatedAt: [Date, Date];
6161
+ idea: string[];
6162
+ niche: string[];
6163
+ type: ETypeManagerWorkClassify[];
6164
+ pc: string[];
6165
+ device: string[];
6166
+ accountGroup: string[];
6167
+ account: string[];
5945
6168
  }
5946
6169
 
5947
6170
  interface FindOverViewInstagramReportPostReelDto {
@@ -5976,17 +6199,23 @@ interface FindInstagramReportPostReelDto extends IFindBaseDto, IInstagramReportP
5976
6199
  device: string;
5977
6200
  accountGroup: string;
5978
6201
  account: string;
5979
- typeSocial: ETypeSocial;
5980
6202
  }
5981
- interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagramReportPostReel, TOmitFilterDto> {
5982
- idea: string;
5983
- niche: string;
5984
- type: ETypeManagerWorkClassify;
5985
- pc: string;
5986
- device: string;
5987
- accountGroup: string;
5988
- account: string;
5989
- typeSocial: ETypeSocial;
6203
+ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6204
+ team: string | string[];
6205
+ leader: string | string[];
6206
+ department: string | string[];
6207
+ user: string | string[];
6208
+ createdBy: string | string[];
6209
+ updatedBy: string | string[];
6210
+ createdAt: [Date, Date];
6211
+ updatedAt: [Date, Date];
6212
+ idea: string[];
6213
+ niche: string[];
6214
+ type: ETypeManagerWorkClassify[];
6215
+ pc: string[];
6216
+ device: string[];
6217
+ accountGroup: string[];
6218
+ account: string[];
5990
6219
  }
5991
6220
 
5992
6221
  interface FindOverViewInstagramReportPostStoryDto {
@@ -6021,17 +6250,23 @@ interface FindInstagramReportPostStoryDto extends IFindBaseDto, IInstagramReport
6021
6250
  device: string;
6022
6251
  accountGroup: string;
6023
6252
  account: string;
6024
- typeSocial: ETypeSocial;
6025
6253
  }
6026
- interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstagramReportPostStory, TOmitFilterDto> {
6027
- idea: string;
6028
- niche: string;
6029
- type: ETypeManagerWorkClassify;
6030
- pc: string;
6031
- device: string;
6032
- accountGroup: string;
6033
- account: string;
6034
- typeSocial: ETypeSocial;
6254
+ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6255
+ team: string | string[];
6256
+ leader: string | string[];
6257
+ department: string | string[];
6258
+ user: string | string[];
6259
+ createdBy: string | string[];
6260
+ updatedBy: string | string[];
6261
+ createdAt: [Date, Date];
6262
+ updatedAt: [Date, Date];
6263
+ idea: string[];
6264
+ niche: string[];
6265
+ type: ETypeManagerWorkClassify[];
6266
+ pc: string[];
6267
+ device: string[];
6268
+ accountGroup: string[];
6269
+ account: string[];
6035
6270
  }
6036
6271
 
6037
6272
  interface FindOverViewInstagramReportPostSquareDto {
@@ -6066,17 +6301,23 @@ interface FindInstagramReportPostSquareDto extends IFindBaseDto, IInstagramRepor
6066
6301
  device: string;
6067
6302
  accountGroup: string;
6068
6303
  account: string;
6069
- typeSocial: ETypeSocial;
6070
6304
  }
6071
- interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInstagramReportPostSquare, TOmitFilterDto> {
6072
- idea: string;
6073
- niche: string;
6074
- type: ETypeManagerWorkClassify;
6075
- pc: string;
6076
- device: string;
6077
- accountGroup: string;
6078
- account: string;
6079
- typeSocial: ETypeSocial;
6305
+ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6306
+ team: string | string[];
6307
+ leader: string | string[];
6308
+ department: string | string[];
6309
+ user: string | string[];
6310
+ createdBy: string | string[];
6311
+ updatedBy: string | string[];
6312
+ createdAt: [Date, Date];
6313
+ updatedAt: [Date, Date];
6314
+ idea: string[];
6315
+ niche: string[];
6316
+ type: ETypeManagerWorkClassify[];
6317
+ pc: string[];
6318
+ device: string[];
6319
+ accountGroup: string[];
6320
+ account: string[];
6080
6321
  }
6081
6322
 
6082
6323
  interface FindOverViewInstagramReportInteractReplyCommentDto {
@@ -6111,17 +6352,23 @@ interface FindInstagramReportInteractReplyCommentDto extends IFindBaseDto, IInst
6111
6352
  device: string;
6112
6353
  accountGroup: string;
6113
6354
  account: string;
6114
- typeSocial: ETypeSocial;
6115
6355
  }
6116
- interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyComment, TOmitFilterDto> {
6117
- idea: string;
6118
- niche: string;
6119
- type: ETypeManagerWorkClassify;
6120
- pc: string;
6121
- device: string;
6122
- accountGroup: string;
6123
- account: string;
6124
- typeSocial: ETypeSocial;
6356
+ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6357
+ team: string | string[];
6358
+ leader: string | string[];
6359
+ department: string | string[];
6360
+ user: string | string[];
6361
+ createdBy: string | string[];
6362
+ updatedBy: string | string[];
6363
+ createdAt: [Date, Date];
6364
+ updatedAt: [Date, Date];
6365
+ idea: string[];
6366
+ niche: string[];
6367
+ type: ETypeManagerWorkClassify[];
6368
+ pc: string[];
6369
+ device: string[];
6370
+ accountGroup: string[];
6371
+ account: string[];
6125
6372
  }
6126
6373
 
6127
6374
  interface FindOverViewInstagramReportInteractReelDto {
@@ -6156,17 +6403,23 @@ interface FindInstagramReportInteractReelDto extends IFindBaseDto, IInstagramRep
6156
6403
  device: string;
6157
6404
  accountGroup: string;
6158
6405
  account: string;
6159
- typeSocial: ETypeSocial;
6160
6406
  }
6161
- interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IInstagramReportInteractReel, TOmitFilterDto> {
6162
- idea: string;
6163
- niche: string;
6164
- type: ETypeManagerWorkClassify;
6165
- pc: string;
6166
- device: string;
6167
- accountGroup: string;
6168
- account: string;
6169
- typeSocial: ETypeSocial;
6407
+ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6408
+ team: string | string[];
6409
+ leader: string | string[];
6410
+ department: string | string[];
6411
+ user: string | string[];
6412
+ createdBy: string | string[];
6413
+ updatedBy: string | string[];
6414
+ createdAt: [Date, Date];
6415
+ updatedAt: [Date, Date];
6416
+ idea: string[];
6417
+ niche: string[];
6418
+ type: ETypeManagerWorkClassify[];
6419
+ pc: string[];
6420
+ device: string[];
6421
+ accountGroup: string[];
6422
+ account: string[];
6170
6423
  }
6171
6424
 
6172
6425
  interface FindOverViewInstagramReportInteractStoryDto {
@@ -6201,22 +6454,28 @@ interface FindInstagramReportInteractStoryDto extends IFindBaseDto, IInstagramRe
6201
6454
  device: string;
6202
6455
  accountGroup: string;
6203
6456
  account: string;
6204
- typeSocial: ETypeSocial;
6205
- }
6206
- interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
6207
- idea: string;
6208
- niche: string;
6209
- type: ETypeManagerWorkClassify;
6210
- pc: string;
6211
- device: string;
6212
- accountGroup: string;
6213
- account: string;
6214
- typeSocial: ETypeSocial;
6215
6457
  }
6216
-
6217
- interface FindOverViewInstagramReportInteractExploreDto {
6218
- totalAccounts: number;
6219
- totalPC: number;
6458
+ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6459
+ team: string | string[];
6460
+ leader: string | string[];
6461
+ department: string | string[];
6462
+ user: string | string[];
6463
+ createdBy: string | string[];
6464
+ updatedBy: string | string[];
6465
+ createdAt: [Date, Date];
6466
+ updatedAt: [Date, Date];
6467
+ idea: string[];
6468
+ niche: string[];
6469
+ type: ETypeManagerWorkClassify[];
6470
+ pc: string[];
6471
+ device: string[];
6472
+ accountGroup: string[];
6473
+ account: string[];
6474
+ }
6475
+
6476
+ interface FindOverViewInstagramReportInteractExploreDto {
6477
+ totalAccounts: number;
6478
+ totalPC: number;
6220
6479
  totalLeader: number;
6221
6480
  totalMembers: number;
6222
6481
  totalAccountGroups: number;
@@ -6246,17 +6505,23 @@ interface FindInstagramReportInteractExploreDto extends IFindBaseDto, IInstagram
6246
6505
  device: string;
6247
6506
  accountGroup: string;
6248
6507
  account: string;
6249
- typeSocial: ETypeSocial;
6250
6508
  }
6251
- interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<IInstagramReportInteractExplore, TOmitFilterDto> {
6252
- idea: string;
6253
- niche: string;
6254
- type: ETypeManagerWorkClassify;
6255
- pc: string;
6256
- device: string;
6257
- accountGroup: string;
6258
- account: string;
6259
- typeSocial: ETypeSocial;
6509
+ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6510
+ team: string | string[];
6511
+ leader: string | string[];
6512
+ department: string | string[];
6513
+ user: string | string[];
6514
+ createdBy: string | string[];
6515
+ updatedBy: string | string[];
6516
+ createdAt: [Date, Date];
6517
+ updatedAt: [Date, Date];
6518
+ idea: string[];
6519
+ niche: string[];
6520
+ type: ETypeManagerWorkClassify[];
6521
+ pc: string[];
6522
+ device: string[];
6523
+ accountGroup: string[];
6524
+ account: string[];
6260
6525
  }
6261
6526
 
6262
6527
  interface FindOverViewInstagramReportInteractReplyMessageDto {
@@ -6291,17 +6556,23 @@ interface FindInstagramReportInteractReplyMessageDto extends IFindBaseDto, IInst
6291
6556
  device: string;
6292
6557
  accountGroup: string;
6293
6558
  account: string;
6294
- typeSocial: ETypeSocial;
6295
6559
  }
6296
- interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramReportInteractReplyMessage, TOmitFilterDto> {
6297
- idea: string;
6298
- niche: string;
6299
- type: ETypeManagerWorkClassify;
6300
- pc: string;
6301
- device: string;
6302
- accountGroup: string;
6303
- account: string;
6304
- typeSocial: ETypeSocial;
6560
+ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6561
+ team: string | string[];
6562
+ leader: string | string[];
6563
+ department: string | string[];
6564
+ user: string | string[];
6565
+ createdBy: string | string[];
6566
+ updatedBy: string | string[];
6567
+ createdAt: [Date, Date];
6568
+ updatedAt: [Date, Date];
6569
+ idea: string[];
6570
+ niche: string[];
6571
+ type: ETypeManagerWorkClassify[];
6572
+ pc: string[];
6573
+ device: string[];
6574
+ accountGroup: string[];
6575
+ account: string[];
6305
6576
  }
6306
6577
 
6307
6578
  interface FindOverViewInstagramReportInteractFollowDto {
@@ -6336,17 +6607,23 @@ interface FindInstagramReportInteractFollowDto extends IFindBaseDto, IInstagramR
6336
6607
  device: string;
6337
6608
  accountGroup: string;
6338
6609
  account: string;
6339
- typeSocial: ETypeSocial;
6340
6610
  }
6341
- interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, Omit<IInstagramReportInteractFollow, TOmitFilterDto> {
6342
- idea: string;
6343
- niche: string;
6344
- type: ETypeManagerWorkClassify;
6345
- pc: string;
6346
- device: string;
6347
- accountGroup: string;
6348
- account: string;
6349
- typeSocial: ETypeSocial;
6611
+ interface FilterInstagramReportInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6612
+ team: string | string[];
6613
+ leader: string | string[];
6614
+ department: string | string[];
6615
+ user: string | string[];
6616
+ createdBy: string | string[];
6617
+ updatedBy: string | string[];
6618
+ createdAt: [Date, Date];
6619
+ updatedAt: [Date, Date];
6620
+ idea: string[];
6621
+ niche: string[];
6622
+ type: ETypeManagerWorkClassify[];
6623
+ pc: string[];
6624
+ device: string[];
6625
+ accountGroup: string[];
6626
+ account: string[];
6350
6627
  }
6351
6628
 
6352
6629
  interface FindOverViewInstagramReportInteractBlockUserDto {
@@ -6381,17 +6658,23 @@ interface FindInstagramReportInteractBlockUserDto extends IFindBaseDto, IInstagr
6381
6658
  device: string;
6382
6659
  accountGroup: string;
6383
6660
  account: string;
6384
- typeSocial: ETypeSocial;
6385
6661
  }
6386
- interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, Omit<IInstagramReportInteractBlockUser, TOmitFilterDto> {
6387
- idea: string;
6388
- niche: string;
6389
- type: ETypeManagerWorkClassify;
6390
- pc: string;
6391
- device: string;
6392
- accountGroup: string;
6393
- account: string;
6394
- typeSocial: ETypeSocial;
6662
+ interface FilterInstagramReportInteractBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6663
+ team: string | string[];
6664
+ leader: string | string[];
6665
+ department: string | string[];
6666
+ user: string | string[];
6667
+ createdBy: string | string[];
6668
+ updatedBy: string | string[];
6669
+ createdAt: [Date, Date];
6670
+ updatedAt: [Date, Date];
6671
+ idea: string[];
6672
+ niche: string[];
6673
+ type: ETypeManagerWorkClassify[];
6674
+ pc: string[];
6675
+ device: string[];
6676
+ accountGroup: string[];
6677
+ account: string[];
6395
6678
  }
6396
6679
 
6397
6680
  interface FindInstagramSettingInteractExploreDto extends IFindBaseDto, IInstagramSettingInteractExplore {
@@ -6402,17 +6685,23 @@ interface FindInstagramSettingInteractExploreDto extends IFindBaseDto, IInstagra
6402
6685
  device: string;
6403
6686
  accountGroup: string;
6404
6687
  account: string;
6405
- typeSocial: ETypeSocial;
6406
6688
  }
6407
- interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, Omit<IInstagramSettingInteractExplore, TOmitFilterDto> {
6408
- idea: string;
6409
- niche: string;
6410
- type: ETypeManagerWorkClassify;
6411
- pc: string;
6412
- device: string;
6413
- accountGroup: string;
6414
- account: string;
6415
- typeSocial: ETypeSocial;
6689
+ interface FilterInstagramSettingInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6690
+ team: string | string[];
6691
+ leader: string | string[];
6692
+ department: string | string[];
6693
+ user: string | string[];
6694
+ createdBy: string | string[];
6695
+ updatedBy: string | string[];
6696
+ createdAt: [Date, Date];
6697
+ updatedAt: [Date, Date];
6698
+ idea: string[];
6699
+ niche: string[];
6700
+ type: ETypeManagerWorkClassify[];
6701
+ pc: string[];
6702
+ device: string[];
6703
+ accountGroup: string[];
6704
+ account: string[];
6416
6705
  }
6417
6706
 
6418
6707
  interface FindInstagramSettingInteractFollowDto extends IFindBaseDto, IInstagramSettingInteractFollow {
@@ -6423,17 +6712,23 @@ interface FindInstagramSettingInteractFollowDto extends IFindBaseDto, IInstagram
6423
6712
  device: string;
6424
6713
  accountGroup: string;
6425
6714
  account: string;
6426
- typeSocial: ETypeSocial;
6427
6715
  }
6428
- interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractFollow, TOmitFilterDto> {
6429
- idea: string;
6430
- niche: string;
6431
- type: ETypeManagerWorkClassify;
6432
- pc: string;
6433
- device: string;
6434
- accountGroup: string;
6435
- account: string;
6436
- typeSocial: ETypeSocial;
6716
+ interface FilterInstagramSettingInteractFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6717
+ team: string | string[];
6718
+ leader: string | string[];
6719
+ department: string | string[];
6720
+ user: string | string[];
6721
+ createdBy: string | string[];
6722
+ updatedBy: string | string[];
6723
+ createdAt: [Date, Date];
6724
+ updatedAt: [Date, Date];
6725
+ idea: string[];
6726
+ niche: string[];
6727
+ type: ETypeManagerWorkClassify[];
6728
+ pc: string[];
6729
+ device: string[];
6730
+ accountGroup: string[];
6731
+ account: string[];
6437
6732
  }
6438
6733
 
6439
6734
  interface FindInstagramSettingInteractReelDto extends IFindBaseDto, IInstagramSettingInteractReel {
@@ -6444,17 +6739,23 @@ interface FindInstagramSettingInteractReelDto extends IFindBaseDto, IInstagramSe
6444
6739
  device: string;
6445
6740
  accountGroup: string;
6446
6741
  account: string;
6447
- typeSocial: ETypeSocial;
6448
6742
  }
6449
- interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReel, TOmitFilterDto> {
6450
- idea: string;
6451
- niche: string;
6452
- type: ETypeManagerWorkClassify;
6453
- pc: string;
6454
- device: string;
6455
- accountGroup: string;
6456
- account: string;
6457
- typeSocial: ETypeSocial;
6743
+ interface FilterInstagramSettingInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6744
+ team: string | string[];
6745
+ leader: string | string[];
6746
+ department: string | string[];
6747
+ user: string | string[];
6748
+ createdBy: string | string[];
6749
+ updatedBy: string | string[];
6750
+ createdAt: [Date, Date];
6751
+ updatedAt: [Date, Date];
6752
+ idea: string[];
6753
+ niche: string[];
6754
+ type: ETypeManagerWorkClassify[];
6755
+ pc: string[];
6756
+ device: string[];
6757
+ accountGroup: string[];
6758
+ account: string[];
6458
6759
  }
6459
6760
 
6460
6761
  interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto, IInstagramSettingInteractReplyComment {
@@ -6465,17 +6766,23 @@ interface FindInstagramSettingInteractReplyCommentDto extends IFindBaseDto, IIns
6465
6766
  device: string;
6466
6767
  accountGroup: string;
6467
6768
  account: string;
6468
- typeSocial: ETypeSocial;
6469
6769
  }
6470
- interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyComment, TOmitFilterDto> {
6471
- idea: string;
6472
- niche: string;
6473
- type: ETypeManagerWorkClassify;
6474
- pc: string;
6475
- device: string;
6476
- accountGroup: string;
6477
- account: string;
6478
- typeSocial: ETypeSocial;
6770
+ interface FilterInstagramSettingInteractReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6771
+ team: string | string[];
6772
+ leader: string | string[];
6773
+ department: string | string[];
6774
+ user: string | string[];
6775
+ createdBy: string | string[];
6776
+ updatedBy: string | string[];
6777
+ createdAt: [Date, Date];
6778
+ updatedAt: [Date, Date];
6779
+ idea: string[];
6780
+ niche: string[];
6781
+ type: ETypeManagerWorkClassify[];
6782
+ pc: string[];
6783
+ device: string[];
6784
+ accountGroup: string[];
6785
+ account: string[];
6479
6786
  }
6480
6787
 
6481
6788
  interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto, IInstagramSettingInteractReplyMessage {
@@ -6486,17 +6793,23 @@ interface FindInstagramSettingInteractReplyMessageDto extends IFindBaseDto, IIns
6486
6793
  device: string;
6487
6794
  accountGroup: string;
6488
6795
  account: string;
6489
- typeSocial: ETypeSocial;
6490
6796
  }
6491
- interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto, Omit<IInstagramSettingInteractReplyMessage, TOmitFilterDto> {
6492
- idea: string;
6493
- niche: string;
6494
- type: ETypeManagerWorkClassify;
6495
- pc: string;
6496
- device: string;
6497
- accountGroup: string;
6498
- account: string;
6499
- typeSocial: ETypeSocial;
6797
+ interface FilterInstagramSettingInteractReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6798
+ team: string | string[];
6799
+ leader: string | string[];
6800
+ department: string | string[];
6801
+ user: string | string[];
6802
+ createdBy: string | string[];
6803
+ updatedBy: string | string[];
6804
+ createdAt: [Date, Date];
6805
+ updatedAt: [Date, Date];
6806
+ idea: string[];
6807
+ niche: string[];
6808
+ type: ETypeManagerWorkClassify[];
6809
+ pc: string[];
6810
+ device: string[];
6811
+ accountGroup: string[];
6812
+ account: string[];
6500
6813
  }
6501
6814
 
6502
6815
  interface FindInstagramSettingInteractStoryDto extends IFindBaseDto, IInstagramSettingInteractStory {
@@ -6507,17 +6820,23 @@ interface FindInstagramSettingInteractStoryDto extends IFindBaseDto, IInstagramS
6507
6820
  device: string;
6508
6821
  accountGroup: string;
6509
6822
  account: string;
6510
- typeSocial: ETypeSocial;
6511
6823
  }
6512
- interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, Omit<IInstagramSettingInteractStory, TOmitFilterDto> {
6513
- idea: string;
6514
- niche: string;
6515
- type: ETypeManagerWorkClassify;
6516
- pc: string;
6517
- device: string;
6518
- accountGroup: string;
6519
- account: string;
6520
- typeSocial: ETypeSocial;
6824
+ interface FilterInstagramSettingInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6825
+ team: string | string[];
6826
+ leader: string | string[];
6827
+ department: string | string[];
6828
+ user: string | string[];
6829
+ createdBy: string | string[];
6830
+ updatedBy: string | string[];
6831
+ createdAt: [Date, Date];
6832
+ updatedAt: [Date, Date];
6833
+ idea: string[];
6834
+ niche: string[];
6835
+ type: ETypeManagerWorkClassify[];
6836
+ pc: string[];
6837
+ device: string[];
6838
+ accountGroup: string[];
6839
+ account: string[];
6521
6840
  }
6522
6841
 
6523
6842
  interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto, IInstagramSettingInteractUnFollow {
@@ -6528,17 +6847,23 @@ interface FindInstagramSettingInteractUnFollowDto extends IFindBaseDto, IInstagr
6528
6847
  device: string;
6529
6848
  accountGroup: string;
6530
6849
  account: string;
6531
- typeSocial: ETypeSocial;
6532
6850
  }
6533
- interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, Omit<IInstagramSettingInteractUnFollow, TOmitFilterDto> {
6534
- idea: string;
6535
- niche: string;
6536
- type: ETypeManagerWorkClassify;
6537
- pc: string;
6538
- device: string;
6539
- accountGroup: string;
6540
- account: string;
6541
- typeSocial: ETypeSocial;
6851
+ interface FilterInstagramSettingInteractUnFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6852
+ team: string | string[];
6853
+ leader: string | string[];
6854
+ department: string | string[];
6855
+ user: string | string[];
6856
+ createdBy: string | string[];
6857
+ updatedBy: string | string[];
6858
+ createdAt: [Date, Date];
6859
+ updatedAt: [Date, Date];
6860
+ idea: string[];
6861
+ niche: string[];
6862
+ type: ETypeManagerWorkClassify[];
6863
+ pc: string[];
6864
+ device: string[];
6865
+ accountGroup: string[];
6866
+ account: string[];
6542
6867
  }
6543
6868
 
6544
6869
  interface FindInstagramSettingPostDto extends IFindBaseDto, IInstagramSettingPost {
@@ -6549,17 +6874,15 @@ interface FindInstagramSettingPostDto extends IFindBaseDto, IInstagramSettingPos
6549
6874
  device: string;
6550
6875
  accountGroup: string;
6551
6876
  account: string;
6552
- typeSocial: ETypeSocial;
6553
6877
  }
6554
- interface FilterInstagramSettingPostDto extends IFilterBaseDto, Omit<IInstagramSettingPost, TOmitFilterDto> {
6555
- idea: string;
6556
- niche: string;
6557
- type: ETypeManagerWorkClassify;
6558
- pc: string;
6559
- device: string;
6560
- accountGroup: string;
6561
- account: string;
6562
- typeSocial: ETypeSocial;
6878
+ interface FilterInstagramSettingPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6879
+ idea: string[];
6880
+ niche: string[];
6881
+ type: ETypeManagerWorkClassify[];
6882
+ pc: string[];
6883
+ device: string[];
6884
+ accountGroup: string[];
6885
+ account: string[];
6563
6886
  }
6564
6887
 
6565
6888
  interface AutoFillTaskInstagramBlockUserDto {
@@ -6635,7 +6958,22 @@ interface UpdateTaskInstagramBlockUserDto extends Partial<ITaskInstagramBlockUse
6635
6958
  }
6636
6959
  interface FindTaskInstagramBlockUserDto extends IFindBaseDto, ITaskInstagramBlockUser {
6637
6960
  }
6638
- interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, Omit<ITaskInstagramBlockUser, TOmitFilterDto> {
6961
+ interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
6962
+ team: string | string[];
6963
+ leader: string | string[];
6964
+ department: string | string[];
6965
+ user: string | string[];
6966
+ createdBy: string | string[];
6967
+ updatedBy: string | string[];
6968
+ createdAt: [Date, Date];
6969
+ updatedAt: [Date, Date];
6970
+ idea: string[];
6971
+ niche: string[];
6972
+ type: ETypeManagerWorkClassify[];
6973
+ pc: string[];
6974
+ device: string[];
6975
+ accountGroup: string[];
6976
+ account: string[];
6639
6977
  }
6640
6978
 
6641
6979
  interface FindOverViewTaskInstagramChangeInfoDto {
@@ -6670,7 +7008,22 @@ interface UpdateTaskInstagramChangeInfoDto extends Partial<ITaskInstagramChangeI
6670
7008
  }
6671
7009
  interface FindTaskInstagramChangeInfoDto extends IFindBaseDto, ITaskInstagramChangeInfo {
6672
7010
  }
6673
- interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, Omit<ITaskInstagramChangeInfo, TOmitFilterDto> {
7011
+ interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7012
+ team: string | string[];
7013
+ leader: string | string[];
7014
+ department: string | string[];
7015
+ user: string | string[];
7016
+ createdBy: string | string[];
7017
+ updatedBy: string | string[];
7018
+ createdAt: [Date, Date];
7019
+ updatedAt: [Date, Date];
7020
+ idea: string[];
7021
+ niche: string[];
7022
+ type: ETypeManagerWorkClassify[];
7023
+ pc: string[];
7024
+ device: string[];
7025
+ accountGroup: string[];
7026
+ account: string[];
6674
7027
  }
6675
7028
 
6676
7029
  interface FindOverViewTaskInstagramFollowDto {
@@ -6705,7 +7058,14 @@ interface UpdateTaskInstagramFollowDto extends Partial<ITaskInstagramFollow> {
6705
7058
  }
6706
7059
  interface FindTaskInstagramFollowDto extends IFindBaseDto, ITaskInstagramFollow {
6707
7060
  }
6708
- interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
7061
+ interface FilterTaskInstagramFollowDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7062
+ idea: string[];
7063
+ niche: string[];
7064
+ type: ETypeManagerWorkClassify[];
7065
+ pc: string[];
7066
+ device: string[];
7067
+ accountGroup: string[];
7068
+ account: string[];
6709
7069
  }
6710
7070
 
6711
7071
  interface FindOverViewTaskInstagramReplyCommentDto {
@@ -6740,7 +7100,22 @@ interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReply
6740
7100
  }
6741
7101
  interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
6742
7102
  }
6743
- interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
7103
+ interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7104
+ team: string | string[];
7105
+ leader: string | string[];
7106
+ department: string | string[];
7107
+ user: string | string[];
7108
+ createdBy: string | string[];
7109
+ updatedBy: string | string[];
7110
+ createdAt: [Date, Date];
7111
+ updatedAt: [Date, Date];
7112
+ idea: string[];
7113
+ niche: string[];
7114
+ type: ETypeManagerWorkClassify[];
7115
+ pc: string[];
7116
+ device: string[];
7117
+ accountGroup: string[];
7118
+ account: string[];
6744
7119
  }
6745
7120
 
6746
7121
  interface FindOverViewTaskInstagramReplyMessageDto {
@@ -6775,7 +7150,22 @@ interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReply
6775
7150
  }
6776
7151
  interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
6777
7152
  }
6778
- interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, Omit<ITaskInstagramReplyMessage, TOmitFilterDto> {
7153
+ interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7154
+ team: string | string[];
7155
+ leader: string | string[];
7156
+ department: string | string[];
7157
+ user: string | string[];
7158
+ createdBy: string | string[];
7159
+ updatedBy: string | string[];
7160
+ createdAt: [Date, Date];
7161
+ updatedAt: [Date, Date];
7162
+ idea: string[];
7163
+ niche: string[];
7164
+ type: ETypeManagerWorkClassify[];
7165
+ pc: string[];
7166
+ device: string[];
7167
+ accountGroup: string[];
7168
+ account: string[];
6779
7169
  }
6780
7170
 
6781
7171
  interface FindOverViewTaskInstagramPostDto {
@@ -6810,7 +7200,14 @@ interface UpdateTaskInstagramPostDto extends Partial<ITaskInstagramPost> {
6810
7200
  }
6811
7201
  interface FindTaskInstagramPostDto extends IFindBaseDto, ITaskInstagramPost {
6812
7202
  }
6813
- interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
7203
+ interface FilterTaskInstagramPostDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7204
+ idea: string[];
7205
+ niche: string[];
7206
+ type: ETypeManagerWorkClassify[];
7207
+ pc: string[];
7208
+ device: string[];
7209
+ accountGroup: string[];
7210
+ account: string[];
6814
7211
  }
6815
7212
 
6816
7213
  interface FindOverViewTaskInstagramInteractExploreDto {
@@ -6845,7 +7242,22 @@ interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramIn
6845
7242
  }
6846
7243
  interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
6847
7244
  }
6848
- interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, Omit<ITaskInstagramInteractExplore, TOmitFilterDto> {
7245
+ interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7246
+ team: string | string[];
7247
+ leader: string | string[];
7248
+ department: string | string[];
7249
+ user: string | string[];
7250
+ createdBy: string | string[];
7251
+ updatedBy: string | string[];
7252
+ createdAt: [Date, Date];
7253
+ updatedAt: [Date, Date];
7254
+ idea: string[];
7255
+ niche: string[];
7256
+ type: ETypeManagerWorkClassify[];
7257
+ pc: string[];
7258
+ device: string[];
7259
+ accountGroup: string[];
7260
+ account: string[];
6849
7261
  }
6850
7262
 
6851
7263
  interface FindOverViewTaskInstagramInteractReelDto {
@@ -6880,7 +7292,22 @@ interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInter
6880
7292
  }
6881
7293
  interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
6882
7294
  }
6883
- interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, Omit<ITaskInstagramInteractReel, TOmitFilterDto> {
7295
+ interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7296
+ team: string | string[];
7297
+ leader: string | string[];
7298
+ department: string | string[];
7299
+ user: string | string[];
7300
+ createdBy: string | string[];
7301
+ updatedBy: string | string[];
7302
+ createdAt: [Date, Date];
7303
+ updatedAt: [Date, Date];
7304
+ idea: string[];
7305
+ niche: string[];
7306
+ type: ETypeManagerWorkClassify[];
7307
+ pc: string[];
7308
+ device: string[];
7309
+ accountGroup: string[];
7310
+ account: string[];
6884
7311
  }
6885
7312
 
6886
7313
  interface FindOverViewTaskInstagramInteractStoryDto {
@@ -6915,16 +7342,40 @@ interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInte
6915
7342
  }
6916
7343
  interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
6917
7344
  }
6918
- interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, Omit<ITaskInstagramInteractStory, TOmitFilterDto> {
7345
+ interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7346
+ team: string | string[];
7347
+ leader: string | string[];
7348
+ department: string | string[];
7349
+ user: string | string[];
7350
+ createdBy: string | string[];
7351
+ updatedBy: string | string[];
7352
+ createdAt: [Date, Date];
7353
+ updatedAt: [Date, Date];
7354
+ idea: string[];
7355
+ niche: string[];
7356
+ type: ETypeManagerWorkClassify[];
7357
+ pc: string[];
7358
+ device: string[];
7359
+ accountGroup: string[];
7360
+ account: string[];
6919
7361
  }
6920
7362
 
6921
- interface FilterInstagramDashboardFollowerDto extends IFilterBaseDto {
7363
+ interface FilterInstagramDashboardFollowerDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
7364
+ team: string | string[];
7365
+ leader: string | string[];
7366
+ department: string | string[];
7367
+ user: string | string[];
7368
+ createdBy: string | string[];
7369
+ updatedBy: string | string[];
7370
+ createdAt: [Date, Date];
7371
+ updatedAt: [Date, Date];
6922
7372
  idea: string[];
6923
7373
  niche: string[];
6924
- devices: string[];
6925
7374
  type: ETypeManagerWorkClassify[];
6926
- accountStatus: string;
6927
- account: string;
7375
+ pc: string[];
7376
+ device: string[];
7377
+ accountGroup: string[];
7378
+ account: string[];
6928
7379
  }
6929
7380
  /**
6930
7381
  * DTO for applying time filters to Instagram Dashboard Follower analytics
@@ -7175,13 +7626,13 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto, Omit<IHistoryTas
7175
7626
 
7176
7627
  interface FindHistoryTaskCanvaDto extends IFindBaseDto, IHistoryTaskCanva {
7177
7628
  }
7178
- interface FilterHistoryTaskCanvaDto extends IFilterBaseDto, Omit<IHistoryTaskCanva, TOmitFilterDto> {
7629
+ interface FilterHistoryTaskCanvaDto extends IFilterBaseDto {
7630
+ typeSocial: ETypeSocial[];
7631
+ status: EStatusTaskCanva[];
7179
7632
  }
7180
7633
 
7181
7634
  interface FindAccountCanvaDto extends IFindBaseDto, IAccountCanva {
7182
7635
  }
7183
- interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmitFilterDto> {
7184
- }
7185
7636
  interface FindOverviewAccountCanvaDto {
7186
7637
  totalAccounts: {
7187
7638
  total: number;
@@ -7206,6 +7657,8 @@ interface FindOverviewAccountCanvaDto {
7206
7657
  percentage: number;
7207
7658
  };
7208
7659
  }
7660
+ interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmitFilterDto> {
7661
+ }
7209
7662
 
7210
7663
  interface FilterAccountDriveDto extends IFilterBaseDto, Omit<IAccountDrive, TOmitFilterDto> {
7211
7664
  }
@@ -8452,6 +8905,7 @@ type index_FindThreadsSettingInteractUnFollowDto = FindThreadsSettingInteractUnF
8452
8905
  type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
8453
8906
  type index_FindUserDto = FindUserDto;
8454
8907
  type index_IBaseSheetImportDto = IBaseSheetImportDto;
8908
+ type index_IFilterBaseAccountSocialDto = IFilterBaseAccountSocialDto;
8455
8909
  type index_IFilterBaseDto = IFilterBaseDto;
8456
8910
  type index_IFindBaseDto = IFindBaseDto;
8457
8911
  type index_ImportDto = ImportDto;
@@ -8487,7 +8941,7 @@ type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
8487
8941
  type index_UpdateTeamDto = UpdateTeamDto;
8488
8942
  type index_UpdateUserDto = UpdateUserDto;
8489
8943
  declare namespace index {
8490
- export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateProxyDto as CreateProxyDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolDto as CreateSheetsToolDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractBlockUserDto as FindInstagramReportInteractBlockUserDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewDeviceAll as FindOverviewDeviceAll, index_FindOverviewDeviceDead as FindOverviewDeviceDead, index_FindOverviewDevicePoolReady as FindOverviewDevicePoolReady, index_FindOverviewDeviceRun as FindOverviewDeviceRun, index_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index_FindProxyDto as FindProxyDto, index_FindRoleDetailDto as FindRoleDetailDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateProxyDto as UpdateProxyDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolDto as UpdateSheetsToolDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
8944
+ export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_ApplyTimeDashboardDto as ApplyTimeDashboardDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewTaskInstagramBlockUserDto as AutoFillOverviewTaskInstagramBlockUserDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillTaskInstagramBlockUserDto as AutoFillTaskInstagramBlockUserDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateProxyDto as CreateProxyDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolDto as CreateSheetsToolDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageCanvaInstagramDto as CreateTaskAIImageCanvaInstagramDto, index_CreateTaskAIImageCanvaThreadsDto as CreateTaskAIImageCanvaThreadsDto, index_CreateTaskAIImageVoiceCanvaInstagramDto as CreateTaskAIImageVoiceCanvaInstagramDto, index_CreateTaskAIImageVoiceCanvaThreadsDto as CreateTaskAIImageVoiceCanvaThreadsDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramInteractExploreDto as CreateTaskInstagramInteractExploreDto, index_CreateTaskInstagramInteractReelDto as CreateTaskInstagramInteractReelDto, index_CreateTaskInstagramInteractStoryDto as CreateTaskInstagramInteractStoryDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterCheckerAccountInstagramDashboardFollowerDto as FilterCheckerAccountInstagramDashboardFollowerDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramDashboardFollowerDto as FilterInstagramDashboardFollowerDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryBlockUserDto as FilterInstagramHistoryBlockUserDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryFollowDto as FilterInstagramHistoryFollowDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractBlockUserDto as FilterInstagramReportInteractBlockUserDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterPerformanceBreakdownInstagramDashboardFollowerDto as FilterPerformanceBreakdownInstagramDashboardFollowerDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkCategoryDto as FilterSheetWorkCategoryDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageCanvaInstagramDto as FilterTaskAIImageCanvaInstagramDto, index_FilterTaskAIImageCanvaThreadsDto as FilterTaskAIImageCanvaThreadsDto, index_FilterTaskAIImageVoiceCanvaInstagramDto as FilterTaskAIImageVoiceCanvaInstagramDto, index_FilterTaskAIImageVoiceCanvaThreadsDto as FilterTaskAIImageVoiceCanvaThreadsDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramInteractExploreDto as FilterTaskInstagramInteractExploreDto, index_FilterTaskInstagramInteractReelDto as FilterTaskInstagramInteractReelDto, index_FilterTaskInstagramInteractStoryDto as FilterTaskInstagramInteractStoryDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindCheckerAccountInstagramDashboardFollowerDto as FindCheckerAccountInstagramDashboardFollowerDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindGrowthInstagramDashboardFollowerDto as FindGrowthInstagramDashboardFollowerDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryBlockUserDto as FindInstagramHistoryBlockUserDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryFollowDto as FindInstagramHistoryFollowDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractBlockUserDto as FindInstagramReportInteractBlockUserDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractBlockUserDto as FindOverViewInstagramReportInteractBlockUserDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageCanvaInstagramDto as FindOverViewTaskAIImageCanvaInstagramDto, index_FindOverViewTaskAIImageCanvaThreadsDto as FindOverViewTaskAIImageCanvaThreadsDto, index_FindOverViewTaskAIImageVoiceCanvaInstagramDto as FindOverViewTaskAIImageVoiceCanvaInstagramDto, index_FindOverViewTaskAIImageVoiceCanvaThreadsDto as FindOverViewTaskAIImageVoiceCanvaThreadsDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramInteractExploreDto as FindOverViewTaskInstagramInteractExploreDto, index_FindOverViewTaskInstagramInteractReelDto as FindOverViewTaskInstagramInteractReelDto, index_FindOverViewTaskInstagramInteractStoryDto as FindOverViewTaskInstagramInteractStoryDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewDeviceAll as FindOverviewDeviceAll, index_FindOverviewDeviceDead as FindOverviewDeviceDead, index_FindOverviewDevicePoolReady as FindOverviewDevicePoolReady, index_FindOverviewDeviceRun as FindOverviewDeviceRun, index_FindOverviewInstagramDashboardFollowerDto as FindOverviewInstagramDashboardFollowerDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewInstagramHistoryAutoSyncDto as FindOverviewInstagramHistoryAutoSyncDto, index_FindOverviewInstagramHistoryBlockUserDto as FindOverviewInstagramHistoryBlockUserDto, index_FindOverviewInstagramHistoryChangeDto as FindOverviewInstagramHistoryChangeDto, index_FindOverviewInstagramHistoryCreateDto as FindOverviewInstagramHistoryCreateDto, index_FindOverviewInstagramHistoryFollowDto as FindOverviewInstagramHistoryFollowDto, index_FindOverviewInstagramHistoryGroupDto as FindOverviewInstagramHistoryGroupDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindPerformanceBreakdownInstagramDashboardFollowerDto as FindPerformanceBreakdownInstagramDashboardFollowerDto, index_FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto as FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, index_FindProxyDto as FindProxyDto, index_FindRoleDetailDto as FindRoleDetailDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkCategoryDto as FindSheetWorkCategoryDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageCanvaInstagramDto as FindTaskAIImageCanvaInstagramDto, index_FindTaskAIImageCanvaThreadsDto as FindTaskAIImageCanvaThreadsDto, index_FindTaskAIImageVoiceCanvaInstagramDto as FindTaskAIImageVoiceCanvaInstagramDto, index_FindTaskAIImageVoiceCanvaThreadsDto as FindTaskAIImageVoiceCanvaThreadsDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramInteractExploreDto as FindTaskInstagramInteractExploreDto, index_FindTaskInstagramInteractReelDto as FindTaskInstagramInteractReelDto, index_FindTaskInstagramInteractStoryDto as FindTaskInstagramInteractStoryDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseAccountSocialDto as IFilterBaseAccountSocialDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateProxyDto as UpdateProxyDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolDto as UpdateSheetsToolDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageCanvaInstagramDto as UpdateTaskAIImageCanvaInstagramDto, index_UpdateTaskAIImageCanvaThreadsDto as UpdateTaskAIImageCanvaThreadsDto, index_UpdateTaskAIImageVoiceCanvaInstagramDto as UpdateTaskAIImageVoiceCanvaInstagramDto, index_UpdateTaskAIImageVoiceCanvaThreadsDto as UpdateTaskAIImageVoiceCanvaThreadsDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramInteractExploreDto as UpdateTaskInstagramInteractExploreDto, index_UpdateTaskInstagramInteractReelDto as UpdateTaskInstagramInteractReelDto, index_UpdateTaskInstagramInteractStoryDto as UpdateTaskInstagramInteractStoryDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
8491
8945
  }
8492
8946
 
8493
- export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyTimeDashboardDto, index$3 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$9 as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetsToolDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, 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 FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractBlockUserDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewDeviceAll, type FindOverviewDeviceDead, type FindOverviewDevicePoolReady, type FindOverviewDeviceRun, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindProxyDto, type FindRoleDetailDto, type FindRoleDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryBlockUser, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryFollow, type IInstagramHistoryGroup, type IInstagramReportInteractBlockUser, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, 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 ISheetImport, 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 ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, 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 ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$a as Permission, index$6 as Socials, type TOmitFilterDto, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, 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 UpdateTeamDto, type UpdateUserDto, index$7 as Workspace };
8947
+ export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyTimeDashboardDto, index$3 as Auth, index$j as AutoConstants, index as AutoDto, index$c as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$b as AutoTypes, index$9 as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetsToolDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, 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 FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractBlockUserDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewDeviceAll, type FindOverviewDeviceDead, type FindOverviewDevicePoolReady, type FindOverviewDeviceRun, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeDto, type FindOverviewInstagramHistoryCreateDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindProxyDto, type FindRoleDetailDto, type FindRoleDto, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryBlockUser, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryFollow, type IInstagramHistoryGroup, type IInstagramReportInteractBlockUser, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, 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 ISheetImport, 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 ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, 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 ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$a as Permission, index$6 as Socials, type TOmitFilterDto, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, 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 UpdateTeamDto, type UpdateUserDto, index$7 as Workspace };