automation-lib 5.0.229 → 5.0.231

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -324,6 +324,8 @@ declare enum ETypeProxyProvider {
324
324
  declare enum ETypeProxyCountry {
325
325
  USA = "USA",
326
326
  UK = "UK",
327
+ CA = "CA",
328
+ AU = "AU",
327
329
  Canada = "Canada"
328
330
  }
329
331
 
@@ -1553,7 +1555,7 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
1553
1555
  status: EStatusCommon;
1554
1556
  city: string;
1555
1557
  speed: string;
1556
- country: ETypeProxyCountry;
1558
+ country: string;
1557
1559
  startDate: Date;
1558
1560
  endDate: Date;
1559
1561
  timeLastUsed: Date;
@@ -3953,11 +3955,643 @@ interface FindInstagramHistoryChangeCreateDto extends IBaseDto, IInstagramHistor
3953
3955
  interface FilterInstagramHistoryChangeCreateDto extends IFilterBaseDto, Omit<IInstagramHistoryChangeCreate, TOmitFilterDto> {
3954
3956
  }
3955
3957
 
3958
+ interface IInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
3959
+ deviceInfo: {
3960
+ key: string;
3961
+ name: string;
3962
+ type: ETypeDeviceOS;
3963
+ typeAppClone: string;
3964
+ nameAppClone: string;
3965
+ nameAppCloneSocial: string;
3966
+ };
3967
+ assignInfo: {
3968
+ department: {
3969
+ id: string;
3970
+ name: string;
3971
+ };
3972
+ leader: {
3973
+ id: string;
3974
+ name: string;
3975
+ };
3976
+ member: {
3977
+ id: string;
3978
+ name: string;
3979
+ };
3980
+ timeUpdate: Date;
3981
+ };
3982
+ type: ETypeManagerWorkType;
3983
+ folderImage: {
3984
+ folderName: string;
3985
+ status: string;
3986
+ time: Date;
3987
+ };
3988
+ }
3989
+ interface AutoFillOverviewInstagramAccountRawDto {
3990
+ idea: {
3991
+ colName: string;
3992
+ colSymbol: string;
3993
+ listValsOnCol: string[];
3994
+ };
3995
+ niche: {
3996
+ colName: string;
3997
+ colSymbol: string;
3998
+ listValsOnCol: string[];
3999
+ };
4000
+ accountID: {
4001
+ colName: string;
4002
+ colSymbol: string;
4003
+ listValsOnCol: string[];
4004
+ };
4005
+ oldUsername: {
4006
+ colName: string;
4007
+ colSymbol: string;
4008
+ listValsOnCol: string[];
4009
+ };
4010
+ }
4011
+ interface FilterInstagramAccountRawDto extends IBaseDto, IInstagramAccountRaw {
4012
+ accountGroup: string;
4013
+ accountType: string;
4014
+ idea: string;
4015
+ niche: string;
4016
+ createdBy: string;
4017
+ updatedBy: string;
4018
+ fileNameSheetImport: string;
4019
+ accountIDRange: [number, number];
4020
+ loginSocialStatus: string;
4021
+ loginEmailStatus: string;
4022
+ accountSettingStatus: string;
4023
+ statusAutoSyncAccount: string;
4024
+ deviceBrand: string;
4025
+ usernameChangeStatus: string;
4026
+ fullNameChangeStatus: string;
4027
+ passwordChangeStatus: string;
4028
+ twoFactorAuthChangeStatus: string;
4029
+ emailChangeStatus: string;
4030
+ avatarStatus: string;
4031
+ coverStatus: string;
4032
+ bioStatus: string;
4033
+ linksStatus: string;
4034
+ hasAvatar: string;
4035
+ hasCover: string;
4036
+ hasBio: string;
4037
+ hasLinks: string;
4038
+ departmentToAssign: string;
4039
+ leaderTeamToAssign: string;
4040
+ memberToAssign: string;
4041
+ assignmentStatus: string;
4042
+ statusCreateFolder: string;
4043
+ }
4044
+ interface FindOverViewInstagramAccountRawDto {
4045
+ totalAccounts: number;
4046
+ totalIdeas: number;
4047
+ totalNiches: number;
4048
+ totalTypes: {
4049
+ total: number;
4050
+ TM: number;
4051
+ NTM: number;
4052
+ };
4053
+ totalAccountGroups: number;
4054
+ totalAccountSync: {
4055
+ total: number;
4056
+ done: number;
4057
+ failed: number;
4058
+ };
4059
+ totalStatusCreateFolder: {
4060
+ total: number;
4061
+ done: number;
4062
+ pending: number;
4063
+ failed: number;
4064
+ };
4065
+ totalAccountSetting: {
4066
+ total: number;
4067
+ done: number;
4068
+ error: number;
4069
+ unknown: number;
4070
+ };
4071
+ totalLoginEmail: {
4072
+ total: number;
4073
+ active: number;
4074
+ inactive: number;
4075
+ error: number;
4076
+ };
4077
+ accountsWithAvatar: {
4078
+ total: number;
4079
+ done: number;
4080
+ pending: number;
4081
+ failed: number;
4082
+ };
4083
+ accountsWithCover: {
4084
+ total: number;
4085
+ done: number;
4086
+ pending: number;
4087
+ failed: number;
4088
+ };
4089
+ accountsWithBio: {
4090
+ total: number;
4091
+ done: number;
4092
+ pending: number;
4093
+ failed: number;
4094
+ };
4095
+ accountsWithLinks: {
4096
+ total: number;
4097
+ done: number;
4098
+ pending: number;
4099
+ failed: number;
4100
+ };
4101
+ usernameChanged: {
4102
+ total: number;
4103
+ done: number;
4104
+ pending: number;
4105
+ failed: number;
4106
+ };
4107
+ passwordChanged: {
4108
+ total: number;
4109
+ done: number;
4110
+ pending: number;
4111
+ failed: number;
4112
+ };
4113
+ twoFactorAuthChanged: {
4114
+ total: number;
4115
+ done: number;
4116
+ pending: number;
4117
+ failed: number;
4118
+ };
4119
+ emailChanged: {
4120
+ total: number;
4121
+ done: number;
4122
+ pending: number;
4123
+ failed: number;
4124
+ };
4125
+ }
4126
+ interface AutoFillInstagramAccountRawDto {
4127
+ idea: {
4128
+ id: string;
4129
+ name: string;
4130
+ };
4131
+ niche: {
4132
+ id: string;
4133
+ name: string;
4134
+ };
4135
+ accountId: {
4136
+ id: string;
4137
+ val: string;
4138
+ };
4139
+ oldUsername: {
4140
+ id: string;
4141
+ name: string;
4142
+ };
4143
+ newUsername: string;
4144
+ newFullname: string;
4145
+ timeExecuteChangeInfo: Date;
4146
+ newBio: string;
4147
+ timeExecuteBio: Date;
4148
+ newPassword: string;
4149
+ timeExecutePassword: Date;
4150
+ new2FA: string;
4151
+ isTurnOn2FA: boolean;
4152
+ timeExecute2FA: Date;
4153
+ newEmail: string;
4154
+ timeExecuteEmail: Date;
4155
+ newLinks: string[];
4156
+ timeExecuteLinks: Date;
4157
+ newAvatar: string;
4158
+ timeExecuteAvatar: Date;
4159
+ newCover: string;
4160
+ timeExecuteCover: Date;
4161
+ }
4162
+
4163
+ interface FindInstagramAccountRunDto extends IBaseDto, IInstagramAccountRun {
4164
+ type: ETypeManagerWorkType;
4165
+ pcInfo: {
4166
+ name: string;
4167
+ department: string;
4168
+ leader: string;
4169
+ member: string;
4170
+ };
4171
+ deviceInfo: {
4172
+ key: string;
4173
+ name: string;
4174
+ type: ETypeDeviceOS;
4175
+ typeAppClone: string;
4176
+ nameAppClone: string;
4177
+ nameAppCloneSocial: string;
4178
+ };
4179
+ chPlayInfo: {
4180
+ id: string;
4181
+ email: string;
4182
+ password: string;
4183
+ code2FA: string;
4184
+ emailRecover: string;
4185
+ status: string;
4186
+ };
4187
+ proxyInfo: {
4188
+ id: string;
4189
+ type: ETypeProxy;
4190
+ proxyStr: string;
4191
+ status: string;
4192
+ numberRunDevice: string;
4193
+ };
4194
+ vpnInfo: {
4195
+ id: string;
4196
+ email: string;
4197
+ password: string;
4198
+ code2FA: string;
4199
+ emailRecover: string;
4200
+ type: ETypeAccountVPN;
4201
+ status: string;
4202
+ };
4203
+ totalPosts: number;
4204
+ totalPostFollower: number;
4205
+ totalPostFollowing: number;
4206
+ }
4207
+ interface FilterInstagramAccountDto extends IBaseDto, IInstagramAccountRun {
4208
+ deviceType: ETypeDeviceOS;
4209
+ deviceConnectStatus: string;
4210
+ pcAssignment: string;
4211
+ proxyType: ETypeProxy;
4212
+ proxyStatus: string;
4213
+ teamMember: string;
4214
+ vpnType: string;
4215
+ vpnStatus: string;
4216
+ chPlayStatus: string;
4217
+ campaignIdea: string;
4218
+ nicheCategory: string;
4219
+ accountType: string;
4220
+ accountGroup: string;
4221
+ departmentName: string;
4222
+ leaderTeam: string;
4223
+ memberRunDeviceAndRunPC: string;
4224
+ accountIDRange: [number, number];
4225
+ runStatus: string;
4226
+ loginSocialStatus: string;
4227
+ emailLoginStatus: string;
4228
+ createdBy: string;
4229
+ updatedBy: string;
4230
+ accountSettingStatus: string;
4231
+ usernameChangeStatus: string;
4232
+ passwordChangeStatus: string;
4233
+ twoFactorAuthChangeStatus: string;
4234
+ emailChangeStatus: string;
4235
+ runActiveDateRange: [Date, Date];
4236
+ createdDateRange: [Date, Date];
4237
+ updatedDateRange: [Date, Date];
4238
+ }
4239
+ interface FindOverViewInstagramAccountDto {
4240
+ totalAccounts: number;
4241
+ totalDevices: number;
4242
+ totalPC: number;
4243
+ totalLeader: number;
4244
+ totalMembers: number;
4245
+ totalAccountGroups: number;
4246
+ totalFileSheetName: number;
4247
+ totalUrlSheetPost: number;
4248
+ totalIdea: number;
4249
+ totalNiche: number;
4250
+ totalDeviceAndroid: number;
4251
+ totalDeviceIOS: number;
4252
+ totalAccountsActive: number;
4253
+ totalAccountsInactive: number;
4254
+ totalAccountsBlocked: number;
4255
+ totalEmailLoginActive: number;
4256
+ totalDeviceConnected: number;
4257
+ totalDeviceError: number;
4258
+ totalPosts: number;
4259
+ totalFollowers: number;
4260
+ totalFollowings: number;
4261
+ totalDepartments: number;
4262
+ }
4263
+
4264
+ interface FindInstagramAccountGroupDto extends IBaseDto, IInstagramAccountGroup {
4265
+ }
4266
+ interface FilterInstagramAccountGroupDto extends IFilterBaseDto, Omit<IInstagramAccountGroup, TOmitFilterDto> {
4267
+ }
4268
+
4269
+ interface FindThreadsHistoryGroupDto extends IBaseDto, IThreadsHistoryGroup {
4270
+ }
4271
+ interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
4272
+ }
4273
+
4274
+ interface FindThreadsHistoryAutoSyncDto extends IBaseDto, IThreadsHistoryAutoSync {
4275
+ }
4276
+ interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
4277
+ }
4278
+
4279
+ interface FindThreadsHistoryChangeCreateDto extends IBaseDto, IThreadsHistoryChangeCreate {
4280
+ }
4281
+ interface FilterThreadsHistoryChangeCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryChangeCreate, TOmitFilterDto> {
4282
+ }
4283
+
3956
4284
  interface FindThreadsAccountGroupDto extends IBaseDto, IThreadsAccountGroup {
3957
4285
  }
