automation-lib 5.1.54 → 5.1.57
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 +808 -17
- package/dist/index.d.ts +808 -17
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -548,7 +548,6 @@ declare enum EStatusTaskAIContent {
|
|
|
548
548
|
Executing = "Executing",
|
|
549
549
|
Done = "Done",
|
|
550
550
|
Warning = "Warning",
|
|
551
|
-
DoneAndWarning = "DoneAndWarning",
|
|
552
551
|
Error = "Error"
|
|
553
552
|
}
|
|
554
553
|
|
|
@@ -3880,6 +3879,31 @@ interface FilterThreadsHistoryAutoPostDto extends IFilterBaseDto, Omit<IThreadsH
|
|
|
3880
3879
|
typeSocial: ETypeSocial;
|
|
3881
3880
|
}
|
|
3882
3881
|
|
|
3882
|
+
interface FindOverViewThreadsReportPostDto {
|
|
3883
|
+
totalAccounts: number;
|
|
3884
|
+
totalDevices: number;
|
|
3885
|
+
totalPC: number;
|
|
3886
|
+
totalLeader: number;
|
|
3887
|
+
totalMembers: number;
|
|
3888
|
+
totalAccountGroups: number;
|
|
3889
|
+
totalIdea: number;
|
|
3890
|
+
totalNiche: number;
|
|
3891
|
+
totalType: {
|
|
3892
|
+
total: number;
|
|
3893
|
+
TM: number;
|
|
3894
|
+
NTM: number;
|
|
3895
|
+
};
|
|
3896
|
+
totalDevice: {
|
|
3897
|
+
total: number;
|
|
3898
|
+
android: number;
|
|
3899
|
+
ios: number;
|
|
3900
|
+
};
|
|
3901
|
+
totalPost: {
|
|
3902
|
+
done: number;
|
|
3903
|
+
error: number;
|
|
3904
|
+
unknown: number;
|
|
3905
|
+
};
|
|
3906
|
+
}
|
|
3883
3907
|
interface FindThreadsReportPostDto extends IFindBaseDto, IThreadsReportPost {
|
|
3884
3908
|
idea: string;
|
|
3885
3909
|
niche: string;
|
|
@@ -3903,6 +3927,31 @@ interface FilterThreadsReportPostDto extends IFilterBaseDto, Omit<IThreadsReport
|
|
|
3903
3927
|
typeSocial: ETypeSocial;
|
|
3904
3928
|
}
|
|
3905
3929
|
|
|
3930
|
+
interface FindOverViewThreadsReportInteractFollowDto {
|
|
3931
|
+
totalAccounts: number;
|
|
3932
|
+
totalDevices: number;
|
|
3933
|
+
totalPC: number;
|
|
3934
|
+
totalLeader: number;
|
|
3935
|
+
totalMembers: number;
|
|
3936
|
+
totalAccountGroups: number;
|
|
3937
|
+
totalIdea: number;
|
|
3938
|
+
totalNiche: number;
|
|
3939
|
+
totalType: {
|
|
3940
|
+
total: number;
|
|
3941
|
+
TM: number;
|
|
3942
|
+
NTM: number;
|
|
3943
|
+
};
|
|
3944
|
+
totalDevice: {
|
|
3945
|
+
total: number;
|
|
3946
|
+
android: number;
|
|
3947
|
+
ios: number;
|
|
3948
|
+
};
|
|
3949
|
+
totalInteract: {
|
|
3950
|
+
done: number;
|
|
3951
|
+
error: number;
|
|
3952
|
+
unknown: number;
|
|
3953
|
+
};
|
|
3954
|
+
}
|
|
3906
3955
|
interface FindThreadsReportInteractFollowDto extends IFindBaseDto, IThreadsReportInteractFollow {
|
|
3907
3956
|
idea: string;
|
|
3908
3957
|
niche: string;
|
|
@@ -3926,6 +3975,31 @@ interface FilterThreadsReportInteractFollowDto extends IFilterBaseDto, Omit<IThr
|
|
|
3926
3975
|
typeSocial: ETypeSocial;
|
|
3927
3976
|
}
|
|
3928
3977
|
|
|
3978
|
+
interface FindOverViewThreadsReportInteractReplyCommentDto {
|
|
3979
|
+
totalAccounts: number;
|
|
3980
|
+
totalDevices: number;
|
|
3981
|
+
totalPC: number;
|
|
3982
|
+
totalLeader: number;
|
|
3983
|
+
totalMembers: number;
|
|
3984
|
+
totalAccountGroups: number;
|
|
3985
|
+
totalIdea: number;
|
|
3986
|
+
totalNiche: number;
|
|
3987
|
+
totalType: {
|
|
3988
|
+
total: number;
|
|
3989
|
+
TM: number;
|
|
3990
|
+
NTM: number;
|
|
3991
|
+
};
|
|
3992
|
+
totalDevice: {
|
|
3993
|
+
total: number;
|
|
3994
|
+
android: number;
|
|
3995
|
+
ios: number;
|
|
3996
|
+
};
|
|
3997
|
+
totalInteract: {
|
|
3998
|
+
done: number;
|
|
3999
|
+
error: number;
|
|
4000
|
+
unknown: number;
|
|
4001
|
+
};
|
|
4002
|
+
}
|
|
3929
4003
|
interface FindThreadsReportInteractReplyCommentDto extends IFindBaseDto, IThreadsReportInteractReplyComment {
|
|
3930
4004
|
idea: string;
|
|
3931
4005
|
niche: string;
|
|
@@ -3949,6 +4023,31 @@ interface FilterThreadsReportInteractReplyCommentDto extends IFilterBaseDto, Omi
|
|
|
3949
4023
|
typeSocial: ETypeSocial;
|
|
3950
4024
|
}
|
|
3951
4025
|
|
|
4026
|
+
interface FindOverViewThreadsReportInteractReplyMessageDto {
|
|
4027
|
+
totalAccounts: number;
|
|
4028
|
+
totalDevices: number;
|
|
4029
|
+
totalPC: number;
|
|
4030
|
+
totalLeader: number;
|
|
4031
|
+
totalMembers: number;
|
|
4032
|
+
totalAccountGroups: number;
|
|
4033
|
+
totalIdea: number;
|
|
4034
|
+
totalNiche: number;
|
|
4035
|
+
totalType: {
|
|
4036
|
+
total: number;
|
|
4037
|
+
TM: number;
|
|
4038
|
+
NTM: number;
|
|
4039
|
+
};
|
|
4040
|
+
totalDevice: {
|
|
4041
|
+
total: number;
|
|
4042
|
+
android: number;
|
|
4043
|
+
ios: number;
|
|
4044
|
+
};
|
|
4045
|
+
totalInteract: {
|
|
4046
|
+
done: number;
|
|
4047
|
+
error: number;
|
|
4048
|
+
unknown: number;
|
|
4049
|
+
};
|
|
4050
|
+
}
|
|
3952
4051
|
interface FindThreadsReportInteractReplyMessageDto extends IFindBaseDto, IThreadsReportInteractReplyMessage {
|
|
3953
4052
|
idea: string;
|
|
3954
4053
|
niche: string;
|
|
@@ -4137,6 +4236,31 @@ interface FilterInstagramHistoryAutoPostDto extends IFilterBaseDto, Omit<IInstag
|
|
|
4137
4236
|
typeSocial: ETypeSocial;
|
|
4138
4237
|
}
|
|
4139
4238
|
|
|
4239
|
+
interface FindOverViewInstagramReportPostHighLightDto {
|
|
4240
|
+
totalAccounts: number;
|
|
4241
|
+
totalDevices: number;
|
|
4242
|
+
totalPC: number;
|
|
4243
|
+
totalLeader: number;
|
|
4244
|
+
totalMembers: number;
|
|
4245
|
+
totalAccountGroups: number;
|
|
4246
|
+
totalIdea: number;
|
|
4247
|
+
totalNiche: number;
|
|
4248
|
+
totalType: {
|
|
4249
|
+
total: number;
|
|
4250
|
+
TM: number;
|
|
4251
|
+
NTM: number;
|
|
4252
|
+
};
|
|
4253
|
+
totalDevice: {
|
|
4254
|
+
total: number;
|
|
4255
|
+
android: number;
|
|
4256
|
+
ios: number;
|
|
4257
|
+
};
|
|
4258
|
+
totalPost: {
|
|
4259
|
+
done: number;
|
|
4260
|
+
error: number;
|
|
4261
|
+
unknown: number;
|
|
4262
|
+
};
|
|
4263
|
+
}
|
|
4140
4264
|
interface FindInstagramReportPostHighLightDto extends IFindBaseDto, IInstagramReportPostHighLight {
|
|
4141
4265
|
idea: string;
|
|
4142
4266
|
niche: string;
|
|
@@ -4160,6 +4284,31 @@ interface FilterInstagramReportPostHighLightDto extends IFilterBaseDto, Omit<IIn
|
|
|
4160
4284
|
typeSocial: ETypeSocial;
|
|
4161
4285
|
}
|
|
4162
4286
|
|
|
4287
|
+
interface FindOverViewInstagramReportPostNewDto {
|
|
4288
|
+
totalAccounts: number;
|
|
4289
|
+
totalDevices: number;
|
|
4290
|
+
totalPC: number;
|
|
4291
|
+
totalLeader: number;
|
|
4292
|
+
totalMembers: number;
|
|
4293
|
+
totalAccountGroups: number;
|
|
4294
|
+
totalIdea: number;
|
|
4295
|
+
totalNiche: number;
|
|
4296
|
+
totalType: {
|
|
4297
|
+
total: number;
|
|
4298
|
+
TM: number;
|
|
4299
|
+
NTM: number;
|
|
4300
|
+
};
|
|
4301
|
+
totalDevice: {
|
|
4302
|
+
total: number;
|
|
4303
|
+
android: number;
|
|
4304
|
+
ios: number;
|
|
4305
|
+
};
|
|
4306
|
+
totalPost: {
|
|
4307
|
+
done: number;
|
|
4308
|
+
error: number;
|
|
4309
|
+
unknown: number;
|
|
4310
|
+
};
|
|
4311
|
+
}
|
|
4163
4312
|
interface FindInstagramReportPostNewDto extends IFindBaseDto, IInstagramReportPostNew {
|
|
4164
4313
|
idea: string;
|
|
4165
4314
|
niche: string;
|
|
@@ -4183,6 +4332,31 @@ interface FilterInstagramReportPostNewDto extends IFilterBaseDto, Omit<IInstagra
|
|
|
4183
4332
|
typeSocial: ETypeSocial;
|
|
4184
4333
|
}
|
|
4185
4334
|
|
|
4335
|
+
interface FindOverViewInstagramReportPostReelDto {
|
|
4336
|
+
totalAccounts: number;
|
|
4337
|
+
totalDevices: number;
|
|
4338
|
+
totalPC: number;
|
|
4339
|
+
totalLeader: number;
|
|
4340
|
+
totalMembers: number;
|
|
4341
|
+
totalAccountGroups: number;
|
|
4342
|
+
totalIdea: number;
|
|
4343
|
+
totalNiche: number;
|
|
4344
|
+
totalType: {
|
|
4345
|
+
total: number;
|
|
4346
|
+
TM: number;
|
|
4347
|
+
NTM: number;
|
|
4348
|
+
};
|
|
4349
|
+
totalDevice: {
|
|
4350
|
+
total: number;
|
|
4351
|
+
android: number;
|
|
4352
|
+
ios: number;
|
|
4353
|
+
};
|
|
4354
|
+
totalPost: {
|
|
4355
|
+
done: number;
|
|
4356
|
+
error: number;
|
|
4357
|
+
unknown: number;
|
|
4358
|
+
};
|
|
4359
|
+
}
|
|
4186
4360
|
interface FindInstagramReportPostReelDto extends IFindBaseDto, IInstagramReportPostReel {
|
|
4187
4361
|
idea: string;
|
|
4188
4362
|
niche: string;
|
|
@@ -4206,6 +4380,31 @@ interface FilterInstagramReportPostReelDto extends IFilterBaseDto, Omit<IInstagr
|
|
|
4206
4380
|
typeSocial: ETypeSocial;
|
|
4207
4381
|
}
|
|
4208
4382
|
|
|
4383
|
+
interface FindOverViewInstagramReportPostStoryDto {
|
|
4384
|
+
totalAccounts: number;
|
|
4385
|
+
totalDevices: number;
|
|
4386
|
+
totalPC: number;
|
|
4387
|
+
totalLeader: number;
|
|
4388
|
+
totalMembers: number;
|
|
4389
|
+
totalAccountGroups: number;
|
|
4390
|
+
totalIdea: number;
|
|
4391
|
+
totalNiche: number;
|
|
4392
|
+
totalType: {
|
|
4393
|
+
total: number;
|
|
4394
|
+
TM: number;
|
|
4395
|
+
NTM: number;
|
|
4396
|
+
};
|
|
4397
|
+
totalDevice: {
|
|
4398
|
+
total: number;
|
|
4399
|
+
android: number;
|
|
4400
|
+
ios: number;
|
|
4401
|
+
};
|
|
4402
|
+
totalPost: {
|
|
4403
|
+
done: number;
|
|
4404
|
+
error: number;
|
|
4405
|
+
unknown: number;
|
|
4406
|
+
};
|
|
4407
|
+
}
|
|
4209
4408
|
interface FindInstagramReportPostStoryDto extends IFindBaseDto, IInstagramReportPostStory {
|
|
4210
4409
|
idea: string;
|
|
4211
4410
|
niche: string;
|
|
@@ -4229,6 +4428,31 @@ interface FilterInstagramReportPostStoryDto extends IFilterBaseDto, Omit<IInstag
|
|
|
4229
4428
|
typeSocial: ETypeSocial;
|
|
4230
4429
|
}
|
|
4231
4430
|
|
|
4431
|
+
interface FindOverViewInstagramReportPostSquareDto {
|
|
4432
|
+
totalAccounts: number;
|
|
4433
|
+
totalDevices: number;
|
|
4434
|
+
totalPC: number;
|
|
4435
|
+
totalLeader: number;
|
|
4436
|
+
totalMembers: number;
|
|
4437
|
+
totalAccountGroups: number;
|
|
4438
|
+
totalIdea: number;
|
|
4439
|
+
totalNiche: number;
|
|
4440
|
+
totalType: {
|
|
4441
|
+
total: number;
|
|
4442
|
+
TM: number;
|
|
4443
|
+
NTM: number;
|
|
4444
|
+
};
|
|
4445
|
+
totalDevice: {
|
|
4446
|
+
total: number;
|
|
4447
|
+
android: number;
|
|
4448
|
+
ios: number;
|
|
4449
|
+
};
|
|
4450
|
+
totalPost: {
|
|
4451
|
+
done: number;
|
|
4452
|
+
error: number;
|
|
4453
|
+
unknown: number;
|
|
4454
|
+
};
|
|
4455
|
+
}
|
|
4232
4456
|
interface FindInstagramReportPostSquareDto extends IFindBaseDto, IInstagramReportPostSquare {
|
|
4233
4457
|
idea: string;
|
|
4234
4458
|
niche: string;
|
|
@@ -4252,6 +4476,31 @@ interface FilterInstagramReportPostSquareDto extends IFilterBaseDto, Omit<IInsta
|
|
|
4252
4476
|
typeSocial: ETypeSocial;
|
|
4253
4477
|
}
|
|
4254
4478
|
|
|
4479
|
+
interface FindOverViewInstagramReportInteractReplyCommentDto {
|
|
4480
|
+
totalAccounts: number;
|
|
4481
|
+
totalDevices: number;
|
|
4482
|
+
totalPC: number;
|
|
4483
|
+
totalLeader: number;
|
|
4484
|
+
totalMembers: number;
|
|
4485
|
+
totalAccountGroups: number;
|
|
4486
|
+
totalIdea: number;
|
|
4487
|
+
totalNiche: number;
|
|
4488
|
+
totalType: {
|
|
4489
|
+
total: number;
|
|
4490
|
+
TM: number;
|
|
4491
|
+
NTM: number;
|
|
4492
|
+
};
|
|
4493
|
+
totalDevice: {
|
|
4494
|
+
total: number;
|
|
4495
|
+
android: number;
|
|
4496
|
+
ios: number;
|
|
4497
|
+
};
|
|
4498
|
+
totalInteract: {
|
|
4499
|
+
done: number;
|
|
4500
|
+
error: number;
|
|
4501
|
+
unknown: number;
|
|
4502
|
+
};
|
|
4503
|
+
}
|
|
4255
4504
|
interface FindInstagramReportInteractReplyCommentDto extends IFindBaseDto, IInstagramReportInteractReplyComment {
|
|
4256
4505
|
idea: string;
|
|
4257
4506
|
niche: string;
|
|
@@ -4275,6 +4524,31 @@ interface FilterInstagramReportInteractReplyCommentDto extends IFilterBaseDto, O
|
|
|
4275
4524
|
typeSocial: ETypeSocial;
|
|
4276
4525
|
}
|
|
4277
4526
|
|
|
4527
|
+
interface FindOverViewInstagramReportInteractReelDto {
|
|
4528
|
+
totalAccounts: number;
|
|
4529
|
+
totalDevices: number;
|
|
4530
|
+
totalPC: number;
|
|
4531
|
+
totalLeader: number;
|
|
4532
|
+
totalMembers: number;
|
|
4533
|
+
totalAccountGroups: number;
|
|
4534
|
+
totalIdea: number;
|
|
4535
|
+
totalNiche: number;
|
|
4536
|
+
totalType: {
|
|
4537
|
+
total: number;
|
|
4538
|
+
TM: number;
|
|
4539
|
+
NTM: number;
|
|
4540
|
+
};
|
|
4541
|
+
totalDevice: {
|
|
4542
|
+
total: number;
|
|
4543
|
+
android: number;
|
|
4544
|
+
ios: number;
|
|
4545
|
+
};
|
|
4546
|
+
totalInteract: {
|
|
4547
|
+
done: number;
|
|
4548
|
+
error: number;
|
|
4549
|
+
unknown: number;
|
|
4550
|
+
};
|
|
4551
|
+
}
|
|
4278
4552
|
interface FindInstagramReportInteractReelDto extends IFindBaseDto, IInstagramReportInteractReel {
|
|
4279
4553
|
idea: string;
|
|
4280
4554
|
niche: string;
|
|
@@ -4298,20 +4572,45 @@ interface FilterInstagramReportInteractReelDto extends IFilterBaseDto, Omit<IIns
|
|
|
4298
4572
|
typeSocial: ETypeSocial;
|
|
4299
4573
|
}
|
|
4300
4574
|
|
|
4301
|
-
interface
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4575
|
+
interface FindOverViewInstagramReportInteractStoryDto {
|
|
4576
|
+
totalAccounts: number;
|
|
4577
|
+
totalDevices: number;
|
|
4578
|
+
totalPC: number;
|
|
4579
|
+
totalLeader: number;
|
|
4580
|
+
totalMembers: number;
|
|
4581
|
+
totalAccountGroups: number;
|
|
4582
|
+
totalIdea: number;
|
|
4583
|
+
totalNiche: number;
|
|
4584
|
+
totalType: {
|
|
4585
|
+
total: number;
|
|
4586
|
+
TM: number;
|
|
4587
|
+
NTM: number;
|
|
4588
|
+
};
|
|
4589
|
+
totalDevice: {
|
|
4590
|
+
total: number;
|
|
4591
|
+
android: number;
|
|
4592
|
+
ios: number;
|
|
4593
|
+
};
|
|
4594
|
+
totalInteract: {
|
|
4595
|
+
done: number;
|
|
4596
|
+
error: number;
|
|
4597
|
+
unknown: number;
|
|
4598
|
+
};
|
|
4599
|
+
}
|
|
4600
|
+
interface FindInstagramReportInteractStoryDto extends IFindBaseDto, IInstagramReportInteractStory {
|
|
4601
|
+
idea: string;
|
|
4602
|
+
niche: string;
|
|
4603
|
+
type: ETypeManagerWorkClassify;
|
|
4604
|
+
pc: string;
|
|
4605
|
+
device: string;
|
|
4606
|
+
accountGroup: string;
|
|
4607
|
+
account: string;
|
|
4608
|
+
accountID: string;
|
|
4609
|
+
typeSocial: ETypeSocial;
|
|
4610
|
+
}
|
|
4611
|
+
interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IInstagramReportInteractStory, TOmitFilterDto> {
|
|
4612
|
+
idea: string;
|
|
4613
|
+
niche: string;
|
|
4315
4614
|
type: ETypeManagerWorkClassify;
|
|
4316
4615
|
pc: string;
|
|
4317
4616
|
device: string;
|
|
@@ -4321,6 +4620,31 @@ interface FilterInstagramReportInteractStoryDto extends IFilterBaseDto, Omit<IIn
|
|
|
4321
4620
|
typeSocial: ETypeSocial;
|
|
4322
4621
|
}
|
|
4323
4622
|
|
|
4623
|
+
interface FindOverViewInstagramReportInteractExploreDto {
|
|
4624
|
+
totalAccounts: number;
|
|
4625
|
+
totalDevices: number;
|
|
4626
|
+
totalPC: number;
|
|
4627
|
+
totalLeader: number;
|
|
4628
|
+
totalMembers: number;
|
|
4629
|
+
totalAccountGroups: number;
|
|
4630
|
+
totalIdea: number;
|
|
4631
|
+
totalNiche: number;
|
|
4632
|
+
totalType: {
|
|
4633
|
+
total: number;
|
|
4634
|
+
TM: number;
|
|
4635
|
+
NTM: number;
|
|
4636
|
+
};
|
|
4637
|
+
totalDevice: {
|
|
4638
|
+
total: number;
|
|
4639
|
+
android: number;
|
|
4640
|
+
ios: number;
|
|
4641
|
+
};
|
|
4642
|
+
totalInteract: {
|
|
4643
|
+
done: number;
|
|
4644
|
+
error: number;
|
|
4645
|
+
unknown: number;
|
|
4646
|
+
};
|
|
4647
|
+
}
|
|
4324
4648
|
interface FindInstagramReportInteractExploreDto extends IFindBaseDto, IInstagramReportInteractExplore {
|
|
4325
4649
|
idea: string;
|
|
4326
4650
|
niche: string;
|
|
@@ -4344,6 +4668,31 @@ interface FilterInstagramReportInteractExploreDto extends IFilterBaseDto, Omit<I
|
|
|
4344
4668
|
typeSocial: ETypeSocial;
|
|
4345
4669
|
}
|
|
4346
4670
|
|
|
4671
|
+
interface FindOverViewInstagramReportInteractReplyMessageDto {
|
|
4672
|
+
totalAccounts: number;
|
|
4673
|
+
totalDevices: number;
|
|
4674
|
+
totalPC: number;
|
|
4675
|
+
totalLeader: number;
|
|
4676
|
+
totalMembers: number;
|
|
4677
|
+
totalAccountGroups: number;
|
|
4678
|
+
totalIdea: number;
|
|
4679
|
+
totalNiche: number;
|
|
4680
|
+
totalType: {
|
|
4681
|
+
total: number;
|
|
4682
|
+
TM: number;
|
|
4683
|
+
NTM: number;
|
|
4684
|
+
};
|
|
4685
|
+
totalDevice: {
|
|
4686
|
+
total: number;
|
|
4687
|
+
android: number;
|
|
4688
|
+
ios: number;
|
|
4689
|
+
};
|
|
4690
|
+
totalInteract: {
|
|
4691
|
+
done: number;
|
|
4692
|
+
error: number;
|
|
4693
|
+
unknown: number;
|
|
4694
|
+
};
|
|
4695
|
+
}
|
|
4347
4696
|
interface FindInstagramReportInteractReplyMessageDto extends IFindBaseDto, IInstagramReportInteractReplyMessage {
|
|
4348
4697
|
idea: string;
|
|
4349
4698
|
niche: string;
|
|
@@ -4367,6 +4716,31 @@ interface FilterInstagramReportInteractReplyMessageDto extends IFilterBaseDto, O
|
|
|
4367
4716
|
typeSocial: ETypeSocial;
|
|
4368
4717
|
}
|
|
4369
4718
|
|
|
4719
|
+
interface FindOverViewInstagramReportInteractFollowDto {
|
|
4720
|
+
totalAccounts: number;
|
|
4721
|
+
totalDevices: number;
|
|
4722
|
+
totalPC: number;
|
|
4723
|
+
totalLeader: number;
|
|
4724
|
+
totalMembers: number;
|
|
4725
|
+
totalAccountGroups: number;
|
|
4726
|
+
totalIdea: number;
|
|
4727
|
+
totalNiche: number;
|
|
4728
|
+
totalType: {
|
|
4729
|
+
total: number;
|
|
4730
|
+
TM: number;
|
|
4731
|
+
NTM: number;
|
|
4732
|
+
};
|
|
4733
|
+
totalDevice: {
|
|
4734
|
+
total: number;
|
|
4735
|
+
android: number;
|
|
4736
|
+
ios: number;
|
|
4737
|
+
};
|
|
4738
|
+
totalInteract: {
|
|
4739
|
+
done: number;
|
|
4740
|
+
error: number;
|
|
4741
|
+
unknown: number;
|
|
4742
|
+
};
|
|
4743
|
+
}
|
|
4370
4744
|
interface FindInstagramReportInteractFollowDto extends IFindBaseDto, IInstagramReportInteractFollow {
|
|
4371
4745
|
idea: string;
|
|
4372
4746
|
niche: string;
|
|
@@ -5664,6 +6038,44 @@ interface FindOverViewInstagramAccountRunDto {
|
|
|
5664
6038
|
totalDepartments: number;
|
|
5665
6039
|
}
|
|
5666
6040
|
|
|
6041
|
+
interface FindOverViewDeviceDto {
|
|
6042
|
+
totalDepartment: number;
|
|
6043
|
+
totalLeader: number;
|
|
6044
|
+
totalMembers: number;
|
|
6045
|
+
totalIdea: number;
|
|
6046
|
+
totalNiche: number;
|
|
6047
|
+
totalType: {
|
|
6048
|
+
total: number;
|
|
6049
|
+
TM: number;
|
|
6050
|
+
NTM: number;
|
|
6051
|
+
};
|
|
6052
|
+
totalDevice: {
|
|
6053
|
+
total: number;
|
|
6054
|
+
android: number;
|
|
6055
|
+
ios: number;
|
|
6056
|
+
};
|
|
6057
|
+
totalStatusConnect: {
|
|
6058
|
+
connected: number;
|
|
6059
|
+
disconnected: number;
|
|
6060
|
+
maintenance: number;
|
|
6061
|
+
error: number;
|
|
6062
|
+
offline: number;
|
|
6063
|
+
};
|
|
6064
|
+
totalStatusSetupDevice: {
|
|
6065
|
+
pending: number;
|
|
6066
|
+
done: number;
|
|
6067
|
+
error: number;
|
|
6068
|
+
};
|
|
6069
|
+
totalStatusCHPlayICloud: {
|
|
6070
|
+
new: number;
|
|
6071
|
+
inActive: number;
|
|
6072
|
+
active: number;
|
|
6073
|
+
working: number;
|
|
6074
|
+
accountNotExist: number;
|
|
6075
|
+
wrongPassword: number;
|
|
6076
|
+
error: number;
|
|
6077
|
+
};
|
|
6078
|
+
}
|
|
5667
6079
|
interface CreateDeviceDto extends Partial<IDevice> {
|
|
5668
6080
|
key: string;
|
|
5669
6081
|
pcName: string;
|
|
@@ -5678,6 +6090,33 @@ interface FindDeviceDto extends IFindBaseDto, IDevice {
|
|
|
5678
6090
|
interface FilterDeviceDto extends IFilterBaseDto, Omit<IDevice, TOmitFilterDto> {
|
|
5679
6091
|
}
|
|
5680
6092
|
|
|
6093
|
+
interface FindOverViewTaskThreadsPostDto {
|
|
6094
|
+
totalAccounts: number;
|
|
6095
|
+
totalDevices: number;
|
|
6096
|
+
totalPC: number;
|
|
6097
|
+
totalLeader: number;
|
|
6098
|
+
totalMembers: number;
|
|
6099
|
+
totalAccountGroups: number;
|
|
6100
|
+
totalIdea: number;
|
|
6101
|
+
totalNiche: number;
|
|
6102
|
+
totalType: {
|
|
6103
|
+
total: number;
|
|
6104
|
+
TM: number;
|
|
6105
|
+
NTM: number;
|
|
6106
|
+
};
|
|
6107
|
+
totalDevice: {
|
|
6108
|
+
total: number;
|
|
6109
|
+
android: number;
|
|
6110
|
+
ios: number;
|
|
6111
|
+
};
|
|
6112
|
+
totalTasks: {
|
|
6113
|
+
pending: number;
|
|
6114
|
+
executing: number;
|
|
6115
|
+
error: number;
|
|
6116
|
+
repaired: number;
|
|
6117
|
+
done: number;
|
|
6118
|
+
};
|
|
6119
|
+
}
|
|
5681
6120
|
interface CreateTaskThreadsPostDto extends Partial<ITaskThreadsPost> {
|
|
5682
6121
|
}
|
|
5683
6122
|
interface UpdateTaskThreadsPostDto extends Partial<ITaskThreadsPost> {
|
|
@@ -5687,6 +6126,33 @@ interface FindTaskThreadsPostDto extends IFindBaseDto, ITaskThreadsPost {
|
|
|
5687
6126
|
interface FilterTaskThreadsPostDto extends IFilterBaseDto, Omit<ITaskThreadsPost, TOmitFilterDto> {
|
|
5688
6127
|
}
|
|
5689
6128
|
|
|
6129
|
+
interface FindOverViewTaskThreadsFollowDto {
|
|
6130
|
+
totalAccounts: number;
|
|
6131
|
+
totalDevices: number;
|
|
6132
|
+
totalPC: number;
|
|
6133
|
+
totalLeader: number;
|
|
6134
|
+
totalMembers: number;
|
|
6135
|
+
totalAccountGroups: number;
|
|
6136
|
+
totalIdea: number;
|
|
6137
|
+
totalNiche: number;
|
|
6138
|
+
totalType: {
|
|
6139
|
+
total: number;
|
|
6140
|
+
TM: number;
|
|
6141
|
+
NTM: number;
|
|
6142
|
+
};
|
|
6143
|
+
totalDevice: {
|
|
6144
|
+
total: number;
|
|
6145
|
+
android: number;
|
|
6146
|
+
ios: number;
|
|
6147
|
+
};
|
|
6148
|
+
totalTasks: {
|
|
6149
|
+
pending: number;
|
|
6150
|
+
executing: number;
|
|
6151
|
+
error: number;
|
|
6152
|
+
repaired: number;
|
|
6153
|
+
done: number;
|
|
6154
|
+
};
|
|
6155
|
+
}
|
|
5690
6156
|
interface CreateTaskThreadsFollowDto extends Partial<ITaskThreadsFollow> {
|
|
5691
6157
|
}
|
|
5692
6158
|
interface UpdateTaskThreadsFollowDto extends Partial<ITaskThreadsFollow> {
|
|
@@ -5696,6 +6162,33 @@ interface FindTaskThreadsFollowDto extends IFindBaseDto, ITaskThreadsFollow {
|
|
|
5696
6162
|
interface FilterTaskThreadsFollowDto extends IFilterBaseDto, Omit<ITaskThreadsFollow, TOmitFilterDto> {
|
|
5697
6163
|
}
|
|
5698
6164
|
|
|
6165
|
+
interface FindOverViewTaskThreadsReplyCommentDto {
|
|
6166
|
+
totalAccounts: number;
|
|
6167
|
+
totalDevices: number;
|
|
6168
|
+
totalPC: number;
|
|
6169
|
+
totalLeader: number;
|
|
6170
|
+
totalMembers: number;
|
|
6171
|
+
totalAccountGroups: number;
|
|
6172
|
+
totalIdea: number;
|
|
6173
|
+
totalNiche: number;
|
|
6174
|
+
totalType: {
|
|
6175
|
+
total: number;
|
|
6176
|
+
TM: number;
|
|
6177
|
+
NTM: number;
|
|
6178
|
+
};
|
|
6179
|
+
totalDevice: {
|
|
6180
|
+
total: number;
|
|
6181
|
+
android: number;
|
|
6182
|
+
ios: number;
|
|
6183
|
+
};
|
|
6184
|
+
totalTasks: {
|
|
6185
|
+
pending: number;
|
|
6186
|
+
executing: number;
|
|
6187
|
+
error: number;
|
|
6188
|
+
repaired: number;
|
|
6189
|
+
done: number;
|
|
6190
|
+
};
|
|
6191
|
+
}
|
|
5699
6192
|
interface CreateTaskThreadsReplyCommentDto extends Partial<ITaskThreadsReplyComment> {
|
|
5700
6193
|
}
|
|
5701
6194
|
interface UpdateTaskThreadsReplyCommentDto extends Partial<ITaskThreadsReplyComment> {
|
|
@@ -5705,6 +6198,69 @@ interface FindTaskThreadsReplyCommentDto extends IFindBaseDto, ITaskThreadsReply
|
|
|
5705
6198
|
interface FilterTaskThreadsReplyCommentDto extends IFilterBaseDto, Omit<ITaskThreadsReplyComment, TOmitFilterDto> {
|
|
5706
6199
|
}
|
|
5707
6200
|
|
|
6201
|
+
interface FindOverViewTaskThreadsReplyMessageDto {
|
|
6202
|
+
totalAccounts: number;
|
|
6203
|
+
totalDevices: number;
|
|
6204
|
+
totalPC: number;
|
|
6205
|
+
totalLeader: number;
|
|
6206
|
+
totalMembers: number;
|
|
6207
|
+
totalAccountGroups: number;
|
|
6208
|
+
totalIdea: number;
|
|
6209
|
+
totalNiche: number;
|
|
6210
|
+
totalType: {
|
|
6211
|
+
total: number;
|
|
6212
|
+
TM: number;
|
|
6213
|
+
NTM: number;
|
|
6214
|
+
};
|
|
6215
|
+
totalDevice: {
|
|
6216
|
+
total: number;
|
|
6217
|
+
android: number;
|
|
6218
|
+
ios: number;
|
|
6219
|
+
};
|
|
6220
|
+
totalTasks: {
|
|
6221
|
+
pending: number;
|
|
6222
|
+
executing: number;
|
|
6223
|
+
error: number;
|
|
6224
|
+
repaired: number;
|
|
6225
|
+
done: number;
|
|
6226
|
+
};
|
|
6227
|
+
}
|
|
6228
|
+
interface CreateTaskThreadsReplyMessageDto extends Partial<ITaskThreadsReplyMessage> {
|
|
6229
|
+
}
|
|
6230
|
+
interface UpdateTaskThreadsReplyMessageDto extends Partial<ITaskThreadsReplyMessage> {
|
|
6231
|
+
}
|
|
6232
|
+
interface FindTaskThreadsReplyMessageDto extends IFindBaseDto, ITaskThreadsReplyMessage {
|
|
6233
|
+
}
|
|
6234
|
+
interface FilterTaskThreadsReplyMessageDto extends IFilterBaseDto, Omit<ITaskThreadsReplyMessage, TOmitFilterDto> {
|
|
6235
|
+
}
|
|
6236
|
+
|
|
6237
|
+
interface FindOverViewTaskInstagramBlockUserDto {
|
|
6238
|
+
totalAccounts: number;
|
|
6239
|
+
totalDevices: number;
|
|
6240
|
+
totalPC: number;
|
|
6241
|
+
totalLeader: number;
|
|
6242
|
+
totalMembers: number;
|
|
6243
|
+
totalAccountGroups: number;
|
|
6244
|
+
totalIdea: number;
|
|
6245
|
+
totalNiche: number;
|
|
6246
|
+
totalType: {
|
|
6247
|
+
total: number;
|
|
6248
|
+
TM: number;
|
|
6249
|
+
NTM: number;
|
|
6250
|
+
};
|
|
6251
|
+
totalDevice: {
|
|
6252
|
+
total: number;
|
|
6253
|
+
android: number;
|
|
6254
|
+
ios: number;
|
|
6255
|
+
};
|
|
6256
|
+
totalTasks: {
|
|
6257
|
+
pending: number;
|
|
6258
|
+
executing: number;
|
|
6259
|
+
error: number;
|
|
6260
|
+
repaired: number;
|
|
6261
|
+
done: number;
|
|
6262
|
+
};
|
|
6263
|
+
}
|
|
5708
6264
|
interface CreateTaskInstagramBlockUserDto extends Partial<ITaskInstagramBlockUser> {
|
|
5709
6265
|
}
|
|
5710
6266
|
interface UpdateTaskInstagramBlockUserDto extends Partial<ITaskInstagramBlockUser> {
|
|
@@ -5714,6 +6270,33 @@ interface FindTaskInstagramBlockUserDto extends IFindBaseDto, ITaskInstagramBloc
|
|
|
5714
6270
|
interface FilterTaskInstagramBlockUserDto extends IFilterBaseDto, Omit<ITaskInstagramBlockUser, TOmitFilterDto> {
|
|
5715
6271
|
}
|
|
5716
6272
|
|
|
6273
|
+
interface FindOverViewTaskInstagramChangeInfoDto {
|
|
6274
|
+
totalAccounts: number;
|
|
6275
|
+
totalDevices: number;
|
|
6276
|
+
totalPC: number;
|
|
6277
|
+
totalLeader: number;
|
|
6278
|
+
totalMembers: number;
|
|
6279
|
+
totalAccountGroups: number;
|
|
6280
|
+
totalIdea: number;
|
|
6281
|
+
totalNiche: number;
|
|
6282
|
+
totalType: {
|
|
6283
|
+
total: number;
|
|
6284
|
+
TM: number;
|
|
6285
|
+
NTM: number;
|
|
6286
|
+
};
|
|
6287
|
+
totalDevice: {
|
|
6288
|
+
total: number;
|
|
6289
|
+
android: number;
|
|
6290
|
+
ios: number;
|
|
6291
|
+
};
|
|
6292
|
+
totalTasks: {
|
|
6293
|
+
pending: number;
|
|
6294
|
+
executing: number;
|
|
6295
|
+
error: number;
|
|
6296
|
+
repaired: number;
|
|
6297
|
+
done: number;
|
|
6298
|
+
};
|
|
6299
|
+
}
|
|
5717
6300
|
interface CreateTaskInstagramChangeInfoDto extends Partial<ITaskInstagramChangeInfo> {
|
|
5718
6301
|
}
|
|
5719
6302
|
interface UpdateTaskInstagramChangeInfoDto extends Partial<ITaskInstagramChangeInfo> {
|
|
@@ -5723,6 +6306,33 @@ interface FindTaskInstagramChangeInfoDto extends IFindBaseDto, ITaskInstagramCha
|
|
|
5723
6306
|
interface FilterTaskInstagramChangeInfoDto extends IFilterBaseDto, Omit<ITaskInstagramChangeInfo, TOmitFilterDto> {
|
|
5724
6307
|
}
|
|
5725
6308
|
|
|
6309
|
+
interface FindOverViewTaskInstagramFollowDto {
|
|
6310
|
+
totalAccounts: number;
|
|
6311
|
+
totalDevices: number;
|
|
6312
|
+
totalPC: number;
|
|
6313
|
+
totalLeader: number;
|
|
6314
|
+
totalMembers: number;
|
|
6315
|
+
totalAccountGroups: number;
|
|
6316
|
+
totalIdea: number;
|
|
6317
|
+
totalNiche: number;
|
|
6318
|
+
totalType: {
|
|
6319
|
+
total: number;
|
|
6320
|
+
TM: number;
|
|
6321
|
+
NTM: number;
|
|
6322
|
+
};
|
|
6323
|
+
totalDevice: {
|
|
6324
|
+
total: number;
|
|
6325
|
+
android: number;
|
|
6326
|
+
ios: number;
|
|
6327
|
+
};
|
|
6328
|
+
totalTasks: {
|
|
6329
|
+
pending: number;
|
|
6330
|
+
executing: number;
|
|
6331
|
+
error: number;
|
|
6332
|
+
repaired: number;
|
|
6333
|
+
done: number;
|
|
6334
|
+
};
|
|
6335
|
+
}
|
|
5726
6336
|
interface CreateTaskInstagramFollowDto extends Partial<ITaskInstagramFollow> {
|
|
5727
6337
|
}
|
|
5728
6338
|
interface UpdateTaskInstagramFollowDto extends Partial<ITaskInstagramFollow> {
|
|
@@ -5732,6 +6342,33 @@ interface FindTaskInstagramFollowDto extends IFindBaseDto, ITaskInstagramFollow
|
|
|
5732
6342
|
interface FilterTaskInstagramFollowDto extends IFilterBaseDto, Omit<ITaskInstagramFollow, TOmitFilterDto> {
|
|
5733
6343
|
}
|
|
5734
6344
|
|
|
6345
|
+
interface FindOverViewTaskInstagramPostDto {
|
|
6346
|
+
totalAccounts: number;
|
|
6347
|
+
totalDevices: number;
|
|
6348
|
+
totalPC: number;
|
|
6349
|
+
totalLeader: number;
|
|
6350
|
+
totalMembers: number;
|
|
6351
|
+
totalAccountGroups: number;
|
|
6352
|
+
totalIdea: number;
|
|
6353
|
+
totalNiche: number;
|
|
6354
|
+
totalType: {
|
|
6355
|
+
total: number;
|
|
6356
|
+
TM: number;
|
|
6357
|
+
NTM: number;
|
|
6358
|
+
};
|
|
6359
|
+
totalDevice: {
|
|
6360
|
+
total: number;
|
|
6361
|
+
android: number;
|
|
6362
|
+
ios: number;
|
|
6363
|
+
};
|
|
6364
|
+
totalTasks: {
|
|
6365
|
+
pending: number;
|
|
6366
|
+
executing: number;
|
|
6367
|
+
error: number;
|
|
6368
|
+
repaired: number;
|
|
6369
|
+
done: number;
|
|
6370
|
+
};
|
|
6371
|
+
}
|
|
5735
6372
|
interface CreateTaskInstagramPostDto extends Partial<ITaskInstagramPost> {
|
|
5736
6373
|
}
|
|
5737
6374
|
interface UpdateTaskInstagramPostDto extends Partial<ITaskInstagramPost> {
|
|
@@ -5741,6 +6378,33 @@ interface FindTaskInstagramPostDto extends IFindBaseDto, ITaskInstagramPost {
|
|
|
5741
6378
|
interface FilterTaskInstagramPostDto extends IFilterBaseDto, Omit<ITaskInstagramPost, TOmitFilterDto> {
|
|
5742
6379
|
}
|
|
5743
6380
|
|
|
6381
|
+
interface FindOverViewTaskInstagramReplyCommentDto {
|
|
6382
|
+
totalAccounts: number;
|
|
6383
|
+
totalDevices: number;
|
|
6384
|
+
totalPC: number;
|
|
6385
|
+
totalLeader: number;
|
|
6386
|
+
totalMembers: number;
|
|
6387
|
+
totalAccountGroups: number;
|
|
6388
|
+
totalIdea: number;
|
|
6389
|
+
totalNiche: number;
|
|
6390
|
+
totalType: {
|
|
6391
|
+
total: number;
|
|
6392
|
+
TM: number;
|
|
6393
|
+
NTM: number;
|
|
6394
|
+
};
|
|
6395
|
+
totalDevice: {
|
|
6396
|
+
total: number;
|
|
6397
|
+
android: number;
|
|
6398
|
+
ios: number;
|
|
6399
|
+
};
|
|
6400
|
+
totalTasks: {
|
|
6401
|
+
pending: number;
|
|
6402
|
+
executing: number;
|
|
6403
|
+
error: number;
|
|
6404
|
+
repaired: number;
|
|
6405
|
+
done: number;
|
|
6406
|
+
};
|
|
6407
|
+
}
|
|
5744
6408
|
interface CreateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
|
5745
6409
|
}
|
|
5746
6410
|
interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
|
@@ -5750,6 +6414,33 @@ interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramR
|
|
|
5750
6414
|
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, Omit<ITaskInstagramReplyComment, TOmitFilterDto> {
|
|
5751
6415
|
}
|
|
5752
6416
|
|
|
6417
|
+
interface FindOverViewTaskInstagramReplyMessageDto {
|
|
6418
|
+
totalAccounts: number;
|
|
6419
|
+
totalDevices: number;
|
|
6420
|
+
totalPC: number;
|
|
6421
|
+
totalLeader: number;
|
|
6422
|
+
totalMembers: number;
|
|
6423
|
+
totalAccountGroups: number;
|
|
6424
|
+
totalIdea: number;
|
|
6425
|
+
totalNiche: number;
|
|
6426
|
+
totalType: {
|
|
6427
|
+
total: number;
|
|
6428
|
+
TM: number;
|
|
6429
|
+
NTM: number;
|
|
6430
|
+
};
|
|
6431
|
+
totalDevice: {
|
|
6432
|
+
total: number;
|
|
6433
|
+
android: number;
|
|
6434
|
+
ios: number;
|
|
6435
|
+
};
|
|
6436
|
+
totalTasks: {
|
|
6437
|
+
pending: number;
|
|
6438
|
+
executing: number;
|
|
6439
|
+
error: number;
|
|
6440
|
+
repaired: number;
|
|
6441
|
+
done: number;
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
5753
6444
|
interface CreateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
|
5754
6445
|
}
|
|
5755
6446
|
interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
|
@@ -5764,6 +6455,24 @@ interface FindTaskToolMonitorDto extends IFindBaseDto, ITaskToolMonitor {
|
|
|
5764
6455
|
interface FilterTaskToolMonitorDto extends IFilterBaseDto, Omit<ITaskToolMonitor, TOmitFilterDto> {
|
|
5765
6456
|
}
|
|
5766
6457
|
|
|
6458
|
+
interface FindOverViewTaskAIContentDto {
|
|
6459
|
+
totalDepartment: number;
|
|
6460
|
+
totalLeader: number;
|
|
6461
|
+
totalMembers: number;
|
|
6462
|
+
totalIdea: number;
|
|
6463
|
+
totalNiche: number;
|
|
6464
|
+
totalType: {
|
|
6465
|
+
total: number;
|
|
6466
|
+
TM: number;
|
|
6467
|
+
NTM: number;
|
|
6468
|
+
};
|
|
6469
|
+
totalTask: {
|
|
6470
|
+
pending: number;
|
|
6471
|
+
executing: number;
|
|
6472
|
+
done: number;
|
|
6473
|
+
error: number;
|
|
6474
|
+
};
|
|
6475
|
+
}
|
|
5767
6476
|
interface CreateTaskAIContentDto extends Partial<ITaskAIContent> {
|
|
5768
6477
|
}
|
|
5769
6478
|
interface UpdateTaskAIContentDto extends Partial<ITaskAIContent> {
|
|
@@ -5782,6 +6491,42 @@ interface FindTaskAIContentDto extends IFindBaseDto, ITaskAIContent {
|
|
|
5782
6491
|
interface FilterTaskAIContentDto extends IFilterBaseDto, Omit<ITaskAIContent, TOmitFilterDto> {
|
|
5783
6492
|
}
|
|
5784
6493
|
|
|
6494
|
+
interface FindOverViewTaskAIImageVoiceCanvaDto {
|
|
6495
|
+
totalDepartment: number;
|
|
6496
|
+
totalLeader: number;
|
|
6497
|
+
totalMembers: number;
|
|
6498
|
+
totalIdea: number;
|
|
6499
|
+
totalNiche: number;
|
|
6500
|
+
totalType: {
|
|
6501
|
+
total: number;
|
|
6502
|
+
TM: number;
|
|
6503
|
+
NTM: number;
|
|
6504
|
+
};
|
|
6505
|
+
totalStatusImage: {
|
|
6506
|
+
pending: number;
|
|
6507
|
+
generating: number;
|
|
6508
|
+
generated: number;
|
|
6509
|
+
error: number;
|
|
6510
|
+
done: number;
|
|
6511
|
+
ready: number;
|
|
6512
|
+
};
|
|
6513
|
+
totalStatusVoice: {
|
|
6514
|
+
pending: number;
|
|
6515
|
+
generating: number;
|
|
6516
|
+
generated: number;
|
|
6517
|
+
error: number;
|
|
6518
|
+
done: number;
|
|
6519
|
+
ready: number;
|
|
6520
|
+
};
|
|
6521
|
+
totalStatusCanva: {
|
|
6522
|
+
pending: number;
|
|
6523
|
+
generating: number;
|
|
6524
|
+
generated: number;
|
|
6525
|
+
error: number;
|
|
6526
|
+
done: number;
|
|
6527
|
+
ready: number;
|
|
6528
|
+
};
|
|
6529
|
+
}
|
|
5785
6530
|
interface CreateTaskAIImageVoiceCanvaDto extends Partial<ITaskAIImageVoiceCanva> {
|
|
5786
6531
|
}
|
|
5787
6532
|
interface UpdateTaskAIImageVoiceCanvaDto extends Partial<ITaskAIImageVoiceCanva> {
|
|
@@ -5927,6 +6672,12 @@ interface FindOverViewLarkDto {
|
|
|
5927
6672
|
interface FilterLarkDto extends IFilterBaseDto, Omit<ILark, TOmitFilterDto> {
|
|
5928
6673
|
}
|
|
5929
6674
|
|
|
6675
|
+
interface FindOverviewTeamDto {
|
|
6676
|
+
numberTeams: number;
|
|
6677
|
+
numberTeamsActive: number;
|
|
6678
|
+
numberLeaders: number;
|
|
6679
|
+
numberMembers: number;
|
|
6680
|
+
}
|
|
5930
6681
|
interface CreateTeamDto extends Partial<ITeam> {
|
|
5931
6682
|
name: string;
|
|
5932
6683
|
leader: string;
|
|
@@ -5950,6 +6701,12 @@ interface FindTeamDto extends Omit<IFindBaseDto, 'department' | 'leader'>, ITeam
|
|
|
5950
6701
|
interface FilterTeamDto extends IFilterBaseDto, Omit<ITeam, TOmitFilterDto> {
|
|
5951
6702
|
}
|
|
5952
6703
|
|
|
6704
|
+
interface FindOverViewDepartmentDto {
|
|
6705
|
+
totalDepartments: number;
|
|
6706
|
+
totalTeams: number;
|
|
6707
|
+
totalUsers: number;
|
|
6708
|
+
totalUsersActive: number;
|
|
6709
|
+
}
|
|
5953
6710
|
interface CreateDepartmentDto extends Partial<IDepartment> {
|
|
5954
6711
|
department_name: string;
|
|
5955
6712
|
department_members?: string[];
|
|
@@ -6042,6 +6799,7 @@ type index_CreateTaskInstagramReplyMessageDto = CreateTaskInstagramReplyMessageD
|
|
|
6042
6799
|
type index_CreateTaskThreadsFollowDto = CreateTaskThreadsFollowDto;
|
|
6043
6800
|
type index_CreateTaskThreadsPostDto = CreateTaskThreadsPostDto;
|
|
6044
6801
|
type index_CreateTaskThreadsReplyCommentDto = CreateTaskThreadsReplyCommentDto;
|
|
6802
|
+
type index_CreateTaskThreadsReplyMessageDto = CreateTaskThreadsReplyMessageDto;
|
|
6045
6803
|
type index_CreateTeamDto = CreateTeamDto;
|
|
6046
6804
|
type index_CreateUserDto = CreateUserDto;
|
|
6047
6805
|
type index_ExportDto = ExportDto;
|
|
@@ -6118,6 +6876,7 @@ type index_FilterTaskInstagramReplyMessageDto = FilterTaskInstagramReplyMessageD
|
|
|
6118
6876
|
type index_FilterTaskThreadsFollowDto = FilterTaskThreadsFollowDto;
|
|
6119
6877
|
type index_FilterTaskThreadsPostDto = FilterTaskThreadsPostDto;
|
|
6120
6878
|
type index_FilterTaskThreadsReplyCommentDto = FilterTaskThreadsReplyCommentDto;
|
|
6879
|
+
type index_FilterTaskThreadsReplyMessageDto = FilterTaskThreadsReplyMessageDto;
|
|
6121
6880
|
type index_FilterTaskToolMonitorDto = FilterTaskToolMonitorDto;
|
|
6122
6881
|
type index_FilterTeamDto = FilterTeamDto;
|
|
6123
6882
|
type index_FilterThreadsAccountRawDto = FilterThreadsAccountRawDto;
|
|
@@ -6195,17 +6954,47 @@ type index_FindLarkDto = FindLarkDto;
|
|
|
6195
6954
|
type index_FindManagerImageAIDto = FindManagerImageAIDto;
|
|
6196
6955
|
type index_FindManagerSheetDto = FindManagerSheetDto;
|
|
6197
6956
|
type index_FindManagerWorkDto = FindManagerWorkDto;
|
|
6957
|
+
type index_FindOverViewDepartmentDto = FindOverViewDepartmentDto;
|
|
6958
|
+
type index_FindOverViewDeviceDto = FindOverViewDeviceDto;
|
|
6198
6959
|
type index_FindOverViewInstagramAccountRawDto = FindOverViewInstagramAccountRawDto;
|
|
6199
6960
|
type index_FindOverViewInstagramAccountRunDto = FindOverViewInstagramAccountRunDto;
|
|
6961
|
+
type index_FindOverViewInstagramReportInteractExploreDto = FindOverViewInstagramReportInteractExploreDto;
|
|
6962
|
+
type index_FindOverViewInstagramReportInteractFollowDto = FindOverViewInstagramReportInteractFollowDto;
|
|
6963
|
+
type index_FindOverViewInstagramReportInteractReelDto = FindOverViewInstagramReportInteractReelDto;
|
|
6964
|
+
type index_FindOverViewInstagramReportInteractReplyCommentDto = FindOverViewInstagramReportInteractReplyCommentDto;
|
|
6965
|
+
type index_FindOverViewInstagramReportInteractReplyMessageDto = FindOverViewInstagramReportInteractReplyMessageDto;
|
|
6966
|
+
type index_FindOverViewInstagramReportInteractStoryDto = FindOverViewInstagramReportInteractStoryDto;
|
|
6967
|
+
type index_FindOverViewInstagramReportPostHighLightDto = FindOverViewInstagramReportPostHighLightDto;
|
|
6968
|
+
type index_FindOverViewInstagramReportPostNewDto = FindOverViewInstagramReportPostNewDto;
|
|
6969
|
+
type index_FindOverViewInstagramReportPostReelDto = FindOverViewInstagramReportPostReelDto;
|
|
6970
|
+
type index_FindOverViewInstagramReportPostSquareDto = FindOverViewInstagramReportPostSquareDto;
|
|
6971
|
+
type index_FindOverViewInstagramReportPostStoryDto = FindOverViewInstagramReportPostStoryDto;
|
|
6200
6972
|
type index_FindOverViewLarkDto = FindOverViewLarkDto;
|
|
6973
|
+
type index_FindOverViewTaskAIContentDto = FindOverViewTaskAIContentDto;
|
|
6974
|
+
type index_FindOverViewTaskAIImageVoiceCanvaDto = FindOverViewTaskAIImageVoiceCanvaDto;
|
|
6975
|
+
type index_FindOverViewTaskInstagramBlockUserDto = FindOverViewTaskInstagramBlockUserDto;
|
|
6976
|
+
type index_FindOverViewTaskInstagramChangeInfoDto = FindOverViewTaskInstagramChangeInfoDto;
|
|
6977
|
+
type index_FindOverViewTaskInstagramFollowDto = FindOverViewTaskInstagramFollowDto;
|
|
6978
|
+
type index_FindOverViewTaskInstagramPostDto = FindOverViewTaskInstagramPostDto;
|
|
6979
|
+
type index_FindOverViewTaskInstagramReplyCommentDto = FindOverViewTaskInstagramReplyCommentDto;
|
|
6980
|
+
type index_FindOverViewTaskInstagramReplyMessageDto = FindOverViewTaskInstagramReplyMessageDto;
|
|
6981
|
+
type index_FindOverViewTaskThreadsFollowDto = FindOverViewTaskThreadsFollowDto;
|
|
6982
|
+
type index_FindOverViewTaskThreadsPostDto = FindOverViewTaskThreadsPostDto;
|
|
6983
|
+
type index_FindOverViewTaskThreadsReplyCommentDto = FindOverViewTaskThreadsReplyCommentDto;
|
|
6984
|
+
type index_FindOverViewTaskThreadsReplyMessageDto = FindOverViewTaskThreadsReplyMessageDto;
|
|
6201
6985
|
type index_FindOverViewThreadsAccountDto = FindOverViewThreadsAccountDto;
|
|
6202
6986
|
type index_FindOverViewThreadsAccountRowDto = FindOverViewThreadsAccountRowDto;
|
|
6987
|
+
type index_FindOverViewThreadsReportInteractFollowDto = FindOverViewThreadsReportInteractFollowDto;
|
|
6988
|
+
type index_FindOverViewThreadsReportInteractReplyCommentDto = FindOverViewThreadsReportInteractReplyCommentDto;
|
|
6989
|
+
type index_FindOverViewThreadsReportInteractReplyMessageDto = FindOverViewThreadsReportInteractReplyMessageDto;
|
|
6990
|
+
type index_FindOverViewThreadsReportPostDto = FindOverViewThreadsReportPostDto;
|
|
6203
6991
|
type index_FindOverviewAccountCHPlayICloudDto = FindOverviewAccountCHPlayICloudDto;
|
|
6204
6992
|
type index_FindOverviewAccountCanvaDto = FindOverviewAccountCanvaDto;
|
|
6205
6993
|
type index_FindOverviewAccountDriveDto = FindOverviewAccountDriveDto;
|
|
6206
6994
|
type index_FindOverviewAccountVPNDto = FindOverviewAccountVPNDto;
|
|
6207
6995
|
type index_FindOverviewInstagramHistoryAutoPostDto = FindOverviewInstagramHistoryAutoPostDto;
|
|
6208
6996
|
type index_FindOverviewProxyDto = FindOverviewProxyDto;
|
|
6997
|
+
type index_FindOverviewTeamDto = FindOverviewTeamDto;
|
|
6209
6998
|
type index_FindPCDto = FindPCDto;
|
|
6210
6999
|
type index_FindProxyDto = FindProxyDto;
|
|
6211
7000
|
type index_FindRoleDto = FindRoleDto;
|
|
@@ -6224,6 +7013,7 @@ type index_FindTaskInstagramReplyMessageDto = FindTaskInstagramReplyMessageDto;
|
|
|
6224
7013
|
type index_FindTaskThreadsFollowDto = FindTaskThreadsFollowDto;
|
|
6225
7014
|
type index_FindTaskThreadsPostDto = FindTaskThreadsPostDto;
|
|
6226
7015
|
type index_FindTaskThreadsReplyCommentDto = FindTaskThreadsReplyCommentDto;
|
|
7016
|
+
type index_FindTaskThreadsReplyMessageDto = FindTaskThreadsReplyMessageDto;
|
|
6227
7017
|
type index_FindTaskToolMonitorDto = FindTaskToolMonitorDto;
|
|
6228
7018
|
type index_FindTeamDto = FindTeamDto;
|
|
6229
7019
|
type index_FindThreadsAccountRawDto = FindThreadsAccountRawDto;
|
|
@@ -6269,10 +7059,11 @@ type index_UpdateTaskInstagramReplyMessageDto = UpdateTaskInstagramReplyMessageD
|
|
|
6269
7059
|
type index_UpdateTaskThreadsFollowDto = UpdateTaskThreadsFollowDto;
|
|
6270
7060
|
type index_UpdateTaskThreadsPostDto = UpdateTaskThreadsPostDto;
|
|
6271
7061
|
type index_UpdateTaskThreadsReplyCommentDto = UpdateTaskThreadsReplyCommentDto;
|
|
7062
|
+
type index_UpdateTaskThreadsReplyMessageDto = UpdateTaskThreadsReplyMessageDto;
|
|
6272
7063
|
type index_UpdateTeamDto = UpdateTeamDto;
|
|
6273
7064
|
type index_UpdateUserDto = UpdateUserDto;
|
|
6274
7065
|
declare namespace index {
|
|
6275
|
-
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolInstagramDto as CreateSheetsToolInstagramDto, index_CreateSheetsToolThreadsDto as CreateSheetsToolThreadsDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageVoiceCanvaDto as CreateTaskAIImageVoiceCanvaDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolInstagramDto as FilterSheetsToolInstagramDto, index_FilterSheetsToolThreadsDto as FilterSheetsToolThreadsDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_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_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewLarkDto as FindOverViewLarkDto, 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_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, 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_FindSheetsToolInstagramDto as FindSheetsToolInstagramDto, index_FindSheetsToolThreadsDto as FindSheetsToolThreadsDto, 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_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolInstagramDto as UpdateSheetsToolInstagramDto, index_UpdateSheetsToolThreadsDto as UpdateSheetsToolThreadsDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageVoiceCanvaDto as UpdateTaskAIImageVoiceCanvaDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
|
7066
|
+
export type { index_AddToDeviceAccountCHPlayICloudDto as AddToDeviceAccountCHPlayICloudDto, index_AddToDeviceAccountVPNDto as AddToDeviceAccountVPNDto, index_AddToDeviceProxyDto as AddToDeviceProxyDto, index_AutoFillInstagramAccountRawDto as AutoFillInstagramAccountRawDto, index_AutoFillOverviewInstagramAccountRawDto as AutoFillOverviewInstagramAccountRawDto, index_AutoFillOverviewThreadsAccountRawDto as AutoFillOverviewThreadsAccountRawDto, index_AutoFillThreadsAccountRawDto as AutoFillThreadsAccountRawDto, index_CreateBlogDto as CreateBlogDto, index_CreateBlogsCategoryDto as CreateBlogsCategoryDto, index_CreateDepartmentDto as CreateDepartmentDto, index_CreateDeviceDto as CreateDeviceDto, index_CreateLarkDto as CreateLarkDto, index_CreatePCDto as CreatePCDto, index_CreateRoleDto as CreateRoleDto, index_CreateSheetsToolInstagramDto as CreateSheetsToolInstagramDto, index_CreateSheetsToolThreadsDto as CreateSheetsToolThreadsDto, index_CreateTaskAIContentDto as CreateTaskAIContentDto, index_CreateTaskAIImageVoiceCanvaDto as CreateTaskAIImageVoiceCanvaDto, index_CreateTaskInstagramBlockUserDto as CreateTaskInstagramBlockUserDto, index_CreateTaskInstagramChangeInfoDto as CreateTaskInstagramChangeInfoDto, index_CreateTaskInstagramFollowDto as CreateTaskInstagramFollowDto, index_CreateTaskInstagramPostDto as CreateTaskInstagramPostDto, index_CreateTaskInstagramReplyCommentDto as CreateTaskInstagramReplyCommentDto, index_CreateTaskInstagramReplyMessageDto as CreateTaskInstagramReplyMessageDto, index_CreateTaskThreadsFollowDto as CreateTaskThreadsFollowDto, index_CreateTaskThreadsPostDto as CreateTaskThreadsPostDto, index_CreateTaskThreadsReplyCommentDto as CreateTaskThreadsReplyCommentDto, index_CreateTaskThreadsReplyMessageDto as CreateTaskThreadsReplyMessageDto, index_CreateTeamDto as CreateTeamDto, index_CreateUserDto as CreateUserDto, index_ExportDto as ExportDto, index_FilterAccountAIContentChannelDto as FilterAccountAIContentChannelDto, index_FilterAccountAIContentDto as FilterAccountAIContentDto, index_FilterAccountAIContentInfoDto as FilterAccountAIContentInfoDto, index_FilterAccountAIImageChannelDto as FilterAccountAIImageChannelDto, index_FilterAccountAIImageDto as FilterAccountAIImageDto, index_FilterAccountAIImageInfoDto as FilterAccountAIImageInfoDto, index_FilterAccountAIVoiceChannelDto as FilterAccountAIVoiceChannelDto, index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, index_FilterAccountAIVoiceInfoDto as FilterAccountAIVoiceInfoDto, index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, index_FilterAccountCanvaDto as FilterAccountCanvaDto, index_FilterAccountDriveDto as FilterAccountDriveDto, index_FilterAccountEmailDto as FilterAccountEmailDto, index_FilterAccountVPNDto as FilterAccountVPNDto, index_FilterAccountVPSDto as FilterAccountVPSDto, index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, index_FilterBaseDto as FilterBaseDto, index_FilterBlogCategoryDto as FilterBlogCategoryDto, index_FilterBlogDto as FilterBlogDto, index_FilterDepartmentDto as FilterDepartmentDto, index_FilterDeviceDto as FilterDeviceDto, index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, index_FilterInstagramAccountRawDto as FilterInstagramAccountRawDto, index_FilterInstagramAccountRunDto as FilterInstagramAccountRunDto, index_FilterInstagramHistoryAutoPostDto as FilterInstagramHistoryAutoPostDto, index_FilterInstagramHistoryAutoSyncDto as FilterInstagramHistoryAutoSyncDto, index_FilterInstagramHistoryChangeDto as FilterInstagramHistoryChangeDto, index_FilterInstagramHistoryCreateDto as FilterInstagramHistoryCreateDto, index_FilterInstagramHistoryGroupDto as FilterInstagramHistoryGroupDto, index_FilterInstagramReportInteractExploreDto as FilterInstagramReportInteractExploreDto, index_FilterInstagramReportInteractFollowDto as FilterInstagramReportInteractFollowDto, index_FilterInstagramReportInteractReelDto as FilterInstagramReportInteractReelDto, index_FilterInstagramReportInteractReplyCommentDto as FilterInstagramReportInteractReplyCommentDto, index_FilterInstagramReportInteractReplyMessageDto as FilterInstagramReportInteractReplyMessageDto, index_FilterInstagramReportInteractStoryDto as FilterInstagramReportInteractStoryDto, index_FilterInstagramReportPostHighLightDto as FilterInstagramReportPostHighLightDto, index_FilterInstagramReportPostNewDto as FilterInstagramReportPostNewDto, index_FilterInstagramReportPostReelDto as FilterInstagramReportPostReelDto, index_FilterInstagramReportPostSquareDto as FilterInstagramReportPostSquareDto, index_FilterInstagramReportPostStoryDto as FilterInstagramReportPostStoryDto, index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, index_FilterInstagramSettingInteractReplyCommentDto as FilterInstagramSettingInteractReplyCommentDto, index_FilterInstagramSettingInteractReplyMessageDto as FilterInstagramSettingInteractReplyMessageDto, index_FilterInstagramSettingInteractStoryDto as FilterInstagramSettingInteractStoryDto, index_FilterInstagramSettingInteractUnFollowDto as FilterInstagramSettingInteractUnFollowDto, index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, index_FilterLarkDto as FilterLarkDto, index_FilterManagerImageAIDto as FilterManagerImageAIDto, index_FilterManagerSheetDto as FilterManagerSheetDto, index_FilterManagerWorkDto as FilterManagerWorkDto, index_FilterPCDto as FilterPCDto, index_FilterProxyDto as FilterProxyDto, index_FilterRoleDto as FilterRoleDto, index_FilterSheetWorkDto as FilterSheetWorkDto, index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, index_FilterSheetsToolInstagramDto as FilterSheetsToolInstagramDto, index_FilterSheetsToolThreadsDto as FilterSheetsToolThreadsDto, index_FilterTaskAIContentDto as FilterTaskAIContentDto, index_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_FilterTaskThreadsReplyMessageDto as FilterTaskThreadsReplyMessageDto, index_FilterTaskToolMonitorDto as FilterTaskToolMonitorDto, index_FilterTeamDto as FilterTeamDto, index_FilterThreadsAccountRawDto as FilterThreadsAccountRawDto, index_FilterThreadsAccountRunDto as FilterThreadsAccountRunDto, index_FilterThreadsHistoryAutoPostDto as FilterThreadsHistoryAutoPostDto, index_FilterThreadsHistoryAutoSyncDto as FilterThreadsHistoryAutoSyncDto, index_FilterThreadsHistoryChangeDto as FilterThreadsHistoryChangeDto, index_FilterThreadsHistoryCreateDto as FilterThreadsHistoryCreateDto, index_FilterThreadsHistoryGroupDto as FilterThreadsHistoryGroupDto, index_FilterThreadsReportInteractFollowDto as FilterThreadsReportInteractFollowDto, index_FilterThreadsReportInteractReplyCommentDto as FilterThreadsReportInteractReplyCommentDto, index_FilterThreadsReportInteractReplyMessageDto as FilterThreadsReportInteractReplyMessageDto, index_FilterThreadsReportPostDto as FilterThreadsReportPostDto, index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, index_FilterThreadsSettingInteractReplyMessageDto as FilterThreadsSettingInteractReplyMessageDto, index_FilterThreadsSettingInteractUnFollowDto as FilterThreadsSettingInteractUnFollowDto, index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, index_FilterUserDto as FilterUserDto, index_FindAccountAIContentChannelDto as FindAccountAIContentChannelDto, index_FindAccountAIContentDto as FindAccountAIContentDto, index_FindAccountAIContentInfoDto as FindAccountAIContentInfoDto, index_FindAccountAIImageChannelDto as FindAccountAIImageChannelDto, index_FindAccountAIImageDto as FindAccountAIImageDto, index_FindAccountAIImageInfoDto as FindAccountAIImageInfoDto, index_FindAccountAIVoiceChannelDto as FindAccountAIVoiceChannelDto, index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, index_FindAccountAIVoiceInfoDto as FindAccountAIVoiceInfoDto, index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, index_FindAccountCanvaDto as FindAccountCanvaDto, index_FindAccountDriveDto as FindAccountDriveDto, index_FindAccountEmailDto as FindAccountEmailDto, index_FindAccountVPNDto as FindAccountVPNDto, index_FindAccountVPSDto as FindAccountVPSDto, index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, index_FindBlogCategoryDto as FindBlogCategoryDto, index_FindBlogDto as FindBlogDto, index_FindDepartmentDto as FindDepartmentDto, index_FindDeviceAvailableForAddAccountVPNDto as FindDeviceAvailableForAddAccountVPNDto, index_FindDeviceAvailableForAddCHPlayICloudDto as FindDeviceAvailableForAddCHPlayICloudDto, index_FindDeviceAvailableForAddProxyDto as FindDeviceAvailableForAddProxyDto, index_FindDeviceDto as FindDeviceDto, index_FindForReviewDto as FindForReviewDto, index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, index_FindInstagramAccountRawDto as FindInstagramAccountRawDto, index_FindInstagramAccountRunDto as FindInstagramAccountRunDto, index_FindInstagramHistoryAutoPostDto as FindInstagramHistoryAutoPostDto, index_FindInstagramHistoryAutoSyncDto as FindInstagramHistoryAutoSyncDto, index_FindInstagramHistoryChangeDto as FindInstagramHistoryChangeDto, index_FindInstagramHistoryCreateDto as FindInstagramHistoryCreateDto, index_FindInstagramHistoryGroupDto as FindInstagramHistoryGroupDto, index_FindInstagramReportInteractExploreDto as FindInstagramReportInteractExploreDto, index_FindInstagramReportInteractFollowDto as FindInstagramReportInteractFollowDto, index_FindInstagramReportInteractReelDto as FindInstagramReportInteractReelDto, index_FindInstagramReportInteractReplyCommentDto as FindInstagramReportInteractReplyCommentDto, index_FindInstagramReportInteractReplyMessageDto as FindInstagramReportInteractReplyMessageDto, index_FindInstagramReportInteractStoryDto as FindInstagramReportInteractStoryDto, index_FindInstagramReportPostHighLightDto as FindInstagramReportPostHighLightDto, index_FindInstagramReportPostNewDto as FindInstagramReportPostNewDto, index_FindInstagramReportPostReelDto as FindInstagramReportPostReelDto, index_FindInstagramReportPostSquareDto as FindInstagramReportPostSquareDto, index_FindInstagramReportPostStoryDto as FindInstagramReportPostStoryDto, index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, index_FindInstagramSettingInteractReplyCommentDto as FindInstagramSettingInteractReplyCommentDto, index_FindInstagramSettingInteractReplyMessageDto as FindInstagramSettingInteractReplyMessageDto, index_FindInstagramSettingInteractStoryDto as FindInstagramSettingInteractStoryDto, index_FindInstagramSettingInteractUnFollowDto as FindInstagramSettingInteractUnFollowDto, index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, index_FindLarkDto as FindLarkDto, index_FindManagerImageAIDto as FindManagerImageAIDto, index_FindManagerSheetDto as FindManagerSheetDto, index_FindManagerWorkDto as FindManagerWorkDto, index_FindOverViewDepartmentDto as FindOverViewDepartmentDto, index_FindOverViewDeviceDto as FindOverViewDeviceDto, index_FindOverViewInstagramAccountRawDto as FindOverViewInstagramAccountRawDto, index_FindOverViewInstagramAccountRunDto as FindOverViewInstagramAccountRunDto, index_FindOverViewInstagramReportInteractExploreDto as FindOverViewInstagramReportInteractExploreDto, index_FindOverViewInstagramReportInteractFollowDto as FindOverViewInstagramReportInteractFollowDto, index_FindOverViewInstagramReportInteractReelDto as FindOverViewInstagramReportInteractReelDto, index_FindOverViewInstagramReportInteractReplyCommentDto as FindOverViewInstagramReportInteractReplyCommentDto, index_FindOverViewInstagramReportInteractReplyMessageDto as FindOverViewInstagramReportInteractReplyMessageDto, index_FindOverViewInstagramReportInteractStoryDto as FindOverViewInstagramReportInteractStoryDto, index_FindOverViewInstagramReportPostHighLightDto as FindOverViewInstagramReportPostHighLightDto, index_FindOverViewInstagramReportPostNewDto as FindOverViewInstagramReportPostNewDto, index_FindOverViewInstagramReportPostReelDto as FindOverViewInstagramReportPostReelDto, index_FindOverViewInstagramReportPostSquareDto as FindOverViewInstagramReportPostSquareDto, index_FindOverViewInstagramReportPostStoryDto as FindOverViewInstagramReportPostStoryDto, index_FindOverViewLarkDto as FindOverViewLarkDto, index_FindOverViewTaskAIContentDto as FindOverViewTaskAIContentDto, index_FindOverViewTaskAIImageVoiceCanvaDto as FindOverViewTaskAIImageVoiceCanvaDto, index_FindOverViewTaskInstagramBlockUserDto as FindOverViewTaskInstagramBlockUserDto, index_FindOverViewTaskInstagramChangeInfoDto as FindOverViewTaskInstagramChangeInfoDto, index_FindOverViewTaskInstagramFollowDto as FindOverViewTaskInstagramFollowDto, index_FindOverViewTaskInstagramPostDto as FindOverViewTaskInstagramPostDto, index_FindOverViewTaskInstagramReplyCommentDto as FindOverViewTaskInstagramReplyCommentDto, index_FindOverViewTaskInstagramReplyMessageDto as FindOverViewTaskInstagramReplyMessageDto, index_FindOverViewTaskThreadsFollowDto as FindOverViewTaskThreadsFollowDto, index_FindOverViewTaskThreadsPostDto as FindOverViewTaskThreadsPostDto, index_FindOverViewTaskThreadsReplyCommentDto as FindOverViewTaskThreadsReplyCommentDto, index_FindOverViewTaskThreadsReplyMessageDto as FindOverViewTaskThreadsReplyMessageDto, index_FindOverViewThreadsAccountDto as FindOverViewThreadsAccountDto, index_FindOverViewThreadsAccountRowDto as FindOverViewThreadsAccountRowDto, index_FindOverViewThreadsReportInteractFollowDto as FindOverViewThreadsReportInteractFollowDto, index_FindOverViewThreadsReportInteractReplyCommentDto as FindOverViewThreadsReportInteractReplyCommentDto, index_FindOverViewThreadsReportInteractReplyMessageDto as FindOverViewThreadsReportInteractReplyMessageDto, index_FindOverViewThreadsReportPostDto as FindOverViewThreadsReportPostDto, index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, index_FindOverviewInstagramHistoryAutoPostDto as FindOverviewInstagramHistoryAutoPostDto, index_FindOverviewProxyDto as FindOverviewProxyDto, index_FindOverviewTeamDto as FindOverviewTeamDto, index_FindPCDto as FindPCDto, index_FindProxyDto as FindProxyDto, index_FindRoleDto as FindRoleDto, index_FindSheetWorkDto as FindSheetWorkDto, index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, index_FindSheetsToolInstagramDto as FindSheetsToolInstagramDto, index_FindSheetsToolThreadsDto as FindSheetsToolThreadsDto, index_FindTaskAIContentDto as FindTaskAIContentDto, index_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_FindTaskThreadsReplyMessageDto as FindTaskThreadsReplyMessageDto, index_FindTaskToolMonitorDto as FindTaskToolMonitorDto, index_FindTeamDto as FindTeamDto, index_FindThreadsAccountRawDto as FindThreadsAccountRawDto, index_FindThreadsAccountRunDto as FindThreadsAccountRunDto, index_FindThreadsHistoryAutoPostDto as FindThreadsHistoryAutoPostDto, index_FindThreadsHistoryAutoSyncDto as FindThreadsHistoryAutoSyncDto, index_FindThreadsHistoryChangeDto as FindThreadsHistoryChangeDto, index_FindThreadsHistoryCreateDto as FindThreadsHistoryCreateDto, index_FindThreadsHistoryGroupDto as FindThreadsHistoryGroupDto, index_FindThreadsReportInteractFollowDto as FindThreadsReportInteractFollowDto, index_FindThreadsReportInteractReplyCommentDto as FindThreadsReportInteractReplyCommentDto, index_FindThreadsReportInteractReplyMessageDto as FindThreadsReportInteractReplyMessageDto, index_FindThreadsReportPostDto as FindThreadsReportPostDto, index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, index_FindThreadsSettingInteractReplyMessageDto as FindThreadsSettingInteractReplyMessageDto, index_FindThreadsSettingInteractUnFollowDto as FindThreadsSettingInteractUnFollowDto, index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, index_FindUserDto as FindUserDto, index_IBaseSheetImportDto as IBaseSheetImportDto, index_IFilterBaseDto as IFilterBaseDto, index_IFindBaseDto as IFindBaseDto, index_ImportDto as ImportDto, index_OverviewUserDto as OverviewUserDto, index_TOmitFilterDto as TOmitFilterDto, index_UpdateBlogDto as UpdateBlogDto, index_UpdateBlogsCategoryDto as UpdateBlogsCategoryDto, index_UpdateDepartmentDto as UpdateDepartmentDto, index_UpdateDeviceDto as UpdateDeviceDto, index_UpdateLarkDto as UpdateLarkDto, index_UpdatePCDto as UpdatePCDto, index_UpdateRoleDto as UpdateRoleDto, index_UpdateSheetsToolInstagramDto as UpdateSheetsToolInstagramDto, index_UpdateSheetsToolThreadsDto as UpdateSheetsToolThreadsDto, index_UpdateTaskAIContentDto as UpdateTaskAIContentDto, index_UpdateTaskAIImageVoiceCanvaDto as UpdateTaskAIImageVoiceCanvaDto, index_UpdateTaskInstagramBlockUserDto as UpdateTaskInstagramBlockUserDto, index_UpdateTaskInstagramChangeInfoDto as UpdateTaskInstagramChangeInfoDto, index_UpdateTaskInstagramFollowDto as UpdateTaskInstagramFollowDto, index_UpdateTaskInstagramPostDto as UpdateTaskInstagramPostDto, index_UpdateTaskInstagramReplyCommentDto as UpdateTaskInstagramReplyCommentDto, index_UpdateTaskInstagramReplyMessageDto as UpdateTaskInstagramReplyMessageDto, index_UpdateTaskThreadsFollowDto as UpdateTaskThreadsFollowDto, index_UpdateTaskThreadsPostDto as UpdateTaskThreadsPostDto, index_UpdateTaskThreadsReplyCommentDto as UpdateTaskThreadsReplyCommentDto, index_UpdateTaskThreadsReplyMessageDto as UpdateTaskThreadsReplyMessageDto, index_UpdateTeamDto as UpdateTeamDto, index_UpdateUserDto as UpdateUserDto };
|
|
6276
7067
|
}
|
|
6277
7068
|
|
|
6278
|
-
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolInstagramDto, type CreateSheetsToolThreadsDto, type CreateTaskAIContentDto, type CreateTaskAIImageVoiceCanvaDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolInstagramDto, type FilterSheetsToolThreadsDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewLarkDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewProxyDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolInstagramDto, type FindSheetsToolThreadsDto, 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 FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsToolBase, type ISheetsToolInstagram, type ISheetsToolThreads, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolInstagramDto, type UpdateSheetsToolThreadsDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageVoiceCanvaDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|
|
7069
|
+
export { type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillThreadsAccountRawDto, index$1 as AutoInterfacesCommon, index$2 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateDeviceDto, type CreateLarkDto, type CreatePCDto, type CreateRoleDto, type CreateSheetsToolInstagramDto, type CreateSheetsToolThreadsDto, type CreateTaskAIContentDto, type CreateTaskAIImageVoiceCanvaDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTeamDto, type CreateUserDto, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryChangeDto, type FilterInstagramHistoryCreateDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkDto, type FilterSheetWorkManagerDto, type FilterSheetsToolInstagramDto, type FilterSheetsToolThreadsDto, type FilterTaskAIContentDto, type FilterTaskAIImageVoiceCanvaDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTaskToolMonitorDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type FilterThreadsHistoryCreateDto, type FilterThreadsHistoryGroupDto, type FilterThreadsReportInteractFollowDto, type FilterThreadsReportInteractReplyCommentDto, type FilterThreadsReportInteractReplyMessageDto, type FilterThreadsReportPostDto, type FilterThreadsSettingInteractFollowDto, type FilterThreadsSettingInteractReplyCommentDto, type FilterThreadsSettingInteractReplyMessageDto, type FilterThreadsSettingInteractUnFollowDto, type FilterThreadsSettingPostDto, type FilterUserDto, type FindAccountAIContentChannelDto, type FindAccountAIContentDto, type FindAccountAIContentInfoDto, type FindAccountAIImageChannelDto, type FindAccountAIImageDto, type FindAccountAIImageInfoDto, type FindAccountAIVoiceChannelDto, type FindAccountAIVoiceDto, type FindAccountAIVoiceInfoDto, type FindAccountCHPlayICloudDto, type FindAccountCanvaDto, type FindAccountDriveDto, type FindAccountEmailDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindBlogCategoryDto, type FindBlogDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindForReviewDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryChangeDto, type FindInstagramHistoryCreateDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportPostHighLightDto, type FindInstagramReportPostNewDto, type FindInstagramReportPostReelDto, type FindInstagramReportPostSquareDto, type FindInstagramReportPostStoryDto, type FindInstagramSettingInteractExploreDto, type FindInstagramSettingInteractFollowDto, type FindInstagramSettingInteractReelDto, type FindInstagramSettingInteractReplyCommentDto, type FindInstagramSettingInteractReplyMessageDto, type FindInstagramSettingInteractStoryDto, type FindInstagramSettingInteractUnFollowDto, type FindInstagramSettingPostDto, type FindLarkDto, type FindManagerImageAIDto, type FindManagerSheetDto, type FindManagerWorkDto, type FindOverViewDepartmentDto, type FindOverViewDeviceDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageVoiceCanvaDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountVPNDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewProxyDto, type FindOverviewTeamDto, type FindPCDto, type FindProxyDto, type FindRoleDto, type FindSheetWorkDto, type FindSheetWorkManagerDto, type FindSheetsToolInstagramDto, type FindSheetsToolThreadsDto, type FindTaskAIContentDto, type FindTaskAIImageVoiceCanvaDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTaskToolMonitorDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$4 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoSync, type IInstagramHistoryChange, type IInstagramHistoryCreate, type IInstagramHistoryGroup, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsToolBase, type ISheetsToolInstagram, type ISheetsToolThreads, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoSync, type IThreadsHistoryChange, type IThreadsHistoryCreate, type IThreadsHistoryGroup, type IThreadsReportInteractFollow, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyMessage, type IThreadsReportPost, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingInteractReplyMessage, type IThreadsSettingInteractUnFollow, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, type ImportDto, type OverviewUserDto, index$3 as Socials, type TOmitFilterDto, index$6 as TaskBrowsers, index$7 as TaskPhones, index$5 as Tool, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdatePCDto, type UpdateRoleDto, type UpdateSheetsToolInstagramDto, type UpdateSheetsToolThreadsDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageVoiceCanvaDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTeamDto, type UpdateUserDto, index$a as Web };
|