3958
4286
  interface FilterThreadsAccountGroupDto extends IFilterBaseDto, Omit<IThreadsAccountGroup, TOmitFilterDto> {
3959
4287
  }
3960
4288
 
4289
+ interface FindThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
4290
+ deviceInfo: {
4291
+ key: string;
4292
+ name: string;
4293
+ type: ETypeDeviceOS;
4294
+ typeAppClone: string;
4295
+ nameAppClone: string;
4296
+ nameAppCloneSocial: string;
4297
+ };
4298
+ assignInfo: {
4299
+ department: {
4300
+ id: string;
4301
+ name: string;
4302
+ };
4303
+ leader: {
4304
+ id: string;
4305
+ name: string;
4306
+ };
4307
+ member: {
4308
+ id: string;
4309
+ name: string;
4310
+ };
4311
+ timeUpdate: Date;
4312
+ };
4313
+ type: ETypeManagerWorkType;
4314
+ folderImage: {
4315
+ folderName: string;
4316
+ status: string;
4317
+ time: Date;
4318
+ };
4319
+ }
4320
+ interface AutoFillOverviewThreadsAccountRawDto {
4321
+ idea: {
4322
+ colName: string;
4323
+ colSymbol: string;
4324
+ listValsOnCol: string[];
4325
+ };
4326
+ niche: {
4327
+ colName: string;
4328
+ colSymbol: string;
4329
+ listValsOnCol: string[];
4330
+ };
4331
+ accountID: {
4332
+ colName: string;
4333
+ colSymbol: string;
4334
+ listValsOnCol: string[];
4335
+ };
4336
+ oldUsername: {
4337
+ colName: string;
4338
+ colSymbol: string;
4339
+ listValsOnCol: string[];
4340
+ };
4341
+ }
4342
+ interface FilterThreadsAccountRawDto extends IBaseDto, IThreadsAccountRaw {
4343
+ accountGroup: string;
4344
+ accountType: string;
4345
+ idea: string;
4346
+ niche: string;
4347
+ createdBy: string;
4348
+ updatedBy: string;
4349
+ fileNameSheetImport: string;
4350
+ accountIDRange: [number, number];
4351
+ loginSocialStatus: string;
4352
+ loginEmailStatus: string;
4353
+ accountSettingStatus: string;
4354
+ statusAutoSyncAccount: string;
4355
+ deviceBrand: string;
4356
+ usernameChangeStatus: string;
4357
+ fullNameChangeStatus: string;
4358
+ passwordChangeStatus: string;
4359
+ twoFactorAuthChangeStatus: string;
4360
+ emailChangeStatus: string;
4361
+ avatarStatus: string;
4362
+ coverStatus: string;
4363
+ bioStatus: string;
4364
+ linksStatus: string;
4365
+ hasAvatar: string;
4366
+ hasCover: string;
4367
+ hasBio: string;
4368
+ hasLinks: string;
4369
+ departmentToAssign: string;
4370
+ leaderTeamToAssign: string;
4371
+ memberToAssign: string;
4372
+ assignmentStatus: string;
4373
+ statusCreateFolder: string;
4374
+ }
4375
+ interface FindOverViewThreadsAccountRowDto {
4376
+ totalAccounts: number;
4377
+ totalIdeas: number;
4378
+ totalNiches: number;
4379
+ totalTypes: {
4380
+ total: number;
4381
+ TM: number;
4382
+ NTM: number;
4383
+ };
4384
+ totalAccountGroups: number;
4385
+ totalAccountSync: {
4386
+ total: number;
4387
+ done: number;
4388
+ failed: number;
4389
+ };
4390
+ totalStatusCreateFolder: {
4391
+ total: number;
4392
+ done: number;
4393
+ pending: number;
4394
+ failed: number;
4395
+ };
4396
+ totalAccountSetting: {
4397
+ total: number;
4398
+ done: number;
4399
+ error: number;
4400
+ unknown: number;
4401
+ };
4402
+ totalLoginEmail: {
4403
+ total: number;
4404
+ active: number;
4405
+ inactive: number;
4406
+ error: number;
4407
+ };
4408
+ accountsWithAvatar: {
4409
+ total: number;
4410
+ done: number;
4411
+ pending: number;
4412
+ failed: number;
4413
+ };
4414
+ accountsWithCover: {
4415
+ total: number;
4416
+ done: number;
4417
+ pending: number;
4418
+ failed: number;
4419
+ };
4420
+ accountsWithBio: {
4421
+ total: number;
4422
+ done: number;
4423
+ pending: number;
4424
+ failed: number;
4425
+ };
4426
+ accountsWithLinks: {
4427
+ total: number;
4428
+ done: number;
4429
+ pending: number;
4430
+ failed: number;
4431
+ };
4432
+ usernameChanged: {
4433
+ total: number;
4434
+ done: number;
4435
+ pending: number;
4436
+ failed: number;
4437
+ };
4438
+ passwordChanged: {
4439
+ total: number;
4440
+ done: number;
4441
+ pending: number;
4442
+ failed: number;
4443
+ };
4444
+ twoFactorAuthChanged: {
4445
+ total: number;
4446
+ done: number;
4447
+ pending: number;
4448
+ failed: number;
4449
+ };
4450
+ emailChanged: {
4451
+ total: number;
4452
+ done: number;
4453
+ pending: number;
4454
+ failed: number;
4455
+ };
4456
+ }
4457
+ interface AutoFillThreadsAccountRawDto {
4458
+ idea: {
4459
+ id: string;
4460
+ name: string;
4461
+ };
4462
+ niche: {
4463
+ id: string;
4464
+ name: string;
4465
+ };
4466
+ accountId: {
4467
+ id: string;
4468
+ val: string;
4469
+ };
4470
+ oldUsername: {
4471
+ id: string;
4472
+ name: string;
4473
+ };
4474
+ newUsername: string;
4475
+ newFullname: string;
4476
+ timeExecuteChangeInfo: Date;
4477
+ newBio: string;
4478
+ timeExecuteBio: Date;
4479
+ newPassword: string;
4480
+ timeExecutePassword: Date;
4481
+ new2FA: string;
4482
+ isTurnOn2FA: boolean;
4483
+ timeExecute2FA: Date;
4484
+ newEmail: string;
4485
+ timeExecuteEmail: Date;
4486
+ newLinks: string[];
4487
+ timeExecuteLinks: Date;
4488
+ newAvatar: string;
4489
+ timeExecuteAvatar: Date;
4490
+ newCover: string;
4491
+ timeExecuteCover: Date;
4492
+ }
4493
+
4494
+ interface FindThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
4495
+ type: ETypeManagerWorkType;
4496
+ pcInfo: {
4497
+ name: string;
4498
+ department: string;
4499
+ leader: string;
4500
+ member: string;
4501
+ };
4502
+ deviceInfo: {
4503
+ key: string;
4504
+ name: string;
4505
+ type: ETypeDeviceOS;
4506
+ typeAppClone: string;
4507
+ nameAppClone: string;
4508
+ nameAppCloneSocial: string;
4509
+ };
4510
+ chPlayInfo: {
4511
+ id: string;
4512
+ email: string;
4513
+ password: string;
4514
+ code2FA: string;
4515
+ emailRecover: string;
4516
+ status: string;
4517
+ };
4518
+ proxyInfo: {
4519
+ id: string;
4520
+ type: ETypeProxy;
4521
+ proxyStr: string;
4522
+ status: string;
4523
+ numberRunDevice: string;
4524
+ };
4525
+ vpnInfo: {
4526
+ id: string;
4527
+ email: string;
4528
+ password: string;
4529
+ code2FA: string;
4530
+ emailRecover: string;
4531
+ type: ETypeAccountVPN;
4532
+ status: string;
4533
+ };
4534
+ totalPosts: number;
4535
+ totalPostFollower: number;
4536
+ totalPostFollowing: number;
4537
+ }
4538
+ interface FilterThreadsAccountRunDto extends IBaseDto, IThreadsAccountRun {
4539
+ deviceType: ETypeDeviceOS;
4540
+ deviceConnectStatus: string;
4541
+ pcAssignment: string;
4542
+ proxyType: ETypeProxy;
4543
+ proxyStatus: string;
4544
+ teamMember: string;
4545
+ vpnType: string;
4546
+ vpnStatus: string;
4547
+ chPlayStatus: string;
4548
+ campaignIdea: string;
4549
+ nicheCategory: string;
4550
+ accountType: string;
4551
+ accountGroup: string;
4552
+ departmentName: string;
4553
+ leaderTeam: string;
4554
+ memberRunDeviceAndRunPC: string;
4555
+ accountIDRange: [number, number];
4556
+ runStatus: string;
4557
+ loginSocialStatus: string;
4558
+ emailLoginStatus: string;
4559
+ createdBy: string;
4560
+ updatedBy: string;
4561
+ accountSettingStatus: string;
4562
+ usernameChangeStatus: string;
4563
+ passwordChangeStatus: string;
4564
+ twoFactorAuthChangeStatus: string;
4565
+ emailChangeStatus: string;
4566
+ runActiveDateRange: [Date, Date];
4567
+ createdDateRange: [Date, Date];
4568
+ updatedDateRange: [Date, Date];
4569
+ }
4570
+ interface FindOverViewThreadsAccountDto {
4571
+ totalAccounts: number;
4572
+ totalDevices: number;
4573
+ totalPC: number;
4574
+ totalLeader: number;
4575
+ totalMembers: number;
4576
+ totalAccountGroups: number;
4577
+ totalFileSheetName: number;
4578
+ totalUrlSheetPost: number;
4579
+ totalIdea: number;
4580
+ totalNiche: number;
4581
+ totalDeviceAndroid: number;
4582
+ totalDeviceIOS: number;
4583
+ totalAccountsActive: number;
4584
+ totalAccountsInactive: number;
4585
+ totalAccountsBlocked: number;
4586
+ totalEmailLoginActive: number;
4587
+ totalDeviceConnected: number;
4588
+ totalDeviceError: number;
4589
+ totalPosts: number;
4590
+ totalFollowers: number;
4591
+ totalFollowings: number;
4592
+ totalDepartments: number;
4593
+ }
4594
+
3961
4595
  interface FindDeviceDto extends IBaseDto, IDevice {
3962
4596
  }
3963
4597
  interface FilterDeviceDto extends IFilterBaseDto, Omit<IDevice, TOmitFilterDto> {
@@ -4084,6 +4718,10 @@ interface FindDepartmentDto extends IBaseDto, IDepartment {
4084
4718
  interface FilterDepartmentDto extends IFilterBaseDto, Omit<IDepartment, TOmitFilterDto> {
4085
4719
  }
4086
4720
 
4721
+ type index_AutoFillInstagramAccountRawDto = AutoFillInstagramAccountRawDto;
4722
+ type index_AutoFillOverviewInstagramAccountRawDto = AutoFillOverviewInstagramAccountRawDto;
4723
+ type index_AutoFillOverviewThreadsAccountRawDto = AutoFillOverviewThreadsAccountRawDto;
4724
+ type index_AutoFillThreadsAccountRawDto = AutoFillThreadsAccountRawDto;
4087
4725
  type index_ExportDto = ExportDto;
4088
4726
  type index_FilterAccountAIContentDto = FilterAccountAIContentDto;
4089
4727
  type index_FilterAccountAIImageDto = FilterAccountAIImageDto;
@@ -4108,6 +4746,9 @@ type index_FilterIAccountAIImageInfoDto = FilterIAccountAIImageInfoDto;
4108
4746
  type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
4109
4747
  type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
4110
4748
  type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
4749
+ type index_FilterInstagramAccountDto = FilterInstagramAccountDto;
4750
+ type index_FilterInstagramAccountGroupDto = FilterInstagramAccountGroupDto;
4751
+ type index_FilterInstagramAccountRawDto = FilterInstagramAccountRawDto;
4111
4752
  type index_FilterInstagramHistoryAutoSyncDto = FilterInstagramHistoryAutoSyncDto;
4112
4753
  type index_FilterInstagramHistoryChangeCreateDto = FilterInstagramHistoryChangeCreateDto;
4113
4754
  type index_FilterInstagramHistoryGroupDto = FilterInstagramHistoryGroupDto;
@@ -4152,6 +4793,11 @@ type index_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
4152
4793
  type index_FilterTaskToolMonitorDto = FilterTaskToolMonitorDto;
4153
4794
  type index_FilterTeamDto = FilterTeamDto;
4154
4795
  type index_FilterThreadsAccountGroupDto = FilterThreadsAccountGroupDto;
4796
+ type index_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
4797
+ type index_FilterThreadsAccountRunDto = FilterThreadsAccountRunDto;
4798
+ type index_FilterThreadsHistoryAutoSyncDto = FilterThreadsHistoryAutoSyncDto;
4799
+ type index_FilterThreadsHistoryChangeCreateDto = FilterThreadsHistoryChangeCreateDto;
4800
+ type index_FilterThreadsHistoryGroupDto = FilterThreadsHistoryGroupDto;
4155
4801
  type index_FilterThreadsReportInteractFollowDto = FilterThreadsReportInteractFollowDto;
4156
4802
  type index_FilterThreadsReportInteractReplyCommentDto = FilterThreadsReportInteractReplyCommentDto;
4157
4803
  type index_FilterThreadsReportPostDto = FilterThreadsReportPostDto;
@@ -4182,6 +4828,8 @@ type index_FindIAccountAIImageInfoDto = FindIAccountAIImageInfoDto;
4182
4828
  type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
4183
4829
  type index_FindIAccountEmailDto = FindIAccountEmailDto;
4184
4830
  type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
4831
+ type index_FindInstagramAccountGroupDto = FindInstagramAccountGroupDto;
4832
+ type index_FindInstagramAccountRunDto = FindInstagramAccountRunDto;
4185
4833
  type index_FindInstagramHistoryAutoSyncDto = FindInstagramHistoryAutoSyncDto;
4186
4834
  type index_FindInstagramHistoryChangeCreateDto = FindInstagramHistoryChangeCreateDto;
4187
4835
  type index_FindInstagramHistoryGroupDto = FindInstagramHistoryGroupDto;
@@ -4206,6 +4854,10 @@ type index_FindInstagramSettingUnFollowDto = FindInstagramSettingUnFollowDto;
4206
4854
  type index_FindLarkDto = FindLarkDto;
4207
4855
  type index_FindManagerSheetDto = FindManagerSheetDto;
4208
4856
  type index_FindManagerWorkDto = FindManagerWorkDto;
4857
+ type index_FindOverViewInstagramAccountDto = FindOverViewInstagramAccountDto;
4858
+ type index_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
4859
+ type index_FindOverViewThreadsAccountDto = FindOverViewThreadsAccountDto;
4860
+ type index_FindOverViewThreadsAccountRowDto = FindOverViewThreadsAccountRowDto;
4209
4861
  type index_FindOverviewAccountCHPlayICloudDto = FindOverviewAccountCHPlayICloudDto;
4210
4862
  type index_FindOverviewAccountCanvaDto = FindOverviewAccountCanvaDto;
4211
4863
  type index_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
@@ -4231,6 +4883,11 @@ type index_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
4231
4883
  type index_FindTaskToolMonitorDto = FindTaskToolMonitorDto;
4232
4884
  type index_FindTeamDto = FindTeamDto;
4233
4885
  type index_FindThreadsAccountGroupDto = FindThreadsAccountGroupDto;
4886
+ type index_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
4887
+ type index_FindThreadsAccountRunDto = FindThreadsAccountRunDto;
4888
+ type index_FindThreadsHistoryAutoSyncDto = FindThreadsHistoryAutoSyncDto;
4889
+ type index_FindThreadsHistoryChangeCreateDto = FindThreadsHistoryChangeCreateDto;
4890
+ type index_FindThreadsHistoryGroupDto = FindThreadsHistoryGroupDto;
4234
4891
  type index_FindThreadsReportInteractFollowDto = FindThreadsReportInteractFollowDto;
4235
4892
  type index_FindThreadsReportInteractReplyCommentDto = FindThreadsReportInteractReplyCommentDto;
4236
4893
  type index_FindThreadsReportPostDto = FindThreadsReportPostDto;
@@ -4241,11 +4898,12 @@ type index_FindUserDto = FindUserDto;
4241
4898
  type index_IBaseDto = IBaseDto;
4242
4899
  type index_IBaseSheetImportDto = IBaseSheetImportDto;
4243
4900
  type index_IFilterBaseDto = IFilterBaseDto;
4901
+ type index_IInstagramAccountRawDto = IInstagramAccountRawDto;
4244
4902
  type index_ImportDto = ImportDto;
4245
4903
  type index_OverviewUserDto = OverviewUserDto;
4246
4904
  type index_TOmitFilterDto = TOmitFilterDto;
4247
4905
  declare namespace index {
4248
- export type { index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
4906
+ export type { index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_ExportDto as ExportDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterIAccountAIContentInfoDto as FilterIAccountAIContentInfoDto, index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, index_FilterIAccountEmailDto as FilterIAccountEmailDto, index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, index_FilterInstagramAccountDto as FilterInstagramAccountDto, index_FilterInstagramAccountGroupDto as FilterInstagramAccountGroupDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeCreateDto as FilterInstagramHistoryChangeCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolDto as FilterSheetsToolDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_FilterTaskAIImageVoiceCanvaDto as FilterTaskAIImageVoiceCanvaDto, index_FilterTaskInstagramBlockUserDto as FilterTaskInstagramBlockUserDto, index_FilterTaskInstagramChangeInfoDto as FilterTaskInstagramChangeInfoDto, index_FilterTaskInstagramFollowDto as FilterTaskInstagramFollowDto, index_FilterTaskInstagramPostDto as FilterTaskInstagramPostDto, index_FilterTaskInstagramReplyCommentDto as FilterTaskInstagramReplyCommentDto, index_FilterTaskInstagramReplyMessageDto as FilterTaskInstagramReplyMessageDto, index_FilterTaskThreadsFollowDto as FilterTaskThreadsFollowDto, index_FilterTaskThreadsPostDto as FilterTaskThreadsPostDto, index_FilterTaskThreadsReplyCommentDto as FilterTaskThreadsReplyCommentDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountGroupDto as FilterThreadsAccountGroupDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeCreateDto as FilterThreadsHistoryChangeCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindIAccountAIContentInfoDto as FindIAccountAIContentInfoDto, index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, index_FindIAccountEmailDto as FindIAccountEmailDto, index_FindIManagerImageAIDto as FindIManagerImageAIDto, index_FindInstagramAccountGroupDto as FindInstagramAccountGroupDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeCreateDto as FindInstagramHistoryChangeCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, index_FindLarkDto as FindLarkDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewInstagramAccountDto as FindOverViewInstagramAccountDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolDto as FindSheetsToolDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_FindTaskAIImageVoiceCanvaDto as FindTaskAIImageVoiceCanvaDto, index_FindTaskInstagramBlockUserDto as FindTaskInstagramBlockUserDto, index_FindTaskInstagramChangeInfoDto as FindTaskInstagramChangeInfoDto, index_FindTaskInstagramFollowDto as FindTaskInstagramFollowDto, index_FindTaskInstagramPostDto as FindTaskInstagramPostDto, index_FindTaskInstagramReplyCommentDto as FindTaskInstagramReplyCommentDto, index_FindTaskInstagramReplyMessageDto as FindTaskInstagramReplyMessageDto, index_FindTaskThreadsFollowDto as FindTaskThreadsFollowDto, index_FindTaskThreadsPostDto as FindTaskThreadsPostDto, index_FindTaskThreadsReplyCommentDto as FindTaskThreadsReplyCommentDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountGroupDto as FindThreadsAccountGroupDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeCreateDto as FindThreadsHistoryChangeCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseDto as IBaseDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IInstagramAccountRawDto as IInstagramAccountRawDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto };
4249
4907
  }
4250
4908
 
4251
- export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };
4909
+ export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type ExportDto, type FilterAccountAIContentDto, type FilterAccountAIImageDto, type FilterAccountAIVoiceDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterIAccountAIContentInfoDto, type FilterIAccountAIImageInfoDto, type FilterIAccountAIVoiceInfoDto, type FilterIAccountEmailDto, type FilterIManagerImageAIDto, type FilterInstagramAccountDto, type FilterInstagramAccountGroupDto, type FilterInstagramAccountRawDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingPostDto, type FilterInstagramSettingReplyCommentDto, type FilterInstagramSettingReplyMessageDto, type FilterInstagramSettingStoryDto, type FilterInstagramSettingUnFollowDto, type FilterLarkDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountGroupDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentDto, type FindAccountAIImageDto, type FindAccountAIVoiceDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindIAccountAIContentInfoDto, type FindIAccountAIImageInfoDto, type FindIAccountAIVoiceInfoDto, type FindIAccountEmailDto, type FindIManagerImageAIDto, type FindInstagramAccountGroupDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingPostDto, type FindInstagramSettingReplyCommentDto, type FindInstagramSettingReplyMessageDto, type FindInstagramSettingStoryDto, type FindInstagramSettingUnFollowDto, type FindLarkDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewInstagramAccountDto, type FindOverViewInstagramAccountRawDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountGroupDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseDto, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountGroup, type IInstagramAccountRaw, type IInstagramAccountRawDto, type IInstagramAccountRun, type IInstagramHistoryAutoSync, type IInstagramHistoryChangeCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountGroup, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoSync, type IThreadsHistoryChangeCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, index$a as Web };